diff --git a/.gitignore b/.gitignore index 9610afd15bc..636851962a2 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ etc/docs/template/.hugo_build.lock types docs/gen +!docs/**/types # Directory for instrumented libs generated by jscoverage/JSCover lib-cov diff --git a/docs/5.7/types/AbstractCursorEvents.html b/docs/5.7/types/AbstractCursorEvents.html new file mode 100644 index 00000000000..83d5fa34326 --- /dev/null +++ b/docs/5.7/types/AbstractCursorEvents.html @@ -0,0 +1,421 @@ +AbstractCursorEvents | mongodb
+
+ +
+
+
+
+ +

Type alias AbstractCursorEvents

+
AbstractCursorEvents: {
    close() => void;
}
+
+

Type declaration

+
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AcceptedFields.html b/docs/5.7/types/AcceptedFields.html new file mode 100644 index 00000000000..b79d383e874 --- /dev/null +++ b/docs/5.7/types/AcceptedFields.html @@ -0,0 +1,419 @@ +AcceptedFields | mongodb
+
+ +
+
+
+
+ +

Type alias AcceptedFields<TSchema, FieldType, AssignableType>

+
AcceptedFields<TSchema, FieldType, AssignableType>: {
    readonly [key in KeysOfAType<TSchema, FieldType>]?: AssignableType
}
+
+

Type Parameters

+
    +
  • +

    TSchema

  • +
  • +

    FieldType

  • +
  • +

    AssignableType

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AddToSetOperators.html b/docs/5.7/types/AddToSetOperators.html new file mode 100644 index 00000000000..4f291149049 --- /dev/null +++ b/docs/5.7/types/AddToSetOperators.html @@ -0,0 +1,420 @@ +AddToSetOperators | mongodb
+
+ +
+
+
+
+ +

Type alias AddToSetOperators<Type>

+
AddToSetOperators<Type>: {
    $each?: Flatten<Type>[];
}
+
+

Type Parameters

+
    +
  • +

    Type

+
+

Type declaration

+
    +
  • +
    Optional $each?: Flatten<Type>[]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AlternativeType.html b/docs/5.7/types/AlternativeType.html new file mode 100644 index 00000000000..98e408ebf51 --- /dev/null +++ b/docs/5.7/types/AlternativeType.html @@ -0,0 +1,419 @@ +AlternativeType | mongodb
+
+ +
+
+
+
+ +

Type alias AlternativeType<T>

+
AlternativeType<T>: T extends ReadonlyArray<infer U>
    ? T | RegExpOrString<U>
    : RegExpOrString<T>
+

It is possible to search using alternative types in mongodb e.g. +string types can be searched using a regex in mongo +array types can be searched using their element type

+
+
+

Type Parameters

+
    +
  • +

    T

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AnyBulkWriteOperation.html b/docs/5.7/types/AnyBulkWriteOperation.html new file mode 100644 index 00000000000..57c5f8cbad1 --- /dev/null +++ b/docs/5.7/types/AnyBulkWriteOperation.html @@ -0,0 +1,445 @@ +AnyBulkWriteOperation | mongodb
+
+ +
+
+
+
+ +

Type alias AnyBulkWriteOperation<TSchema>

+
AnyBulkWriteOperation<TSchema>: {
    insertOne: InsertOneModel<TSchema>;
} | {
    replaceOne: ReplaceOneModel<TSchema>;
} | {
    updateOne: UpdateOneModel<TSchema>;
} | {
    updateMany: UpdateManyModel<TSchema>;
} | {
    deleteOne: DeleteOneModel<TSchema>;
} | {
    deleteMany: DeleteManyModel<TSchema>;
}
+
+

Type Parameters

+
+
+

Type declaration

+
+
+

Type declaration

+
+
+

Type declaration

+
+
+

Type declaration

+
+
+

Type declaration

+
+
+

Type declaration

+
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AnyError.html b/docs/5.7/types/AnyError.html new file mode 100644 index 00000000000..77e472b4f51 --- /dev/null +++ b/docs/5.7/types/AnyError.html @@ -0,0 +1,410 @@ +AnyError | mongodb
+
+ +
+
+
+
+ +

Type alias AnyError

+
AnyError: MongoError | Error
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ArrayElement.html b/docs/5.7/types/ArrayElement.html new file mode 100644 index 00000000000..ae20bfb99d2 --- /dev/null +++ b/docs/5.7/types/ArrayElement.html @@ -0,0 +1,415 @@ +ArrayElement | mongodb
+
+ +
+
+
+
+ +

Type alias ArrayElement<Type>

+
ArrayElement<Type>: Type extends ReadonlyArray<infer Item>
    ? Item
    : never
+
+

Type Parameters

+
    +
  • +

    Type

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ArrayOperator.html b/docs/5.7/types/ArrayOperator.html new file mode 100644 index 00000000000..f996680c0b9 --- /dev/null +++ b/docs/5.7/types/ArrayOperator.html @@ -0,0 +1,426 @@ +ArrayOperator | mongodb
+
+ +
+
+
+
+ +

Type alias ArrayOperator<Type>

+
ArrayOperator<Type>: {
    $each?: Flatten<Type>[];
    $position?: number;
    $slice?: number;
    $sort?: Sort;
}
+
+

Type Parameters

+
    +
  • +

    Type

+
+

Type declaration

+
    +
  • +
    Optional $each?: Flatten<Type>[]
  • +
  • +
    Optional $position?: number
  • +
  • +
    Optional $slice?: number
  • +
  • +
    Optional $sort?: Sort
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AuthMechanism.html b/docs/5.7/types/AuthMechanism.html new file mode 100644 index 00000000000..4ce234b129c --- /dev/null +++ b/docs/5.7/types/AuthMechanism.html @@ -0,0 +1,411 @@ +AuthMechanism | mongodb
+
+ +
+
+
+
+ +

Type alias AuthMechanism

+
AuthMechanism: typeof AuthMechanism[keyof typeof AuthMechanism]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/AutoEncryptionLoggerLevel.html b/docs/5.7/types/AutoEncryptionLoggerLevel.html new file mode 100644 index 00000000000..4a738926693 --- /dev/null +++ b/docs/5.7/types/AutoEncryptionLoggerLevel.html @@ -0,0 +1,411 @@ +AutoEncryptionLoggerLevel | mongodb
+
+ +
+
+
+
+ +

Type alias AutoEncryptionLoggerLevel

+
AutoEncryptionLoggerLevel: typeof AutoEncryptionLoggerLevel[keyof typeof AutoEncryptionLoggerLevel]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.BSONType.html b/docs/5.7/types/BSON.BSONType.html new file mode 100644 index 00000000000..2c48461ada1 --- /dev/null +++ b/docs/5.7/types/BSON.BSONType.html @@ -0,0 +1,468 @@ +BSONType | mongodb
+
+ +
+
+
+
+ +

Type alias BSONType

+
BSONType: typeof BSON.BSONType[keyof typeof BSON.BSONType]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.BinarySequence.html b/docs/5.7/types/BSON.BinarySequence.html new file mode 100644 index 00000000000..b7f6d32a0b4 --- /dev/null +++ b/docs/5.7/types/BSON.BinarySequence.html @@ -0,0 +1,467 @@ +BinarySequence | mongodb
+
+ +
+
+
+
+ +

Type alias BinarySequence

+
BinarySequence: Uint8Array | number[]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.CalculateObjectSizeOptions.html b/docs/5.7/types/BSON.CalculateObjectSizeOptions.html new file mode 100644 index 00000000000..1dce0d2a382 --- /dev/null +++ b/docs/5.7/types/BSON.CalculateObjectSizeOptions.html @@ -0,0 +1,467 @@ +CalculateObjectSizeOptions | mongodb
+
+ +
+
+
+
+ +

Type alias CalculateObjectSizeOptions

+
CalculateObjectSizeOptions: Pick<SerializeOptions, "serializeFunctions" | "ignoreUndefined">
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.EJSONOptions.html b/docs/5.7/types/BSON.EJSONOptions.html new file mode 100644 index 00000000000..0b86c2ef3f6 --- /dev/null +++ b/docs/5.7/types/BSON.EJSONOptions.html @@ -0,0 +1,491 @@ +EJSONOptions | mongodb
+
+ +
+
+
+
+ +

Type alias EJSONOptions

+
EJSONOptions: {
    legacy?: boolean;
    relaxed?: boolean;
    useBigInt64?: boolean;
}
+
+

Type declaration

+
    +
  • +
    Optional legacy?: boolean
    +

    Output using the Extended JSON v1 spec

    +
    +
    +

    Default Value

    false

    +
  • +
  • +
    Optional relaxed?: boolean
    +

    Enable Extended JSON's relaxed mode, which attempts to return native JS types where possible, rather than BSON types

    +
    +
    +

    Default Value

    false

    +
  • +
  • +
    Optional useBigInt64?: boolean
    +

    Enable native bigint support

    +
    +
    +

    Default Value

    false

    +
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.LongWithoutOverrides.html b/docs/5.7/types/BSON.LongWithoutOverrides.html new file mode 100644 index 00000000000..826fc6debec --- /dev/null +++ b/docs/5.7/types/BSON.LongWithoutOverrides.html @@ -0,0 +1,484 @@ +LongWithoutOverrides | mongodb
+
+ +
+
+
+
+ +

Type alias LongWithoutOverrides

+
LongWithoutOverrides: (new (low, high?, unsigned?) => {
    [P in Exclude<keyof Long, TimestampOverrides>]: Long[P]
})
+
+

Type declaration

+
    +
  • +
      +
    • new (low, high?, unsigned?): {
          [P in Exclude<keyof Long, TimestampOverrides>]: Long[P]
      }
    • +
    • +
      +

      Parameters

      +
        +
      • +
        low: unknown
      • +
      • +
        Optional high: number | boolean
      • +
      • +
        Optional unsigned: boolean
      +

      Returns {
          [P in Exclude<keyof Long, TimestampOverrides>]: Long[P]
      }

      +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.TimestampOverrides.html b/docs/5.7/types/BSON.TimestampOverrides.html new file mode 100644 index 00000000000..4e6daf7fa66 --- /dev/null +++ b/docs/5.7/types/BSON.TimestampOverrides.html @@ -0,0 +1,467 @@ +TimestampOverrides | mongodb
+
+ +
+
+
+
+ +

Type alias TimestampOverrides

+
TimestampOverrides: "_bsontype" | "toExtendedJSON" | "fromExtendedJSON" | "inspect"
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSON.UUIDExtended.html b/docs/5.7/types/BSON.UUIDExtended.html new file mode 100644 index 00000000000..6243893697a --- /dev/null +++ b/docs/5.7/types/BSON.UUIDExtended.html @@ -0,0 +1,472 @@ +UUIDExtended | mongodb
+
+ +
+
+
+
+ +

Type alias UUIDExtended

+
UUIDExtended: {
    $uuid: string;
}
+
+

Type declaration

+
    +
  • +
    $uuid: string
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BSONTypeAlias.html b/docs/5.7/types/BSONTypeAlias.html new file mode 100644 index 00000000000..eafeba07d6d --- /dev/null +++ b/docs/5.7/types/BSONTypeAlias.html @@ -0,0 +1,410 @@ +BSONTypeAlias | mongodb
+
+ +
+
+
+
+ +

Type alias BSONTypeAlias

+
BSONTypeAlias: keyof typeof BSON.BSONType
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BatchType.html b/docs/5.7/types/BatchType.html new file mode 100644 index 00000000000..deaad493137 --- /dev/null +++ b/docs/5.7/types/BatchType.html @@ -0,0 +1,411 @@ +BatchType | mongodb
+
+ +
+
+
+
+ +

Type alias BatchType

+
BatchType: typeof BatchType[keyof typeof BatchType]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/BitwiseFilter.html b/docs/5.7/types/BitwiseFilter.html new file mode 100644 index 00000000000..cfdf2e249aa --- /dev/null +++ b/docs/5.7/types/BitwiseFilter.html @@ -0,0 +1,410 @@ +BitwiseFilter | mongodb
+
+ +
+
+
+
+ +

Type alias BitwiseFilter

+
BitwiseFilter: number | Binary | ReadonlyArray<number>
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/Callback.html b/docs/5.7/types/Callback.html new file mode 100644 index 00000000000..a9e5e3640e5 --- /dev/null +++ b/docs/5.7/types/Callback.html @@ -0,0 +1,432 @@ +Callback | mongodb
+
+ +
+
+
+
+ +

Type alias Callback<T>

+
Callback<T>: ((error?, result?) => void)
+
+

Type Parameters

+
    +
  • +

    T = any

+
+

Type declaration

+
    +
  • +
      +
    • (error?, result?): void
    • +
    • +

      MongoDB Driver style callback

      +
      +
      +

      Parameters

      +
        +
      • +
        Optional error: AnyError
      • +
      • +
        Optional result: T
      +

      Returns void

      +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ChangeStreamDocument.html b/docs/5.7/types/ChangeStreamDocument.html new file mode 100644 index 00000000000..0ff74c001b9 --- /dev/null +++ b/docs/5.7/types/ChangeStreamDocument.html @@ -0,0 +1,415 @@ +ChangeStreamDocument | mongodb
+
+ +
+
+
+
+ +

Type alias ChangeStreamDocument<TSchema>

+ +
+

Type Parameters

+
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ChangeStreamEvents.html b/docs/5.7/types/ChangeStreamEvents.html new file mode 100644 index 00000000000..5754c19f6d2 --- /dev/null +++ b/docs/5.7/types/ChangeStreamEvents.html @@ -0,0 +1,501 @@ +ChangeStreamEvents | mongodb
+
+ +
+
+
+
+ +

Type alias ChangeStreamEvents<TSchema, TChange>

+
ChangeStreamEvents<TSchema, TChange>: {
    change(change) => void;
    end() => void;
    error(error) => void;
    init(response) => void;
    more(response?) => void;
    response() => void;
    resumeTokenChanged(token) => void;
} & AbstractCursorEvents
+
+

Type Parameters

+
+
+

Type declaration

+
    +
  • +
    change:function
    +
  • +
  • +
    end:function
    +
  • +
  • +
    error:function
    +
  • +
  • +
    init:function
    +
  • +
  • +
    more:function
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        Optional response: any
      +

      Returns void

  • +
  • +
    response:function
    +
  • +
  • +
    resumeTokenChanged:function
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        token: unknown
      +

      Returns void

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ClientSessionEvents.html b/docs/5.7/types/ClientSessionEvents.html new file mode 100644 index 00000000000..4b742a88e5e --- /dev/null +++ b/docs/5.7/types/ClientSessionEvents.html @@ -0,0 +1,426 @@ +ClientSessionEvents | mongodb
+
+ +
+
+
+
+ +

Type alias ClientSessionEvents

+
ClientSessionEvents: {
    ended(session) => void;
}
+
+

Type declaration

+
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/CommonEvents.html b/docs/5.7/types/CommonEvents.html new file mode 100644 index 00000000000..6118a9fadd4 --- /dev/null +++ b/docs/5.7/types/CommonEvents.html @@ -0,0 +1,410 @@ +CommonEvents | mongodb
+
+ +
+
+
+
+ +

Type alias CommonEvents

+
CommonEvents: "newListener" | "removeListener"
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/Compressor.html b/docs/5.7/types/Compressor.html new file mode 100644 index 00000000000..921c4c2cc3f --- /dev/null +++ b/docs/5.7/types/Compressor.html @@ -0,0 +1,411 @@ +Compressor | mongodb
+
+ +
+
+
+
+ +

Type alias Compressor

+
Compressor: typeof Compressor[CompressorName]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/CompressorName.html b/docs/5.7/types/CompressorName.html new file mode 100644 index 00000000000..a30cbaf3f19 --- /dev/null +++ b/docs/5.7/types/CompressorName.html @@ -0,0 +1,410 @@ +CompressorName | mongodb
+
+ +
+
+
+
+ +

Type alias CompressorName

+
CompressorName: keyof typeof Compressor
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/Condition.html b/docs/5.7/types/Condition.html new file mode 100644 index 00000000000..5ea20387c11 --- /dev/null +++ b/docs/5.7/types/Condition.html @@ -0,0 +1,415 @@ +Condition | mongodb
+
+ +
+
+
+
+ +

Type alias Condition<T>

+ +
+

Type Parameters

+
    +
  • +

    T

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ConnectionEvents.html b/docs/5.7/types/ConnectionEvents.html new file mode 100644 index 00000000000..35a006e2c2a --- /dev/null +++ b/docs/5.7/types/ConnectionEvents.html @@ -0,0 +1,512 @@ +ConnectionEvents | mongodb
+
+ +
+
+
+
+ +

Type alias ConnectionEvents

+
ConnectionEvents: {
    close() => void;
    clusterTimeReceived(clusterTime) => void;
    commandFailed(event) => void;
    commandStarted(event) => void;
    commandSucceeded(event) => void;
    message(message) => void;
    pinned(pinType) => void;
    unpinned(pinType) => void;
}
+
+

Type declaration

+
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/ConnectionPoolEvents.html b/docs/5.7/types/ConnectionPoolEvents.html new file mode 100644 index 00000000000..f3754823395 --- /dev/null +++ b/docs/5.7/types/ConnectionPoolEvents.html @@ -0,0 +1,556 @@ +ConnectionPoolEvents | mongodb
+
+ +
+
+
+
+ +

Type alias ConnectionPoolEvents

+
ConnectionPoolEvents: {
    connectionCheckOutFailed(event) => void;
    connectionCheckOutStarted(event) => void;
    connectionCheckedIn(event) => void;
    connectionCheckedOut(event) => void;
    connectionClosed(event) => void;
    connectionCreated(event) => void;
    connectionPoolCleared(event) => void;
    connectionPoolClosed(event) => void;
    connectionPoolCreated(event) => void;
    connectionPoolReady(event) => void;
    connectionReady(event) => void;
} & Omit<ConnectionEvents, "close" | "message">
+
+

Type declaration

+
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/CursorFlag.html b/docs/5.7/types/CursorFlag.html new file mode 100644 index 00000000000..adceedc1f2e --- /dev/null +++ b/docs/5.7/types/CursorFlag.html @@ -0,0 +1,410 @@ +CursorFlag | mongodb
+
+ +
+
+
+
+ +

Type alias CursorFlag

+
CursorFlag: typeof CURSOR_FLAGS[number]
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/DistinctOptions.html b/docs/5.7/types/DistinctOptions.html new file mode 100644 index 00000000000..c36258e0d8b --- /dev/null +++ b/docs/5.7/types/DistinctOptions.html @@ -0,0 +1,410 @@ +DistinctOptions | mongodb
+
+ +
+
+
+
+ +

Type alias DistinctOptions

+
DistinctOptions: CommandOperationOptions
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/DropDatabaseOptions.html b/docs/5.7/types/DropDatabaseOptions.html new file mode 100644 index 00000000000..27cbf917748 --- /dev/null +++ b/docs/5.7/types/DropDatabaseOptions.html @@ -0,0 +1,410 @@ +DropDatabaseOptions | mongodb
+
+ +
+
+
+
+ +

Type alias DropDatabaseOptions

+
DropDatabaseOptions: CommandOperationOptions
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/DropIndexesOptions.html b/docs/5.7/types/DropIndexesOptions.html new file mode 100644 index 00000000000..3e78b6caebb --- /dev/null +++ b/docs/5.7/types/DropIndexesOptions.html @@ -0,0 +1,410 @@ +DropIndexesOptions | mongodb
+
+ +
+
+
+
+ +

Type alias DropIndexesOptions

+
DropIndexesOptions: CommandOperationOptions
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/EnhancedOmit.html b/docs/5.7/types/EnhancedOmit.html new file mode 100644 index 00000000000..c3984a2ff4d --- /dev/null +++ b/docs/5.7/types/EnhancedOmit.html @@ -0,0 +1,419 @@ +EnhancedOmit | mongodb
+
+ +
+
+
+
+ +

Type alias EnhancedOmit<TRecordOrUnion, KeyUnion>

+
EnhancedOmit<TRecordOrUnion, KeyUnion>: string extends keyof TRecordOrUnion
    ? TRecordOrUnion
    : TRecordOrUnion extends any
        ? Pick<TRecordOrUnion, Exclude<keyof TRecordOrUnion, KeyUnion>>
        : never
+

TypeScript Omit (Exclude to be specific) does not work for objects with an "any" indexed type, and breaks discriminated unions

+
+
+

Type Parameters

+
    +
  • +

    TRecordOrUnion

  • +
  • +

    KeyUnion

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/5.7/types/EventEmitterWithState.html b/docs/5.7/types/EventEmitterWithState.html new file mode 100644 index 00000000000..2918366acaa --- /dev/null +++ b/docs/5.7/types/EventEmitterWithState.html @@ -0,0 +1,413 @@ +EventEmitterWithState | mongodb
+
+ +
+
+
+
+ +

Type alias EventEmitterWithState

+
EventEmitterWithState: {}
+
+

Type declaration

+
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/EventsDescription.html b/docs/5.7/types/EventsDescription.html new file mode 100644 index 00000000000..c5879448eec --- /dev/null +++ b/docs/5.7/types/EventsDescription.html @@ -0,0 +1,412 @@ +EventsDescription | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias EventsDescription

    +
    EventsDescription: Record<string, GenericListener>
    +

    Event description type

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ExplainVerbosity.html b/docs/5.7/types/ExplainVerbosity.html new file mode 100644 index 00000000000..7949a35add6 --- /dev/null +++ b/docs/5.7/types/ExplainVerbosity.html @@ -0,0 +1,411 @@ +ExplainVerbosity | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ExplainVerbosity

    +
    ExplainVerbosity: string
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ExplainVerbosityLike.html b/docs/5.7/types/ExplainVerbosityLike.html new file mode 100644 index 00000000000..998d17b5021 --- /dev/null +++ b/docs/5.7/types/ExplainVerbosityLike.html @@ -0,0 +1,414 @@ +ExplainVerbosityLike | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ExplainVerbosityLike

    +
    ExplainVerbosityLike: ExplainVerbosity | boolean
    +

    For backwards compatibility, true is interpreted as "allPlansExecution" +and false as "queryPlanner". Prior to server version 3.6, aggregate() +ignores the verbosity parameter and executes in "queryPlanner".

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/Filter.html b/docs/5.7/types/Filter.html new file mode 100644 index 00000000000..1379d8991d9 --- /dev/null +++ b/docs/5.7/types/Filter.html @@ -0,0 +1,417 @@ +Filter | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias Filter<TSchema>

    +
    Filter<TSchema>: {
        [P in keyof WithId<TSchema>]?: Condition<WithId<TSchema>[P]>
    } & RootFilterOperators<WithId<TSchema>>
    +

    A MongoDB filter can be some portion of the schema or a set of operators

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/FilterOperations.html b/docs/5.7/types/FilterOperations.html new file mode 100644 index 00000000000..75178f3f451 --- /dev/null +++ b/docs/5.7/types/FilterOperations.html @@ -0,0 +1,415 @@ +FilterOperations | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias FilterOperations<T>

    +
    FilterOperations<T>: T extends Record<string, any>
        ? {
            [key in keyof T]?: FilterOperators<T[key]>
        }
        : FilterOperators<T>
    +
    +

    Type Parameters

    +
      +
    • +

      T

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/Flatten.html b/docs/5.7/types/Flatten.html new file mode 100644 index 00000000000..ab30f29b9b5 --- /dev/null +++ b/docs/5.7/types/Flatten.html @@ -0,0 +1,415 @@ +Flatten | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias Flatten<Type>

    +
    Flatten<Type>: Type extends ReadonlyArray<infer Item>
        ? Item
        : Type
    +
    +

    Type Parameters

    +
      +
    • +

      Type

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/GSSAPICanonicalizationValue.html b/docs/5.7/types/GSSAPICanonicalizationValue.html new file mode 100644 index 00000000000..b9bd114570e --- /dev/null +++ b/docs/5.7/types/GSSAPICanonicalizationValue.html @@ -0,0 +1,411 @@ +GSSAPICanonicalizationValue | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias GSSAPICanonicalizationValue

    +
    GSSAPICanonicalizationValue: typeof GSSAPICanonicalizationValue[keyof typeof GSSAPICanonicalizationValue]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/GenericListener.html b/docs/5.7/types/GenericListener.html new file mode 100644 index 00000000000..fbb2ab2d94e --- /dev/null +++ b/docs/5.7/types/GenericListener.html @@ -0,0 +1,423 @@ +GenericListener | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias GenericListener

    +
    GenericListener: ((...args) => void)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (...args): void
      • +
      • +
        +

        Parameters

        +
          +
        • +
          Rest ...args: any[]
        +

        Returns void

        +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/GridFSBucketEvents.html b/docs/5.7/types/GridFSBucketEvents.html new file mode 100644 index 00000000000..095376617cb --- /dev/null +++ b/docs/5.7/types/GridFSBucketEvents.html @@ -0,0 +1,421 @@ +GridFSBucketEvents | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias GridFSBucketEvents

    +
    GridFSBucketEvents: {
        index() => void;
    }
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/Hint.html b/docs/5.7/types/Hint.html new file mode 100644 index 00000000000..1ac1ada525d --- /dev/null +++ b/docs/5.7/types/Hint.html @@ -0,0 +1,410 @@ +Hint | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias Hint

    +
    Hint: string | Document
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/IndexDirection.html b/docs/5.7/types/IndexDirection.html new file mode 100644 index 00000000000..4c78095a5c8 --- /dev/null +++ b/docs/5.7/types/IndexDirection.html @@ -0,0 +1,410 @@ +IndexDirection | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias IndexDirection

    +
    IndexDirection: -1 | 1 | "2d" | "2dsphere" | "text" | "geoHaystack" | "hashed" | number
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/IndexSpecification.html b/docs/5.7/types/IndexSpecification.html new file mode 100644 index 00000000000..bb551d7b536 --- /dev/null +++ b/docs/5.7/types/IndexSpecification.html @@ -0,0 +1,410 @@ +IndexSpecification | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias IndexSpecification

    +
    IndexSpecification: OneOrMore<string | [string, IndexDirection] | {
        [key: string]: IndexDirection;
    } | Map<string, IndexDirection>>
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/InferIdType.html b/docs/5.7/types/InferIdType.html new file mode 100644 index 00000000000..c36d4c80106 --- /dev/null +++ b/docs/5.7/types/InferIdType.html @@ -0,0 +1,417 @@ +InferIdType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias InferIdType<TSchema>

    +
    InferIdType<TSchema>: TSchema extends {
            _id: infer IdType;
        }
        ? Record<any, never> extends IdType
            ? never
            : IdType
        : TSchema extends {
                _id?: infer IdType;
            }
            ? unknown extends IdType
                ? ObjectId
                : IdType
            : ObjectId
    +

    Given an object shaped type, return the type of the _id field or default to ObjectId

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/IntegerType.html b/docs/5.7/types/IntegerType.html new file mode 100644 index 00000000000..82be5f6d7f4 --- /dev/null +++ b/docs/5.7/types/IntegerType.html @@ -0,0 +1,410 @@ +IntegerType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias IntegerType

    +
    IntegerType: number | Int32 | Long | bigint
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/IsAny.html b/docs/5.7/types/IsAny.html new file mode 100644 index 00000000000..dd3c668d7df --- /dev/null +++ b/docs/5.7/types/IsAny.html @@ -0,0 +1,419 @@ +IsAny | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias IsAny<Type, ResultIfAny, ResultIfNotAny>

    +
    IsAny<Type, ResultIfAny, ResultIfNotAny>: true extends false & Type
        ? ResultIfAny
        : ResultIfNotAny
    +
    +

    Type Parameters

    +
      +
    • +

      Type

    • +
    • +

      ResultIfAny

    • +
    • +

      ResultIfNotAny

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/Join.html b/docs/5.7/types/Join.html new file mode 100644 index 00000000000..97b7d9def5a --- /dev/null +++ b/docs/5.7/types/Join.html @@ -0,0 +1,417 @@ +Join | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias Join<T, D>

    +
    Join<T, D>: T extends []
        ? ""
        : T extends [string | number]
            ? `${T[0]}`
            : T extends [string | number, ...(infer R)]
                ? `${T[0]}${D}${Join<R, D>}`
                : string
    +
    +

    Type Parameters

    +
      +
    • +

      T extends unknown[]

    • +
    • +

      D extends string

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/KeysOfAType.html b/docs/5.7/types/KeysOfAType.html new file mode 100644 index 00000000000..f81bddaeb5b --- /dev/null +++ b/docs/5.7/types/KeysOfAType.html @@ -0,0 +1,417 @@ +KeysOfAType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias KeysOfAType<TSchema, Type>

    +
    KeysOfAType<TSchema, Type>: {
        [key in keyof TSchema]: NonNullable<TSchema[key]> extends Type
            ? key
            : never
    }[keyof TSchema]
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    • +
    • +

      Type

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/KeysOfOtherType.html b/docs/5.7/types/KeysOfOtherType.html new file mode 100644 index 00000000000..54e8690ee78 --- /dev/null +++ b/docs/5.7/types/KeysOfOtherType.html @@ -0,0 +1,417 @@ +KeysOfOtherType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias KeysOfOtherType<TSchema, Type>

    +
    KeysOfOtherType<TSchema, Type>: {
        [key in keyof TSchema]: NonNullable<TSchema[key]> extends Type
            ? never
            : key
    }[keyof TSchema]
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    • +
    • +

      Type

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ListSearchIndexesOptions.html b/docs/5.7/types/ListSearchIndexesOptions.html new file mode 100644 index 00000000000..f49ff70bb01 --- /dev/null +++ b/docs/5.7/types/ListSearchIndexesOptions.html @@ -0,0 +1,410 @@ +ListSearchIndexesOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ListSearchIndexesOptions

    +
    ListSearchIndexesOptions: AggregateOptions
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/MatchKeysAndValues.html b/docs/5.7/types/MatchKeysAndValues.html new file mode 100644 index 00000000000..d9ae6fbd02f --- /dev/null +++ b/docs/5.7/types/MatchKeysAndValues.html @@ -0,0 +1,415 @@ +MatchKeysAndValues | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias MatchKeysAndValues<TSchema>

    +
    MatchKeysAndValues<TSchema>: Readonly<Partial<TSchema>> & Record<string, any>
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/MongoClientEvents.html b/docs/5.7/types/MongoClientEvents.html new file mode 100644 index 00000000000..b37c427475f --- /dev/null +++ b/docs/5.7/types/MongoClientEvents.html @@ -0,0 +1,426 @@ +MongoClientEvents | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias MongoClientEvents

    +
    MongoClientEvents: Pick<TopologyEvents, typeof MONGO_CLIENT_EVENTS[number]> & {
        open(mongoClient) => void;
    }
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/MongoErrorLabel.html b/docs/5.7/types/MongoErrorLabel.html new file mode 100644 index 00000000000..2b59f9e7e60 --- /dev/null +++ b/docs/5.7/types/MongoErrorLabel.html @@ -0,0 +1,411 @@ +MongoErrorLabel | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias MongoErrorLabel

    +
    MongoErrorLabel: typeof MongoErrorLabel[keyof typeof MongoErrorLabel]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/MonitorEvents.html b/docs/5.7/types/MonitorEvents.html new file mode 100644 index 00000000000..c9eb4672a67 --- /dev/null +++ b/docs/5.7/types/MonitorEvents.html @@ -0,0 +1,481 @@ +MonitorEvents | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias MonitorEvents

    +
    MonitorEvents: {
        close() => void;
        resetConnectionPool() => void;
        resetServer(error?) => void;
        serverHeartbeatFailed(event) => void;
        serverHeartbeatStarted(event) => void;
        serverHeartbeatSucceeded(event) => void;
    } & EventEmitterWithState
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/NestedPaths.html b/docs/5.7/types/NestedPaths.html new file mode 100644 index 00000000000..0dd881178f6 --- /dev/null +++ b/docs/5.7/types/NestedPaths.html @@ -0,0 +1,426 @@ +NestedPaths | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias NestedPaths<Type, Depth>

    +
    NestedPaths<Type, Depth>: Depth["length"] extends 8
        ? []
        : Type extends string | number | bigint | boolean | Date | RegExp | Buffer | Uint8Array | ((...args) => any) | {
                _bsontype: string;
            }
            ? []
            : Type extends ReadonlyArray<infer ArrayType>
                ? [] | [number, ...NestedPaths<ArrayType, [...Depth, 1]>]
                : Type extends Map<string, any>
                    ? [string]
                    : Type extends object
                        ? {
                            [Key in Extract<keyof Type, string>]: Type[Key] extends Type
                                ? [Key]
                                : Type extends Type[Key]
                                    ? [Key]
                                    : Type[Key] extends ReadonlyArray<infer ArrayType>
                                        ? Type extends ArrayType
                                            ? [Key]
                                            : ArrayType extends Type
                                                ? [Key]
                                                : [Key, ...NestedPaths<Type[Key], [...Depth, 1]>]
                                        : [Key, ...NestedPaths<Type[Key], [...Depth, 1]>] | [Key]
                        }[Extract<keyof Type, string>]
                        : []
    +

    returns tuple of strings (keys to be joined on '.') that represent every path into a schema +https://www.mongodb.com/docs/manual/tutorial/query-embedded-documents/

    +
    +
    +

    Type Parameters

    +
      +
    • +

      Type

    • +
    • +

      Depth extends number[]

    +
    +

    Remarks

    Through testing we determined that a depth of 8 is safe for the typescript compiler +and provides reasonable compilation times. This number is otherwise not special and +should be changed if issues are found with this level of checking. Beyond this +depth any helpers that make use of NestedPaths should devolve to not asserting any +type safety on the input.

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/NestedPathsOfType.html b/docs/5.7/types/NestedPathsOfType.html new file mode 100644 index 00000000000..3e3c822455b --- /dev/null +++ b/docs/5.7/types/NestedPathsOfType.html @@ -0,0 +1,420 @@ +NestedPathsOfType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias NestedPathsOfType<TSchema, Type>

    +
    NestedPathsOfType<TSchema, Type>: KeysOfAType<{
        [Property in Join<NestedPaths<TSchema, []>, ".">]: PropertyType<TSchema, Property>
    }, Type>
    +

    returns keys (strings) for every path into a schema with a value of type +https://www.mongodb.com/docs/manual/tutorial/query-embedded-documents/

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    • +
    • +

      Type

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/NonObjectIdLikeDocument.html b/docs/5.7/types/NonObjectIdLikeDocument.html new file mode 100644 index 00000000000..a7ca3528d80 --- /dev/null +++ b/docs/5.7/types/NonObjectIdLikeDocument.html @@ -0,0 +1,412 @@ +NonObjectIdLikeDocument | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias NonObjectIdLikeDocument

    +
    NonObjectIdLikeDocument: {
        [key in keyof ObjectIdLike]?: never
    } & Document
    +

    A type that extends Document but forbids anything that "looks like" an object id.

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/NotAcceptedFields.html b/docs/5.7/types/NotAcceptedFields.html new file mode 100644 index 00000000000..b156747ea58 --- /dev/null +++ b/docs/5.7/types/NotAcceptedFields.html @@ -0,0 +1,419 @@ +NotAcceptedFields | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias NotAcceptedFields<TSchema, FieldType>

    +
    NotAcceptedFields<TSchema, FieldType>: {
        readonly [key in KeysOfOtherType<TSchema, FieldType>]?: never
    }
    +

    It avoids using fields with not acceptable types

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    • +
    • +

      FieldType

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/NumericType.html b/docs/5.7/types/NumericType.html new file mode 100644 index 00000000000..254f2ff11ae --- /dev/null +++ b/docs/5.7/types/NumericType.html @@ -0,0 +1,410 @@ +NumericType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias NumericType

    +
    NumericType: IntegerType | Decimal128 | Double
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OIDCRefreshFunction.html b/docs/5.7/types/OIDCRefreshFunction.html new file mode 100644 index 00000000000..2cc28edb288 --- /dev/null +++ b/docs/5.7/types/OIDCRefreshFunction.html @@ -0,0 +1,425 @@ +OIDCRefreshFunction | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OIDCRefreshFunction

    +
    OIDCRefreshFunction: ((info, context) => Promise<IdPServerResponse>)
    +
    +

    Type declaration

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OIDCRequestFunction.html b/docs/5.7/types/OIDCRequestFunction.html new file mode 100644 index 00000000000..2c2c8acedf5 --- /dev/null +++ b/docs/5.7/types/OIDCRequestFunction.html @@ -0,0 +1,425 @@ +OIDCRequestFunction | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OIDCRequestFunction

    +
    OIDCRequestFunction: ((info, context) => Promise<IdPServerResponse>)
    +
    +

    Type declaration

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OneOrMore.html b/docs/5.7/types/OneOrMore.html new file mode 100644 index 00000000000..45035d1c0f5 --- /dev/null +++ b/docs/5.7/types/OneOrMore.html @@ -0,0 +1,415 @@ +OneOrMore | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OneOrMore<T>

    +
    OneOrMore<T>: T | ReadonlyArray<T>
    +
    +

    Type Parameters

    +
      +
    • +

      T

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OnlyFieldsOfType.html b/docs/5.7/types/OnlyFieldsOfType.html new file mode 100644 index 00000000000..36ab9b80405 --- /dev/null +++ b/docs/5.7/types/OnlyFieldsOfType.html @@ -0,0 +1,419 @@ +OnlyFieldsOfType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OnlyFieldsOfType<TSchema, FieldType, AssignableType>

    +
    OnlyFieldsOfType<TSchema, FieldType, AssignableType>: IsAny<TSchema[keyof TSchema], Record<string, FieldType>, AcceptedFields<TSchema, FieldType, AssignableType> & NotAcceptedFields<TSchema, FieldType> & Record<string, AssignableType>>
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    • +
    • +

      FieldType = any

    • +
    • +

      AssignableType = FieldType

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OperationTime.html b/docs/5.7/types/OperationTime.html new file mode 100644 index 00000000000..a817b51fc93 --- /dev/null +++ b/docs/5.7/types/OperationTime.html @@ -0,0 +1,414 @@ +OperationTime | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OperationTime

    +
    OperationTime: Timestamp
    +

    Represents a specific point in time on a server. Can be retrieved by using db.command()

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OptionalId.html b/docs/5.7/types/OptionalId.html new file mode 100644 index 00000000000..4f702827b4e --- /dev/null +++ b/docs/5.7/types/OptionalId.html @@ -0,0 +1,422 @@ +OptionalId | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OptionalId<TSchema>

    +
    OptionalId<TSchema>: EnhancedOmit<TSchema, "_id"> & {
        _id?: InferIdType<TSchema>;
    }
    +

    Add an optional _id field to an object shaped type

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/OptionalUnlessRequiredId.html b/docs/5.7/types/OptionalUnlessRequiredId.html new file mode 100644 index 00000000000..f258f2cc183 --- /dev/null +++ b/docs/5.7/types/OptionalUnlessRequiredId.html @@ -0,0 +1,418 @@ +OptionalUnlessRequiredId | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias OptionalUnlessRequiredId<TSchema>

    +
    OptionalUnlessRequiredId<TSchema>: TSchema extends {
            _id: any;
        }
        ? TSchema
        : OptionalId<TSchema>
    +

    Adds an optional _id field to an object shaped type, unless the _id field is required on that type. +In the case _id is required, this method continues to require_id.

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ProfilingLevel.html b/docs/5.7/types/ProfilingLevel.html new file mode 100644 index 00000000000..432fce1c1a2 --- /dev/null +++ b/docs/5.7/types/ProfilingLevel.html @@ -0,0 +1,411 @@ +ProfilingLevel | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ProfilingLevel

    +
    ProfilingLevel: typeof ProfilingLevel[keyof typeof ProfilingLevel]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ProfilingLevelOptions.html b/docs/5.7/types/ProfilingLevelOptions.html new file mode 100644 index 00000000000..581ce810da5 --- /dev/null +++ b/docs/5.7/types/ProfilingLevelOptions.html @@ -0,0 +1,410 @@ +ProfilingLevelOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ProfilingLevelOptions

    +
    ProfilingLevelOptions: CommandOperationOptions
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/PropertyType.html b/docs/5.7/types/PropertyType.html new file mode 100644 index 00000000000..24edf4a2db2 --- /dev/null +++ b/docs/5.7/types/PropertyType.html @@ -0,0 +1,417 @@ +PropertyType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias PropertyType<Type, Property>

    +
    PropertyType<Type, Property>: string extends Property
        ? unknown
        : Property extends keyof Type
            ? Type[Property]
            : Property extends `${number}`
                ? Type extends ReadonlyArray<infer ArrayType>
                    ? ArrayType
                    : unknown
                : Property extends `${infer Key}.${infer Rest}`
                    ? Key extends `${number}`
                        ? Type extends ReadonlyArray<infer ArrayType>
                            ? PropertyType<ArrayType, Rest>
                            : unknown
                        : Key extends keyof Type
                            ? Type[Key] extends Map<string, infer MapType>
                                ? MapType
                                : PropertyType<Type[Key], Rest>
                            : unknown
                    : unknown
    +
    +

    Type Parameters

    +
      +
    • +

      Type

    • +
    • +

      Property extends string

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/PullAllOperator.html b/docs/5.7/types/PullAllOperator.html new file mode 100644 index 00000000000..a372be3cce6 --- /dev/null +++ b/docs/5.7/types/PullAllOperator.html @@ -0,0 +1,420 @@ +PullAllOperator | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias PullAllOperator<TSchema>

    +
    PullAllOperator<TSchema>: {
        readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: TSchema[key]
    } & NotAcceptedFields<TSchema, ReadonlyArray<any>> & {
        [key: string]: ReadonlyArray<any>;
    }
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
      +
    • +
      [key: string]: ReadonlyArray<any>
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/PullOperator.html b/docs/5.7/types/PullOperator.html new file mode 100644 index 00000000000..e946c6f2849 --- /dev/null +++ b/docs/5.7/types/PullOperator.html @@ -0,0 +1,420 @@ +PullOperator | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias PullOperator<TSchema>

    +
    PullOperator<TSchema>: {
        readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: Partial<Flatten<TSchema[key]>> | FilterOperations<Flatten<TSchema[key]>>
    } & NotAcceptedFields<TSchema, ReadonlyArray<any>> & {
        [key: string]: FilterOperators<any> | any;
    }
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/PushOperator.html b/docs/5.7/types/PushOperator.html new file mode 100644 index 00000000000..de1e518c284 --- /dev/null +++ b/docs/5.7/types/PushOperator.html @@ -0,0 +1,420 @@ +PushOperator | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias PushOperator<TSchema>

    +
    PushOperator<TSchema>: {
        readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: Flatten<TSchema[key]> | ArrayOperator<Flatten<TSchema[key]>[]>
    } & NotAcceptedFields<TSchema, ReadonlyArray<any>> & {
        [key: string]: ArrayOperator<any> | any;
    }
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ReadConcernLevel.html b/docs/5.7/types/ReadConcernLevel.html new file mode 100644 index 00000000000..3c90b706047 --- /dev/null +++ b/docs/5.7/types/ReadConcernLevel.html @@ -0,0 +1,411 @@ +ReadConcernLevel | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ReadConcernLevel

    +
    ReadConcernLevel: typeof ReadConcernLevel[keyof typeof ReadConcernLevel]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ReadConcernLike.html b/docs/5.7/types/ReadConcernLike.html new file mode 100644 index 00000000000..40cf221a6ab --- /dev/null +++ b/docs/5.7/types/ReadConcernLike.html @@ -0,0 +1,415 @@ +ReadConcernLike | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ReadConcernLike

    +
    ReadConcernLike: ReadConcern | {
        level: ReadConcernLevel;
    } | ReadConcernLevel
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ReadPreferenceLike.html b/docs/5.7/types/ReadPreferenceLike.html new file mode 100644 index 00000000000..978875fe983 --- /dev/null +++ b/docs/5.7/types/ReadPreferenceLike.html @@ -0,0 +1,410 @@ +ReadPreferenceLike | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ReadPreferenceLike

    +
    ReadPreferenceLike: ReadPreference | ReadPreferenceMode
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ReadPreferenceMode.html b/docs/5.7/types/ReadPreferenceMode.html new file mode 100644 index 00000000000..40a87f4a4bc --- /dev/null +++ b/docs/5.7/types/ReadPreferenceMode.html @@ -0,0 +1,411 @@ +ReadPreferenceMode | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ReadPreferenceMode

    +
    ReadPreferenceMode: typeof ReadPreferenceMode[keyof typeof ReadPreferenceMode]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/RegExpOrString.html b/docs/5.7/types/RegExpOrString.html new file mode 100644 index 00000000000..b33aa839ea3 --- /dev/null +++ b/docs/5.7/types/RegExpOrString.html @@ -0,0 +1,415 @@ +RegExpOrString | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias RegExpOrString<T>

    +
    RegExpOrString<T>: T extends string
        ? BSONRegExp | RegExp | T
        : T
    +
    +

    Type Parameters

    +
      +
    • +

      T

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/RemoveUserOptions.html b/docs/5.7/types/RemoveUserOptions.html new file mode 100644 index 00000000000..4e2c5e8696b --- /dev/null +++ b/docs/5.7/types/RemoveUserOptions.html @@ -0,0 +1,410 @@ +RemoveUserOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias RemoveUserOptions

    +
    RemoveUserOptions: CommandOperationOptions
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ResumeToken.html b/docs/5.7/types/ResumeToken.html new file mode 100644 index 00000000000..01874199655 --- /dev/null +++ b/docs/5.7/types/ResumeToken.html @@ -0,0 +1,414 @@ +ResumeToken | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ResumeToken

    +
    ResumeToken: unknown
    +

    Represents the logical starting point for a new ChangeStream or resuming a ChangeStream on the server.

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ReturnDocument.html b/docs/5.7/types/ReturnDocument.html new file mode 100644 index 00000000000..cba9b19aef7 --- /dev/null +++ b/docs/5.7/types/ReturnDocument.html @@ -0,0 +1,411 @@ +ReturnDocument | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ReturnDocument

    +
    ReturnDocument: typeof ReturnDocument[keyof typeof ReturnDocument]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/RunCommandOptions.html b/docs/5.7/types/RunCommandOptions.html new file mode 100644 index 00000000000..5fb692f0e6a --- /dev/null +++ b/docs/5.7/types/RunCommandOptions.html @@ -0,0 +1,483 @@ +RunCommandOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias RunCommandOptions

    +
    RunCommandOptions: {
        authdb?: any;
        collation?: any;
        comment?: any;
        dbName?: any;
        explain?: any;
        maxTimeMS?: any;
        noResponse?: any;
        omitReadPreference?: any;
        readConcern?: any;
        readPreference?: ReadPreferenceLike;
        retryWrites?: any;
        session?: ClientSession;
        willRetryWrite?: any;
        writeConcern?: any;
    } & BSONSerializeOptions
    +
    +

    Type declaration

    +
      +
    • +
      Optional authdb?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional collation?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional comment?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional dbName?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional explain?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional maxTimeMS?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional noResponse?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional omitReadPreference?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional readConcern?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional readPreference?: ReadPreferenceLike
      +

      The read preference

      +
      +
    • +
    • +
      Optional retryWrites?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional session?: ClientSession
      +

      Specify ClientSession for this command

      +
      +
    • +
    • +
      Optional willRetryWrite?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    • +
    • +
      Optional writeConcern?: any
      +
      +

      Deprecated

      This is an internal option that has undefined behavior for this API

      +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/RunCursorCommandOptions.html b/docs/5.7/types/RunCursorCommandOptions.html new file mode 100644 index 00000000000..6ca4f46db9f --- /dev/null +++ b/docs/5.7/types/RunCursorCommandOptions.html @@ -0,0 +1,417 @@ +RunCursorCommandOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias RunCursorCommandOptions

    +
    RunCursorCommandOptions: {
        readPreference?: ReadPreferenceLike;
        session?: ClientSession;
    } & BSONSerializeOptions
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SchemaMember.html b/docs/5.7/types/SchemaMember.html new file mode 100644 index 00000000000..7192ce1faf5 --- /dev/null +++ b/docs/5.7/types/SchemaMember.html @@ -0,0 +1,422 @@ +SchemaMember | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SchemaMember<T, V>

    +
    SchemaMember<T, V>: {
        [P in keyof T]?: V
    } | {
        [key: string]: V;
    }
    +
    +

    Type Parameters

    +
      +
    • +

      T

    • +
    • +

      V

    +
    +

    Type declaration

    +
      +
    • +
      [key: string]: V
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ServerApiVersion.html b/docs/5.7/types/ServerApiVersion.html new file mode 100644 index 00000000000..906cb3223ec --- /dev/null +++ b/docs/5.7/types/ServerApiVersion.html @@ -0,0 +1,411 @@ +ServerApiVersion | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ServerApiVersion

    +
    ServerApiVersion: typeof ServerApiVersion[keyof typeof ServerApiVersion]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ServerEvents.html b/docs/5.7/types/ServerEvents.html new file mode 100644 index 00000000000..d856dc70c2a --- /dev/null +++ b/docs/5.7/types/ServerEvents.html @@ -0,0 +1,481 @@ +ServerEvents | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ServerEvents

    +
    ServerEvents: {
        closed() => void;
        descriptionReceived(description) => void;
        ended() => void;
        serverHeartbeatFailed(event) => void;
        serverHeartbeatStarted(event) => void;
        serverHeartbeatSucceeded(event) => void;
    } & ConnectionPoolEvents & EventEmitterWithState
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ServerSessionId.html b/docs/5.7/types/ServerSessionId.html new file mode 100644 index 00000000000..aa22cf6da90 --- /dev/null +++ b/docs/5.7/types/ServerSessionId.html @@ -0,0 +1,415 @@ +ServerSessionId | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ServerSessionId

    +
    ServerSessionId: {
        id: Binary;
    }
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/ServerType.html b/docs/5.7/types/ServerType.html new file mode 100644 index 00000000000..9cc7358119a --- /dev/null +++ b/docs/5.7/types/ServerType.html @@ -0,0 +1,411 @@ +ServerType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias ServerType

    +
    ServerType: typeof ServerType[keyof typeof ServerType]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SetFields.html b/docs/5.7/types/SetFields.html new file mode 100644 index 00000000000..abfaa2b908c --- /dev/null +++ b/docs/5.7/types/SetFields.html @@ -0,0 +1,420 @@ +SetFields | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SetFields<TSchema>

    +
    SetFields<TSchema>: {
        readonly [key in KeysOfAType<TSchema, ReadonlyArray<any> | undefined>]?: OptionalId<Flatten<TSchema[key]>> | AddToSetOperators<OptionalId<Flatten<TSchema[key]>>[]>
    } & NotAcceptedFields<TSchema, ReadonlyArray<any> | undefined> & {
        [key: string]: AddToSetOperators<any> | any;
    }
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SetProfilingLevelOptions.html b/docs/5.7/types/SetProfilingLevelOptions.html new file mode 100644 index 00000000000..32d88890377 --- /dev/null +++ b/docs/5.7/types/SetProfilingLevelOptions.html @@ -0,0 +1,410 @@ +SetProfilingLevelOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SetProfilingLevelOptions

    +
    SetProfilingLevelOptions: CommandOperationOptions
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/Sort.html b/docs/5.7/types/Sort.html new file mode 100644 index 00000000000..bfacf3b1889 --- /dev/null +++ b/docs/5.7/types/Sort.html @@ -0,0 +1,415 @@ +Sort | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias Sort

    +
    Sort: string | Exclude<SortDirection, {
        $meta: string;
    }> | string[] | {
        [key: string]: SortDirection;
    } | Map<string, SortDirection> | [string, SortDirection][] | [string, SortDirection]
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SortDirection.html b/docs/5.7/types/SortDirection.html new file mode 100644 index 00000000000..f38e900f8f7 --- /dev/null +++ b/docs/5.7/types/SortDirection.html @@ -0,0 +1,415 @@ +SortDirection | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SortDirection

    +
    SortDirection: 1 | -1 | "asc" | "desc" | "ascending" | "descending" | {
        $meta: string;
    }
    +
    +

    Type declaration

    +
      +
    • +
      $meta: string
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/Stream.html b/docs/5.7/types/Stream.html new file mode 100644 index 00000000000..c2a82225879 --- /dev/null +++ b/docs/5.7/types/Stream.html @@ -0,0 +1,410 @@ +Stream | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias Stream

    +
    Stream: Socket | TLSSocket
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/StrictFilter.html b/docs/5.7/types/StrictFilter.html new file mode 100644 index 00000000000..611bf612510 --- /dev/null +++ b/docs/5.7/types/StrictFilter.html @@ -0,0 +1,415 @@ +StrictFilter | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias StrictFilter<TSchema>Experimental

    +
    StrictFilter<TSchema>: Partial<TSchema> | {
        [Property in Join<NestedPaths<WithId<TSchema>, []>, ".">]?: Condition<PropertyType<WithId<TSchema>, Property>>
    } & RootFilterOperators<WithId<TSchema>>
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/StrictMatchKeysAndValues.html b/docs/5.7/types/StrictMatchKeysAndValues.html new file mode 100644 index 00000000000..624c9722b69 --- /dev/null +++ b/docs/5.7/types/StrictMatchKeysAndValues.html @@ -0,0 +1,415 @@ +StrictMatchKeysAndValues | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias StrictMatchKeysAndValues<TSchema>Experimental

    +
    StrictMatchKeysAndValues<TSchema>: Readonly<{
        [Property in Join<NestedPaths<TSchema, []>, ".">]?: PropertyType<TSchema, Property>
    } & {
        [Property in `${NestedPathsOfType<TSchema, any[]>}.$${`[${string}]` | ""}`]?: ArrayElement<PropertyType<TSchema, Property extends `${infer Key}.$${string}`
            ? Key
            : never>>
    } & {
        [Property in `${NestedPathsOfType<TSchema, Record<string, any>[]>}.$${`[${string}]` | ""}.${string}`]?: any
    } & Document>
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/StrictUpdateFilter.html b/docs/5.7/types/StrictUpdateFilter.html new file mode 100644 index 00000000000..acd138ac4ef --- /dev/null +++ b/docs/5.7/types/StrictUpdateFilter.html @@ -0,0 +1,448 @@ +StrictUpdateFilter | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias StrictUpdateFilter<TSchema>Experimental

    +
    StrictUpdateFilter<TSchema>: {
        $addToSet?: SetFields<TSchema>;
        $bit?: OnlyFieldsOfType<TSchema, NumericType | undefined, {
            and: IntegerType;
        } | {
            or: IntegerType;
        } | {
            xor: IntegerType;
        }>;
        $currentDate?: OnlyFieldsOfType<TSchema, Date | Timestamp, true | {
            $type: "date" | "timestamp";
        }>;
        $inc?: OnlyFieldsOfType<TSchema, NumericType | undefined>;
        $max?: StrictMatchKeysAndValues<TSchema>;
        $min?: StrictMatchKeysAndValues<TSchema>;
        $mul?: OnlyFieldsOfType<TSchema, NumericType | undefined>;
        $pop?: OnlyFieldsOfType<TSchema, ReadonlyArray<any>, 1 | -1>;
        $pull?: PullOperator<TSchema>;
        $pullAll?: PullAllOperator<TSchema>;
        $push?: PushOperator<TSchema>;
        $rename?: Record<string, string>;
        $set?: StrictMatchKeysAndValues<TSchema>;
        $setOnInsert?: StrictMatchKeysAndValues<TSchema>;
        $unset?: OnlyFieldsOfType<TSchema, any, "" | true | 1>;
    } & Document
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SupportedNodeConnectionOptions.html b/docs/5.7/types/SupportedNodeConnectionOptions.html new file mode 100644 index 00000000000..bb825a8c8f0 --- /dev/null +++ b/docs/5.7/types/SupportedNodeConnectionOptions.html @@ -0,0 +1,410 @@ +SupportedNodeConnectionOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SupportedNodeConnectionOptions

    + +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SupportedSocketOptions.html b/docs/5.7/types/SupportedSocketOptions.html new file mode 100644 index 00000000000..4aabd96dc2c --- /dev/null +++ b/docs/5.7/types/SupportedSocketOptions.html @@ -0,0 +1,410 @@ +SupportedSocketOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SupportedSocketOptions

    +
    SupportedSocketOptions: Pick<TcpNetConnectOpts, typeof LEGAL_TCP_SOCKET_OPTIONS[number]>
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SupportedTLSConnectionOptions.html b/docs/5.7/types/SupportedTLSConnectionOptions.html new file mode 100644 index 00000000000..4e203ddd66c --- /dev/null +++ b/docs/5.7/types/SupportedTLSConnectionOptions.html @@ -0,0 +1,410 @@ +SupportedTLSConnectionOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SupportedTLSConnectionOptions

    +
    SupportedTLSConnectionOptions: Pick<TLSConnectionOptions, Extract<keyof TLSConnectionOptions, typeof LEGAL_TLS_SOCKET_OPTIONS[number]>>
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/SupportedTLSSocketOptions.html b/docs/5.7/types/SupportedTLSSocketOptions.html new file mode 100644 index 00000000000..2179b5ed11b --- /dev/null +++ b/docs/5.7/types/SupportedTLSSocketOptions.html @@ -0,0 +1,410 @@ +SupportedTLSSocketOptions | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias SupportedTLSSocketOptions

    +
    SupportedTLSSocketOptions: Pick<TLSSocketOptions, Extract<keyof TLSSocketOptions, typeof LEGAL_TLS_SOCKET_OPTIONS[number]>>
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/TagSet.html b/docs/5.7/types/TagSet.html new file mode 100644 index 00000000000..81ac018b9d7 --- /dev/null +++ b/docs/5.7/types/TagSet.html @@ -0,0 +1,415 @@ +TagSet | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias TagSet

    +
    TagSet: {
        [key: string]: string;
    }
    +
    +

    Type declaration

    +
      +
    • +
      [key: string]: string
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/TopologyEvents.html b/docs/5.7/types/TopologyEvents.html new file mode 100644 index 00000000000..45adcddd389 --- /dev/null +++ b/docs/5.7/types/TopologyEvents.html @@ -0,0 +1,520 @@ +TopologyEvents | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias TopologyEvents

    +
    TopologyEvents: {
        close() => void;
        error(error) => void;
        serverClosed(event) => void;
        serverDescriptionChanged(event) => void;
        serverOpening(event) => void;
        timeout() => void;
        topologyClosed(event) => void;
        topologyDescriptionChanged(event) => void;
        topologyOpening(event) => void;
    } & Omit<ServerEvents, "connect"> & ConnectionPoolEvents & ConnectionEvents & EventEmitterWithState
    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/TopologyType.html b/docs/5.7/types/TopologyType.html new file mode 100644 index 00000000000..4ba2fc89b75 --- /dev/null +++ b/docs/5.7/types/TopologyType.html @@ -0,0 +1,411 @@ +TopologyType | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias TopologyType

    +
    TopologyType: typeof TopologyType[keyof typeof TopologyType]
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/UpdateFilter.html b/docs/5.7/types/UpdateFilter.html new file mode 100644 index 00000000000..22703dddbf5 --- /dev/null +++ b/docs/5.7/types/UpdateFilter.html @@ -0,0 +1,448 @@ +UpdateFilter | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias UpdateFilter<TSchema>

    +
    UpdateFilter<TSchema>: {
        $addToSet?: SetFields<TSchema>;
        $bit?: OnlyFieldsOfType<TSchema, NumericType | undefined, {
            and: IntegerType;
        } | {
            or: IntegerType;
        } | {
            xor: IntegerType;
        }>;
        $currentDate?: OnlyFieldsOfType<TSchema, Date | Timestamp, true | {
            $type: "date" | "timestamp";
        }>;
        $inc?: OnlyFieldsOfType<TSchema, NumericType | undefined>;
        $max?: MatchKeysAndValues<TSchema>;
        $min?: MatchKeysAndValues<TSchema>;
        $mul?: OnlyFieldsOfType<TSchema, NumericType | undefined>;
        $pop?: OnlyFieldsOfType<TSchema, ReadonlyArray<any>, 1 | -1>;
        $pull?: PullOperator<TSchema>;
        $pullAll?: PullAllOperator<TSchema>;
        $push?: PushOperator<TSchema>;
        $rename?: Record<string, string>;
        $set?: MatchKeysAndValues<TSchema>;
        $setOnInsert?: MatchKeysAndValues<TSchema>;
        $unset?: OnlyFieldsOfType<TSchema, any, "" | true | 1>;
    } & Document
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/W.html b/docs/5.7/types/W.html new file mode 100644 index 00000000000..f5d971390bd --- /dev/null +++ b/docs/5.7/types/W.html @@ -0,0 +1,410 @@ +W | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias W

    +
    W: number | "majority"
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/WithId.html b/docs/5.7/types/WithId.html new file mode 100644 index 00000000000..2b6dea45dab --- /dev/null +++ b/docs/5.7/types/WithId.html @@ -0,0 +1,422 @@ +WithId | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias WithId<TSchema>

    +
    WithId<TSchema>: EnhancedOmit<TSchema, "_id"> & {
        _id: InferIdType<TSchema>;
    }
    +

    Add an _id field to an object shaped type

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +

    Type declaration

    +
    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/WithSessionCallback.html b/docs/5.7/types/WithSessionCallback.html new file mode 100644 index 00000000000..ff805cc73a8 --- /dev/null +++ b/docs/5.7/types/WithSessionCallback.html @@ -0,0 +1,423 @@ +WithSessionCallback | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias WithSessionCallback

    +
    WithSessionCallback: ((session) => Promise<any>)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (session): Promise<any>
      • +
      • +
        +

        Parameters

        +
        +

        Returns Promise<any>

        +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/WithTransactionCallback.html b/docs/5.7/types/WithTransactionCallback.html new file mode 100644 index 00000000000..29a45f359f8 --- /dev/null +++ b/docs/5.7/types/WithTransactionCallback.html @@ -0,0 +1,428 @@ +WithTransactionCallback | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias WithTransactionCallback<T>

    +
    WithTransactionCallback<T>: ((session) => Promise<T>)
    +
    +

    Type Parameters

    +
      +
    • +

      T = void

    +
    +

    Type declaration

    +
      +
    • +
        +
      • (session): Promise<T>
      • +
      • +
        +

        Parameters

        +
        +

        Returns Promise<T>

        +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/5.7/types/WithoutId.html b/docs/5.7/types/WithoutId.html new file mode 100644 index 00000000000..e991f468ecb --- /dev/null +++ b/docs/5.7/types/WithoutId.html @@ -0,0 +1,417 @@ +WithoutId | mongodb
    +
    + +
    +
    +
    +
    + +

    Type alias WithoutId<TSchema>

    +
    WithoutId<TSchema>: Omit<TSchema, "_id">
    +

    Remove the _id field from an object shaped type

    +
    +
    +

    Type Parameters

    +
      +
    • +

      TSchema

    +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/Next/assets/search.js b/docs/Next/assets/search.js index 86728103619..f71d60dfd4b 100644 --- a/docs/Next/assets/search.js +++ b/docs/Next/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"rows\":[{\"kind\":8388608,\"name\":\"Binary\",\"url\":\"modules.html#Binary\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"BSONRegExp\",\"url\":\"modules.html#BSONRegExp\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"BSONSymbol\",\"url\":\"modules.html#BSONSymbol\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"BSONType\",\"url\":\"modules.html#BSONType\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Code\",\"url\":\"modules.html#Code\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"DBRef\",\"url\":\"modules.html#DBRef\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Decimal128\",\"url\":\"modules.html#Decimal128\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Double\",\"url\":\"modules.html#Double\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Int32\",\"url\":\"modules.html#Int32\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Long\",\"url\":\"modules.html#Long\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"MaxKey\",\"url\":\"modules.html#MaxKey\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"MinKey\",\"url\":\"modules.html#MinKey\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"ObjectId\",\"url\":\"modules.html#ObjectId\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Timestamp\",\"url\":\"modules.html#Timestamp\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AnyBulkWriteOperation\",\"url\":\"types/AnyBulkWriteOperation.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"BulkWriteOptions\",\"url\":\"interfaces/BulkWriteOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/BulkWriteOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"ordered\",\"url\":\"interfaces/BulkWriteOptions.html#ordered\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/BulkWriteOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/BulkWriteOptions.html#let\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/BulkWriteOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/BulkWriteOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/BulkWriteOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/BulkWriteOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/BulkWriteOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/BulkWriteOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/BulkWriteOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/BulkWriteOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/BulkWriteOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/BulkWriteOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/BulkWriteOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/BulkWriteOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/BulkWriteOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/BulkWriteOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/BulkWriteOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/BulkWriteOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":128,\"name\":\"MongoBulkWriteError\",\"url\":\"classes/MongoBulkWriteError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoBulkWriteError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"classes/MongoBulkWriteError.html#result\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"writeErrors\",\"url\":\"classes/MongoBulkWriteError.html#writeErrors\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"classes/MongoBulkWriteError.html#err\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoBulkWriteError.html#name\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"insertedCount\",\"url\":\"classes/MongoBulkWriteError.html#insertedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"matchedCount\",\"url\":\"classes/MongoBulkWriteError.html#matchedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"modifiedCount\",\"url\":\"classes/MongoBulkWriteError.html#modifiedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"deletedCount\",\"url\":\"classes/MongoBulkWriteError.html#deletedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"upsertedCount\",\"url\":\"classes/MongoBulkWriteError.html#upsertedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"insertedIds\",\"url\":\"classes/MongoBulkWriteError.html#insertedIds\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/MongoBulkWriteError.html#insertedIds.insertedIds-1.__type-2\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError.insertedIds.insertedIds\"},{\"kind\":262144,\"name\":\"upsertedIds\",\"url\":\"classes/MongoBulkWriteError.html#upsertedIds\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/MongoBulkWriteError.html#upsertedIds.upsertedIds-1.__type-3\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError.upsertedIds.upsertedIds\"},{\"kind\":1024,\"name\":\"codeName\",\"url\":\"classes/MongoBulkWriteError.html#codeName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"writeConcernError\",\"url\":\"classes/MongoBulkWriteError.html#writeConcernError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"classes/MongoBulkWriteError.html#errInfo\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"classes/MongoBulkWriteError.html#ok\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoBulkWriteError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoBulkWriteError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoBulkWriteError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoBulkWriteError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoBulkWriteError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoBulkWriteError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoBulkWriteError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoBulkWriteError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":128,\"name\":\"MongoAPIError\",\"url\":\"classes/MongoAPIError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoAPIError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoAPIError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoAPIError.html#name\",\"classes\":\"\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoAPIError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoAPIError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoAPIError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoAPIError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoAPIError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoAPIError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoAPIError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoAPIError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":128,\"name\":\"MongoAWSError\",\"url\":\"classes/MongoAWSError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoAWSError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoAWSError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoAWSError.html#name\",\"classes\":\"\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoAWSError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoAWSError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoAWSError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoAWSError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoAWSError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoAWSError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoAWSError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoAWSError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":128,\"name\":\"MongoAzureError\",\"url\":\"classes/MongoAzureError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoAzureError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoAzureError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoAzureError.html#name\",\"classes\":\"\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoAzureError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoAzureError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoAzureError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoAzureError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoAzureError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoAzureError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoAzureError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoAzureError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":128,\"name\":\"MongoBatchReExecutionError\",\"url\":\"classes/MongoBatchReExecutionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoBatchReExecutionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoBatchReExecutionError.html#name\",\"classes\":\"\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoBatchReExecutionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoBatchReExecutionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoBatchReExecutionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoBatchReExecutionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoBatchReExecutionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoBatchReExecutionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoBatchReExecutionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoBatchReExecutionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":128,\"name\":\"MongoChangeStreamError\",\"url\":\"classes/MongoChangeStreamError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoChangeStreamError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoChangeStreamError.html#name\",\"classes\":\"\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoChangeStreamError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoChangeStreamError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoChangeStreamError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoChangeStreamError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoChangeStreamError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoChangeStreamError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoChangeStreamError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoChangeStreamError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":128,\"name\":\"MongoCompatibilityError\",\"url\":\"classes/MongoCompatibilityError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCompatibilityError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCompatibilityError.html#name\",\"classes\":\"\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoCompatibilityError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoCompatibilityError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoCompatibilityError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoCompatibilityError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoCompatibilityError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoCompatibilityError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoCompatibilityError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoCompatibilityError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":128,\"name\":\"MongoCursorExhaustedError\",\"url\":\"classes/MongoCursorExhaustedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCursorExhaustedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCursorExhaustedError.html#name\",\"classes\":\"\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoCursorExhaustedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoCursorExhaustedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoCursorExhaustedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoCursorExhaustedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoCursorExhaustedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoCursorExhaustedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoCursorExhaustedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoCursorExhaustedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":128,\"name\":\"MongoCursorInUseError\",\"url\":\"classes/MongoCursorInUseError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCursorInUseError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCursorInUseError.html#name\",\"classes\":\"\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoCursorInUseError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoCursorInUseError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoCursorInUseError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoCursorInUseError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoCursorInUseError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoCursorInUseError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoCursorInUseError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoCursorInUseError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":128,\"name\":\"MongoDecompressionError\",\"url\":\"classes/MongoDecompressionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDecompressionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDecompressionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoDecompressionError.html#name\",\"classes\":\"\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoDecompressionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoDecompressionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoDecompressionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoDecompressionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoDecompressionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoDecompressionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoDecompressionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoDecompressionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":128,\"name\":\"MongoDriverError\",\"url\":\"classes/MongoDriverError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDriverError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDriverError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoDriverError.html#name\",\"classes\":\"\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoDriverError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoDriverError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoDriverError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoDriverError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoDriverError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoDriverError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoDriverError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoDriverError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":128,\"name\":\"MongoError\",\"url\":\"classes/MongoError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoError.html#code\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoError.html#topologyVersion\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoError.html#connectionGeneration\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoError.html#cause\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoError.html#name\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoError.html#errmsg\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoError.html#hasErrorLabel\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoError.html#addErrorLabel\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoError.html#errorLabels\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":128,\"name\":\"MongoExpiredSessionError\",\"url\":\"classes/MongoExpiredSessionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoExpiredSessionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoExpiredSessionError.html#name\",\"classes\":\"\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoExpiredSessionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoExpiredSessionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoExpiredSessionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoExpiredSessionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoExpiredSessionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoExpiredSessionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoExpiredSessionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoExpiredSessionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":128,\"name\":\"MongoGridFSChunkError\",\"url\":\"classes/MongoGridFSChunkError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoGridFSChunkError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoGridFSChunkError.html#name\",\"classes\":\"\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoGridFSChunkError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoGridFSChunkError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoGridFSChunkError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoGridFSChunkError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoGridFSChunkError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoGridFSChunkError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoGridFSChunkError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoGridFSChunkError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":128,\"name\":\"MongoGridFSStreamError\",\"url\":\"classes/MongoGridFSStreamError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoGridFSStreamError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoGridFSStreamError.html#name\",\"classes\":\"\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoGridFSStreamError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoGridFSStreamError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoGridFSStreamError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoGridFSStreamError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoGridFSStreamError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoGridFSStreamError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoGridFSStreamError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoGridFSStreamError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":128,\"name\":\"MongoInvalidArgumentError\",\"url\":\"classes/MongoInvalidArgumentError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoInvalidArgumentError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoInvalidArgumentError.html#name\",\"classes\":\"\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoInvalidArgumentError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoInvalidArgumentError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoInvalidArgumentError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoInvalidArgumentError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoInvalidArgumentError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoInvalidArgumentError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoInvalidArgumentError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoInvalidArgumentError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":128,\"name\":\"MongoKerberosError\",\"url\":\"classes/MongoKerberosError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoKerberosError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoKerberosError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoKerberosError.html#name\",\"classes\":\"\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoKerberosError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoKerberosError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoKerberosError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoKerberosError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoKerberosError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoKerberosError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoKerberosError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoKerberosError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":128,\"name\":\"MongoMissingCredentialsError\",\"url\":\"classes/MongoMissingCredentialsError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoMissingCredentialsError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoMissingCredentialsError.html#name\",\"classes\":\"\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoMissingCredentialsError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoMissingCredentialsError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoMissingCredentialsError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoMissingCredentialsError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoMissingCredentialsError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoMissingCredentialsError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoMissingCredentialsError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoMissingCredentialsError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":128,\"name\":\"MongoMissingDependencyError\",\"url\":\"classes/MongoMissingDependencyError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoMissingDependencyError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoMissingDependencyError.html#name\",\"classes\":\"\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoMissingDependencyError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoMissingDependencyError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoMissingDependencyError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoMissingDependencyError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoMissingDependencyError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoMissingDependencyError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoMissingDependencyError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoMissingDependencyError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":128,\"name\":\"MongoNetworkError\",\"url\":\"classes/MongoNetworkError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoNetworkError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoNetworkError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoNetworkError.html#name\",\"classes\":\"\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoNetworkError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoNetworkError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoNetworkError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoNetworkError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoNetworkError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoNetworkError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoNetworkError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoNetworkError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":128,\"name\":\"MongoNetworkTimeoutError\",\"url\":\"classes/MongoNetworkTimeoutError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoNetworkTimeoutError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoNetworkTimeoutError.html#name\",\"classes\":\"\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoNetworkTimeoutError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoNetworkTimeoutError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoNetworkTimeoutError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoNetworkTimeoutError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoNetworkTimeoutError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoNetworkTimeoutError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoNetworkTimeoutError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoNetworkTimeoutError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":128,\"name\":\"MongoNotConnectedError\",\"url\":\"classes/MongoNotConnectedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoNotConnectedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoNotConnectedError.html#name\",\"classes\":\"\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoNotConnectedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoNotConnectedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoNotConnectedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoNotConnectedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoNotConnectedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoNotConnectedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoNotConnectedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoNotConnectedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":128,\"name\":\"MongoParseError\",\"url\":\"classes/MongoParseError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoParseError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoParseError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoParseError.html#name\",\"classes\":\"\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoParseError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoParseError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoParseError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoParseError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoParseError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoParseError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoParseError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoParseError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":128,\"name\":\"MongoRuntimeError\",\"url\":\"classes/MongoRuntimeError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoRuntimeError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoRuntimeError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoRuntimeError.html#name\",\"classes\":\"\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoRuntimeError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoRuntimeError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoRuntimeError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoRuntimeError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoRuntimeError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoRuntimeError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoRuntimeError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoRuntimeError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":128,\"name\":\"MongoServerClosedError\",\"url\":\"classes/MongoServerClosedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoServerClosedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoServerClosedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoServerClosedError.html#name\",\"classes\":\"\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoServerClosedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoServerClosedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoServerClosedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoServerClosedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoServerClosedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoServerClosedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoServerClosedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoServerClosedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":128,\"name\":\"MongoServerError\",\"url\":\"classes/MongoServerError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoServerError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"codeName\",\"url\":\"classes/MongoServerError.html#codeName\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"writeConcernError\",\"url\":\"classes/MongoServerError.html#writeConcernError\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"classes/MongoServerError.html#errInfo\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"classes/MongoServerError.html#ok\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoServerError.html#name\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoServerError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoServerError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoServerError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoServerError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoServerError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoServerError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoServerError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoServerError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":128,\"name\":\"MongoServerSelectionError\",\"url\":\"classes/MongoServerSelectionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoServerSelectionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoServerSelectionError.html#name\",\"classes\":\"\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/MongoServerSelectionError.html#reason\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoServerSelectionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoServerSelectionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoServerSelectionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoServerSelectionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoServerSelectionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoServerSelectionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoServerSelectionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoServerSelectionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":128,\"name\":\"MongoSystemError\",\"url\":\"classes/MongoSystemError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoSystemError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/MongoSystemError.html#reason\",\"classes\":\"\",\"parent\":\"MongoSystemError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoSystemError.html#name\",\"classes\":\"\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoSystemError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoSystemError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoSystemError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoSystemError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoSystemError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoSystemError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoSystemError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoSystemError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":128,\"name\":\"MongoTailableCursorError\",\"url\":\"classes/MongoTailableCursorError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoTailableCursorError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoTailableCursorError.html#name\",\"classes\":\"\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoTailableCursorError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoTailableCursorError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoTailableCursorError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoTailableCursorError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoTailableCursorError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoTailableCursorError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoTailableCursorError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoTailableCursorError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":128,\"name\":\"MongoTopologyClosedError\",\"url\":\"classes/MongoTopologyClosedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoTopologyClosedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoTopologyClosedError.html#name\",\"classes\":\"\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoTopologyClosedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoTopologyClosedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoTopologyClosedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoTopologyClosedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoTopologyClosedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoTopologyClosedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoTopologyClosedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoTopologyClosedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":128,\"name\":\"MongoTransactionError\",\"url\":\"classes/MongoTransactionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoTransactionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoTransactionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoTransactionError.html#name\",\"classes\":\"\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoTransactionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoTransactionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoTransactionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoTransactionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoTransactionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoTransactionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoTransactionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoTransactionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":128,\"name\":\"MongoUnexpectedServerResponseError\",\"url\":\"classes/MongoUnexpectedServerResponseError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#name\",\"classes\":\"\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":128,\"name\":\"MongoWriteConcernError\",\"url\":\"classes/MongoWriteConcernError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoWriteConcernError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"classes/MongoWriteConcernError.html#result\",\"classes\":\"\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoWriteConcernError.html#name\",\"classes\":\"\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"codeName\",\"url\":\"classes/MongoWriteConcernError.html#codeName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"writeConcernError\",\"url\":\"classes/MongoWriteConcernError.html#writeConcernError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"classes/MongoWriteConcernError.html#errInfo\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"classes/MongoWriteConcernError.html#ok\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoWriteConcernError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoWriteConcernError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoWriteConcernError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoWriteConcernError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoWriteConcernError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoWriteConcernError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoWriteConcernError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoWriteConcernError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":128,\"name\":\"AbstractCursor\",\"url\":\"classes/AbstractCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/AbstractCursor.html#CLOSE\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/AbstractCursor.html#id\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/AbstractCursor.html#namespace\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/AbstractCursor.html#readPreference\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/AbstractCursor.html#readConcern\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/AbstractCursor.html#session\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/AbstractCursor.html#closed\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/AbstractCursor.html#killed\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/AbstractCursor.html#loadBalanced\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/AbstractCursor.html#bufferedCount\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/AbstractCursor.html#readBufferedDocuments\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/AbstractCursor.html#stream\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/AbstractCursor.html#hasNext\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/AbstractCursor.html#next\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/AbstractCursor.html#tryNext\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/AbstractCursor.html#forEach\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/AbstractCursor.html#close-1\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/AbstractCursor.html#toArray\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/AbstractCursor.html#addCursorFlag\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/AbstractCursor.html#map\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/AbstractCursor.html#withReadPreference\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/AbstractCursor.html#withReadConcern\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/AbstractCursor.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/AbstractCursor.html#batchSize\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/AbstractCursor.html#rewind\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/AbstractCursor.html#clone\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/AbstractCursor.html#_asyncIterator_\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/AbstractCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/AbstractCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/AbstractCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/AbstractCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/AbstractCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/AbstractCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/AbstractCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/AbstractCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/AbstractCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/AbstractCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/AbstractCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/AbstractCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/AbstractCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/AbstractCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/AbstractCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":128,\"name\":\"Admin\",\"url\":\"classes/Admin.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"command\",\"url\":\"classes/Admin.html#command\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"buildInfo\",\"url\":\"classes/Admin.html#buildInfo\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"serverInfo\",\"url\":\"classes/Admin.html#serverInfo\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"serverStatus\",\"url\":\"classes/Admin.html#serverStatus\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"ping\",\"url\":\"classes/Admin.html#ping\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"addUser\",\"url\":\"classes/Admin.html#addUser\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"removeUser\",\"url\":\"classes/Admin.html#removeUser\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"validateCollection\",\"url\":\"classes/Admin.html#validateCollection\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"listDatabases\",\"url\":\"classes/Admin.html#listDatabases\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"replSetGetStatus\",\"url\":\"classes/Admin.html#replSetGetStatus\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":128,\"name\":\"AggregationCursor\",\"url\":\"classes/AggregationCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/AggregationCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"pipeline\",\"url\":\"classes/AggregationCursor.html#pipeline\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/AggregationCursor.html#clone\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/AggregationCursor.html#map\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/AggregationCursor.html#explain\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"group\",\"url\":\"classes/AggregationCursor.html#group\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"limit\",\"url\":\"classes/AggregationCursor.html#limit\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"match\",\"url\":\"classes/AggregationCursor.html#match\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"out\",\"url\":\"classes/AggregationCursor.html#out\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"project\",\"url\":\"classes/AggregationCursor.html#project\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"lookup\",\"url\":\"classes/AggregationCursor.html#lookup\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"redact\",\"url\":\"classes/AggregationCursor.html#redact\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"skip\",\"url\":\"classes/AggregationCursor.html#skip\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"sort\",\"url\":\"classes/AggregationCursor.html#sort\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"unwind\",\"url\":\"classes/AggregationCursor.html#unwind\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"geoNear\",\"url\":\"classes/AggregationCursor.html#geoNear\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/AggregationCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/AggregationCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/AggregationCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/AggregationCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/AggregationCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/AggregationCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/AggregationCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/AggregationCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/AggregationCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/AggregationCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/AggregationCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/AggregationCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/AggregationCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/AggregationCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/AggregationCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/AggregationCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/AggregationCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/AggregationCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/AggregationCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/AggregationCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/AggregationCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/AggregationCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/AggregationCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/AggregationCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/AggregationCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/AggregationCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/AggregationCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/AggregationCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/AggregationCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/AggregationCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/AggregationCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/AggregationCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/AggregationCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/AggregationCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/AggregationCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/AggregationCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/AggregationCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/AggregationCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/AggregationCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":128,\"name\":\"CancellationToken\",\"url\":\"classes/CancellationToken.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/CancellationToken.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/CancellationToken.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/CancellationToken.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/CancellationToken.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/CancellationToken.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/CancellationToken.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/CancellationToken.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/CancellationToken.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/CancellationToken.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/CancellationToken.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/CancellationToken.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/CancellationToken.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/CancellationToken.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/CancellationToken.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/CancellationToken.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":128,\"name\":\"ChangeStream\",\"url\":\"classes/ChangeStream.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"RESPONSE\",\"url\":\"classes/ChangeStream.html#RESPONSE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"MORE\",\"url\":\"classes/ChangeStream.html#MORE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"INIT\",\"url\":\"classes/ChangeStream.html#INIT\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ChangeStream.html#CLOSE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"CHANGE\",\"url\":\"classes/ChangeStream.html#CHANGE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"END\",\"url\":\"classes/ChangeStream.html#END\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"ERROR\",\"url\":\"classes/ChangeStream.html#ERROR\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"RESUME_TOKEN_CHANGED\",\"url\":\"classes/ChangeStream.html#RESUME_TOKEN_CHANGED\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"pipeline\",\"url\":\"classes/ChangeStream.html#pipeline\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ChangeStream.html#options\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"parent\",\"url\":\"classes/ChangeStream.html#parent\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"namespace\",\"url\":\"classes/ChangeStream.html#namespace\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/ChangeStream.html#type\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"streamOptions\",\"url\":\"classes/ChangeStream.html#streamOptions\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":262144,\"name\":\"resumeToken\",\"url\":\"classes/ChangeStream.html#resumeToken\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ChangeStream.html#hasNext\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ChangeStream.html#next\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ChangeStream.html#tryNext\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ChangeStream.html#closed\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ChangeStream.html#close-1\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ChangeStream.html#stream\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ChangeStream.html#_asyncIterator_\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ChangeStream.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ChangeStream.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ChangeStream.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ChangeStream.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ChangeStream.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ChangeStream.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ChangeStream.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ChangeStream.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ChangeStream.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ChangeStream.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ChangeStream.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ChangeStream.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ChangeStream.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ChangeStream.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ChangeStream.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":128,\"name\":\"ClientSession\",\"url\":\"classes/ClientSession.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"hasEnded\",\"url\":\"classes/ClientSession.html#hasEnded\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"clientOptions\",\"url\":\"classes/ClientSession.html#clientOptions\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"supports\",\"url\":\"classes/ClientSession.html#supports\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/ClientSession.html#supports.__type\",\"classes\":\"\",\"parent\":\"ClientSession.supports\"},{\"kind\":1024,\"name\":\"causalConsistency\",\"url\":\"classes/ClientSession.html#supports.__type.causalConsistency\",\"classes\":\"\",\"parent\":\"ClientSession.supports.__type\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"classes/ClientSession.html#clusterTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"operationTime\",\"url\":\"classes/ClientSession.html#operationTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"explicit\",\"url\":\"classes/ClientSession.html#explicit\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"defaultTransactionOptions\",\"url\":\"classes/ClientSession.html#defaultTransactionOptions\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"transaction\",\"url\":\"classes/ClientSession.html#transaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ClientSession.html#id\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"serverSession\",\"url\":\"classes/ClientSession.html#serverSession\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"snapshotEnabled\",\"url\":\"classes/ClientSession.html#snapshotEnabled\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ClientSession.html#loadBalanced\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"isPinned\",\"url\":\"classes/ClientSession.html#isPinned\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"endSession\",\"url\":\"classes/ClientSession.html#endSession\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"advanceOperationTime\",\"url\":\"classes/ClientSession.html#advanceOperationTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"advanceClusterTime\",\"url\":\"classes/ClientSession.html#advanceClusterTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ClientSession.html#equals\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"incrementTransactionNumber\",\"url\":\"classes/ClientSession.html#incrementTransactionNumber\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"inTransaction\",\"url\":\"classes/ClientSession.html#inTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"startTransaction\",\"url\":\"classes/ClientSession.html#startTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"commitTransaction\",\"url\":\"classes/ClientSession.html#commitTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"abortTransaction\",\"url\":\"classes/ClientSession.html#abortTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"toBSON\",\"url\":\"classes/ClientSession.html#toBSON\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"withTransaction\",\"url\":\"classes/ClientSession.html#withTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ClientSession.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ClientSession.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ClientSession.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ClientSession.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ClientSession.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ClientSession.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ClientSession.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ClientSession.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ClientSession.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ClientSession.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ClientSession.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ClientSession.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ClientSession.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ClientSession.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ClientSession.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":128,\"name\":\"Collection\",\"url\":\"classes/Collection.html\",\"classes\":\"\"},{\"kind\":262144,\"name\":\"dbName\",\"url\":\"classes/Collection.html#dbName\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"collectionName\",\"url\":\"classes/Collection.html#collectionName\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/Collection.html#namespace\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/Collection.html#readConcern\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/Collection.html#readPreference\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/Collection.html#bsonOptions\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/Collection.html#writeConcern\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"hint\",\"url\":\"classes/Collection.html#hint\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"insertOne\",\"url\":\"classes/Collection.html#insertOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"insertMany\",\"url\":\"classes/Collection.html#insertMany\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"bulkWrite\",\"url\":\"classes/Collection.html#bulkWrite\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"updateOne\",\"url\":\"classes/Collection.html#updateOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"replaceOne\",\"url\":\"classes/Collection.html#replaceOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"updateMany\",\"url\":\"classes/Collection.html#updateMany\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"deleteOne\",\"url\":\"classes/Collection.html#deleteOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"deleteMany\",\"url\":\"classes/Collection.html#deleteMany\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"classes/Collection.html#rename\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/Collection.html#drop\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOne\",\"url\":\"classes/Collection.html#findOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/Collection.html#find\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"options\",\"url\":\"classes/Collection.html#options\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"isCapped\",\"url\":\"classes/Collection.html#isCapped\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createIndex\",\"url\":\"classes/Collection.html#createIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createIndexes\",\"url\":\"classes/Collection.html#createIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"dropIndex\",\"url\":\"classes/Collection.html#dropIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"dropIndexes\",\"url\":\"classes/Collection.html#dropIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"listIndexes\",\"url\":\"classes/Collection.html#listIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"indexExists\",\"url\":\"classes/Collection.html#indexExists\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"indexInformation\",\"url\":\"classes/Collection.html#indexInformation\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"estimatedDocumentCount\",\"url\":\"classes/Collection.html#estimatedDocumentCount\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"countDocuments\",\"url\":\"classes/Collection.html#countDocuments\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"distinct\",\"url\":\"classes/Collection.html#distinct\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"indexes\",\"url\":\"classes/Collection.html#indexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"stats\",\"url\":\"classes/Collection.html#stats\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOneAndDelete\",\"url\":\"classes/Collection.html#findOneAndDelete\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOneAndReplace\",\"url\":\"classes/Collection.html#findOneAndReplace\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOneAndUpdate\",\"url\":\"classes/Collection.html#findOneAndUpdate\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"aggregate\",\"url\":\"classes/Collection.html#aggregate\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/Collection.html#watch\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"initializeUnorderedBulkOp\",\"url\":\"classes/Collection.html#initializeUnorderedBulkOp\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"initializeOrderedBulkOp\",\"url\":\"classes/Collection.html#initializeOrderedBulkOp\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"classes/Collection.html#count\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"listSearchIndexes\",\"url\":\"classes/Collection.html#listSearchIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createSearchIndex\",\"url\":\"classes/Collection.html#createSearchIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createSearchIndexes\",\"url\":\"classes/Collection.html#createSearchIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"dropSearchIndex\",\"url\":\"classes/Collection.html#dropSearchIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"updateSearchIndex\",\"url\":\"classes/Collection.html#updateSearchIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":128,\"name\":\"Db\",\"url\":\"classes/Db.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"SYSTEM_NAMESPACE_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_NAMESPACE_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_INDEX_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_INDEX_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_PROFILE_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_PROFILE_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_USER_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_USER_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_COMMAND_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_COMMAND_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_JS_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_JS_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Db.html#constructor\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"databaseName\",\"url\":\"classes/Db.html#databaseName\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"options\",\"url\":\"classes/Db.html#options\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"secondaryOk\",\"url\":\"classes/Db.html#secondaryOk\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/Db.html#readConcern\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/Db.html#readPreference\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/Db.html#bsonOptions\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/Db.html#writeConcern\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/Db.html#namespace\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"createCollection\",\"url\":\"classes/Db.html#createCollection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"command\",\"url\":\"classes/Db.html#command\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"aggregate\",\"url\":\"classes/Db.html#aggregate\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"admin\",\"url\":\"classes/Db.html#admin\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"collection\",\"url\":\"classes/Db.html#collection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"stats\",\"url\":\"classes/Db.html#stats\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"listCollections\",\"url\":\"classes/Db.html#listCollections\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"renameCollection\",\"url\":\"classes/Db.html#renameCollection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"dropCollection\",\"url\":\"classes/Db.html#dropCollection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"dropDatabase\",\"url\":\"classes/Db.html#dropDatabase\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"collections\",\"url\":\"classes/Db.html#collections\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"createIndex\",\"url\":\"classes/Db.html#createIndex\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"addUser\",\"url\":\"classes/Db.html#addUser\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"removeUser\",\"url\":\"classes/Db.html#removeUser\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"setProfilingLevel\",\"url\":\"classes/Db.html#setProfilingLevel\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"profilingLevel\",\"url\":\"classes/Db.html#profilingLevel\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"indexInformation\",\"url\":\"classes/Db.html#indexInformation\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/Db.html#watch\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"runCursorCommand\",\"url\":\"classes/Db.html#runCursorCommand\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":128,\"name\":\"FindCursor\",\"url\":\"classes/FindCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/FindCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/FindCursor.html#clone\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/FindCursor.html#map\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"classes/FindCursor.html#count\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/FindCursor.html#explain\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"filter\",\"url\":\"classes/FindCursor.html#filter\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"hint\",\"url\":\"classes/FindCursor.html#hint\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"min\",\"url\":\"classes/FindCursor.html#min\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"max\",\"url\":\"classes/FindCursor.html#max\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"returnKey\",\"url\":\"classes/FindCursor.html#returnKey\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"showRecordId\",\"url\":\"classes/FindCursor.html#showRecordId\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"addQueryModifier\",\"url\":\"classes/FindCursor.html#addQueryModifier\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"comment\",\"url\":\"classes/FindCursor.html#comment\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"maxAwaitTimeMS\",\"url\":\"classes/FindCursor.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/FindCursor.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"project\",\"url\":\"classes/FindCursor.html#project\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"sort\",\"url\":\"classes/FindCursor.html#sort\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"allowDiskUse\",\"url\":\"classes/FindCursor.html#allowDiskUse\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"collation\",\"url\":\"classes/FindCursor.html#collation\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"limit\",\"url\":\"classes/FindCursor.html#limit\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"skip\",\"url\":\"classes/FindCursor.html#skip\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/FindCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/FindCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/FindCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/FindCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/FindCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/FindCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/FindCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/FindCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/FindCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/FindCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/FindCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/FindCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/FindCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/FindCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/FindCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/FindCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/FindCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/FindCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/FindCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/FindCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/FindCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/FindCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/FindCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/FindCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/FindCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/FindCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/FindCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/FindCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/FindCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/FindCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/FindCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/FindCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/FindCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/FindCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/FindCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/FindCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/FindCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/FindCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":128,\"name\":\"GridFSBucket\",\"url\":\"classes/GridFSBucket.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"INDEX\",\"url\":\"classes/GridFSBucket.html#INDEX\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GridFSBucket.html#constructor\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openUploadStream\",\"url\":\"classes/GridFSBucket.html#openUploadStream\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openUploadStreamWithId\",\"url\":\"classes/GridFSBucket.html#openUploadStreamWithId\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openDownloadStream\",\"url\":\"classes/GridFSBucket.html#openDownloadStream\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/GridFSBucket.html#delete\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/GridFSBucket.html#find\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openDownloadStreamByName\",\"url\":\"classes/GridFSBucket.html#openDownloadStreamByName\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"classes/GridFSBucket.html#rename\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/GridFSBucket.html#drop\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/GridFSBucket.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/GridFSBucket.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/GridFSBucket.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/GridFSBucket.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/GridFSBucket.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/GridFSBucket.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/GridFSBucket.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/GridFSBucket.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/GridFSBucket.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/GridFSBucket.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/GridFSBucket.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/GridFSBucket.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/GridFSBucket.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/GridFSBucket.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/GridFSBucket.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":128,\"name\":\"GridFSBucketReadStream\",\"url\":\"classes/GridFSBucketReadStream.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"ERROR\",\"url\":\"classes/GridFSBucketReadStream.html#ERROR\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":1024,\"name\":\"FILE\",\"url\":\"classes/GridFSBucketReadStream.html#FILE\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":1024,\"name\":\"DATA\",\"url\":\"classes/GridFSBucketReadStream.html#DATA\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":1024,\"name\":\"END\",\"url\":\"classes/GridFSBucketReadStream.html#END\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/GridFSBucketReadStream.html#CLOSE\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/GridFSBucketReadStream.html#start\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":2048,\"name\":\"end\",\"url\":\"classes/GridFSBucketReadStream.html#end-1\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":2048,\"name\":\"abort\",\"url\":\"classes/GridFSBucketReadStream.html#abort\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":128,\"name\":\"GridFSBucketWriteStream\",\"url\":\"classes/GridFSBucketWriteStream.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/GridFSBucketWriteStream.html#CLOSE\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"ERROR\",\"url\":\"classes/GridFSBucketWriteStream.html#ERROR\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"FINISH\",\"url\":\"classes/GridFSBucketWriteStream.html#FINISH\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"bucket\",\"url\":\"classes/GridFSBucketWriteStream.html#bucket\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"chunks\",\"url\":\"classes/GridFSBucketWriteStream.html#chunks\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"filename\",\"url\":\"classes/GridFSBucketWriteStream.html#filename\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"files\",\"url\":\"classes/GridFSBucketWriteStream.html#files\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/GridFSBucketWriteStream.html#options\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"done\",\"url\":\"classes/GridFSBucketWriteStream.html#done\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/GridFSBucketWriteStream.html#id\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"chunkSizeBytes\",\"url\":\"classes/GridFSBucketWriteStream.html#chunkSizeBytes\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"bufToStore\",\"url\":\"classes/GridFSBucketWriteStream.html#bufToStore\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"length\",\"url\":\"classes/GridFSBucketWriteStream.html#length\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"n\",\"url\":\"classes/GridFSBucketWriteStream.html#n\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"pos\",\"url\":\"classes/GridFSBucketWriteStream.html#pos\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"classes/GridFSBucketWriteStream.html#state\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state\"},{\"kind\":1024,\"name\":\"streamEnd\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.streamEnd\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"outstandingRequests\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.outstandingRequests\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"errored\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.errored-1\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"aborted\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.aborted\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"classes/GridFSBucketWriteStream.html#writeConcern\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":2048,\"name\":\"write\",\"url\":\"classes/GridFSBucketWriteStream.html#write\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":2048,\"name\":\"abort\",\"url\":\"classes/GridFSBucketWriteStream.html#abort\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":2048,\"name\":\"end\",\"url\":\"classes/GridFSBucketWriteStream.html#end\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":128,\"name\":\"ListCollectionsCursor\",\"url\":\"classes/ListCollectionsCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ListCollectionsCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ListCollectionsCursor.html#constructor\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":1024,\"name\":\"parent\",\"url\":\"classes/ListCollectionsCursor.html#parent\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"classes/ListCollectionsCursor.html#filter\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ListCollectionsCursor.html#options\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ListCollectionsCursor.html#clone\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ListCollectionsCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/ListCollectionsCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/ListCollectionsCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/ListCollectionsCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/ListCollectionsCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ListCollectionsCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/ListCollectionsCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ListCollectionsCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/ListCollectionsCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/ListCollectionsCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ListCollectionsCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ListCollectionsCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ListCollectionsCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ListCollectionsCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/ListCollectionsCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ListCollectionsCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/ListCollectionsCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/ListCollectionsCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/ListCollectionsCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/ListCollectionsCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/ListCollectionsCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/ListCollectionsCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/ListCollectionsCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/ListCollectionsCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ListCollectionsCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ListCollectionsCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ListCollectionsCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ListCollectionsCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ListCollectionsCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ListCollectionsCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ListCollectionsCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ListCollectionsCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ListCollectionsCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ListCollectionsCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ListCollectionsCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ListCollectionsCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ListCollectionsCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ListCollectionsCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ListCollectionsCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ListCollectionsCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":128,\"name\":\"ListIndexesCursor\",\"url\":\"classes/ListIndexesCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ListIndexesCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ListIndexesCursor.html#constructor\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":1024,\"name\":\"parent\",\"url\":\"classes/ListIndexesCursor.html#parent\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ListIndexesCursor.html#options\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ListIndexesCursor.html#clone\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ListIndexesCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/ListIndexesCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/ListIndexesCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/ListIndexesCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/ListIndexesCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ListIndexesCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/ListIndexesCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ListIndexesCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/ListIndexesCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/ListIndexesCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ListIndexesCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ListIndexesCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ListIndexesCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ListIndexesCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/ListIndexesCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ListIndexesCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/ListIndexesCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/ListIndexesCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/ListIndexesCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/ListIndexesCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/ListIndexesCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/ListIndexesCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/ListIndexesCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/ListIndexesCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ListIndexesCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ListIndexesCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ListIndexesCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ListIndexesCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ListIndexesCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ListIndexesCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ListIndexesCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ListIndexesCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ListIndexesCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ListIndexesCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ListIndexesCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ListIndexesCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ListIndexesCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ListIndexesCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ListIndexesCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ListIndexesCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":128,\"name\":\"MongoClient\",\"url\":\"classes/MongoClient.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/MongoClient.html#connect-2\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoClient.html#constructor\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"options\",\"url\":\"classes/MongoClient.html#options\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"serverApi\",\"url\":\"classes/MongoClient.html#serverApi\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"monitorCommands\",\"url\":\"classes/MongoClient.html#monitorCommands\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"autoEncrypter\",\"url\":\"classes/MongoClient.html#autoEncrypter\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/MongoClient.html#readConcern\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/MongoClient.html#writeConcern\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/MongoClient.html#readPreference\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/MongoClient.html#bsonOptions\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/MongoClient.html#connect\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/MongoClient.html#close\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"db\",\"url\":\"classes/MongoClient.html#db\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"startSession\",\"url\":\"classes/MongoClient.html#startSession\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"withSession\",\"url\":\"classes/MongoClient.html#withSession\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/MongoClient.html#watch\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/MongoClient.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/MongoClient.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/MongoClient.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/MongoClient.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/MongoClient.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/MongoClient.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/MongoClient.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/MongoClient.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/MongoClient.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/MongoClient.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/MongoClient.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/MongoClient.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/MongoClient.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/MongoClient.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/MongoClient.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":128,\"name\":\"OrderedBulkOperation\",\"url\":\"classes/OrderedBulkOperation.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"addToOperationsList\",\"url\":\"classes/OrderedBulkOperation.html#addToOperationsList\",\"classes\":\"\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":1024,\"name\":\"isOrdered\",\"url\":\"classes/OrderedBulkOperation.html#isOrdered\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":1024,\"name\":\"operationId\",\"url\":\"classes/OrderedBulkOperation.html#operationId\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"insert\",\"url\":\"classes/OrderedBulkOperation.html#insert\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/OrderedBulkOperation.html#find\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"classes/OrderedBulkOperation.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/OrderedBulkOperation.html#bsonOptions\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/OrderedBulkOperation.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/OrderedBulkOperation.html#batches\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/OrderedBulkOperation.html#execute\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":128,\"name\":\"RunCommandCursor\",\"url\":\"classes/RunCommandCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/RunCommandCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/RunCommandCursor.html#command\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":1024,\"name\":\"getMoreOptions\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type.comment\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions.__type\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type.maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type.batchSize\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions.__type\"},{\"kind\":2048,\"name\":\"setComment\",\"url\":\"classes/RunCommandCursor.html#setComment\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"setMaxTimeMS\",\"url\":\"classes/RunCommandCursor.html#setMaxTimeMS\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"setBatchSize\",\"url\":\"classes/RunCommandCursor.html#setBatchSize\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/RunCommandCursor.html#clone\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/RunCommandCursor.html#withReadConcern\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/RunCommandCursor.html#addCursorFlag\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/RunCommandCursor.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/RunCommandCursor.html#batchSize-1\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/RunCommandCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/RunCommandCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/RunCommandCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/RunCommandCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/RunCommandCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/RunCommandCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/RunCommandCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/RunCommandCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/RunCommandCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/RunCommandCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/RunCommandCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/RunCommandCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/RunCommandCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/RunCommandCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/RunCommandCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/RunCommandCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/RunCommandCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/RunCommandCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/RunCommandCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/RunCommandCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/RunCommandCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/RunCommandCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/RunCommandCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/RunCommandCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/RunCommandCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/RunCommandCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/RunCommandCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/RunCommandCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/RunCommandCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/RunCommandCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/RunCommandCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/RunCommandCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/RunCommandCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/RunCommandCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/RunCommandCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/RunCommandCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":128,\"name\":\"UnorderedBulkOperation\",\"url\":\"classes/UnorderedBulkOperation.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"handleWriteError\",\"url\":\"classes/UnorderedBulkOperation.html#handleWriteError\",\"classes\":\"\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"addToOperationsList\",\"url\":\"classes/UnorderedBulkOperation.html#addToOperationsList\",\"classes\":\"\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":1024,\"name\":\"isOrdered\",\"url\":\"classes/UnorderedBulkOperation.html#isOrdered\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":1024,\"name\":\"operationId\",\"url\":\"classes/UnorderedBulkOperation.html#operationId\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"insert\",\"url\":\"classes/UnorderedBulkOperation.html#insert\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/UnorderedBulkOperation.html#find\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"classes/UnorderedBulkOperation.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/UnorderedBulkOperation.html#bsonOptions\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/UnorderedBulkOperation.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/UnorderedBulkOperation.html#batches\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/UnorderedBulkOperation.html#execute\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":32,\"name\":\"BatchType\",\"url\":\"variables/BatchType-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BatchType\",\"url\":\"types/BatchType.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"GSSAPICanonicalizationValue\",\"url\":\"variables/GSSAPICanonicalizationValue-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"GSSAPICanonicalizationValue\",\"url\":\"types/GSSAPICanonicalizationValue.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"AuthMechanism\",\"url\":\"variables/AuthMechanism-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AuthMechanism\",\"url\":\"types/AuthMechanism.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"Compressor\",\"url\":\"variables/Compressor-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Compressor\",\"url\":\"types/Compressor.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"CURSOR_FLAGS\",\"url\":\"variables/CURSOR_FLAGS.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"AutoEncryptionLoggerLevel\",\"url\":\"variables/AutoEncryptionLoggerLevel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AutoEncryptionLoggerLevel\",\"url\":\"types/AutoEncryptionLoggerLevel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"MongoErrorLabel\",\"url\":\"variables/MongoErrorLabel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"MongoErrorLabel\",\"url\":\"types/MongoErrorLabel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ExplainVerbosity\",\"url\":\"variables/ExplainVerbosity-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ExplainVerbosity\",\"url\":\"types/ExplainVerbosity.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ServerApiVersion\",\"url\":\"variables/ServerApiVersion-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ServerApiVersion\",\"url\":\"types/ServerApiVersion.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ReturnDocument\",\"url\":\"variables/ReturnDocument-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ReturnDocument\",\"url\":\"types/ReturnDocument.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ProfilingLevel\",\"url\":\"variables/ProfilingLevel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProfilingLevel\",\"url\":\"types/ProfilingLevel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ReadConcernLevel\",\"url\":\"variables/ReadConcernLevel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ReadConcernLevel\",\"url\":\"types/ReadConcernLevel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ReadPreferenceMode\",\"url\":\"variables/ReadPreferenceMode-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ReadPreferenceMode\",\"url\":\"types/ReadPreferenceMode.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ServerType\",\"url\":\"variables/ServerType-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ServerType\",\"url\":\"types/ServerType.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"TopologyType\",\"url\":\"variables/TopologyType-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TopologyType\",\"url\":\"types/TopologyType.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ReadConcern\",\"url\":\"classes/ReadConcern.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromOptions\",\"url\":\"classes/ReadConcern.html#fromOptions\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"MAJORITY\",\"url\":\"classes/ReadConcern.html#MAJORITY\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"AVAILABLE\",\"url\":\"classes/ReadConcern.html#AVAILABLE\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"LINEARIZABLE\",\"url\":\"classes/ReadConcern.html#LINEARIZABLE\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"SNAPSHOT\",\"url\":\"classes/ReadConcern.html#SNAPSHOT\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReadConcern.html#constructor\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"classes/ReadConcern.html#level\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/ReadConcern.html#toJSON\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":128,\"name\":\"ReadPreference\",\"url\":\"classes/ReadPreference.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"PRIMARY\",\"url\":\"classes/ReadPreference.html#PRIMARY\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"PRIMARY_PREFERRED\",\"url\":\"classes/ReadPreference.html#PRIMARY_PREFERRED\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"SECONDARY\",\"url\":\"classes/ReadPreference.html#SECONDARY\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"SECONDARY_PREFERRED\",\"url\":\"classes/ReadPreference.html#SECONDARY_PREFERRED\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"NEAREST\",\"url\":\"classes/ReadPreference.html#NEAREST\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"primary\",\"url\":\"classes/ReadPreference.html#primary-1\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"primaryPreferred\",\"url\":\"classes/ReadPreference.html#primaryPreferred\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"secondary\",\"url\":\"classes/ReadPreference.html#secondary-1\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"secondaryPreferred\",\"url\":\"classes/ReadPreference.html#secondaryPreferred\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"nearest\",\"url\":\"classes/ReadPreference.html#nearest-1\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/ReadPreference.html#fromString\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"fromOptions\",\"url\":\"classes/ReadPreference.html#fromOptions\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"translate\",\"url\":\"classes/ReadPreference.html#translate\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"isValid\",\"url\":\"classes/ReadPreference.html#isValid-2\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReadPreference.html#constructor\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"mode\",\"url\":\"classes/ReadPreference.html#mode\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/ReadPreference.html#tags\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"classes/ReadPreference.html#hedge\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"classes/ReadPreference.html#maxStalenessSeconds\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/ReadPreference.html#minWireVersion\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":262144,\"name\":\"preference\",\"url\":\"classes/ReadPreference.html#preference\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"isValid\",\"url\":\"classes/ReadPreference.html#isValid\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"secondaryOk\",\"url\":\"classes/ReadPreference.html#secondaryOk\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ReadPreference.html#equals\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/ReadPreference.html#toJSON\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":128,\"name\":\"WriteConcern\",\"url\":\"classes/WriteConcern.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromOptions\",\"url\":\"classes/WriteConcern.html#fromOptions\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WriteConcern.html#constructor\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"w\",\"url\":\"classes/WriteConcern.html#w\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"wtimeout\",\"url\":\"classes/WriteConcern.html#wtimeout\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"j\",\"url\":\"classes/WriteConcern.html#j\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"fsync\",\"url\":\"classes/WriteConcern.html#fsync\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":128,\"name\":\"CommandFailedEvent\",\"url\":\"classes/CommandFailedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CommandFailedEvent.html#address\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/CommandFailedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"requestId\",\"url\":\"classes/CommandFailedEvent.html#requestId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/CommandFailedEvent.html#duration\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"commandName\",\"url\":\"classes/CommandFailedEvent.html#commandName\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"failure\",\"url\":\"classes/CommandFailedEvent.html#failure\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/CommandFailedEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":262144,\"name\":\"hasServiceId\",\"url\":\"classes/CommandFailedEvent.html#hasServiceId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":128,\"name\":\"CommandStartedEvent\",\"url\":\"classes/CommandStartedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"commandObj\",\"url\":\"classes/CommandStartedEvent.html#commandObj\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"requestId\",\"url\":\"classes/CommandStartedEvent.html#requestId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"databaseName\",\"url\":\"classes/CommandStartedEvent.html#databaseName\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"commandName\",\"url\":\"classes/CommandStartedEvent.html#commandName\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/CommandStartedEvent.html#command\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CommandStartedEvent.html#address\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/CommandStartedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/CommandStartedEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":262144,\"name\":\"hasServiceId\",\"url\":\"classes/CommandStartedEvent.html#hasServiceId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":128,\"name\":\"CommandSucceededEvent\",\"url\":\"classes/CommandSucceededEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CommandSucceededEvent.html#address\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/CommandSucceededEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"requestId\",\"url\":\"classes/CommandSucceededEvent.html#requestId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/CommandSucceededEvent.html#duration\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"commandName\",\"url\":\"classes/CommandSucceededEvent.html#commandName\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"reply\",\"url\":\"classes/CommandSucceededEvent.html#reply\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/CommandSucceededEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":262144,\"name\":\"hasServiceId\",\"url\":\"classes/CommandSucceededEvent.html#hasServiceId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckedInEvent\",\"url\":\"classes/ConnectionCheckedInEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionCheckedInEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionCheckedInEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckedInEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedInEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckedInEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedInEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckedOutEvent\",\"url\":\"classes/ConnectionCheckedOutEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionCheckedOutEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionCheckedOutEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckedOutEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedOutEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckedOutEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedOutEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckOutFailedEvent\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html#reason\",\"classes\":\"\",\"parent\":\"ConnectionCheckOutFailedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutFailedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutFailedEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckOutStartedEvent\",\"url\":\"classes/ConnectionCheckOutStartedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckOutStartedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutStartedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckOutStartedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutStartedEvent\"},{\"kind\":128,\"name\":\"ConnectionClosedEvent\",\"url\":\"classes/ConnectionClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionClosedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/ConnectionClosedEvent.html#reason\",\"classes\":\"\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/ConnectionClosedEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionClosedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionClosedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":128,\"name\":\"ConnectionCreatedEvent\",\"url\":\"classes/ConnectionCreatedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionCreatedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionCreatedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCreatedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCreatedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCreatedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCreatedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolClearedEvent\",\"url\":\"classes/ConnectionPoolClearedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"interruptInUseConnections\",\"url\":\"classes/ConnectionPoolClearedEvent.html#interruptInUseConnections\",\"classes\":\"\",\"parent\":\"ConnectionPoolClearedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolClearedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClearedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolClearedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClearedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolClosedEvent\",\"url\":\"classes/ConnectionPoolClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolClosedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClosedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolClosedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClosedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolCreatedEvent\",\"url\":\"classes/ConnectionPoolCreatedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ConnectionPoolCreatedEvent.html#options\",\"classes\":\"\",\"parent\":\"ConnectionPoolCreatedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolCreatedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolCreatedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolCreatedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolCreatedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolMonitoringEvent\",\"url\":\"classes/ConnectionPoolMonitoringEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolMonitoringEvent.html#time\",\"classes\":\"\",\"parent\":\"ConnectionPoolMonitoringEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolMonitoringEvent.html#address\",\"classes\":\"\",\"parent\":\"ConnectionPoolMonitoringEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolReadyEvent\",\"url\":\"classes/ConnectionPoolReadyEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolReadyEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolReadyEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolReadyEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolReadyEvent\"},{\"kind\":128,\"name\":\"ConnectionReadyEvent\",\"url\":\"classes/ConnectionReadyEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionReadyEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionReadyEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionReadyEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionReadyEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionReadyEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionReadyEvent\"},{\"kind\":128,\"name\":\"ServerClosedEvent\",\"url\":\"classes/ServerClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/ServerClosedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"ServerClosedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerClosedEvent.html#address\",\"classes\":\"\",\"parent\":\"ServerClosedEvent\"},{\"kind\":128,\"name\":\"ServerDescriptionChangedEvent\",\"url\":\"classes/ServerDescriptionChangedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/ServerDescriptionChangedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerDescriptionChangedEvent.html#address\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"previousDescription\",\"url\":\"classes/ServerDescriptionChangedEvent.html#previousDescription\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"newDescription\",\"url\":\"classes/ServerDescriptionChangedEvent.html#newDescription\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":128,\"name\":\"ServerHeartbeatFailedEvent\",\"url\":\"classes/ServerHeartbeatFailedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ServerHeartbeatFailedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ServerHeartbeatFailedEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/ServerHeartbeatFailedEvent.html#duration\",\"classes\":\"\",\"parent\":\"ServerHeartbeatFailedEvent\"},{\"kind\":1024,\"name\":\"failure\",\"url\":\"classes/ServerHeartbeatFailedEvent.html#failure\",\"classes\":\"\",\"parent\":\"ServerHeartbeatFailedEvent\"},{\"kind\":128,\"name\":\"ServerHeartbeatStartedEvent\",\"url\":\"classes/ServerHeartbeatStartedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ServerHeartbeatStartedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ServerHeartbeatStartedEvent\"},{\"kind\":128,\"name\":\"ServerHeartbeatSucceededEvent\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ServerHeartbeatSucceededEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html#duration\",\"classes\":\"\",\"parent\":\"ServerHeartbeatSucceededEvent\"},{\"kind\":1024,\"name\":\"reply\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html#reply\",\"classes\":\"\",\"parent\":\"ServerHeartbeatSucceededEvent\"},{\"kind\":128,\"name\":\"ServerOpeningEvent\",\"url\":\"classes/ServerOpeningEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/ServerOpeningEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"ServerOpeningEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerOpeningEvent.html#address\",\"classes\":\"\",\"parent\":\"ServerOpeningEvent\"},{\"kind\":128,\"name\":\"TopologyClosedEvent\",\"url\":\"classes/TopologyClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/TopologyClosedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"TopologyClosedEvent\"},{\"kind\":128,\"name\":\"TopologyDescriptionChangedEvent\",\"url\":\"classes/TopologyDescriptionChangedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/TopologyDescriptionChangedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"TopologyDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"previousDescription\",\"url\":\"classes/TopologyDescriptionChangedEvent.html#previousDescription\",\"classes\":\"\",\"parent\":\"TopologyDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"newDescription\",\"url\":\"classes/TopologyDescriptionChangedEvent.html#newDescription\",\"classes\":\"\",\"parent\":\"TopologyDescriptionChangedEvent\"},{\"kind\":128,\"name\":\"TopologyOpeningEvent\",\"url\":\"classes/TopologyOpeningEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/TopologyOpeningEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"TopologyOpeningEvent\"},{\"kind\":256,\"name\":\"BSONSerializeOptions\",\"url\":\"interfaces/BSONSerializeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/BSONSerializeOptions.html#raw\",\"classes\":\"\",\"parent\":\"BSONSerializeOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/BSONSerializeOptions.html#enableUtf8Validation\",\"classes\":\"\",\"parent\":\"BSONSerializeOptions\"},{\"kind\":8388608,\"name\":\"Document\",\"url\":\"modules.html#Document\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"deserialize\",\"url\":\"modules.html#deserialize\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"serialize\",\"url\":\"modules.html#serialize\",\"classes\":\"\"},{\"kind\":256,\"name\":\"BulkWriteOperationError\",\"url\":\"interfaces/BulkWriteOperationError.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"interfaces/BulkWriteOperationError.html#index\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/BulkWriteOperationError.html#code\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"interfaces/BulkWriteOperationError.html#errmsg\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"interfaces/BulkWriteOperationError.html#errInfo\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"op\",\"url\":\"interfaces/BulkWriteOperationError.html#op\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":128,\"name\":\"BulkWriteResult\",\"url\":\"classes/BulkWriteResult.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"generateIdMap\",\"url\":\"classes/BulkWriteResult.html#generateIdMap\",\"classes\":\"tsd-is-private\",\"parent\":\"BulkWriteResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/BulkWriteResult.html#generateIdMap.generateIdMap-1.__type-2\",\"classes\":\"\",\"parent\":\"BulkWriteResult.generateIdMap.generateIdMap\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"classes/BulkWriteResult.html#result\",\"classes\":\"tsd-is-private\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"insertedCount\",\"url\":\"classes/BulkWriteResult.html#insertedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"matchedCount\",\"url\":\"classes/BulkWriteResult.html#matchedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"modifiedCount\",\"url\":\"classes/BulkWriteResult.html#modifiedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"deletedCount\",\"url\":\"classes/BulkWriteResult.html#deletedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"upsertedCount\",\"url\":\"classes/BulkWriteResult.html#upsertedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"upsertedIds\",\"url\":\"classes/BulkWriteResult.html#upsertedIds\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/BulkWriteResult.html#upsertedIds.__type-1\",\"classes\":\"\",\"parent\":\"BulkWriteResult.upsertedIds\"},{\"kind\":1024,\"name\":\"insertedIds\",\"url\":\"classes/BulkWriteResult.html#insertedIds\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/BulkWriteResult.html#insertedIds.__type\",\"classes\":\"\",\"parent\":\"BulkWriteResult.insertedIds\"},{\"kind\":262144,\"name\":\"ok\",\"url\":\"classes/BulkWriteResult.html#ok\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":262144,\"name\":\"nInserted\",\"url\":\"classes/BulkWriteResult.html#nInserted\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":262144,\"name\":\"nUpserted\",\"url\":\"classes/BulkWriteResult.html#nUpserted\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":262144,\"name\":\"nMatched\",\"url\":\"classes/BulkWriteResult.html#nMatched\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":262144,\"name\":\"nModified\",\"url\":\"classes/BulkWriteResult.html#nModified\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":262144,\"name\":\"nRemoved\",\"url\":\"classes/BulkWriteResult.html#nRemoved\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getInsertedIds\",\"url\":\"classes/BulkWriteResult.html#getInsertedIds\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getUpsertedIds\",\"url\":\"classes/BulkWriteResult.html#getUpsertedIds\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getUpsertedIdAt\",\"url\":\"classes/BulkWriteResult.html#getUpsertedIdAt\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getRawResponse\",\"url\":\"classes/BulkWriteResult.html#getRawResponse\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"hasWriteErrors\",\"url\":\"classes/BulkWriteResult.html#hasWriteErrors\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteErrorCount\",\"url\":\"classes/BulkWriteResult.html#getWriteErrorCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteErrorAt\",\"url\":\"classes/BulkWriteResult.html#getWriteErrorAt\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteErrors\",\"url\":\"classes/BulkWriteResult.html#getWriteErrors\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteConcernError\",\"url\":\"classes/BulkWriteResult.html#getWriteConcernError\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/BulkWriteResult.html#toString\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"isOk\",\"url\":\"classes/BulkWriteResult.html#isOk\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":256,\"name\":\"DeleteManyModel\",\"url\":\"interfaces/DeleteManyModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/DeleteManyModel.html#filter\",\"classes\":\"\",\"parent\":\"DeleteManyModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteManyModel.html#collation\",\"classes\":\"\",\"parent\":\"DeleteManyModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteManyModel.html#hint\",\"classes\":\"\",\"parent\":\"DeleteManyModel\"},{\"kind\":256,\"name\":\"DeleteOneModel\",\"url\":\"interfaces/DeleteOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/DeleteOneModel.html#filter\",\"classes\":\"\",\"parent\":\"DeleteOneModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteOneModel.html#collation\",\"classes\":\"\",\"parent\":\"DeleteOneModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteOneModel.html#hint\",\"classes\":\"\",\"parent\":\"DeleteOneModel\"},{\"kind\":256,\"name\":\"InsertOneModel\",\"url\":\"interfaces/InsertOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"document\",\"url\":\"interfaces/InsertOneModel.html#document\",\"classes\":\"\",\"parent\":\"InsertOneModel\"},{\"kind\":256,\"name\":\"ReplaceOneModel\",\"url\":\"interfaces/ReplaceOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/ReplaceOneModel.html#filter\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"replacement\",\"url\":\"interfaces/ReplaceOneModel.html#replacement\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ReplaceOneModel.html#collation\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/ReplaceOneModel.html#hint\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/ReplaceOneModel.html#upsert\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":256,\"name\":\"UpdateManyModel\",\"url\":\"interfaces/UpdateManyModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/UpdateManyModel.html#filter\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/UpdateManyModel.html#update\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateManyModel.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateManyModel.html#collation\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateManyModel.html#hint\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateManyModel.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":256,\"name\":\"UpdateOneModel\",\"url\":\"interfaces/UpdateOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/UpdateOneModel.html#filter\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/UpdateOneModel.html#update\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateOneModel.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateOneModel.html#collation\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateOneModel.html#hint\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateOneModel.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":128,\"name\":\"WriteConcernError\",\"url\":\"classes/WriteConcernError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WriteConcernError.html#constructor\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":262144,\"name\":\"code\",\"url\":\"classes/WriteConcernError.html#code\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/WriteConcernError.html#errmsg\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":262144,\"name\":\"errInfo\",\"url\":\"classes/WriteConcernError.html#errInfo\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/WriteConcernError.html#toJSON\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/WriteConcernError.html#toString\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":128,\"name\":\"WriteError\",\"url\":\"classes/WriteError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WriteError.html#constructor\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"classes/WriteError.html#err\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"code\",\"url\":\"classes/WriteError.html#code\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"index\",\"url\":\"classes/WriteError.html#index\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/WriteError.html#errmsg\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"errInfo\",\"url\":\"classes/WriteError.html#errInfo\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":2048,\"name\":\"getOperation\",\"url\":\"classes/WriteError.html#getOperation\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/WriteError.html#toJSON\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.code-2\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.index-2\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.errmsg-2\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"op\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.op\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/WriteError.html#toString\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":128,\"name\":\"Batch\",\"url\":\"classes/Batch.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Batch.html#constructor\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"originalZeroIndex\",\"url\":\"classes/Batch.html#originalZeroIndex\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"currentIndex\",\"url\":\"classes/Batch.html#currentIndex\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"originalIndexes\",\"url\":\"classes/Batch.html#originalIndexes\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"batchType\",\"url\":\"classes/Batch.html#batchType\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"operations\",\"url\":\"classes/Batch.html#operations\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"classes/Batch.html#size\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"sizeBytes\",\"url\":\"classes/Batch.html#sizeBytes\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":128,\"name\":\"BulkOperationBase\",\"url\":\"classes/BulkOperationBase.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"isOrdered\",\"url\":\"classes/BulkOperationBase.html#isOrdered\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":1024,\"name\":\"operationId\",\"url\":\"classes/BulkOperationBase.html#operationId\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"insert\",\"url\":\"classes/BulkOperationBase.html#insert\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/BulkOperationBase.html#find\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"classes/BulkOperationBase.html#raw\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/BulkOperationBase.html#bsonOptions\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/BulkOperationBase.html#writeConcern\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/BulkOperationBase.html#batches\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/BulkOperationBase.html#execute\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"addToOperationsList\",\"url\":\"classes/BulkOperationBase.html#addToOperationsList\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":128,\"name\":\"FindOperators\",\"url\":\"classes/FindOperators.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bulkOperation\",\"url\":\"classes/FindOperators.html#bulkOperation\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/FindOperators.html#update\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"updateOne\",\"url\":\"classes/FindOperators.html#updateOne\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"replaceOne\",\"url\":\"classes/FindOperators.html#replaceOne\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"deleteOne\",\"url\":\"classes/FindOperators.html#deleteOne\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/FindOperators.html#delete\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"upsert\",\"url\":\"classes/FindOperators.html#upsert\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"collation\",\"url\":\"classes/FindOperators.html#collation\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"arrayFilters\",\"url\":\"classes/FindOperators.html#arrayFilters\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"hint\",\"url\":\"classes/FindOperators.html#hint\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":256,\"name\":\"WriteConcernErrorData\",\"url\":\"interfaces/WriteConcernErrorData.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/WriteConcernErrorData.html#code\",\"classes\":\"\",\"parent\":\"WriteConcernErrorData\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"interfaces/WriteConcernErrorData.html#errmsg\",\"classes\":\"\",\"parent\":\"WriteConcernErrorData\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"interfaces/WriteConcernErrorData.html#errInfo\",\"classes\":\"\",\"parent\":\"WriteConcernErrorData\"},{\"kind\":256,\"name\":\"ChangeStreamCollModDocument\",\"url\":\"interfaces/ChangeStreamCollModDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":256,\"name\":\"ChangeStreamCreateDocument\",\"url\":\"interfaces/ChangeStreamCreateDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":256,\"name\":\"ChangeStreamCreateIndexDocument\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":256,\"name\":\"ChangeStreamDeleteDocument\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument.documentKey.__type\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":4194304,\"name\":\"ChangeStreamDocument\",\"url\":\"types/ChangeStreamDocument.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentCollectionUUID\",\"url\":\"interfaces/ChangeStreamDocumentCollectionUUID.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDocumentCollectionUUID.html#collectionUUID\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCollectionUUID\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentCommon\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#_id\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#clusterTime\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#txnNumber\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#lsid\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentKey\",\"url\":\"interfaces/ChangeStreamDocumentKey.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamDocumentKey.html#documentKey\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentKey\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamDocumentKey.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentKey.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDocumentKey.html#documentKey.__type._id\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentKey.documentKey.__type\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentOperationDescription\",\"url\":\"interfaces/ChangeStreamDocumentOperationDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamDocumentOperationDescription.html#operationDescription\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentOperationDescription\"},{\"kind\":256,\"name\":\"ChangeStreamDropDatabaseDocument\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#ns.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument.ns\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#ns.__type.db\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument.ns.__type\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":256,\"name\":\"ChangeStreamDropDocument\",\"url\":\"interfaces/ChangeStreamDropDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDropDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamDropDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDropDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDropDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDropDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDropDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDropDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":256,\"name\":\"ChangeStreamDropIndexDocument\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":4194304,\"name\":\"ChangeStreamEvents\",\"url\":\"types/ChangeStreamEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ChangeStreamInsertDocument\",\"url\":\"interfaces/ChangeStreamInsertDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument.documentKey.__type\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":256,\"name\":\"ChangeStreamInvalidateDocument\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":256,\"name\":\"ChangeStreamNameSpace\",\"url\":\"interfaces/ChangeStreamNameSpace.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/ChangeStreamNameSpace.html#db\",\"classes\":\"\",\"parent\":\"ChangeStreamNameSpace\"},{\"kind\":1024,\"name\":\"coll\",\"url\":\"interfaces/ChangeStreamNameSpace.html#coll\",\"classes\":\"\",\"parent\":\"ChangeStreamNameSpace\"},{\"kind\":256,\"name\":\"ChangeStreamOptions\",\"url\":\"interfaces/ChangeStreamOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamOptions.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamOptions.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/ChangeStreamOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"resumeAfter\",\"url\":\"interfaces/ChangeStreamOptions.html#resumeAfter\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"startAfter\",\"url\":\"interfaces/ChangeStreamOptions.html#startAfter\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"startAtOperationTime\",\"url\":\"interfaces/ChangeStreamOptions.html#startAtOperationTime\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ChangeStreamOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"showExpandedEvents\",\"url\":\"interfaces/ChangeStreamOptions.html#showExpandedEvents\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ChangeStreamOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ChangeStreamOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ChangeStreamOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ChangeStreamOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ChangeStreamOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ChangeStreamOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ChangeStreamOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/ChangeStreamOptions.html#cursor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ChangeStreamOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ChangeStreamOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ChangeStreamOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ChangeStreamOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ChangeStreamOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ChangeStreamOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ChangeStreamOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ChangeStreamOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/ChangeStreamOptions.html#hint\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/ChangeStreamOptions.html#allowDiskUse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/ChangeStreamOptions.html#bypassDocumentValidation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/ChangeStreamOptions.html#let\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/ChangeStreamOptions.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":256,\"name\":\"ChangeStreamRefineCollectionShardKeyDocument\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":256,\"name\":\"ChangeStreamRenameDocument\",\"url\":\"interfaces/ChangeStreamRenameDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument.to\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to.__type.db\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument.to.__type\"},{\"kind\":1024,\"name\":\"coll\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to.__type.coll\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument.to.__type\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":256,\"name\":\"ChangeStreamReplaceDocument\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument.documentKey.__type\"},{\"kind\":256,\"name\":\"ChangeStreamReshardCollectionDocument\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":256,\"name\":\"ChangeStreamShardCollectionDocument\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":256,\"name\":\"ChangeStreamUpdateDocument\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"updateDescription\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#updateDescription\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument.documentKey.__type\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":4194304,\"name\":\"OperationTime\",\"url\":\"types/OperationTime.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ResumeOptions\",\"url\":\"interfaces/ResumeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"startAtOperationTime\",\"url\":\"interfaces/ResumeOptions.html#startAtOperationTime\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ResumeOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/ResumeOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ResumeOptions.html#collation\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ResumeOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"resumeAfter\",\"url\":\"interfaces/ResumeOptions.html#resumeAfter\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"startAfter\",\"url\":\"interfaces/ResumeOptions.html#startAfter\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ResumeOptions.html#fullDocument\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":4194304,\"name\":\"ResumeToken\",\"url\":\"types/ResumeToken.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"UpdateDescription\",\"url\":\"interfaces/UpdateDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"updatedFields\",\"url\":\"interfaces/UpdateDescription.html#updatedFields\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":1024,\"name\":\"removedFields\",\"url\":\"interfaces/UpdateDescription.html#removedFields\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":1024,\"name\":\"truncatedArrays\",\"url\":\"interfaces/UpdateDescription.html#truncatedArrays\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":1024,\"name\":\"disambiguatedPaths\",\"url\":\"interfaces/UpdateDescription.html#disambiguatedPaths\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":256,\"name\":\"AuthMechanismProperties\",\"url\":\"interfaces/AuthMechanismProperties.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"SERVICE_HOST\",\"url\":\"interfaces/AuthMechanismProperties.html#SERVICE_HOST\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"SERVICE_NAME\",\"url\":\"interfaces/AuthMechanismProperties.html#SERVICE_NAME\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"SERVICE_REALM\",\"url\":\"interfaces/AuthMechanismProperties.html#SERVICE_REALM\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"CANONICALIZE_HOST_NAME\",\"url\":\"interfaces/AuthMechanismProperties.html#CANONICALIZE_HOST_NAME\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"AWS_SESSION_TOKEN\",\"url\":\"interfaces/AuthMechanismProperties.html#AWS_SESSION_TOKEN\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"REQUEST_TOKEN_CALLBACK\",\"url\":\"interfaces/AuthMechanismProperties.html#REQUEST_TOKEN_CALLBACK\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"REFRESH_TOKEN_CALLBACK\",\"url\":\"interfaces/AuthMechanismProperties.html#REFRESH_TOKEN_CALLBACK\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"PROVIDER_NAME\",\"url\":\"interfaces/AuthMechanismProperties.html#PROVIDER_NAME\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"ALLOWED_HOSTS\",\"url\":\"interfaces/AuthMechanismProperties.html#ALLOWED_HOSTS\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"TOKEN_AUDIENCE\",\"url\":\"interfaces/AuthMechanismProperties.html#TOKEN_AUDIENCE\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":128,\"name\":\"MongoCredentials\",\"url\":\"classes/MongoCredentials.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"merge\",\"url\":\"classes/MongoCredentials.html#merge\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCredentials.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"classes/MongoCredentials.html#username\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"classes/MongoCredentials.html#password\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"source\",\"url\":\"classes/MongoCredentials.html#source\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"mechanism\",\"url\":\"classes/MongoCredentials.html#mechanism\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"mechanismProperties\",\"url\":\"classes/MongoCredentials.html#mechanismProperties\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/MongoCredentials.html#equals\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":2048,\"name\":\"resolveAuthMechanism\",\"url\":\"classes/MongoCredentials.html#resolveAuthMechanism\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":2048,\"name\":\"validate\",\"url\":\"classes/MongoCredentials.html#validate\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":256,\"name\":\"MongoCredentialsOptions\",\"url\":\"interfaces/MongoCredentialsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/MongoCredentialsOptions.html#username\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/MongoCredentialsOptions.html#password\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"source\",\"url\":\"interfaces/MongoCredentialsOptions.html#source\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/MongoCredentialsOptions.html#db\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"mechanism\",\"url\":\"interfaces/MongoCredentialsOptions.html#mechanism\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"mechanismProperties\",\"url\":\"interfaces/MongoCredentialsOptions.html#mechanismProperties\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":256,\"name\":\"IdPServerInfo\",\"url\":\"interfaces/IdPServerInfo.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"issuer\",\"url\":\"interfaces/IdPServerInfo.html#issuer\",\"classes\":\"\",\"parent\":\"IdPServerInfo\"},{\"kind\":1024,\"name\":\"clientId\",\"url\":\"interfaces/IdPServerInfo.html#clientId\",\"classes\":\"\",\"parent\":\"IdPServerInfo\"},{\"kind\":1024,\"name\":\"requestScopes\",\"url\":\"interfaces/IdPServerInfo.html#requestScopes\",\"classes\":\"\",\"parent\":\"IdPServerInfo\"},{\"kind\":256,\"name\":\"IdPServerResponse\",\"url\":\"interfaces/IdPServerResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"accessToken\",\"url\":\"interfaces/IdPServerResponse.html#accessToken\",\"classes\":\"\",\"parent\":\"IdPServerResponse\"},{\"kind\":1024,\"name\":\"expiresInSeconds\",\"url\":\"interfaces/IdPServerResponse.html#expiresInSeconds\",\"classes\":\"\",\"parent\":\"IdPServerResponse\"},{\"kind\":1024,\"name\":\"refreshToken\",\"url\":\"interfaces/IdPServerResponse.html#refreshToken\",\"classes\":\"\",\"parent\":\"IdPServerResponse\"},{\"kind\":256,\"name\":\"OIDCCallbackContext\",\"url\":\"interfaces/OIDCCallbackContext.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"refreshToken\",\"url\":\"interfaces/OIDCCallbackContext.html#refreshToken\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":1024,\"name\":\"timeoutSeconds\",\"url\":\"interfaces/OIDCCallbackContext.html#timeoutSeconds\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":1024,\"name\":\"timeoutContext\",\"url\":\"interfaces/OIDCCallbackContext.html#timeoutContext\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/OIDCCallbackContext.html#version\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":4194304,\"name\":\"OIDCRefreshFunction\",\"url\":\"types/OIDCRefreshFunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/OIDCRefreshFunction.html#__type\",\"classes\":\"\",\"parent\":\"OIDCRefreshFunction\"},{\"kind\":4194304,\"name\":\"OIDCRequestFunction\",\"url\":\"types/OIDCRequestFunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/OIDCRequestFunction.html#__type\",\"classes\":\"\",\"parent\":\"OIDCRequestFunction\"},{\"kind\":32,\"name\":\"LEGAL_TCP_SOCKET_OPTIONS\",\"url\":\"variables/LEGAL_TCP_SOCKET_OPTIONS.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"LEGAL_TLS_SOCKET_OPTIONS\",\"url\":\"variables/LEGAL_TLS_SOCKET_OPTIONS.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Stream\",\"url\":\"types/Stream.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ConnectionEvents\",\"url\":\"types/ConnectionEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ConnectionEvents.html#__type\",\"classes\":\"\",\"parent\":\"ConnectionEvents\"},{\"kind\":2048,\"name\":\"commandStarted\",\"url\":\"types/ConnectionEvents.html#__type.commandStarted\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"commandSucceeded\",\"url\":\"types/ConnectionEvents.html#__type.commandSucceeded\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"commandFailed\",\"url\":\"types/ConnectionEvents.html#__type.commandFailed\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"clusterTimeReceived\",\"url\":\"types/ConnectionEvents.html#__type.clusterTimeReceived\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"types/ConnectionEvents.html#__type.close\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"message\",\"url\":\"types/ConnectionEvents.html#__type.message\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"pinned\",\"url\":\"types/ConnectionEvents.html#__type.pinned\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"unpinned\",\"url\":\"types/ConnectionEvents.html#__type.unpinned\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":256,\"name\":\"ConnectionOptions\",\"url\":\"interfaces/ConnectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ConnectionOptions.html#id\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"generation\",\"url\":\"interfaces/ConnectionOptions.html#generation\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"hostAddress\",\"url\":\"interfaces/ConnectionOptions.html#hostAddress\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"autoEncrypter\",\"url\":\"interfaces/ConnectionOptions.html#autoEncrypter\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/ConnectionOptions.html#serverApi\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/ConnectionOptions.html#monitorCommands\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/ConnectionOptions.html#credentials\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/ConnectionOptions.html#connectTimeoutMS\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/ConnectionOptions.html#tls\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"keepAlive\",\"url\":\"interfaces/ConnectionOptions.html#keepAlive\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"keepAliveInitialDelay\",\"url\":\"interfaces/ConnectionOptions.html#keepAliveInitialDelay\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/ConnectionOptions.html#noDelay\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/ConnectionOptions.html#socketTimeoutMS\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"cancellationToken\",\"url\":\"interfaces/ConnectionOptions.html#cancellationToken\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/ConnectionOptions.html#metadata\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/ConnectionOptions.html#compressors\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/ConnectionOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/ConnectionOptions.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/ConnectionOptions.html#proxyHost\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/ConnectionOptions.html#proxyPort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/ConnectionOptions.html#proxyUsername\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/ConnectionOptions.html#proxyPassword\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":256,\"name\":\"ProxyOptions\",\"url\":\"interfaces/ProxyOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/ProxyOptions.html#proxyHost\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/ProxyOptions.html#proxyPort\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/ProxyOptions.html#proxyUsername\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/ProxyOptions.html#proxyPassword\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":256,\"name\":\"CloseOptions\",\"url\":\"interfaces/CloseOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"interfaces/CloseOptions.html#force\",\"classes\":\"\",\"parent\":\"CloseOptions\"},{\"kind\":4194304,\"name\":\"ConnectionPoolEvents\",\"url\":\"types/ConnectionPoolEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ConnectionPoolOptions\",\"url\":\"interfaces/ConnectionPoolOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"maxPoolSize\",\"url\":\"interfaces/ConnectionPoolOptions.html#maxPoolSize\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"minPoolSize\",\"url\":\"interfaces/ConnectionPoolOptions.html#minPoolSize\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"maxConnecting\",\"url\":\"interfaces/ConnectionPoolOptions.html#maxConnecting\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"maxIdleTimeMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#maxIdleTimeMS\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"waitQueueTimeoutMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#waitQueueTimeoutMS\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/ConnectionPoolOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/ConnectionPoolOptions.html#credentials\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"hostAddress\",\"url\":\"interfaces/ConnectionPoolOptions.html#hostAddress\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyHost\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyPort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyUsername\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyPassword\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/ConnectionPoolOptions.html#tls\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#connectTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#socketTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/ConnectionPoolOptions.html#compressors\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/ConnectionPoolOptions.html#noDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"keepAlive\",\"url\":\"interfaces/ConnectionPoolOptions.html#keepAlive\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"keepAliveInitialDelay\",\"url\":\"interfaces/ConnectionPoolOptions.html#keepAliveInitialDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/ConnectionPoolOptions.html#monitorCommands\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/ConnectionPoolOptions.html#serverApi\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"cancellationToken\",\"url\":\"interfaces/ConnectionPoolOptions.html#cancellationToken\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"autoEncrypter\",\"url\":\"interfaces/ConnectionPoolOptions.html#autoEncrypter\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/ConnectionPoolOptions.html#metadata\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/ConnectionPoolOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":256,\"name\":\"ClientMetadata\",\"url\":\"interfaces/ClientMetadata.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"driver\",\"url\":\"interfaces/ClientMetadata.html#driver\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#driver.__type-1\",\"classes\":\"\",\"parent\":\"ClientMetadata.driver\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#driver.__type-1.name-1\",\"classes\":\"\",\"parent\":\"ClientMetadata.driver.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ClientMetadata.html#driver.__type-1.version\",\"classes\":\"\",\"parent\":\"ClientMetadata.driver.__type\"},{\"kind\":1024,\"name\":\"os\",\"url\":\"interfaces/ClientMetadata.html#os\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3\",\"classes\":\"\",\"parent\":\"ClientMetadata.os\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.type\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.name-3\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"architecture\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.architecture\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.version-1\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"interfaces/ClientMetadata.html#platform\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":1024,\"name\":\"application\",\"url\":\"interfaces/ClientMetadata.html#application\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#application.__type\",\"classes\":\"\",\"parent\":\"ClientMetadata.application\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#application.__type.name\",\"classes\":\"\",\"parent\":\"ClientMetadata.application.__type\"},{\"kind\":1024,\"name\":\"env\",\"url\":\"interfaces/ClientMetadata.html#env\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2\",\"classes\":\"\",\"parent\":\"ClientMetadata.env\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.name-2\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"timeout_sec\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.timeout_sec\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"memory_mb\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.memory_mb\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"region\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.region\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.url\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":256,\"name\":\"ClientMetadataOptions\",\"url\":\"interfaces/ClientMetadataOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"driverInfo\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type.name\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type.version\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo.__type\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type.platform\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo.__type\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/ClientMetadataOptions.html#appName\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions\"},{\"kind\":128,\"name\":\"StreamDescription\",\"url\":\"classes/StreamDescription.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StreamDescription.html#constructor\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/StreamDescription.html#address\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/StreamDescription.html#type\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/StreamDescription.html#minWireVersion\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxWireVersion\",\"url\":\"classes/StreamDescription.html#maxWireVersion\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxBsonObjectSize\",\"url\":\"classes/StreamDescription.html#maxBsonObjectSize\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxMessageSizeBytes\",\"url\":\"classes/StreamDescription.html#maxMessageSizeBytes\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxWriteBatchSize\",\"url\":\"classes/StreamDescription.html#maxWriteBatchSize\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"classes/StreamDescription.html#compressors\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"compressor\",\"url\":\"classes/StreamDescription.html#compressor\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"classes/StreamDescription.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"classes/StreamDescription.html#loadBalanced\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"__nodejs_mock_server__\",\"url\":\"classes/StreamDescription.html#__nodejs_mock_server__\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"zlibCompressionLevel\",\"url\":\"classes/StreamDescription.html#zlibCompressionLevel\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":2048,\"name\":\"receiveResponse\",\"url\":\"classes/StreamDescription.html#receiveResponse\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":256,\"name\":\"StreamDescriptionOptions\",\"url\":\"interfaces/StreamDescriptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/StreamDescriptionOptions.html#compressors\",\"classes\":\"\",\"parent\":\"StreamDescriptionOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/StreamDescriptionOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"StreamDescriptionOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/StreamDescriptionOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"StreamDescriptionOptions\"},{\"kind\":4194304,\"name\":\"CompressorName\",\"url\":\"types/CompressorName.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CollectionOptions\",\"url\":\"interfaces/CollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CollectionOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CollectionOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollectionOptions\"},{\"kind\":256,\"name\":\"ModifyResult\",\"url\":\"interfaces/ModifyResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ModifyResult.html#value\",\"classes\":\"\",\"parent\":\"ModifyResult\"},{\"kind\":1024,\"name\":\"lastErrorObject\",\"url\":\"interfaces/ModifyResult.html#lastErrorObject\",\"classes\":\"\",\"parent\":\"ModifyResult\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"interfaces/ModifyResult.html#ok\",\"classes\":\"\",\"parent\":\"ModifyResult\"},{\"kind\":32,\"name\":\"MONGO_CLIENT_EVENTS\",\"url\":\"variables/MONGO_CLIENT_EVENTS.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AbstractCursorEvents\",\"url\":\"types/AbstractCursorEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AbstractCursorEvents.html#__type\",\"classes\":\"\",\"parent\":\"AbstractCursorEvents\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"types/AbstractCursorEvents.html#__type.close\",\"classes\":\"\",\"parent\":\"AbstractCursorEvents.__type\"},{\"kind\":256,\"name\":\"AbstractCursorOptions\",\"url\":\"interfaces/AbstractCursorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AbstractCursorOptions.html#session\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AbstractCursorOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AbstractCursorOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AbstractCursorOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AbstractCursorOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/AbstractCursorOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AbstractCursorOptions.html#comment\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"tailable\",\"url\":\"interfaces/AbstractCursorOptions.html#tailable\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"awaitData\",\"url\":\"interfaces/AbstractCursorOptions.html#awaitData\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"noCursorTimeout\",\"url\":\"interfaces/AbstractCursorOptions.html#noCursorTimeout\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AbstractCursorOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AbstractCursorOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":4194304,\"name\":\"CursorFlag\",\"url\":\"types/CursorFlag.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CursorStreamOptions\",\"url\":\"interfaces/CursorStreamOptions.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"transform\",\"url\":\"interfaces/CursorStreamOptions.html#transform\",\"classes\":\"\",\"parent\":\"CursorStreamOptions\"},{\"kind\":256,\"name\":\"AggregationCursorOptions\",\"url\":\"interfaces/AggregationCursorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AggregationCursorOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AggregationCursorOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AggregationCursorOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AggregationCursorOptions.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AggregationCursorOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/AggregationCursorOptions.html#maxAwaitTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AggregationCursorOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"tailable\",\"url\":\"interfaces/AggregationCursorOptions.html#tailable\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"awaitData\",\"url\":\"interfaces/AggregationCursorOptions.html#awaitData\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"noCursorTimeout\",\"url\":\"interfaces/AggregationCursorOptions.html#noCursorTimeout\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AggregationCursorOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AggregationCursorOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/AggregationCursorOptions.html#allowDiskUse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/AggregationCursorOptions.html#bypassDocumentValidation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/AggregationCursorOptions.html#cursor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/AggregationCursorOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/AggregationCursorOptions.html#hint\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/AggregationCursorOptions.html#let\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/AggregationCursorOptions.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/AggregationCursorOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/AggregationCursorOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/AggregationCursorOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/AggregationCursorOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/AggregationCursorOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/AggregationCursorOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/AggregationCursorOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/AggregationCursorOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":128,\"name\":\"ListSearchIndexesCursor\",\"url\":\"classes/ListSearchIndexesCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ListSearchIndexesCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"pipeline\",\"url\":\"classes/ListSearchIndexesCursor.html#pipeline\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ListSearchIndexesCursor.html#clone\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/ListSearchIndexesCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/ListSearchIndexesCursor.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"group\",\"url\":\"classes/ListSearchIndexesCursor.html#group\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"limit\",\"url\":\"classes/ListSearchIndexesCursor.html#limit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"match\",\"url\":\"classes/ListSearchIndexesCursor.html#match\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"out\",\"url\":\"classes/ListSearchIndexesCursor.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"project\",\"url\":\"classes/ListSearchIndexesCursor.html#project\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"lookup\",\"url\":\"classes/ListSearchIndexesCursor.html#lookup\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"redact\",\"url\":\"classes/ListSearchIndexesCursor.html#redact\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"skip\",\"url\":\"classes/ListSearchIndexesCursor.html#skip\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"sort\",\"url\":\"classes/ListSearchIndexesCursor.html#sort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"unwind\",\"url\":\"classes/ListSearchIndexesCursor.html#unwind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"geoNear\",\"url\":\"classes/ListSearchIndexesCursor.html#geoNear\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ListSearchIndexesCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/ListSearchIndexesCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/ListSearchIndexesCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/ListSearchIndexesCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/ListSearchIndexesCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ListSearchIndexesCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/ListSearchIndexesCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ListSearchIndexesCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/ListSearchIndexesCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/ListSearchIndexesCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ListSearchIndexesCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ListSearchIndexesCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ListSearchIndexesCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ListSearchIndexesCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/ListSearchIndexesCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ListSearchIndexesCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/ListSearchIndexesCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/ListSearchIndexesCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/ListSearchIndexesCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/ListSearchIndexesCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/ListSearchIndexesCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/ListSearchIndexesCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/ListSearchIndexesCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ListSearchIndexesCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ListSearchIndexesCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ListSearchIndexesCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ListSearchIndexesCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ListSearchIndexesCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ListSearchIndexesCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ListSearchIndexesCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ListSearchIndexesCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ListSearchIndexesCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ListSearchIndexesCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ListSearchIndexesCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ListSearchIndexesCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":4194304,\"name\":\"ListSearchIndexesOptions\",\"url\":\"types/ListSearchIndexesOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RunCursorCommandOptions\",\"url\":\"types/RunCursorCommandOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"DbOptions\",\"url\":\"interfaces/DbOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"authSource\",\"url\":\"interfaces/DbOptions.html#authSource\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/DbOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DbOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/DbOptions.html#pkFactory\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DbOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DbOptions.html#retryWrites\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DbOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DbOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DbOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbOptions\"},{\"kind\":256,\"name\":\"AutoEncrypter\",\"url\":\"interfaces/AutoEncrypter.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"interfaces/AutoEncrypter.html#init\",\"classes\":\"\",\"parent\":\"AutoEncrypter\"},{\"kind\":2048,\"name\":\"teardown\",\"url\":\"interfaces/AutoEncrypter.html#teardown\",\"classes\":\"\",\"parent\":\"AutoEncrypter\"},{\"kind\":2048,\"name\":\"encrypt\",\"url\":\"interfaces/AutoEncrypter.html#encrypt\",\"classes\":\"\",\"parent\":\"AutoEncrypter\"},{\"kind\":2048,\"name\":\"decrypt\",\"url\":\"interfaces/AutoEncrypter.html#decrypt\",\"classes\":\"\",\"parent\":\"AutoEncrypter\"},{\"kind\":1024,\"name\":\"cryptSharedLibVersionInfo\",\"url\":\"interfaces/AutoEncrypter.html#cryptSharedLibVersionInfo\",\"classes\":\"\",\"parent\":\"AutoEncrypter\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"interfaces/AutoEncrypter.html#constructor\",\"classes\":\"\",\"parent\":\"AutoEncrypter\"},{\"kind\":256,\"name\":\"AutoEncryptionOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"keyVaultClient\",\"url\":\"interfaces/AutoEncryptionOptions.html#keyVaultClient\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"keyVaultNamespace\",\"url\":\"interfaces/AutoEncryptionOptions.html#keyVaultNamespace\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"kmsProviders\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders\"},{\"kind\":1024,\"name\":\"aws\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.aws\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":1024,\"name\":\"local\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.local\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.local.__type-3\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.local\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.local.__type-3.key\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.local.__type\"},{\"kind\":1024,\"name\":\"azure\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.azure\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":1024,\"name\":\"gcp\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.gcp\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":1024,\"name\":\"kmip\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.kmip\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.kmip.__type-2\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.kmip\"},{\"kind\":1024,\"name\":\"endpoint\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.kmip.__type-2.endpoint\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.kmip.__type\"},{\"kind\":1024,\"name\":\"schemaMap\",\"url\":\"interfaces/AutoEncryptionOptions.html#schemaMap\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"encryptedFieldsMap\",\"url\":\"interfaces/AutoEncryptionOptions.html#encryptedFieldsMap\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"bypassAutoEncryption\",\"url\":\"interfaces/AutoEncryptionOptions.html#bypassAutoEncryption\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"bypassQueryAnalysis\",\"url\":\"interfaces/AutoEncryptionOptions.html#bypassQueryAnalysis\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/AutoEncryptionOptions.html#options\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#options.__type-4\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.options\"},{\"kind\":1024,\"name\":\"logger\",\"url\":\"interfaces/AutoEncryptionOptions.html#options.__type-4.logger\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.options.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#options.__type-4.logger.__type-5\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.options.__type.logger\"},{\"kind\":1024,\"name\":\"extraOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions\"},{\"kind\":1024,\"name\":\"mongocryptdURI\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdURI\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"mongocryptdBypassSpawn\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdBypassSpawn\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"mongocryptdSpawnPath\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdSpawnPath\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"mongocryptdSpawnArgs\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdSpawnArgs\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"cryptSharedLibPath\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.cryptSharedLibPath\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"cryptSharedLibRequired\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.cryptSharedLibRequired\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"proxyOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html#proxyOptions\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"tlsOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions.__type-7\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.tlsOptions\"},{\"kind\":1024,\"name\":\"aws\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions.__type-7.aws-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.tlsOptions.__type\"},{\"kind\":1024,\"name\":\"local\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions.__type-7.local-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.tlsOptions.__type\"},{\"kind\":1024,\"name\":\"azure\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions.__type-7.azure-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.tlsOptions.__type\"},{\"kind\":1024,\"name\":\"gcp\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions.__type-7.gcp-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.tlsOptions.__type\"},{\"kind\":1024,\"name\":\"kmip\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions.__type-7.kmip-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.tlsOptions.__type\"},{\"kind\":256,\"name\":\"AutoEncryptionTlsOptions\",\"url\":\"interfaces/AutoEncryptionTlsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFile\",\"url\":\"interfaces/AutoEncryptionTlsOptions.html#tlsCertificateKeyFile\",\"classes\":\"\",\"parent\":\"AutoEncryptionTlsOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFilePassword\",\"url\":\"interfaces/AutoEncryptionTlsOptions.html#tlsCertificateKeyFilePassword\",\"classes\":\"\",\"parent\":\"AutoEncryptionTlsOptions\"},{\"kind\":1024,\"name\":\"tlsCAFile\",\"url\":\"interfaces/AutoEncryptionTlsOptions.html#tlsCAFile\",\"classes\":\"\",\"parent\":\"AutoEncryptionTlsOptions\"},{\"kind\":4194304,\"name\":\"AnyError\",\"url\":\"types/AnyError.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ErrorDescription\",\"url\":\"interfaces/ErrorDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/ErrorDescription.html#message\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"interfaces/ErrorDescription.html#errmsg\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"$err\",\"url\":\"interfaces/ErrorDescription.html#_err\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"errorLabels\",\"url\":\"interfaces/ErrorDescription.html#errorLabels\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"interfaces/ErrorDescription.html#errInfo\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":256,\"name\":\"MongoNetworkErrorOptions\",\"url\":\"interfaces/MongoNetworkErrorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"beforeHandshake\",\"url\":\"interfaces/MongoNetworkErrorOptions.html#beforeHandshake\",\"classes\":\"\",\"parent\":\"MongoNetworkErrorOptions\"},{\"kind\":256,\"name\":\"ExplainOptions\",\"url\":\"interfaces/ExplainOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ExplainOptions.html#explain\",\"classes\":\"\",\"parent\":\"ExplainOptions\"},{\"kind\":4194304,\"name\":\"ExplainVerbosityLike\",\"url\":\"types/ExplainVerbosityLike.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"GridFSBucketReadStreamOptions\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#sort\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#skip\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#start\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":1024,\"name\":\"end\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#end\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":256,\"name\":\"GridFSBucketReadStreamOptionsWithRevision\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"revision\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#revision\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#sort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#skip\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#start\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"end\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#end\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":256,\"name\":\"GridFSFile\",\"url\":\"interfaces/GridFSFile.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/GridFSFile.html#_id\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/GridFSFile.html#length\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"chunkSize\",\"url\":\"interfaces/GridFSFile.html#chunkSize\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"filename\",\"url\":\"interfaces/GridFSFile.html#filename\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"contentType\",\"url\":\"interfaces/GridFSFile.html#contentType\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"aliases\",\"url\":\"interfaces/GridFSFile.html#aliases\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/GridFSFile.html#metadata\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"uploadDate\",\"url\":\"interfaces/GridFSFile.html#uploadDate\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":4194304,\"name\":\"GridFSBucketEvents\",\"url\":\"types/GridFSBucketEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/GridFSBucketEvents.html#__type\",\"classes\":\"\",\"parent\":\"GridFSBucketEvents\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"types/GridFSBucketEvents.html#__type.index\",\"classes\":\"\",\"parent\":\"GridFSBucketEvents.__type\"},{\"kind\":256,\"name\":\"GridFSBucketOptions\",\"url\":\"interfaces/GridFSBucketOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bucketName\",\"url\":\"interfaces/GridFSBucketOptions.html#bucketName\",\"classes\":\"\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":1024,\"name\":\"chunkSizeBytes\",\"url\":\"interfaces/GridFSBucketOptions.html#chunkSizeBytes\",\"classes\":\"\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/GridFSBucketOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/GridFSBucketOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":256,\"name\":\"GridFSBucketWriteStreamOptions\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"chunkSizeBytes\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#chunkSizeBytes\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#id\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#metadata\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"contentType\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#contentType\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"aliases\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#aliases\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":256,\"name\":\"GridFSChunk\",\"url\":\"interfaces/GridFSChunk.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/GridFSChunk.html#_id\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":1024,\"name\":\"files_id\",\"url\":\"interfaces/GridFSChunk.html#files_id\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":1024,\"name\":\"n\",\"url\":\"interfaces/GridFSChunk.html#n\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/GridFSChunk.html#data\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":256,\"name\":\"Auth\",\"url\":\"interfaces/Auth.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/Auth.html#username\",\"classes\":\"\",\"parent\":\"Auth\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/Auth.html#password\",\"classes\":\"\",\"parent\":\"Auth\"},{\"kind\":256,\"name\":\"DriverInfo\",\"url\":\"interfaces/DriverInfo.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/DriverInfo.html#name\",\"classes\":\"\",\"parent\":\"DriverInfo\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/DriverInfo.html#version\",\"classes\":\"\",\"parent\":\"DriverInfo\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"interfaces/DriverInfo.html#platform\",\"classes\":\"\",\"parent\":\"DriverInfo\"},{\"kind\":4194304,\"name\":\"MongoClientEvents\",\"url\":\"types/MongoClientEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"MongoClientOptions\",\"url\":\"interfaces/MongoClientOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"replicaSet\",\"url\":\"interfaces/MongoClientOptions.html#replicaSet\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/MongoClientOptions.html#tls\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"ssl\",\"url\":\"interfaces/MongoClientOptions.html#ssl\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateFile\",\"url\":\"interfaces/MongoClientOptions.html#tlsCertificateFile\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFile\",\"url\":\"interfaces/MongoClientOptions.html#tlsCertificateKeyFile\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFilePassword\",\"url\":\"interfaces/MongoClientOptions.html#tlsCertificateKeyFilePassword\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCAFile\",\"url\":\"interfaces/MongoClientOptions.html#tlsCAFile\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidCertificates\",\"url\":\"interfaces/MongoClientOptions.html#tlsAllowInvalidCertificates\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidHostnames\",\"url\":\"interfaces/MongoClientOptions.html#tlsAllowInvalidHostnames\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsInsecure\",\"url\":\"interfaces/MongoClientOptions.html#tlsInsecure\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#connectTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#socketTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/MongoClientOptions.html#compressors\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"zlibCompressionLevel\",\"url\":\"interfaces/MongoClientOptions.html#zlibCompressionLevel\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"srvMaxHosts\",\"url\":\"interfaces/MongoClientOptions.html#srvMaxHosts\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"srvServiceName\",\"url\":\"interfaces/MongoClientOptions.html#srvServiceName\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxPoolSize\",\"url\":\"interfaces/MongoClientOptions.html#maxPoolSize\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"minPoolSize\",\"url\":\"interfaces/MongoClientOptions.html#minPoolSize\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxConnecting\",\"url\":\"interfaces/MongoClientOptions.html#maxConnecting\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxIdleTimeMS\",\"url\":\"interfaces/MongoClientOptions.html#maxIdleTimeMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"waitQueueTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#waitQueueTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/MongoClientOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readConcernLevel\",\"url\":\"interfaces/MongoClientOptions.html#readConcernLevel\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/MongoClientOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/MongoClientOptions.html#maxStalenessSeconds\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readPreferenceTags\",\"url\":\"interfaces/MongoClientOptions.html#readPreferenceTags\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"interfaces/MongoClientOptions.html#auth\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"authSource\",\"url\":\"interfaces/MongoClientOptions.html#authSource\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"authMechanism\",\"url\":\"interfaces/MongoClientOptions.html#authMechanism\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"authMechanismProperties\",\"url\":\"interfaces/MongoClientOptions.html#authMechanismProperties\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"interfaces/MongoClientOptions.html#localThresholdMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"serverSelectionTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#serverSelectionTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/MongoClientOptions.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"minHeartbeatFrequencyMS\",\"url\":\"interfaces/MongoClientOptions.html#minHeartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/MongoClientOptions.html#appName\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"retryReads\",\"url\":\"interfaces/MongoClientOptions.html#retryReads\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/MongoClientOptions.html#retryWrites\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"directConnection\",\"url\":\"interfaces/MongoClientOptions.html#directConnection\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/MongoClientOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"w\",\"url\":\"interfaces/MongoClientOptions.html#w\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"wtimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#wtimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"journal\",\"url\":\"interfaces/MongoClientOptions.html#journal\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/MongoClientOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"sslValidate\",\"url\":\"interfaces/MongoClientOptions.html#sslValidate\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"sslCA\",\"url\":\"interfaces/MongoClientOptions.html#sslCA\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"sslCert\",\"url\":\"interfaces/MongoClientOptions.html#sslCert\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"sslKey\",\"url\":\"interfaces/MongoClientOptions.html#sslKey\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"sslPass\",\"url\":\"interfaces/MongoClientOptions.html#sslPass\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"sslCRL\",\"url\":\"interfaces/MongoClientOptions.html#sslCRL\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/MongoClientOptions.html#noDelay\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"keepAlive\",\"url\":\"interfaces/MongoClientOptions.html#keepAlive\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"keepAliveInitialDelay\",\"url\":\"interfaces/MongoClientOptions.html#keepAliveInitialDelay\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/MongoClientOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/MongoClientOptions.html#pkFactory\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/MongoClientOptions.html#monitorCommands\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/MongoClientOptions.html#serverApi\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"autoEncryption\",\"url\":\"interfaces/MongoClientOptions.html#autoEncryption\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"driverInfo\",\"url\":\"interfaces/MongoClientOptions.html#driverInfo\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/MongoClientOptions.html#proxyHost\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/MongoClientOptions.html#proxyPort\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/MongoClientOptions.html#proxyUsername\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/MongoClientOptions.html#proxyPassword\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/MongoClientOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/MongoClientOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClientOptions\"},{\"kind\":256,\"name\":\"MongoOptions\",\"url\":\"interfaces/MongoOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/MongoOptions.html#appName\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"hosts\",\"url\":\"interfaces/MongoOptions.html#hosts\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"srvHost\",\"url\":\"interfaces/MongoOptions.html#srvHost\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/MongoOptions.html#credentials\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/MongoOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/MongoOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/MongoOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/MongoOptions.html#serverApi\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/MongoOptions.html#compressors\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/MongoOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/MongoOptions.html#dbName\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/MongoOptions.html#metadata\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"autoEncrypter\",\"url\":\"interfaces/MongoOptions.html#autoEncrypter\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/MongoOptions.html#proxyHost\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/MongoOptions.html#proxyPort\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/MongoOptions.html#proxyUsername\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/MongoOptions.html#proxyPassword\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/MongoOptions.html#tls\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/MongoOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"autoEncryption\",\"url\":\"interfaces/MongoOptions.html#autoEncryption\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"minPoolSize\",\"url\":\"interfaces/MongoOptions.html#minPoolSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"replicaSet\",\"url\":\"interfaces/MongoOptions.html#replicaSet\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidCertificates\",\"url\":\"interfaces/MongoOptions.html#tlsAllowInvalidCertificates\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidHostnames\",\"url\":\"interfaces/MongoOptions.html#tlsAllowInvalidHostnames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsInsecure\",\"url\":\"interfaces/MongoOptions.html#tlsInsecure\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#connectTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#socketTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"zlibCompressionLevel\",\"url\":\"interfaces/MongoOptions.html#zlibCompressionLevel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"srvMaxHosts\",\"url\":\"interfaces/MongoOptions.html#srvMaxHosts\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"srvServiceName\",\"url\":\"interfaces/MongoOptions.html#srvServiceName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"maxPoolSize\",\"url\":\"interfaces/MongoOptions.html#maxPoolSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"maxConnecting\",\"url\":\"interfaces/MongoOptions.html#maxConnecting\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"maxIdleTimeMS\",\"url\":\"interfaces/MongoOptions.html#maxIdleTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"waitQueueTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#waitQueueTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"interfaces/MongoOptions.html#localThresholdMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"serverSelectionTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#serverSelectionTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/MongoOptions.html#heartbeatFrequencyMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"minHeartbeatFrequencyMS\",\"url\":\"interfaces/MongoOptions.html#minHeartbeatFrequencyMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"retryReads\",\"url\":\"interfaces/MongoOptions.html#retryReads\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/MongoOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"directConnection\",\"url\":\"interfaces/MongoOptions.html#directConnection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/MongoOptions.html#noDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"keepAlive\",\"url\":\"interfaces/MongoOptions.html#keepAlive\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"keepAliveInitialDelay\",\"url\":\"interfaces/MongoOptions.html#keepAliveInitialDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/MongoOptions.html#forceServerObjectId\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/MongoOptions.html#pkFactory\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/MongoOptions.html#monitorCommands\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"driverInfo\",\"url\":\"interfaces/MongoOptions.html#driverInfo\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":256,\"name\":\"PkFactory\",\"url\":\"interfaces/PkFactory.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"createPk\",\"url\":\"interfaces/PkFactory.html#createPk\",\"classes\":\"\",\"parent\":\"PkFactory\"},{\"kind\":256,\"name\":\"ServerApi\",\"url\":\"interfaces/ServerApi.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ServerApi.html#version\",\"classes\":\"\",\"parent\":\"ServerApi\"},{\"kind\":1024,\"name\":\"strict\",\"url\":\"interfaces/ServerApi.html#strict\",\"classes\":\"\",\"parent\":\"ServerApi\"},{\"kind\":1024,\"name\":\"deprecationErrors\",\"url\":\"interfaces/ServerApi.html#deprecationErrors\",\"classes\":\"\",\"parent\":\"ServerApi\"},{\"kind\":4194304,\"name\":\"SupportedNodeConnectionOptions\",\"url\":\"types/SupportedNodeConnectionOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SupportedSocketOptions\",\"url\":\"types/SupportedSocketOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SupportedTLSConnectionOptions\",\"url\":\"types/SupportedTLSConnectionOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SupportedTLSSocketOptions\",\"url\":\"types/SupportedTLSSocketOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"WithSessionCallback\",\"url\":\"types/WithSessionCallback.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/WithSessionCallback.html#__type\",\"classes\":\"\",\"parent\":\"WithSessionCallback\"},{\"kind\":4194304,\"name\":\"CommonEvents\",\"url\":\"types/CommonEvents.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EventsDescription\",\"url\":\"types/EventsDescription.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"GenericListener\",\"url\":\"types/GenericListener.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/GenericListener.html#__type\",\"classes\":\"\",\"parent\":\"GenericListener\"},{\"kind\":128,\"name\":\"TypedEventEmitter\",\"url\":\"classes/TypedEventEmitter.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/TypedEventEmitter.html#addListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/TypedEventEmitter.html#on\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/TypedEventEmitter.html#once\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/TypedEventEmitter.html#removeListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/TypedEventEmitter.html#off\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/TypedEventEmitter.html#removeAllListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/TypedEventEmitter.html#listeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/TypedEventEmitter.html#rawListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/TypedEventEmitter.html#emit\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/TypedEventEmitter.html#listenerCount\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/TypedEventEmitter.html#prependListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/TypedEventEmitter.html#prependOnceListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/TypedEventEmitter.html#eventNames\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/TypedEventEmitter.html#getMaxListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/TypedEventEmitter.html#setMaxListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":4194304,\"name\":\"AcceptedFields\",\"url\":\"types/AcceptedFields.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AddToSetOperators\",\"url\":\"types/AddToSetOperators.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AddToSetOperators.html#__type\",\"classes\":\"\",\"parent\":\"AddToSetOperators\"},{\"kind\":1024,\"name\":\"$each\",\"url\":\"types/AddToSetOperators.html#__type._each\",\"classes\":\"\",\"parent\":\"AddToSetOperators.__type\"},{\"kind\":4194304,\"name\":\"AlternativeType\",\"url\":\"types/AlternativeType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ArrayElement\",\"url\":\"types/ArrayElement.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ArrayOperator\",\"url\":\"types/ArrayOperator.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayOperator.html#__type\",\"classes\":\"\",\"parent\":\"ArrayOperator\"},{\"kind\":1024,\"name\":\"$each\",\"url\":\"types/ArrayOperator.html#__type._each\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":1024,\"name\":\"$slice\",\"url\":\"types/ArrayOperator.html#__type._slice\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":1024,\"name\":\"$position\",\"url\":\"types/ArrayOperator.html#__type._position\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":1024,\"name\":\"$sort\",\"url\":\"types/ArrayOperator.html#__type._sort\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":4194304,\"name\":\"BitwiseFilter\",\"url\":\"types/BitwiseFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BSONTypeAlias\",\"url\":\"types/BSONTypeAlias.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Condition\",\"url\":\"types/Condition.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EnhancedOmit\",\"url\":\"types/EnhancedOmit.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Filter\",\"url\":\"types/Filter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"FilterOperations\",\"url\":\"types/FilterOperations.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"FilterOperators\",\"url\":\"interfaces/FilterOperators.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"$eq\",\"url\":\"interfaces/FilterOperators.html#_eq\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$gt\",\"url\":\"interfaces/FilterOperators.html#_gt\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$gte\",\"url\":\"interfaces/FilterOperators.html#_gte\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$in\",\"url\":\"interfaces/FilterOperators.html#_in\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$lt\",\"url\":\"interfaces/FilterOperators.html#_lt\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$lte\",\"url\":\"interfaces/FilterOperators.html#_lte\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$ne\",\"url\":\"interfaces/FilterOperators.html#_ne\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$nin\",\"url\":\"interfaces/FilterOperators.html#_nin\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$not\",\"url\":\"interfaces/FilterOperators.html#_not\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$exists\",\"url\":\"interfaces/FilterOperators.html#_exists\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$type\",\"url\":\"interfaces/FilterOperators.html#_type\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$expr\",\"url\":\"interfaces/FilterOperators.html#_expr\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$jsonSchema\",\"url\":\"interfaces/FilterOperators.html#_jsonSchema\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$mod\",\"url\":\"interfaces/FilterOperators.html#_mod\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$regex\",\"url\":\"interfaces/FilterOperators.html#_regex\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$options\",\"url\":\"interfaces/FilterOperators.html#_options\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$geoIntersects\",\"url\":\"interfaces/FilterOperators.html#_geoIntersects\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/FilterOperators.html#_geoIntersects.__type\",\"classes\":\"\",\"parent\":\"FilterOperators.$geoIntersects\"},{\"kind\":1024,\"name\":\"$geometry\",\"url\":\"interfaces/FilterOperators.html#_geoIntersects.__type._geometry\",\"classes\":\"\",\"parent\":\"FilterOperators.$geoIntersects.__type\"},{\"kind\":1024,\"name\":\"$geoWithin\",\"url\":\"interfaces/FilterOperators.html#_geoWithin\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$near\",\"url\":\"interfaces/FilterOperators.html#_near\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$nearSphere\",\"url\":\"interfaces/FilterOperators.html#_nearSphere\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$maxDistance\",\"url\":\"interfaces/FilterOperators.html#_maxDistance\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$all\",\"url\":\"interfaces/FilterOperators.html#_all\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$elemMatch\",\"url\":\"interfaces/FilterOperators.html#_elemMatch\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$size\",\"url\":\"interfaces/FilterOperators.html#_size\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAllClear\",\"url\":\"interfaces/FilterOperators.html#_bitsAllClear\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAllSet\",\"url\":\"interfaces/FilterOperators.html#_bitsAllSet\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAnyClear\",\"url\":\"interfaces/FilterOperators.html#_bitsAnyClear\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAnySet\",\"url\":\"interfaces/FilterOperators.html#_bitsAnySet\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$rand\",\"url\":\"interfaces/FilterOperators.html#_rand\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":4194304,\"name\":\"Flatten\",\"url\":\"types/Flatten.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"InferIdType\",\"url\":\"types/InferIdType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"IntegerType\",\"url\":\"types/IntegerType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"IsAny\",\"url\":\"types/IsAny.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Join\",\"url\":\"types/Join.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"KeysOfAType\",\"url\":\"types/KeysOfAType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"KeysOfOtherType\",\"url\":\"types/KeysOfOtherType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"MatchKeysAndValues\",\"url\":\"types/MatchKeysAndValues.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NestedPaths\",\"url\":\"types/NestedPaths.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NestedPathsOfType\",\"url\":\"types/NestedPathsOfType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NonObjectIdLikeDocument\",\"url\":\"types/NonObjectIdLikeDocument.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NotAcceptedFields\",\"url\":\"types/NotAcceptedFields.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NumericType\",\"url\":\"types/NumericType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OneOrMore\",\"url\":\"types/OneOrMore.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OnlyFieldsOfType\",\"url\":\"types/OnlyFieldsOfType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OptionalId\",\"url\":\"types/OptionalId.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OptionalUnlessRequiredId\",\"url\":\"types/OptionalUnlessRequiredId.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PropertyType\",\"url\":\"types/PropertyType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PullAllOperator\",\"url\":\"types/PullAllOperator.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PullOperator\",\"url\":\"types/PullOperator.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PushOperator\",\"url\":\"types/PushOperator.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RegExpOrString\",\"url\":\"types/RegExpOrString.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"RootFilterOperators\",\"url\":\"interfaces/RootFilterOperators.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"$and\",\"url\":\"interfaces/RootFilterOperators.html#_and\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$nor\",\"url\":\"interfaces/RootFilterOperators.html#_nor\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$or\",\"url\":\"interfaces/RootFilterOperators.html#_or\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$text\",\"url\":\"interfaces/RootFilterOperators.html#_text\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text\"},{\"kind\":1024,\"name\":\"$search\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._search\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$language\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._language\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$caseSensitive\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._caseSensitive\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$diacriticSensitive\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._diacriticSensitive\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$where\",\"url\":\"interfaces/RootFilterOperators.html#_where\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$comment\",\"url\":\"interfaces/RootFilterOperators.html#_comment\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":4194304,\"name\":\"SchemaMember\",\"url\":\"types/SchemaMember.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SetFields\",\"url\":\"types/SetFields.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"StrictFilter\",\"url\":\"types/StrictFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"StrictMatchKeysAndValues\",\"url\":\"types/StrictMatchKeysAndValues.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"StrictUpdateFilter\",\"url\":\"types/StrictUpdateFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"UpdateFilter\",\"url\":\"types/UpdateFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"WithId\",\"url\":\"types/WithId.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"WithoutId\",\"url\":\"types/WithoutId.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"AddUserOptions\",\"url\":\"interfaces/AddUserOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"roles\",\"url\":\"interfaces/AddUserOptions.html#roles\",\"classes\":\"\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"customData\",\"url\":\"interfaces/AddUserOptions.html#customData\",\"classes\":\"\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AddUserOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/AddUserOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AddUserOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AddUserOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/AddUserOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/AddUserOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/AddUserOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/AddUserOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AddUserOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/AddUserOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AddUserOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/AddUserOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AddUserOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AddUserOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/AddUserOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/AddUserOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AddUserOptions\"},{\"kind\":256,\"name\":\"RoleSpecification\",\"url\":\"interfaces/RoleSpecification.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"role\",\"url\":\"interfaces/RoleSpecification.html#role\",\"classes\":\"\",\"parent\":\"RoleSpecification\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/RoleSpecification.html#db\",\"classes\":\"\",\"parent\":\"RoleSpecification\"},{\"kind\":256,\"name\":\"AggregateOptions\",\"url\":\"interfaces/AggregateOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/AggregateOptions.html#allowDiskUse\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AggregateOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/AggregateOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/AggregateOptions.html#cursor\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AggregateOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/AggregateOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/AggregateOptions.html#collation\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/AggregateOptions.html#hint\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/AggregateOptions.html#let\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/AggregateOptions.html#out\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AggregateOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AggregateOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/AggregateOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/AggregateOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/AggregateOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/AggregateOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AggregateOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/AggregateOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AggregateOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/AggregateOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AggregateOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AggregateOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/AggregateOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/AggregateOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":256,\"name\":\"CollationOptions\",\"url\":\"interfaces/CollationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"interfaces/CollationOptions.html#locale\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"caseLevel\",\"url\":\"interfaces/CollationOptions.html#caseLevel\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"caseFirst\",\"url\":\"interfaces/CollationOptions.html#caseFirst\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"strength\",\"url\":\"interfaces/CollationOptions.html#strength\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"numericOrdering\",\"url\":\"interfaces/CollationOptions.html#numericOrdering\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"alternate\",\"url\":\"interfaces/CollationOptions.html#alternate\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"maxVariable\",\"url\":\"interfaces/CollationOptions.html#maxVariable\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"backwards\",\"url\":\"interfaces/CollationOptions.html#backwards\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"normalization\",\"url\":\"interfaces/CollationOptions.html#normalization\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":256,\"name\":\"CommandOperationOptions\",\"url\":\"interfaces/CommandOperationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CommandOperationOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CommandOperationOptions.html#collation\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CommandOperationOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CommandOperationOptions.html#comment\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CommandOperationOptions.html#retryWrites\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CommandOperationOptions.html#dbName\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CommandOperationOptions.html#authdb\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CommandOperationOptions.html#noResponse\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CommandOperationOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CommandOperationOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CommandOperationOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CommandOperationOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CommandOperationOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CommandOperationOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CommandOperationOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CommandOperationOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":256,\"name\":\"IndexInformationOptions\",\"url\":\"interfaces/IndexInformationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"full\",\"url\":\"interfaces/IndexInformationOptions.html#full\",\"classes\":\"\",\"parent\":\"IndexInformationOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/IndexInformationOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"IndexInformationOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/IndexInformationOptions.html#session\",\"classes\":\"\",\"parent\":\"IndexInformationOptions\"},{\"kind\":256,\"name\":\"CountOptions\",\"url\":\"interfaces/CountOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/CountOptions.html#skip\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/CountOptions.html#limit\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CountOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/CountOptions.html#hint\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CountOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CountOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CountOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CountOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CountOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CountOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CountOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CountOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CountOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CountOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CountOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CountOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CountOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CountOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CountOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":256,\"name\":\"CountDocumentsOptions\",\"url\":\"interfaces/CountDocumentsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/CountDocumentsOptions.html#skip\",\"classes\":\"\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/CountDocumentsOptions.html#limit\",\"classes\":\"\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/CountDocumentsOptions.html#allowDiskUse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/CountDocumentsOptions.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/CountDocumentsOptions.html#bypassDocumentValidation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/CountDocumentsOptions.html#cursor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CountDocumentsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/CountDocumentsOptions.html#maxAwaitTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CountDocumentsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/CountDocumentsOptions.html#hint\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/CountDocumentsOptions.html#let\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/CountDocumentsOptions.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CountDocumentsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CountDocumentsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CountDocumentsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CountDocumentsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CountDocumentsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CountDocumentsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CountDocumentsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CountDocumentsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CountDocumentsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CountDocumentsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CountDocumentsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CountDocumentsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CountDocumentsOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CountDocumentsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":256,\"name\":\"ClusteredCollectionOptions\",\"url\":\"interfaces/ClusteredCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClusteredCollectionOptions.html#name\",\"classes\":\"\",\"parent\":\"ClusteredCollectionOptions\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/ClusteredCollectionOptions.html#key\",\"classes\":\"\",\"parent\":\"ClusteredCollectionOptions\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/ClusteredCollectionOptions.html#unique\",\"classes\":\"\",\"parent\":\"ClusteredCollectionOptions\"},{\"kind\":256,\"name\":\"CreateCollectionOptions\",\"url\":\"interfaces/CreateCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"capped\",\"url\":\"interfaces/CreateCollectionOptions.html#capped\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"autoIndexId\",\"url\":\"interfaces/CreateCollectionOptions.html#autoIndexId\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/CreateCollectionOptions.html#size\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/CreateCollectionOptions.html#max\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"flags\",\"url\":\"interfaces/CreateCollectionOptions.html#flags\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"storageEngine\",\"url\":\"interfaces/CreateCollectionOptions.html#storageEngine\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"validator\",\"url\":\"interfaces/CreateCollectionOptions.html#validator\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"validationLevel\",\"url\":\"interfaces/CreateCollectionOptions.html#validationLevel\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"validationAction\",\"url\":\"interfaces/CreateCollectionOptions.html#validationAction\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"indexOptionDefaults\",\"url\":\"interfaces/CreateCollectionOptions.html#indexOptionDefaults\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"viewOn\",\"url\":\"interfaces/CreateCollectionOptions.html#viewOn\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"pipeline\",\"url\":\"interfaces/CreateCollectionOptions.html#pipeline\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/CreateCollectionOptions.html#pkFactory\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"timeseries\",\"url\":\"interfaces/CreateCollectionOptions.html#timeseries\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"clusteredIndex\",\"url\":\"interfaces/CreateCollectionOptions.html#clusteredIndex\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"expireAfterSeconds\",\"url\":\"interfaces/CreateCollectionOptions.html#expireAfterSeconds\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"encryptedFields\",\"url\":\"interfaces/CreateCollectionOptions.html#encryptedFields\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"changeStreamPreAndPostImages\",\"url\":\"interfaces/CreateCollectionOptions.html#changeStreamPreAndPostImages\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/CreateCollectionOptions.html#changeStreamPreAndPostImages.__type\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions.changeStreamPreAndPostImages\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/CreateCollectionOptions.html#changeStreamPreAndPostImages.__type.enabled\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions.changeStreamPreAndPostImages.__type\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CreateCollectionOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CreateCollectionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CreateCollectionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CreateCollectionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CreateCollectionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CreateCollectionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CreateCollectionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CreateCollectionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CreateCollectionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CreateCollectionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CreateCollectionOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CreateCollectionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CreateCollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CreateCollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CreateCollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CreateCollectionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":256,\"name\":\"TimeSeriesCollectionOptions\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"timeField\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#timeField\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"metaField\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#metaField\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"granularity\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#granularity\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"bucketMaxSpanSeconds\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#bucketMaxSpanSeconds\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"bucketRoundingSeconds\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#bucketRoundingSeconds\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":256,\"name\":\"DeleteOptions\",\"url\":\"interfaces/DeleteOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"ordered\",\"url\":\"interfaces/DeleteOptions.html#ordered\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteOptions.html#collation\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteOptions.html#hint\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/DeleteOptions.html#let\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DeleteOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/DeleteOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/DeleteOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DeleteOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/DeleteOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/DeleteOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/DeleteOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/DeleteOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/DeleteOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DeleteOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/DeleteOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DeleteOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DeleteOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DeleteOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/DeleteOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":256,\"name\":\"DeleteResult\",\"url\":\"interfaces/DeleteResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/DeleteResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"DeleteResult\"},{\"kind\":1024,\"name\":\"deletedCount\",\"url\":\"interfaces/DeleteResult.html#deletedCount\",\"classes\":\"\",\"parent\":\"DeleteResult\"},{\"kind\":256,\"name\":\"DeleteStatement\",\"url\":\"interfaces/DeleteStatement.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"q\",\"url\":\"interfaces/DeleteStatement.html#q\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/DeleteStatement.html#limit\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteStatement.html#collation\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteStatement.html#hint\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":4194304,\"name\":\"DistinctOptions\",\"url\":\"types/DistinctOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"DropCollectionOptions\",\"url\":\"interfaces/DropCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"encryptedFields\",\"url\":\"interfaces/DropCollectionOptions.html#encryptedFields\",\"classes\":\"\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DropCollectionOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DropCollectionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/DropCollectionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/DropCollectionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DropCollectionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/DropCollectionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/DropCollectionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/DropCollectionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/DropCollectionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/DropCollectionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DropCollectionOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/DropCollectionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DropCollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DropCollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DropCollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/DropCollectionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":4194304,\"name\":\"DropDatabaseOptions\",\"url\":\"types/DropDatabaseOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"EstimatedDocumentCountOptions\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":256,\"name\":\"EvalOptions\",\"url\":\"interfaces/EvalOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"nolock\",\"url\":\"interfaces/EvalOptions.html#nolock\",\"classes\":\"\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/EvalOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/EvalOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/EvalOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/EvalOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/EvalOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/EvalOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/EvalOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/EvalOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/EvalOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/EvalOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/EvalOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/EvalOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/EvalOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/EvalOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/EvalOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/EvalOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EvalOptions\"},{\"kind\":256,\"name\":\"FindOptions\",\"url\":\"interfaces/FindOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/FindOptions.html#limit\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/FindOptions.html#skip\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"interfaces/FindOptions.html#timeout\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"tailable\",\"url\":\"interfaces/FindOptions.html#tailable\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"awaitData\",\"url\":\"interfaces/FindOptions.html#awaitData\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/FindOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"returnKey\",\"url\":\"interfaces/FindOptions.html#returnKey\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/FindOptions.html#min\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/FindOptions.html#max\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/FindOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"noCursorTimeout\",\"url\":\"interfaces/FindOptions.html#noCursorTimeout\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOptions.html#collation\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/FindOptions.html#allowDiskUse\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"singleBatch\",\"url\":\"interfaces/FindOptions.html#singleBatch\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"allowPartialResults\",\"url\":\"interfaces/FindOptions.html#allowPartialResults\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"showRecordId\",\"url\":\"interfaces/FindOptions.html#showRecordId\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"oplogReplay\",\"url\":\"interfaces/FindOptions.html#oplogReplay\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":256,\"name\":\"FindOneAndDeleteOptions\",\"url\":\"interfaces/FindOneAndDeleteOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"includeResultMetadata\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#includeResultMetadata\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":256,\"name\":\"FindOneAndReplaceOptions\",\"url\":\"interfaces/FindOneAndReplaceOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"returnDocument\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#returnDocument\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#upsert\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"includeResultMetadata\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#includeResultMetadata\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":256,\"name\":\"FindOneAndUpdateOptions\",\"url\":\"interfaces/FindOneAndUpdateOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#arrayFilters\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"returnDocument\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#returnDocument\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#upsert\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"includeResultMetadata\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#includeResultMetadata\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":256,\"name\":\"CreateIndexesOptions\",\"url\":\"interfaces/CreateIndexesOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"background\",\"url\":\"interfaces/CreateIndexesOptions.html#background\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/CreateIndexesOptions.html#unique\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/CreateIndexesOptions.html#name\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"partialFilterExpression\",\"url\":\"interfaces/CreateIndexesOptions.html#partialFilterExpression\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"interfaces/CreateIndexesOptions.html#sparse\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"expireAfterSeconds\",\"url\":\"interfaces/CreateIndexesOptions.html#expireAfterSeconds\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"storageEngine\",\"url\":\"interfaces/CreateIndexesOptions.html#storageEngine\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"commitQuorum\",\"url\":\"interfaces/CreateIndexesOptions.html#commitQuorum\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/CreateIndexesOptions.html#version\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"weights\",\"url\":\"interfaces/CreateIndexesOptions.html#weights\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"default_language\",\"url\":\"interfaces/CreateIndexesOptions.html#default_language\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"language_override\",\"url\":\"interfaces/CreateIndexesOptions.html#language_override\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"textIndexVersion\",\"url\":\"interfaces/CreateIndexesOptions.html#textIndexVersion\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"2dsphereIndexVersion\",\"url\":\"interfaces/CreateIndexesOptions.html#2dsphereIndexVersion\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"bits\",\"url\":\"interfaces/CreateIndexesOptions.html#bits\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/CreateIndexesOptions.html#min\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/CreateIndexesOptions.html#max\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"bucketSize\",\"url\":\"interfaces/CreateIndexesOptions.html#bucketSize\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"wildcardProjection\",\"url\":\"interfaces/CreateIndexesOptions.html#wildcardProjection\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"interfaces/CreateIndexesOptions.html#hidden\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CreateIndexesOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CreateIndexesOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CreateIndexesOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CreateIndexesOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CreateIndexesOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CreateIndexesOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CreateIndexesOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CreateIndexesOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CreateIndexesOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CreateIndexesOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CreateIndexesOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CreateIndexesOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CreateIndexesOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CreateIndexesOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CreateIndexesOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":4194304,\"name\":\"DropIndexesOptions\",\"url\":\"types/DropIndexesOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"IndexDescription\",\"url\":\"interfaces/IndexDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/IndexDescription.html#collation\",\"classes\":\"\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IndexDescription.html#name\",\"classes\":\"\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/IndexDescription.html#key\",\"classes\":\"\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/IndexDescription.html#max\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/IndexDescription.html#min\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/IndexDescription.html#version\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"interfaces/IndexDescription.html#hidden\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"background\",\"url\":\"interfaces/IndexDescription.html#background\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/IndexDescription.html#unique\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"partialFilterExpression\",\"url\":\"interfaces/IndexDescription.html#partialFilterExpression\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"interfaces/IndexDescription.html#sparse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"expireAfterSeconds\",\"url\":\"interfaces/IndexDescription.html#expireAfterSeconds\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"storageEngine\",\"url\":\"interfaces/IndexDescription.html#storageEngine\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"weights\",\"url\":\"interfaces/IndexDescription.html#weights\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"default_language\",\"url\":\"interfaces/IndexDescription.html#default_language\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"language_override\",\"url\":\"interfaces/IndexDescription.html#language_override\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"textIndexVersion\",\"url\":\"interfaces/IndexDescription.html#textIndexVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"2dsphereIndexVersion\",\"url\":\"interfaces/IndexDescription.html#2dsphereIndexVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"bits\",\"url\":\"interfaces/IndexDescription.html#bits\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"bucketSize\",\"url\":\"interfaces/IndexDescription.html#bucketSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"wildcardProjection\",\"url\":\"interfaces/IndexDescription.html#wildcardProjection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":4194304,\"name\":\"IndexDirection\",\"url\":\"types/IndexDirection.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"IndexSpecification\",\"url\":\"types/IndexSpecification.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ListIndexesOptions\",\"url\":\"interfaces/ListIndexesOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ListIndexesOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ListIndexesOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ListIndexesOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ListIndexesOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ListIndexesOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ListIndexesOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ListIndexesOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ListIndexesOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ListIndexesOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ListIndexesOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ListIndexesOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ListIndexesOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ListIndexesOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ListIndexesOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ListIndexesOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ListIndexesOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":256,\"name\":\"InsertManyResult\",\"url\":\"interfaces/InsertManyResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/InsertManyResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"InsertManyResult\"},{\"kind\":1024,\"name\":\"insertedCount\",\"url\":\"interfaces/InsertManyResult.html#insertedCount\",\"classes\":\"\",\"parent\":\"InsertManyResult\"},{\"kind\":1024,\"name\":\"insertedIds\",\"url\":\"interfaces/InsertManyResult.html#insertedIds\",\"classes\":\"\",\"parent\":\"InsertManyResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/InsertManyResult.html#insertedIds.__type\",\"classes\":\"\",\"parent\":\"InsertManyResult.insertedIds\"},{\"kind\":256,\"name\":\"InsertOneOptions\",\"url\":\"interfaces/InsertOneOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/InsertOneOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/InsertOneOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/InsertOneOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/InsertOneOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/InsertOneOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/InsertOneOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/InsertOneOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/InsertOneOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/InsertOneOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/InsertOneOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/InsertOneOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/InsertOneOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/InsertOneOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/InsertOneOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/InsertOneOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/InsertOneOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/InsertOneOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/InsertOneOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":256,\"name\":\"InsertOneResult\",\"url\":\"interfaces/InsertOneResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/InsertOneResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"InsertOneResult\"},{\"kind\":1024,\"name\":\"insertedId\",\"url\":\"interfaces/InsertOneResult.html#insertedId\",\"classes\":\"\",\"parent\":\"InsertOneResult\"},{\"kind\":256,\"name\":\"CollectionInfo\",\"url\":\"interfaces/CollectionInfo.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/CollectionInfo.html#name\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CollectionInfo.html#type\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/CollectionInfo.html#options\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"interfaces/CollectionInfo.html#info\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/CollectionInfo.html#info.__type\",\"classes\":\"\",\"parent\":\"CollectionInfo.info\"},{\"kind\":1024,\"name\":\"readOnly\",\"url\":\"interfaces/CollectionInfo.html#info.__type.readOnly\",\"classes\":\"\",\"parent\":\"CollectionInfo.info.__type\"},{\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/CollectionInfo.html#info.__type.uuid\",\"classes\":\"\",\"parent\":\"CollectionInfo.info.__type\"},{\"kind\":1024,\"name\":\"idIndex\",\"url\":\"interfaces/CollectionInfo.html#idIndex\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":256,\"name\":\"ListCollectionsOptions\",\"url\":\"interfaces/ListCollectionsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"nameOnly\",\"url\":\"interfaces/ListCollectionsOptions.html#nameOnly\",\"classes\":\"\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"authorizedCollections\",\"url\":\"interfaces/ListCollectionsOptions.html#authorizedCollections\",\"classes\":\"\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ListCollectionsOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ListCollectionsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ListCollectionsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ListCollectionsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ListCollectionsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ListCollectionsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ListCollectionsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ListCollectionsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ListCollectionsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ListCollectionsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ListCollectionsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ListCollectionsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ListCollectionsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ListCollectionsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ListCollectionsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ListCollectionsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":256,\"name\":\"ListDatabasesOptions\",\"url\":\"interfaces/ListDatabasesOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/ListDatabasesOptions.html#filter\",\"classes\":\"\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"nameOnly\",\"url\":\"interfaces/ListDatabasesOptions.html#nameOnly\",\"classes\":\"\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"authorizedDatabases\",\"url\":\"interfaces/ListDatabasesOptions.html#authorizedDatabases\",\"classes\":\"\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ListDatabasesOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ListDatabasesOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ListDatabasesOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ListDatabasesOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ListDatabasesOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ListDatabasesOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ListDatabasesOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ListDatabasesOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ListDatabasesOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ListDatabasesOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ListDatabasesOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ListDatabasesOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ListDatabasesOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ListDatabasesOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/ListDatabasesOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ListDatabasesOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":256,\"name\":\"ListDatabasesResult\",\"url\":\"interfaces/ListDatabasesResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"databases\",\"url\":\"interfaces/ListDatabasesResult.html#databases\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":1024,\"name\":\"totalSize\",\"url\":\"interfaces/ListDatabasesResult.html#totalSize\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":1024,\"name\":\"totalSizeMb\",\"url\":\"interfaces/ListDatabasesResult.html#totalSizeMb\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"interfaces/ListDatabasesResult.html#ok\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":4194304,\"name\":\"Hint\",\"url\":\"types/Hint.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"OperationOptions\",\"url\":\"interfaces/OperationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/OperationOptions.html#session\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/OperationOptions.html#willRetryWrite\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/OperationOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/OperationOptions.html#omitReadPreference\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/OperationOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/OperationOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OperationOptions\"},{\"kind\":4194304,\"name\":\"ProfilingLevelOptions\",\"url\":\"types/ProfilingLevelOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RemoveUserOptions\",\"url\":\"types/RemoveUserOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"RenameOptions\",\"url\":\"interfaces/RenameOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dropTarget\",\"url\":\"interfaces/RenameOptions.html#dropTarget\",\"classes\":\"\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"new_collection\",\"url\":\"interfaces/RenameOptions.html#new_collection\",\"classes\":\"\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/RenameOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/RenameOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/RenameOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/RenameOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/RenameOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/RenameOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/RenameOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/RenameOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/RenameOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/RenameOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/RenameOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/RenameOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/RenameOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/RenameOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/RenameOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/RenameOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":4194304,\"name\":\"RunCommandOptions\",\"url\":\"types/RunCommandOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"SearchIndexDescription\",\"url\":\"interfaces/SearchIndexDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/SearchIndexDescription.html#name\",\"classes\":\"\",\"parent\":\"SearchIndexDescription\"},{\"kind\":1024,\"name\":\"definition\",\"url\":\"interfaces/SearchIndexDescription.html#definition\",\"classes\":\"\",\"parent\":\"SearchIndexDescription\"},{\"kind\":4194304,\"name\":\"SetProfilingLevelOptions\",\"url\":\"types/SetProfilingLevelOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CollStats\",\"url\":\"interfaces/CollStats.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/CollStats.html#ns\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"count\",\"url\":\"interfaces/CollStats.html#count\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/CollStats.html#size\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"avgObjSize\",\"url\":\"interfaces/CollStats.html#avgObjSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"storageSize\",\"url\":\"interfaces/CollStats.html#storageSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"numExtents\",\"url\":\"interfaces/CollStats.html#numExtents\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"nindexes\",\"url\":\"interfaces/CollStats.html#nindexes\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"lastExtentSize\",\"url\":\"interfaces/CollStats.html#lastExtentSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"paddingFactor\",\"url\":\"interfaces/CollStats.html#paddingFactor\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"userFlags\",\"url\":\"interfaces/CollStats.html#userFlags\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"totalIndexSize\",\"url\":\"interfaces/CollStats.html#totalIndexSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"indexSizes\",\"url\":\"interfaces/CollStats.html#indexSizes\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/CollStats.html#indexSizes.__type\",\"classes\":\"\",\"parent\":\"CollStats.indexSizes\"},{\"kind\":1024,\"name\":\"_id_\",\"url\":\"interfaces/CollStats.html#indexSizes.__type._id_\",\"classes\":\"\",\"parent\":\"CollStats.indexSizes.__type\"},{\"kind\":1024,\"name\":\"capped\",\"url\":\"interfaces/CollStats.html#capped\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/CollStats.html#max\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"maxSize\",\"url\":\"interfaces/CollStats.html#maxSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"wiredTiger\",\"url\":\"interfaces/CollStats.html#wiredTiger\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"indexDetails\",\"url\":\"interfaces/CollStats.html#indexDetails\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"interfaces/CollStats.html#ok\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"freeStorageSize\",\"url\":\"interfaces/CollStats.html#freeStorageSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"indexBuilds\",\"url\":\"interfaces/CollStats.html#indexBuilds\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"totalSize\",\"url\":\"interfaces/CollStats.html#totalSize\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":1024,\"name\":\"scaleFactor\",\"url\":\"interfaces/CollStats.html#scaleFactor\",\"classes\":\"\",\"parent\":\"CollStats\"},{\"kind\":256,\"name\":\"CollStatsOptions\",\"url\":\"interfaces/CollStatsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"scale\",\"url\":\"interfaces/CollStatsOptions.html#scale\",\"classes\":\"\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CollStatsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CollStatsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CollStatsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CollStatsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CollStatsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CollStatsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CollStatsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CollStatsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CollStatsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CollStatsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CollStatsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CollStatsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CollStatsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CollStatsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CollStatsOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CollStatsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollStatsOptions\"},{\"kind\":256,\"name\":\"DbStatsOptions\",\"url\":\"interfaces/DbStatsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"scale\",\"url\":\"interfaces/DbStatsOptions.html#scale\",\"classes\":\"\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DbStatsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DbStatsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/DbStatsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/DbStatsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DbStatsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/DbStatsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/DbStatsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/DbStatsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/DbStatsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/DbStatsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DbStatsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/DbStatsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DbStatsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DbStatsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DbStatsOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/DbStatsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":256,\"name\":\"WiredTigerData\",\"url\":\"interfaces/WiredTigerData.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"LSM\",\"url\":\"interfaces/WiredTigerData.html#LSM\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":1024,\"name\":\"block-manager\",\"url\":\"interfaces/WiredTigerData.html#block_manager\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager\"},{\"kind\":1024,\"name\":\"allocations requiring file extension\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.allocations_requiring_file_extension\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"blocks allocated\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.blocks_allocated\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"blocks freed\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.blocks_freed\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"checkpoint size\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.checkpoint_size\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"file allocation unit size\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.file_allocation_unit_size\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"file bytes available for reuse\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.file_bytes_available_for_reuse\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"file magic number\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.file_magic_number\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"file major version number\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.file_major_version_number\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"file size in bytes\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.file_size_in_bytes\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"minor version number\",\"url\":\"interfaces/WiredTigerData.html#block_manager.__type.minor_version_number\",\"classes\":\"\",\"parent\":\"WiredTigerData.block-manager.__type\"},{\"kind\":1024,\"name\":\"btree\",\"url\":\"interfaces/WiredTigerData.html#btree\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"interfaces/WiredTigerData.html#cache\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":1024,\"name\":\"cache_walk\",\"url\":\"interfaces/WiredTigerData.html#cache_walk\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"interfaces/WiredTigerData.html#compression\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/WiredTigerData.html#cursor\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor\"},{\"kind\":1024,\"name\":\"bulk-loaded cursor-insert calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.bulk_loaded_cursor_insert_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"create calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.create_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"cursor-insert key and value bytes inserted\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.cursor_insert_key_and_value_bytes_inserted\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"cursor-remove key bytes removed\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.cursor_remove_key_bytes_removed\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"cursor-update value bytes updated\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.cursor_update_value_bytes_updated\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"insert calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.insert_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"next calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.next_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"prev calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.prev_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"remove calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.remove_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"reset calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.reset_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"restarted searches\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.restarted_searches\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"search calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.search_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"search near calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.search_near_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"truncate calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.truncate_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"update calls\",\"url\":\"interfaces/WiredTigerData.html#cursor.__type-1.update_calls\",\"classes\":\"\",\"parent\":\"WiredTigerData.cursor.__type\"},{\"kind\":1024,\"name\":\"reconciliation\",\"url\":\"interfaces/WiredTigerData.html#reconciliation\",\"classes\":\"\",\"parent\":\"WiredTigerData\"},{\"kind\":256,\"name\":\"ReplaceOptions\",\"url\":\"interfaces/ReplaceOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/ReplaceOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ReplaceOptions.html#collation\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/ReplaceOptions.html#hint\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/ReplaceOptions.html#upsert\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/ReplaceOptions.html#let\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ReplaceOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ReplaceOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ReplaceOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ReplaceOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ReplaceOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ReplaceOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ReplaceOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ReplaceOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ReplaceOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ReplaceOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ReplaceOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ReplaceOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ReplaceOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/ReplaceOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ReplaceOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":256,\"name\":\"UpdateOptions\",\"url\":\"interfaces/UpdateOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateOptions.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/UpdateOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateOptions.html#collation\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateOptions.html#hint\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateOptions.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/UpdateOptions.html#let\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/UpdateOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/UpdateOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/UpdateOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/UpdateOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/UpdateOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/UpdateOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/UpdateOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/UpdateOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/UpdateOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/UpdateOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/UpdateOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/UpdateOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/UpdateOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/UpdateOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/UpdateOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":256,\"name\":\"UpdateResult\",\"url\":\"interfaces/UpdateResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/UpdateResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"matchedCount\",\"url\":\"interfaces/UpdateResult.html#matchedCount\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"modifiedCount\",\"url\":\"interfaces/UpdateResult.html#modifiedCount\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"upsertedCount\",\"url\":\"interfaces/UpdateResult.html#upsertedCount\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"upsertedId\",\"url\":\"interfaces/UpdateResult.html#upsertedId\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":256,\"name\":\"UpdateStatement\",\"url\":\"interfaces/UpdateStatement.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"q\",\"url\":\"interfaces/UpdateStatement.html#q\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"u\",\"url\":\"interfaces/UpdateStatement.html#u\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateStatement.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"multi\",\"url\":\"interfaces/UpdateStatement.html#multi\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateStatement.html#collation\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateStatement.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateStatement.html#hint\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":256,\"name\":\"ValidateCollectionOptions\",\"url\":\"interfaces/ValidateCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"background\",\"url\":\"interfaces/ValidateCollectionOptions.html#background\",\"classes\":\"\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ValidateCollectionOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ValidateCollectionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ValidateCollectionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ValidateCollectionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ValidateCollectionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ValidateCollectionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ValidateCollectionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ValidateCollectionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ValidateCollectionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ValidateCollectionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ValidateCollectionOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ValidateCollectionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ValidateCollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ValidateCollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/ValidateCollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ValidateCollectionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":4194304,\"name\":\"ReadConcernLike\",\"url\":\"types/ReadConcernLike.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"HedgeOptions\",\"url\":\"interfaces/HedgeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/HedgeOptions.html#enabled\",\"classes\":\"\",\"parent\":\"HedgeOptions\"},{\"kind\":256,\"name\":\"ReadPreferenceFromOptions\",\"url\":\"interfaces/ReadPreferenceFromOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#session\",\"classes\":\"\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"readPreferenceTags\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#readPreferenceTags\",\"classes\":\"\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#hedge\",\"classes\":\"\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#maxStalenessSeconds\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":4194304,\"name\":\"ReadPreferenceLike\",\"url\":\"types/ReadPreferenceLike.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ReadPreferenceLikeOptions\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"ReadPreferenceLikeOptions\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html#maxStalenessSeconds\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceLikeOptions\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html#hedge\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceLikeOptions\"},{\"kind\":256,\"name\":\"ReadPreferenceOptions\",\"url\":\"interfaces/ReadPreferenceOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/ReadPreferenceOptions.html#maxStalenessSeconds\",\"classes\":\"\",\"parent\":\"ReadPreferenceOptions\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"interfaces/ReadPreferenceOptions.html#hedge\",\"classes\":\"\",\"parent\":\"ReadPreferenceOptions\"},{\"kind\":256,\"name\":\"ClusterTime\",\"url\":\"interfaces/ClusterTime.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ClusterTime.html#clusterTime\",\"classes\":\"\",\"parent\":\"ClusterTime\"},{\"kind\":1024,\"name\":\"signature\",\"url\":\"interfaces/ClusterTime.html#signature\",\"classes\":\"\",\"parent\":\"ClusterTime\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClusterTime.html#signature.__type\",\"classes\":\"\",\"parent\":\"ClusterTime.signature\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/ClusterTime.html#signature.__type.hash\",\"classes\":\"\",\"parent\":\"ClusterTime.signature.__type\"},{\"kind\":1024,\"name\":\"keyId\",\"url\":\"interfaces/ClusterTime.html#signature.__type.keyId\",\"classes\":\"\",\"parent\":\"ClusterTime.signature.__type\"},{\"kind\":4194304,\"name\":\"MonitorEvents\",\"url\":\"types/MonitorEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"MonitorOptions\",\"url\":\"interfaces/MonitorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/MonitorOptions.html#connectTimeoutMS\",\"classes\":\"\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/MonitorOptions.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"minHeartbeatFrequencyMS\",\"url\":\"interfaces/MonitorOptions.html#minHeartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/MonitorOptions.html#credentials\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/MonitorOptions.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/MonitorOptions.html#proxyHost\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/MonitorOptions.html#proxyPort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/MonitorOptions.html#proxyUsername\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/MonitorOptions.html#proxyPassword\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/MonitorOptions.html#tls\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/MonitorOptions.html#socketTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/MonitorOptions.html#compressors\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/MonitorOptions.html#noDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"keepAlive\",\"url\":\"interfaces/MonitorOptions.html#keepAlive\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"keepAliveInitialDelay\",\"url\":\"interfaces/MonitorOptions.html#keepAliveInitialDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/MonitorOptions.html#monitorCommands\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/MonitorOptions.html#serverApi\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"cancellationToken\",\"url\":\"interfaces/MonitorOptions.html#cancellationToken\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"autoEncrypter\",\"url\":\"interfaces/MonitorOptions.html#autoEncrypter\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/MonitorOptions.html#metadata\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/MonitorOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":4194304,\"name\":\"ServerEvents\",\"url\":\"types/ServerEvents.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ServerDescription\",\"url\":\"classes/ServerDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerDescription.html#address\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/ServerDescription.html#type\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"hosts\",\"url\":\"classes/ServerDescription.html#hosts\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"passives\",\"url\":\"classes/ServerDescription.html#passives\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"arbiters\",\"url\":\"classes/ServerDescription.html#arbiters\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/ServerDescription.html#tags\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/ServerDescription.html#error\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/ServerDescription.html#topologyVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/ServerDescription.html#minWireVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"maxWireVersion\",\"url\":\"classes/ServerDescription.html#maxWireVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"roundTripTime\",\"url\":\"classes/ServerDescription.html#roundTripTime\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"lastUpdateTime\",\"url\":\"classes/ServerDescription.html#lastUpdateTime\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"lastWriteDate\",\"url\":\"classes/ServerDescription.html#lastWriteDate\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"me\",\"url\":\"classes/ServerDescription.html#me\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"primary\",\"url\":\"classes/ServerDescription.html#primary\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"setName\",\"url\":\"classes/ServerDescription.html#setName\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"setVersion\",\"url\":\"classes/ServerDescription.html#setVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"electionId\",\"url\":\"classes/ServerDescription.html#electionId\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"classes/ServerDescription.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"$clusterTime\",\"url\":\"classes/ServerDescription.html#_clusterTime\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"hostAddress\",\"url\":\"classes/ServerDescription.html#hostAddress\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"allHosts\",\"url\":\"classes/ServerDescription.html#allHosts\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"isReadable\",\"url\":\"classes/ServerDescription.html#isReadable\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"isDataBearing\",\"url\":\"classes/ServerDescription.html#isDataBearing\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"isWritable\",\"url\":\"classes/ServerDescription.html#isWritable\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"host\",\"url\":\"classes/ServerDescription.html#host\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"port\",\"url\":\"classes/ServerDescription.html#port\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ServerDescription.html#equals\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":4194304,\"name\":\"TagSet\",\"url\":\"types/TagSet.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/TagSet.html#__type\",\"classes\":\"\",\"parent\":\"TagSet\"},{\"kind\":256,\"name\":\"TopologyVersion\",\"url\":\"interfaces/TopologyVersion.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"processId\",\"url\":\"interfaces/TopologyVersion.html#processId\",\"classes\":\"\",\"parent\":\"TopologyVersion\"},{\"kind\":1024,\"name\":\"counter\",\"url\":\"interfaces/TopologyVersion.html#counter\",\"classes\":\"\",\"parent\":\"TopologyVersion\"},{\"kind\":256,\"name\":\"ConnectOptions\",\"url\":\"interfaces/ConnectOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ConnectOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"ConnectOptions\"},{\"kind\":256,\"name\":\"SelectServerOptions\",\"url\":\"interfaces/SelectServerOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/SelectServerOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"SelectServerOptions\"},{\"kind\":1024,\"name\":\"serverSelectionTimeoutMS\",\"url\":\"interfaces/SelectServerOptions.html#serverSelectionTimeoutMS\",\"classes\":\"\",\"parent\":\"SelectServerOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/SelectServerOptions.html#session\",\"classes\":\"\",\"parent\":\"SelectServerOptions\"},{\"kind\":128,\"name\":\"ServerCapabilities\",\"url\":\"classes/ServerCapabilities.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ServerCapabilities.html#constructor\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":1024,\"name\":\"maxWireVersion\",\"url\":\"classes/ServerCapabilities.html#maxWireVersion\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/ServerCapabilities.html#minWireVersion\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasAggregationCursor\",\"url\":\"classes/ServerCapabilities.html#hasAggregationCursor\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasWriteCommands\",\"url\":\"classes/ServerCapabilities.html#hasWriteCommands\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasTextSearch\",\"url\":\"classes/ServerCapabilities.html#hasTextSearch\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasAuthCommands\",\"url\":\"classes/ServerCapabilities.html#hasAuthCommands\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasListCollectionsCommand\",\"url\":\"classes/ServerCapabilities.html#hasListCollectionsCommand\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasListIndexesCommand\",\"url\":\"classes/ServerCapabilities.html#hasListIndexesCommand\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"supportsSnapshotReads\",\"url\":\"classes/ServerCapabilities.html#supportsSnapshotReads\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"commandsTakeWriteConcern\",\"url\":\"classes/ServerCapabilities.html#commandsTakeWriteConcern\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"commandsTakeCollation\",\"url\":\"classes/ServerCapabilities.html#commandsTakeCollation\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":4194304,\"name\":\"TopologyEvents\",\"url\":\"types/TopologyEvents.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"TopologyDescription\",\"url\":\"classes/TopologyDescription.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/TopologyDescription.html#constructor\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/TopologyDescription.html#type\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"setName\",\"url\":\"classes/TopologyDescription.html#setName\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"maxSetVersion\",\"url\":\"classes/TopologyDescription.html#maxSetVersion\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"maxElectionId\",\"url\":\"classes/TopologyDescription.html#maxElectionId\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"servers\",\"url\":\"classes/TopologyDescription.html#servers\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"stale\",\"url\":\"classes/TopologyDescription.html#stale\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"compatible\",\"url\":\"classes/TopologyDescription.html#compatible\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"compatibilityError\",\"url\":\"classes/TopologyDescription.html#compatibilityError\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"classes/TopologyDescription.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"classes/TopologyDescription.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"classes/TopologyDescription.html#localThresholdMS\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"commonWireVersion\",\"url\":\"classes/TopologyDescription.html#commonWireVersion\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":262144,\"name\":\"error\",\"url\":\"classes/TopologyDescription.html#error\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":262144,\"name\":\"hasKnownServers\",\"url\":\"classes/TopologyDescription.html#hasKnownServers\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":262144,\"name\":\"hasDataBearingServers\",\"url\":\"classes/TopologyDescription.html#hasDataBearingServers\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":256,\"name\":\"TopologyDescriptionOptions\",\"url\":\"interfaces/TopologyDescriptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/TopologyDescriptionOptions.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"TopologyDescriptionOptions\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"interfaces/TopologyDescriptionOptions.html#localThresholdMS\",\"classes\":\"\",\"parent\":\"TopologyDescriptionOptions\"},{\"kind\":4194304,\"name\":\"ClientSessionEvents\",\"url\":\"types/ClientSessionEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ClientSessionEvents.html#__type\",\"classes\":\"\",\"parent\":\"ClientSessionEvents\"},{\"kind\":2048,\"name\":\"ended\",\"url\":\"types/ClientSessionEvents.html#__type.ended\",\"classes\":\"\",\"parent\":\"ClientSessionEvents.__type\"},{\"kind\":256,\"name\":\"ClientSessionOptions\",\"url\":\"interfaces/ClientSessionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"causalConsistency\",\"url\":\"interfaces/ClientSessionOptions.html#causalConsistency\",\"classes\":\"\",\"parent\":\"ClientSessionOptions\"},{\"kind\":1024,\"name\":\"snapshot\",\"url\":\"interfaces/ClientSessionOptions.html#snapshot\",\"classes\":\"\",\"parent\":\"ClientSessionOptions\"},{\"kind\":1024,\"name\":\"defaultTransactionOptions\",\"url\":\"interfaces/ClientSessionOptions.html#defaultTransactionOptions\",\"classes\":\"\",\"parent\":\"ClientSessionOptions\"},{\"kind\":256,\"name\":\"EndSessionOptions\",\"url\":\"interfaces/EndSessionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"interfaces/EndSessionOptions.html#force\",\"classes\":\"\",\"parent\":\"EndSessionOptions\"},{\"kind\":1024,\"name\":\"forceClear\",\"url\":\"interfaces/EndSessionOptions.html#forceClear\",\"classes\":\"\",\"parent\":\"EndSessionOptions\"},{\"kind\":128,\"name\":\"ServerSession\",\"url\":\"classes/ServerSession.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/ServerSession.html#id\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":1024,\"name\":\"lastUse\",\"url\":\"classes/ServerSession.html#lastUse\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"classes/ServerSession.html#txnNumber\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":1024,\"name\":\"isDirty\",\"url\":\"classes/ServerSession.html#isDirty\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":2048,\"name\":\"hasTimedOut\",\"url\":\"classes/ServerSession.html#hasTimedOut\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":4194304,\"name\":\"ServerSessionId\",\"url\":\"types/ServerSessionId.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ServerSessionId.html#__type\",\"classes\":\"\",\"parent\":\"ServerSessionId\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/ServerSessionId.html#__type.id\",\"classes\":\"\",\"parent\":\"ServerSessionId.__type\"},{\"kind\":4194304,\"name\":\"WithTransactionCallback\",\"url\":\"types/WithTransactionCallback.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/WithTransactionCallback.html#__type\",\"classes\":\"\",\"parent\":\"WithTransactionCallback\"},{\"kind\":4194304,\"name\":\"Sort\",\"url\":\"types/Sort.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SortDirection\",\"url\":\"types/SortDirection.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Transaction\",\"url\":\"classes/Transaction.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/Transaction.html#options\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"recoveryToken\",\"url\":\"classes/Transaction.html#recoveryToken\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isPinned\",\"url\":\"classes/Transaction.html#isPinned\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isStarting\",\"url\":\"classes/Transaction.html#isStarting\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isActive\",\"url\":\"classes/Transaction.html#isActive\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isCommitted\",\"url\":\"classes/Transaction.html#isCommitted\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":256,\"name\":\"TransactionOptions\",\"url\":\"interfaces/TransactionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/TransactionOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/TransactionOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/TransactionOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"maxCommitTimeMS\",\"url\":\"interfaces/TransactionOptions.html#maxCommitTimeMS\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/TransactionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/TransactionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/TransactionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/TransactionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/TransactionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/TransactionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/TransactionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/TransactionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/TransactionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/TransactionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/TransactionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/TransactionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/TransactionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":4194304,\"name\":\"Callback\",\"url\":\"types/Callback.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Callback.html#__type\",\"classes\":\"\",\"parent\":\"Callback\"},{\"kind\":4194304,\"name\":\"EventEmitterWithState\",\"url\":\"types/EventEmitterWithState.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/EventEmitterWithState.html#__type\",\"classes\":\"\",\"parent\":\"EventEmitterWithState\"},{\"kind\":128,\"name\":\"HostAddress\",\"url\":\"classes/HostAddress.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/HostAddress.html#fromString\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"fromHostPort\",\"url\":\"classes/HostAddress.html#fromHostPort\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"fromSrvRecord\",\"url\":\"classes/HostAddress.html#fromSrvRecord\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HostAddress.html#constructor\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"classes/HostAddress.html#host\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"classes/HostAddress.html#port\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"socketPath\",\"url\":\"classes/HostAddress.html#socketPath\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"isIPv6\",\"url\":\"classes/HostAddress.html#isIPv6\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"inspect\",\"url\":\"classes/HostAddress.html#inspect\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/HostAddress.html#toString\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"toHostPort\",\"url\":\"classes/HostAddress.html#toHostPort\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/HostAddress.html#toHostPort.toHostPort-1.__type\",\"classes\":\"\",\"parent\":\"HostAddress.toHostPort.toHostPort\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"classes/HostAddress.html#toHostPort.toHostPort-1.__type.host-1\",\"classes\":\"\",\"parent\":\"HostAddress.toHostPort.toHostPort.__type\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"classes/HostAddress.html#toHostPort.toHostPort-1.__type.port-1\",\"classes\":\"\",\"parent\":\"HostAddress.toHostPort.toHostPort.__type\"},{\"kind\":128,\"name\":\"MongoDBCollectionNamespace\",\"url\":\"classes/MongoDBCollectionNamespace.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/MongoDBCollectionNamespace.html#fromString\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDBCollectionNamespace.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"classes/MongoDBCollectionNamespace.html#collection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"classes/MongoDBCollectionNamespace.html#db\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/MongoDBCollectionNamespace.html#toString\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":2048,\"name\":\"withCollection\",\"url\":\"classes/MongoDBCollectionNamespace.html#withCollection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":128,\"name\":\"MongoDBNamespace\",\"url\":\"classes/MongoDBNamespace.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/MongoDBNamespace.html#fromString\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDBNamespace.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"classes/MongoDBNamespace.html#db\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"classes/MongoDBNamespace.html#collection\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/MongoDBNamespace.html#toString\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":2048,\"name\":\"withCollection\",\"url\":\"classes/MongoDBNamespace.html#withCollection\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":4194304,\"name\":\"W\",\"url\":\"types/W.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"WriteConcernOptions\",\"url\":\"interfaces/WriteConcernOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/WriteConcernOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"WriteConcernOptions\"},{\"kind\":256,\"name\":\"WriteConcernSettings\",\"url\":\"interfaces/WriteConcernSettings.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"w\",\"url\":\"interfaces/WriteConcernSettings.html#w\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"wtimeoutMS\",\"url\":\"interfaces/WriteConcernSettings.html#wtimeoutMS\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"journal\",\"url\":\"interfaces/WriteConcernSettings.html#journal\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"j\",\"url\":\"interfaces/WriteConcernSettings.html#j\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"wtimeout\",\"url\":\"interfaces/WriteConcernSettings.html#wtimeout\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"fsync\",\"url\":\"interfaces/WriteConcernSettings.html#fsync\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,76.943]],[\"comment/0\",[]],[\"name/1\",[1,76.943]],[\"comment/1\",[]],[\"name/2\",[2,76.943]],[\"comment/2\",[]],[\"name/3\",[3,76.943]],[\"comment/3\",[]],[\"name/4\",[4,44.005]],[\"comment/4\",[]],[\"name/5\",[5,76.943]],[\"comment/5\",[]],[\"name/6\",[6,76.943]],[\"comment/6\",[]],[\"name/7\",[7,76.943]],[\"comment/7\",[]],[\"name/8\",[8,76.943]],[\"comment/8\",[]],[\"name/9\",[9,76.943]],[\"comment/9\",[]],[\"name/10\",[10,76.943]],[\"comment/10\",[]],[\"name/11\",[11,76.943]],[\"comment/11\",[]],[\"name/12\",[12,76.943]],[\"comment/12\",[]],[\"name/13\",[13,76.943]],[\"comment/13\",[]],[\"name/14\",[14,76.943]],[\"comment/14\",[]],[\"name/15\",[15,76.943]],[\"comment/15\",[]],[\"name/16\",[16,57.348]],[\"comment/16\",[]],[\"name/17\",[17,71.799]],[\"comment/17\",[]],[\"name/18\",[18,63.859]],[\"comment/18\",[]],[\"name/19\",[19,55.592]],[\"comment/19\",[]],[\"name/20\",[20,42.581]],[\"comment/20\",[]],[\"name/21\",[21,43.754]],[\"comment/21\",[]],[\"name/22\",[22,44.529]],[\"comment/22\",[]],[\"name/23\",[23,45.665]],[\"comment/23\",[]],[\"name/24\",[24,45.97]],[\"comment/24\",[]],[\"name/25\",[25,46.284]],[\"comment/25\",[]],[\"name/26\",[26,46.945]],[\"comment/26\",[]],[\"name/27\",[27,46.945]],[\"comment/27\",[]],[\"name/28\",[28,43.508]],[\"comment/28\",[]],[\"name/29\",[29,46.609]],[\"comment/29\",[]],[\"name/30\",[30,40.95]],[\"comment/30\",[]],[\"name/31\",[31,46.609]],[\"comment/31\",[]],[\"name/32\",[32,44.005]],[\"comment/32\",[]],[\"name/33\",[33,45.081]],[\"comment/33\",[]],[\"name/34\",[34,44.005]],[\"comment/34\",[]],[\"name/35\",[35,45.665]],[\"comment/35\",[]],[\"name/36\",[36,76.943]],[\"comment/36\",[]],[\"name/37\",[37,41.14]],[\"comment/37\",[]],[\"name/38\",[38,68.411]],[\"comment/38\",[]],[\"name/39\",[39,76.943]],[\"comment/39\",[]],[\"name/40\",[40,68.411]],[\"comment/40\",[]],[\"name/41\",[41,42.805]],[\"comment/41\",[]],[\"name/42\",[42,68.411]],[\"comment/42\",[]],[\"name/43\",[43,68.411]],[\"comment/43\",[]],[\"name/44\",[44,68.411]],[\"comment/44\",[]],[\"name/45\",[45,68.411]],[\"comment/45\",[]],[\"name/46\",[46,68.411]],[\"comment/46\",[]],[\"name/47\",[47,68.411]],[\"comment/47\",[]],[\"name/48\",[48,40.95]],[\"comment/48\",[]],[\"name/49\",[49,71.799]],[\"comment/49\",[]],[\"name/50\",[48,40.95]],[\"comment/50\",[]],[\"name/51\",[50,68.411]],[\"comment/51\",[]],[\"name/52\",[51,65.88]],[\"comment/52\",[]],[\"name/53\",[52,59.475]],[\"comment/53\",[]],[\"name/54\",[53,60.736]],[\"comment/54\",[]],[\"name/55\",[4,44.005]],[\"comment/55\",[]],[\"name/56\",[54,45.081]],[\"comment/56\",[]],[\"name/57\",[55,45.665]],[\"comment/57\",[]],[\"name/58\",[56,45.665]],[\"comment/58\",[]],[\"name/59\",[57,44.005]],[\"comment/59\",[]],[\"name/60\",[58,45.665]],[\"comment/60\",[]],[\"name/61\",[59,45.665]],[\"comment/61\",[]],[\"name/62\",[60,45.368]],[\"comment/62\",[]],[\"name/63\",[61,76.943]],[\"comment/63\",[]],[\"name/64\",[37,41.14]],[\"comment/64\",[]],[\"name/65\",[41,42.805]],[\"comment/65\",[]],[\"name/66\",[4,44.005]],[\"comment/66\",[]],[\"name/67\",[54,45.081]],[\"comment/67\",[]],[\"name/68\",[55,45.665]],[\"comment/68\",[]],[\"name/69\",[56,45.665]],[\"comment/69\",[]],[\"name/70\",[57,44.005]],[\"comment/70\",[]],[\"name/71\",[58,45.665]],[\"comment/71\",[]],[\"name/72\",[59,45.665]],[\"comment/72\",[]],[\"name/73\",[60,45.368]],[\"comment/73\",[]],[\"name/74\",[62,76.943]],[\"comment/74\",[]],[\"name/75\",[37,41.14]],[\"comment/75\",[]],[\"name/76\",[41,42.805]],[\"comment/76\",[]],[\"name/77\",[4,44.005]],[\"comment/77\",[]],[\"name/78\",[54,45.081]],[\"comment/78\",[]],[\"name/79\",[55,45.665]],[\"comment/79\",[]],[\"name/80\",[56,45.665]],[\"comment/80\",[]],[\"name/81\",[57,44.005]],[\"comment/81\",[]],[\"name/82\",[58,45.665]],[\"comment/82\",[]],[\"name/83\",[59,45.665]],[\"comment/83\",[]],[\"name/84\",[60,45.368]],[\"comment/84\",[]],[\"name/85\",[63,76.943]],[\"comment/85\",[]],[\"name/86\",[37,41.14]],[\"comment/86\",[]],[\"name/87\",[41,42.805]],[\"comment/87\",[]],[\"name/88\",[4,44.005]],[\"comment/88\",[]],[\"name/89\",[54,45.081]],[\"comment/89\",[]],[\"name/90\",[55,45.665]],[\"comment/90\",[]],[\"name/91\",[56,45.665]],[\"comment/91\",[]],[\"name/92\",[57,44.005]],[\"comment/92\",[]],[\"name/93\",[58,45.665]],[\"comment/93\",[]],[\"name/94\",[59,45.665]],[\"comment/94\",[]],[\"name/95\",[60,45.368]],[\"comment/95\",[]],[\"name/96\",[64,76.943]],[\"comment/96\",[]],[\"name/97\",[37,41.14]],[\"comment/97\",[]],[\"name/98\",[41,42.805]],[\"comment/98\",[]],[\"name/99\",[4,44.005]],[\"comment/99\",[]],[\"name/100\",[54,45.081]],[\"comment/100\",[]],[\"name/101\",[55,45.665]],[\"comment/101\",[]],[\"name/102\",[56,45.665]],[\"comment/102\",[]],[\"name/103\",[57,44.005]],[\"comment/103\",[]],[\"name/104\",[58,45.665]],[\"comment/104\",[]],[\"name/105\",[59,45.665]],[\"comment/105\",[]],[\"name/106\",[60,45.368]],[\"comment/106\",[]],[\"name/107\",[65,76.943]],[\"comment/107\",[]],[\"name/108\",[37,41.14]],[\"comment/108\",[]],[\"name/109\",[41,42.805]],[\"comment/109\",[]],[\"name/110\",[4,44.005]],[\"comment/110\",[]],[\"name/111\",[54,45.081]],[\"comment/111\",[]],[\"name/112\",[55,45.665]],[\"comment/112\",[]],[\"name/113\",[56,45.665]],[\"comment/113\",[]],[\"name/114\",[57,44.005]],[\"comment/114\",[]],[\"name/115\",[58,45.665]],[\"comment/115\",[]],[\"name/116\",[59,45.665]],[\"comment/116\",[]],[\"name/117\",[60,45.368]],[\"comment/117\",[]],[\"name/118\",[66,76.943]],[\"comment/118\",[]],[\"name/119\",[37,41.14]],[\"comment/119\",[]],[\"name/120\",[41,42.805]],[\"comment/120\",[]],[\"name/121\",[4,44.005]],[\"comment/121\",[]],[\"name/122\",[54,45.081]],[\"comment/122\",[]],[\"name/123\",[55,45.665]],[\"comment/123\",[]],[\"name/124\",[56,45.665]],[\"comment/124\",[]],[\"name/125\",[57,44.005]],[\"comment/125\",[]],[\"name/126\",[58,45.665]],[\"comment/126\",[]],[\"name/127\",[59,45.665]],[\"comment/127\",[]],[\"name/128\",[60,45.368]],[\"comment/128\",[]],[\"name/129\",[67,76.943]],[\"comment/129\",[]],[\"name/130\",[37,41.14]],[\"comment/130\",[]],[\"name/131\",[41,42.805]],[\"comment/131\",[]],[\"name/132\",[4,44.005]],[\"comment/132\",[]],[\"name/133\",[54,45.081]],[\"comment/133\",[]],[\"name/134\",[55,45.665]],[\"comment/134\",[]],[\"name/135\",[56,45.665]],[\"comment/135\",[]],[\"name/136\",[57,44.005]],[\"comment/136\",[]],[\"name/137\",[58,45.665]],[\"comment/137\",[]],[\"name/138\",[59,45.665]],[\"comment/138\",[]],[\"name/139\",[60,45.368]],[\"comment/139\",[]],[\"name/140\",[68,76.943]],[\"comment/140\",[]],[\"name/141\",[37,41.14]],[\"comment/141\",[]],[\"name/142\",[41,42.805]],[\"comment/142\",[]],[\"name/143\",[4,44.005]],[\"comment/143\",[]],[\"name/144\",[54,45.081]],[\"comment/144\",[]],[\"name/145\",[55,45.665]],[\"comment/145\",[]],[\"name/146\",[56,45.665]],[\"comment/146\",[]],[\"name/147\",[57,44.005]],[\"comment/147\",[]],[\"name/148\",[58,45.665]],[\"comment/148\",[]],[\"name/149\",[59,45.665]],[\"comment/149\",[]],[\"name/150\",[60,45.368]],[\"comment/150\",[]],[\"name/151\",[69,76.943]],[\"comment/151\",[]],[\"name/152\",[37,41.14]],[\"comment/152\",[]],[\"name/153\",[41,42.805]],[\"comment/153\",[]],[\"name/154\",[4,44.005]],[\"comment/154\",[]],[\"name/155\",[54,45.081]],[\"comment/155\",[]],[\"name/156\",[55,45.665]],[\"comment/156\",[]],[\"name/157\",[56,45.665]],[\"comment/157\",[]],[\"name/158\",[57,44.005]],[\"comment/158\",[]],[\"name/159\",[58,45.665]],[\"comment/159\",[]],[\"name/160\",[59,45.665]],[\"comment/160\",[]],[\"name/161\",[60,45.368]],[\"comment/161\",[]],[\"name/162\",[70,76.943]],[\"comment/162\",[]],[\"name/163\",[37,41.14]],[\"comment/163\",[]],[\"name/164\",[41,42.805]],[\"comment/164\",[]],[\"name/165\",[4,44.005]],[\"comment/165\",[]],[\"name/166\",[54,45.081]],[\"comment/166\",[]],[\"name/167\",[55,45.665]],[\"comment/167\",[]],[\"name/168\",[56,45.665]],[\"comment/168\",[]],[\"name/169\",[57,44.005]],[\"comment/169\",[]],[\"name/170\",[58,45.665]],[\"comment/170\",[]],[\"name/171\",[59,45.665]],[\"comment/171\",[]],[\"name/172\",[60,45.368]],[\"comment/172\",[]],[\"name/173\",[71,76.943]],[\"comment/173\",[]],[\"name/174\",[37,41.14]],[\"comment/174\",[]],[\"name/175\",[4,44.005]],[\"comment/175\",[]],[\"name/176\",[54,45.081]],[\"comment/176\",[]],[\"name/177\",[55,45.665]],[\"comment/177\",[]],[\"name/178\",[56,45.665]],[\"comment/178\",[]],[\"name/179\",[41,42.805]],[\"comment/179\",[]],[\"name/180\",[57,44.005]],[\"comment/180\",[]],[\"name/181\",[58,45.665]],[\"comment/181\",[]],[\"name/182\",[59,45.665]],[\"comment/182\",[]],[\"name/183\",[60,45.368]],[\"comment/183\",[]],[\"name/184\",[72,76.943]],[\"comment/184\",[]],[\"name/185\",[37,41.14]],[\"comment/185\",[]],[\"name/186\",[41,42.805]],[\"comment/186\",[]],[\"name/187\",[4,44.005]],[\"comment/187\",[]],[\"name/188\",[54,45.081]],[\"comment/188\",[]],[\"name/189\",[55,45.665]],[\"comment/189\",[]],[\"name/190\",[56,45.665]],[\"comment/190\",[]],[\"name/191\",[57,44.005]],[\"comment/191\",[]],[\"name/192\",[58,45.665]],[\"comment/192\",[]],[\"name/193\",[59,45.665]],[\"comment/193\",[]],[\"name/194\",[60,45.368]],[\"comment/194\",[]],[\"name/195\",[73,76.943]],[\"comment/195\",[]],[\"name/196\",[37,41.14]],[\"comment/196\",[]],[\"name/197\",[41,42.805]],[\"comment/197\",[]],[\"name/198\",[4,44.005]],[\"comment/198\",[]],[\"name/199\",[54,45.081]],[\"comment/199\",[]],[\"name/200\",[55,45.665]],[\"comment/200\",[]],[\"name/201\",[56,45.665]],[\"comment/201\",[]],[\"name/202\",[57,44.005]],[\"comment/202\",[]],[\"name/203\",[58,45.665]],[\"comment/203\",[]],[\"name/204\",[59,45.665]],[\"comment/204\",[]],[\"name/205\",[60,45.368]],[\"comment/205\",[]],[\"name/206\",[74,76.943]],[\"comment/206\",[]],[\"name/207\",[37,41.14]],[\"comment/207\",[]],[\"name/208\",[41,42.805]],[\"comment/208\",[]],[\"name/209\",[4,44.005]],[\"comment/209\",[]],[\"name/210\",[54,45.081]],[\"comment/210\",[]],[\"name/211\",[55,45.665]],[\"comment/211\",[]],[\"name/212\",[56,45.665]],[\"comment/212\",[]],[\"name/213\",[57,44.005]],[\"comment/213\",[]],[\"name/214\",[58,45.665]],[\"comment/214\",[]],[\"name/215\",[59,45.665]],[\"comment/215\",[]],[\"name/216\",[60,45.368]],[\"comment/216\",[]],[\"name/217\",[75,76.943]],[\"comment/217\",[]],[\"name/218\",[37,41.14]],[\"comment/218\",[]],[\"name/219\",[41,42.805]],[\"comment/219\",[]],[\"name/220\",[4,44.005]],[\"comment/220\",[]],[\"name/221\",[54,45.081]],[\"comment/221\",[]],[\"name/222\",[55,45.665]],[\"comment/222\",[]],[\"name/223\",[56,45.665]],[\"comment/223\",[]],[\"name/224\",[57,44.005]],[\"comment/224\",[]],[\"name/225\",[58,45.665]],[\"comment/225\",[]],[\"name/226\",[59,45.665]],[\"comment/226\",[]],[\"name/227\",[60,45.368]],[\"comment/227\",[]],[\"name/228\",[76,76.943]],[\"comment/228\",[]],[\"name/229\",[37,41.14]],[\"comment/229\",[]],[\"name/230\",[41,42.805]],[\"comment/230\",[]],[\"name/231\",[4,44.005]],[\"comment/231\",[]],[\"name/232\",[54,45.081]],[\"comment/232\",[]],[\"name/233\",[55,45.665]],[\"comment/233\",[]],[\"name/234\",[56,45.665]],[\"comment/234\",[]],[\"name/235\",[57,44.005]],[\"comment/235\",[]],[\"name/236\",[58,45.665]],[\"comment/236\",[]],[\"name/237\",[59,45.665]],[\"comment/237\",[]],[\"name/238\",[60,45.368]],[\"comment/238\",[]],[\"name/239\",[77,76.943]],[\"comment/239\",[]],[\"name/240\",[37,41.14]],[\"comment/240\",[]],[\"name/241\",[41,42.805]],[\"comment/241\",[]],[\"name/242\",[4,44.005]],[\"comment/242\",[]],[\"name/243\",[54,45.081]],[\"comment/243\",[]],[\"name/244\",[55,45.665]],[\"comment/244\",[]],[\"name/245\",[56,45.665]],[\"comment/245\",[]],[\"name/246\",[57,44.005]],[\"comment/246\",[]],[\"name/247\",[58,45.665]],[\"comment/247\",[]],[\"name/248\",[59,45.665]],[\"comment/248\",[]],[\"name/249\",[60,45.368]],[\"comment/249\",[]],[\"name/250\",[78,76.943]],[\"comment/250\",[]],[\"name/251\",[37,41.14]],[\"comment/251\",[]],[\"name/252\",[41,42.805]],[\"comment/252\",[]],[\"name/253\",[4,44.005]],[\"comment/253\",[]],[\"name/254\",[54,45.081]],[\"comment/254\",[]],[\"name/255\",[55,45.665]],[\"comment/255\",[]],[\"name/256\",[56,45.665]],[\"comment/256\",[]],[\"name/257\",[57,44.005]],[\"comment/257\",[]],[\"name/258\",[58,45.665]],[\"comment/258\",[]],[\"name/259\",[59,45.665]],[\"comment/259\",[]],[\"name/260\",[60,45.368]],[\"comment/260\",[]],[\"name/261\",[79,76.943]],[\"comment/261\",[]],[\"name/262\",[37,41.14]],[\"comment/262\",[]],[\"name/263\",[41,42.805]],[\"comment/263\",[]],[\"name/264\",[4,44.005]],[\"comment/264\",[]],[\"name/265\",[54,45.081]],[\"comment/265\",[]],[\"name/266\",[55,45.665]],[\"comment/266\",[]],[\"name/267\",[56,45.665]],[\"comment/267\",[]],[\"name/268\",[57,44.005]],[\"comment/268\",[]],[\"name/269\",[58,45.665]],[\"comment/269\",[]],[\"name/270\",[59,45.665]],[\"comment/270\",[]],[\"name/271\",[60,45.368]],[\"comment/271\",[]],[\"name/272\",[80,76.943]],[\"comment/272\",[]],[\"name/273\",[37,41.14]],[\"comment/273\",[]],[\"name/274\",[41,42.805]],[\"comment/274\",[]],[\"name/275\",[4,44.005]],[\"comment/275\",[]],[\"name/276\",[54,45.081]],[\"comment/276\",[]],[\"name/277\",[55,45.665]],[\"comment/277\",[]],[\"name/278\",[56,45.665]],[\"comment/278\",[]],[\"name/279\",[57,44.005]],[\"comment/279\",[]],[\"name/280\",[58,45.665]],[\"comment/280\",[]],[\"name/281\",[59,45.665]],[\"comment/281\",[]],[\"name/282\",[60,45.368]],[\"comment/282\",[]],[\"name/283\",[81,76.943]],[\"comment/283\",[]],[\"name/284\",[37,41.14]],[\"comment/284\",[]],[\"name/285\",[41,42.805]],[\"comment/285\",[]],[\"name/286\",[4,44.005]],[\"comment/286\",[]],[\"name/287\",[54,45.081]],[\"comment/287\",[]],[\"name/288\",[55,45.665]],[\"comment/288\",[]],[\"name/289\",[56,45.665]],[\"comment/289\",[]],[\"name/290\",[57,44.005]],[\"comment/290\",[]],[\"name/291\",[58,45.665]],[\"comment/291\",[]],[\"name/292\",[59,45.665]],[\"comment/292\",[]],[\"name/293\",[60,45.368]],[\"comment/293\",[]],[\"name/294\",[82,76.943]],[\"comment/294\",[]],[\"name/295\",[37,41.14]],[\"comment/295\",[]],[\"name/296\",[41,42.805]],[\"comment/296\",[]],[\"name/297\",[4,44.005]],[\"comment/297\",[]],[\"name/298\",[54,45.081]],[\"comment/298\",[]],[\"name/299\",[55,45.665]],[\"comment/299\",[]],[\"name/300\",[56,45.665]],[\"comment/300\",[]],[\"name/301\",[57,44.005]],[\"comment/301\",[]],[\"name/302\",[58,45.665]],[\"comment/302\",[]],[\"name/303\",[59,45.665]],[\"comment/303\",[]],[\"name/304\",[60,45.368]],[\"comment/304\",[]],[\"name/305\",[83,76.943]],[\"comment/305\",[]],[\"name/306\",[37,41.14]],[\"comment/306\",[]],[\"name/307\",[41,42.805]],[\"comment/307\",[]],[\"name/308\",[4,44.005]],[\"comment/308\",[]],[\"name/309\",[54,45.081]],[\"comment/309\",[]],[\"name/310\",[55,45.665]],[\"comment/310\",[]],[\"name/311\",[56,45.665]],[\"comment/311\",[]],[\"name/312\",[57,44.005]],[\"comment/312\",[]],[\"name/313\",[58,45.665]],[\"comment/313\",[]],[\"name/314\",[59,45.665]],[\"comment/314\",[]],[\"name/315\",[60,45.368]],[\"comment/315\",[]],[\"name/316\",[84,76.943]],[\"comment/316\",[]],[\"name/317\",[37,41.14]],[\"comment/317\",[]],[\"name/318\",[41,42.805]],[\"comment/318\",[]],[\"name/319\",[4,44.005]],[\"comment/319\",[]],[\"name/320\",[54,45.081]],[\"comment/320\",[]],[\"name/321\",[55,45.665]],[\"comment/321\",[]],[\"name/322\",[56,45.665]],[\"comment/322\",[]],[\"name/323\",[57,44.005]],[\"comment/323\",[]],[\"name/324\",[58,45.665]],[\"comment/324\",[]],[\"name/325\",[59,45.665]],[\"comment/325\",[]],[\"name/326\",[60,45.368]],[\"comment/326\",[]],[\"name/327\",[85,76.943]],[\"comment/327\",[]],[\"name/328\",[37,41.14]],[\"comment/328\",[]],[\"name/329\",[50,68.411]],[\"comment/329\",[]],[\"name/330\",[51,65.88]],[\"comment/330\",[]],[\"name/331\",[52,59.475]],[\"comment/331\",[]],[\"name/332\",[53,60.736]],[\"comment/332\",[]],[\"name/333\",[41,42.805]],[\"comment/333\",[]],[\"name/334\",[4,44.005]],[\"comment/334\",[]],[\"name/335\",[54,45.081]],[\"comment/335\",[]],[\"name/336\",[55,45.665]],[\"comment/336\",[]],[\"name/337\",[56,45.665]],[\"comment/337\",[]],[\"name/338\",[57,44.005]],[\"comment/338\",[]],[\"name/339\",[58,45.665]],[\"comment/339\",[]],[\"name/340\",[59,45.665]],[\"comment/340\",[]],[\"name/341\",[60,45.368]],[\"comment/341\",[]],[\"name/342\",[86,76.943]],[\"comment/342\",[]],[\"name/343\",[37,41.14]],[\"comment/343\",[]],[\"name/344\",[41,42.805]],[\"comment/344\",[]],[\"name/345\",[87,65.88]],[\"comment/345\",[]],[\"name/346\",[4,44.005]],[\"comment/346\",[]],[\"name/347\",[54,45.081]],[\"comment/347\",[]],[\"name/348\",[55,45.665]],[\"comment/348\",[]],[\"name/349\",[56,45.665]],[\"comment/349\",[]],[\"name/350\",[57,44.005]],[\"comment/350\",[]],[\"name/351\",[58,45.665]],[\"comment/351\",[]],[\"name/352\",[59,45.665]],[\"comment/352\",[]],[\"name/353\",[60,45.368]],[\"comment/353\",[]],[\"name/354\",[88,76.943]],[\"comment/354\",[]],[\"name/355\",[37,41.14]],[\"comment/355\",[]],[\"name/356\",[87,65.88]],[\"comment/356\",[]],[\"name/357\",[41,42.805]],[\"comment/357\",[]],[\"name/358\",[4,44.005]],[\"comment/358\",[]],[\"name/359\",[54,45.081]],[\"comment/359\",[]],[\"name/360\",[55,45.665]],[\"comment/360\",[]],[\"name/361\",[56,45.665]],[\"comment/361\",[]],[\"name/362\",[57,44.005]],[\"comment/362\",[]],[\"name/363\",[58,45.665]],[\"comment/363\",[]],[\"name/364\",[59,45.665]],[\"comment/364\",[]],[\"name/365\",[60,45.368]],[\"comment/365\",[]],[\"name/366\",[89,76.943]],[\"comment/366\",[]],[\"name/367\",[37,41.14]],[\"comment/367\",[]],[\"name/368\",[41,42.805]],[\"comment/368\",[]],[\"name/369\",[4,44.005]],[\"comment/369\",[]],[\"name/370\",[54,45.081]],[\"comment/370\",[]],[\"name/371\",[55,45.665]],[\"comment/371\",[]],[\"name/372\",[56,45.665]],[\"comment/372\",[]],[\"name/373\",[57,44.005]],[\"comment/373\",[]],[\"name/374\",[58,45.665]],[\"comment/374\",[]],[\"name/375\",[59,45.665]],[\"comment/375\",[]],[\"name/376\",[60,45.368]],[\"comment/376\",[]],[\"name/377\",[90,76.943]],[\"comment/377\",[]],[\"name/378\",[37,41.14]],[\"comment/378\",[]],[\"name/379\",[41,42.805]],[\"comment/379\",[]],[\"name/380\",[4,44.005]],[\"comment/380\",[]],[\"name/381\",[54,45.081]],[\"comment/381\",[]],[\"name/382\",[55,45.665]],[\"comment/382\",[]],[\"name/383\",[56,45.665]],[\"comment/383\",[]],[\"name/384\",[57,44.005]],[\"comment/384\",[]],[\"name/385\",[58,45.665]],[\"comment/385\",[]],[\"name/386\",[59,45.665]],[\"comment/386\",[]],[\"name/387\",[60,45.368]],[\"comment/387\",[]],[\"name/388\",[91,76.943]],[\"comment/388\",[]],[\"name/389\",[37,41.14]],[\"comment/389\",[]],[\"name/390\",[41,42.805]],[\"comment/390\",[]],[\"name/391\",[4,44.005]],[\"comment/391\",[]],[\"name/392\",[54,45.081]],[\"comment/392\",[]],[\"name/393\",[55,45.665]],[\"comment/393\",[]],[\"name/394\",[56,45.665]],[\"comment/394\",[]],[\"name/395\",[57,44.005]],[\"comment/395\",[]],[\"name/396\",[58,45.665]],[\"comment/396\",[]],[\"name/397\",[59,45.665]],[\"comment/397\",[]],[\"name/398\",[60,45.368]],[\"comment/398\",[]],[\"name/399\",[92,76.943]],[\"comment/399\",[]],[\"name/400\",[37,41.14]],[\"comment/400\",[]],[\"name/401\",[41,42.805]],[\"comment/401\",[]],[\"name/402\",[4,44.005]],[\"comment/402\",[]],[\"name/403\",[54,45.081]],[\"comment/403\",[]],[\"name/404\",[55,45.665]],[\"comment/404\",[]],[\"name/405\",[56,45.665]],[\"comment/405\",[]],[\"name/406\",[57,44.005]],[\"comment/406\",[]],[\"name/407\",[58,45.665]],[\"comment/407\",[]],[\"name/408\",[59,45.665]],[\"comment/408\",[]],[\"name/409\",[60,45.368]],[\"comment/409\",[]],[\"name/410\",[93,76.943]],[\"comment/410\",[]],[\"name/411\",[37,41.14]],[\"comment/411\",[]],[\"name/412\",[38,68.411]],[\"comment/412\",[]],[\"name/413\",[41,42.805]],[\"comment/413\",[]],[\"name/414\",[50,68.411]],[\"comment/414\",[]],[\"name/415\",[51,65.88]],[\"comment/415\",[]],[\"name/416\",[52,59.475]],[\"comment/416\",[]],[\"name/417\",[53,60.736]],[\"comment/417\",[]],[\"name/418\",[4,44.005]],[\"comment/418\",[]],[\"name/419\",[54,45.081]],[\"comment/419\",[]],[\"name/420\",[55,45.665]],[\"comment/420\",[]],[\"name/421\",[56,45.665]],[\"comment/421\",[]],[\"name/422\",[57,44.005]],[\"comment/422\",[]],[\"name/423\",[58,45.665]],[\"comment/423\",[]],[\"name/424\",[59,45.665]],[\"comment/424\",[]],[\"name/425\",[60,45.368]],[\"comment/425\",[]],[\"name/426\",[94,76.943]],[\"comment/426\",[]],[\"name/427\",[95,50.131]],[\"comment/427\",[]],[\"name/428\",[96,54.817]],[\"comment/428\",[]],[\"name/429\",[97,57.348]],[\"comment/429\",[]],[\"name/430\",[30,40.95]],[\"comment/430\",[]],[\"name/431\",[20,42.581]],[\"comment/431\",[]],[\"name/432\",[28,43.508]],[\"comment/432\",[]],[\"name/433\",[98,59.475]],[\"comment/433\",[]],[\"name/434\",[99,60.736]],[\"comment/434\",[]],[\"name/435\",[100,53.426]],[\"comment/435\",[]],[\"name/436\",[101,60.736]],[\"comment/436\",[]],[\"name/437\",[102,60.736]],[\"comment/437\",[]],[\"name/438\",[103,58.355]],[\"comment/438\",[]],[\"name/439\",[104,59.475]],[\"comment/439\",[]],[\"name/440\",[105,58.355]],[\"comment/440\",[]],[\"name/441\",[106,59.475]],[\"comment/441\",[]],[\"name/442\",[107,60.736]],[\"comment/442\",[]],[\"name/443\",[95,50.131]],[\"comment/443\",[]],[\"name/444\",[108,60.736]],[\"comment/444\",[]],[\"name/445\",[109,60.736]],[\"comment/445\",[]],[\"name/446\",[110,60.736]],[\"comment/446\",[]],[\"name/447\",[111,60.736]],[\"comment/447\",[]],[\"name/448\",[112,60.736]],[\"comment/448\",[]],[\"name/449\",[22,44.529]],[\"comment/449\",[]],[\"name/450\",[113,52.204]],[\"comment/450\",[]],[\"name/451\",[114,60.736]],[\"comment/451\",[]],[\"name/452\",[115,60.736]],[\"comment/452\",[]],[\"name/453\",[116,59.475]],[\"comment/453\",[]],[\"name/454\",[117,54.817]],[\"comment/454\",[]],[\"name/455\",[118,54.817]],[\"comment/455\",[]],[\"name/456\",[119,54.817]],[\"comment/456\",[]],[\"name/457\",[120,54.817]],[\"comment/457\",[]],[\"name/458\",[121,54.817]],[\"comment/458\",[]],[\"name/459\",[122,54.817]],[\"comment/459\",[]],[\"name/460\",[123,54.817]],[\"comment/460\",[]],[\"name/461\",[124,54.817]],[\"comment/461\",[]],[\"name/462\",[125,54.817]],[\"comment/462\",[]],[\"name/463\",[126,54.817]],[\"comment/463\",[]],[\"name/464\",[127,54.817]],[\"comment/464\",[]],[\"name/465\",[128,54.817]],[\"comment/465\",[]],[\"name/466\",[129,54.817]],[\"comment/466\",[]],[\"name/467\",[130,54.817]],[\"comment/467\",[]],[\"name/468\",[131,54.817]],[\"comment/468\",[]],[\"name/469\",[132,71.799]],[\"comment/469\",[]],[\"name/470\",[133,65.88]],[\"comment/470\",[]],[\"name/471\",[134,76.943]],[\"comment/471\",[]],[\"name/472\",[135,76.943]],[\"comment/472\",[]],[\"name/473\",[136,76.943]],[\"comment/473\",[]],[\"name/474\",[137,76.943]],[\"comment/474\",[]],[\"name/475\",[138,71.799]],[\"comment/475\",[]],[\"name/476\",[139,71.799]],[\"comment/476\",[]],[\"name/477\",[140,76.943]],[\"comment/477\",[]],[\"name/478\",[141,76.943]],[\"comment/478\",[]],[\"name/479\",[142,76.943]],[\"comment/479\",[]],[\"name/480\",[143,76.943]],[\"comment/480\",[]],[\"name/481\",[95,50.131]],[\"comment/481\",[]],[\"name/482\",[144,65.88]],[\"comment/482\",[]],[\"name/483\",[115,60.736]],[\"comment/483\",[]],[\"name/484\",[110,60.736]],[\"comment/484\",[]],[\"name/485\",[35,45.665]],[\"comment/485\",[]],[\"name/486\",[145,71.799]],[\"comment/486\",[]],[\"name/487\",[146,60.736]],[\"comment/487\",[]],[\"name/488\",[147,71.799]],[\"comment/488\",[]],[\"name/489\",[148,62.177]],[\"comment/489\",[]],[\"name/490\",[149,68.411]],[\"comment/490\",[]],[\"name/491\",[150,71.799]],[\"comment/491\",[]],[\"name/492\",[151,71.799]],[\"comment/492\",[]],[\"name/493\",[152,59.475]],[\"comment/493\",[]],[\"name/494\",[153,56.431]],[\"comment/494\",[]],[\"name/495\",[154,71.799]],[\"comment/495\",[]],[\"name/496\",[155,71.799]],[\"comment/496\",[]],[\"name/497\",[96,54.817]],[\"comment/497\",[]],[\"name/498\",[97,57.348]],[\"comment/498\",[]],[\"name/499\",[30,40.95]],[\"comment/499\",[]],[\"name/500\",[20,42.581]],[\"comment/500\",[]],[\"name/501\",[28,43.508]],[\"comment/501\",[]],[\"name/502\",[98,59.475]],[\"comment/502\",[]],[\"name/503\",[99,60.736]],[\"comment/503\",[]],[\"name/504\",[100,53.426]],[\"comment/504\",[]],[\"name/505\",[101,60.736]],[\"comment/505\",[]],[\"name/506\",[102,60.736]],[\"comment/506\",[]],[\"name/507\",[103,58.355]],[\"comment/507\",[]],[\"name/508\",[104,59.475]],[\"comment/508\",[]],[\"name/509\",[105,58.355]],[\"comment/509\",[]],[\"name/510\",[106,59.475]],[\"comment/510\",[]],[\"name/511\",[107,60.736]],[\"comment/511\",[]],[\"name/512\",[95,50.131]],[\"comment/512\",[]],[\"name/513\",[108,60.736]],[\"comment/513\",[]],[\"name/514\",[109,60.736]],[\"comment/514\",[]],[\"name/515\",[111,60.736]],[\"comment/515\",[]],[\"name/516\",[112,60.736]],[\"comment/516\",[]],[\"name/517\",[22,44.529]],[\"comment/517\",[]],[\"name/518\",[113,52.204]],[\"comment/518\",[]],[\"name/519\",[114,60.736]],[\"comment/519\",[]],[\"name/520\",[116,59.475]],[\"comment/520\",[]],[\"name/521\",[117,54.817]],[\"comment/521\",[]],[\"name/522\",[118,54.817]],[\"comment/522\",[]],[\"name/523\",[119,54.817]],[\"comment/523\",[]],[\"name/524\",[120,54.817]],[\"comment/524\",[]],[\"name/525\",[121,54.817]],[\"comment/525\",[]],[\"name/526\",[122,54.817]],[\"comment/526\",[]],[\"name/527\",[123,54.817]],[\"comment/527\",[]],[\"name/528\",[124,54.817]],[\"comment/528\",[]],[\"name/529\",[125,54.817]],[\"comment/529\",[]],[\"name/530\",[126,54.817]],[\"comment/530\",[]],[\"name/531\",[127,54.817]],[\"comment/531\",[]],[\"name/532\",[128,54.817]],[\"comment/532\",[]],[\"name/533\",[129,54.817]],[\"comment/533\",[]],[\"name/534\",[130,54.817]],[\"comment/534\",[]],[\"name/535\",[131,54.817]],[\"comment/535\",[]],[\"name/536\",[156,65.88]],[\"comment/536\",[]],[\"name/537\",[117,54.817]],[\"comment/537\",[]],[\"name/538\",[118,54.817]],[\"comment/538\",[]],[\"name/539\",[119,54.817]],[\"comment/539\",[]],[\"name/540\",[120,54.817]],[\"comment/540\",[]],[\"name/541\",[121,54.817]],[\"comment/541\",[]],[\"name/542\",[122,54.817]],[\"comment/542\",[]],[\"name/543\",[123,54.817]],[\"comment/543\",[]],[\"name/544\",[124,54.817]],[\"comment/544\",[]],[\"name/545\",[125,54.817]],[\"comment/545\",[]],[\"name/546\",[126,54.817]],[\"comment/546\",[]],[\"name/547\",[127,54.817]],[\"comment/547\",[]],[\"name/548\",[128,54.817]],[\"comment/548\",[]],[\"name/549\",[129,54.817]],[\"comment/549\",[]],[\"name/550\",[130,54.817]],[\"comment/550\",[]],[\"name/551\",[131,54.817]],[\"comment/551\",[]],[\"name/552\",[157,76.943]],[\"comment/552\",[]],[\"name/553\",[158,76.943]],[\"comment/553\",[]],[\"name/554\",[159,76.943]],[\"comment/554\",[]],[\"name/555\",[160,71.799]],[\"comment/555\",[]],[\"name/556\",[95,50.131]],[\"comment/556\",[]],[\"name/557\",[161,76.943]],[\"comment/557\",[]],[\"name/558\",[162,62.177]],[\"comment/558\",[]],[\"name/559\",[163,63.859]],[\"comment/559\",[]],[\"name/560\",[164,76.943]],[\"comment/560\",[]],[\"name/561\",[144,65.88]],[\"comment/561\",[]],[\"name/562\",[165,55.592]],[\"comment/562\",[]],[\"name/563\",[166,68.411]],[\"comment/563\",[]],[\"name/564\",[97,57.348]],[\"comment/564\",[]],[\"name/565\",[167,60.736]],[\"comment/565\",[]],[\"name/566\",[168,76.943]],[\"comment/566\",[]],[\"name/567\",[169,71.799]],[\"comment/567\",[]],[\"name/568\",[104,59.475]],[\"comment/568\",[]],[\"name/569\",[105,58.355]],[\"comment/569\",[]],[\"name/570\",[106,59.475]],[\"comment/570\",[]],[\"name/571\",[98,59.475]],[\"comment/571\",[]],[\"name/572\",[95,50.131]],[\"comment/572\",[]],[\"name/573\",[103,58.355]],[\"comment/573\",[]],[\"name/574\",[116,59.475]],[\"comment/574\",[]],[\"name/575\",[117,54.817]],[\"comment/575\",[]],[\"name/576\",[118,54.817]],[\"comment/576\",[]],[\"name/577\",[119,54.817]],[\"comment/577\",[]],[\"name/578\",[120,54.817]],[\"comment/578\",[]],[\"name/579\",[121,54.817]],[\"comment/579\",[]],[\"name/580\",[122,54.817]],[\"comment/580\",[]],[\"name/581\",[123,54.817]],[\"comment/581\",[]],[\"name/582\",[124,54.817]],[\"comment/582\",[]],[\"name/583\",[125,54.817]],[\"comment/583\",[]],[\"name/584\",[126,54.817]],[\"comment/584\",[]],[\"name/585\",[127,54.817]],[\"comment/585\",[]],[\"name/586\",[128,54.817]],[\"comment/586\",[]],[\"name/587\",[129,54.817]],[\"comment/587\",[]],[\"name/588\",[130,54.817]],[\"comment/588\",[]],[\"name/589\",[131,54.817]],[\"comment/589\",[]],[\"name/590\",[170,76.943]],[\"comment/590\",[]],[\"name/591\",[171,76.943]],[\"comment/591\",[]],[\"name/592\",[172,76.943]],[\"comment/592\",[]],[\"name/593\",[173,76.943]],[\"comment/593\",[]],[\"name/594\",[48,40.95]],[\"comment/594\",[]],[\"name/595\",[174,71.799]],[\"comment/595\",[]],[\"name/596\",[175,50.61]],[\"comment/596\",[]],[\"name/597\",[176,71.799]],[\"comment/597\",[]],[\"name/598\",[177,76.943]],[\"comment/598\",[]],[\"name/599\",[178,71.799]],[\"comment/599\",[]],[\"name/600\",[179,71.799]],[\"comment/600\",[]],[\"name/601\",[96,54.817]],[\"comment/601\",[]],[\"name/602\",[180,71.799]],[\"comment/602\",[]],[\"name/603\",[181,76.943]],[\"comment/603\",[]],[\"name/604\",[100,53.426]],[\"comment/604\",[]],[\"name/605\",[182,71.799]],[\"comment/605\",[]],[\"name/606\",[183,76.943]],[\"comment/606\",[]],[\"name/607\",[184,76.943]],[\"comment/607\",[]],[\"name/608\",[185,76.943]],[\"comment/608\",[]],[\"name/609\",[186,65.88]],[\"comment/609\",[]],[\"name/610\",[187,76.943]],[\"comment/610\",[]],[\"name/611\",[188,76.943]],[\"comment/611\",[]],[\"name/612\",[189,76.943]],[\"comment/612\",[]],[\"name/613\",[190,76.943]],[\"comment/613\",[]],[\"name/614\",[191,76.943]],[\"comment/614\",[]],[\"name/615\",[192,76.943]],[\"comment/615\",[]],[\"name/616\",[193,76.943]],[\"comment/616\",[]],[\"name/617\",[117,54.817]],[\"comment/617\",[]],[\"name/618\",[118,54.817]],[\"comment/618\",[]],[\"name/619\",[119,54.817]],[\"comment/619\",[]],[\"name/620\",[120,54.817]],[\"comment/620\",[]],[\"name/621\",[121,54.817]],[\"comment/621\",[]],[\"name/622\",[122,54.817]],[\"comment/622\",[]],[\"name/623\",[123,54.817]],[\"comment/623\",[]],[\"name/624\",[124,54.817]],[\"comment/624\",[]],[\"name/625\",[125,54.817]],[\"comment/625\",[]],[\"name/626\",[126,54.817]],[\"comment/626\",[]],[\"name/627\",[127,54.817]],[\"comment/627\",[]],[\"name/628\",[128,54.817]],[\"comment/628\",[]],[\"name/629\",[129,54.817]],[\"comment/629\",[]],[\"name/630\",[130,54.817]],[\"comment/630\",[]],[\"name/631\",[131,54.817]],[\"comment/631\",[]],[\"name/632\",[194,65.88]],[\"comment/632\",[]],[\"name/633\",[25,46.284]],[\"comment/633\",[]],[\"name/634\",[195,76.943]],[\"comment/634\",[]],[\"name/635\",[97,57.348]],[\"comment/635\",[]],[\"name/636\",[20,42.581]],[\"comment/636\",[]],[\"name/637\",[30,40.95]],[\"comment/637\",[]],[\"name/638\",[196,62.177]],[\"comment/638\",[]],[\"name/639\",[34,44.005]],[\"comment/639\",[]],[\"name/640\",[197,49.235]],[\"comment/640\",[]],[\"name/641\",[198,76.943]],[\"comment/641\",[]],[\"name/642\",[199,76.943]],[\"comment/642\",[]],[\"name/643\",[200,76.943]],[\"comment/643\",[]],[\"name/644\",[201,71.799]],[\"comment/644\",[]],[\"name/645\",[202,71.799]],[\"comment/645\",[]],[\"name/646\",[203,76.943]],[\"comment/646\",[]],[\"name/647\",[204,71.799]],[\"comment/647\",[]],[\"name/648\",[205,76.943]],[\"comment/648\",[]],[\"name/649\",[206,71.799]],[\"comment/649\",[]],[\"name/650\",[207,71.799]],[\"comment/650\",[]],[\"name/651\",[208,76.943]],[\"comment/651\",[]],[\"name/652\",[209,63.859]],[\"comment/652\",[]],[\"name/653\",[165,55.592]],[\"comment/653\",[]],[\"name/654\",[210,76.943]],[\"comment/654\",[]],[\"name/655\",[211,71.799]],[\"comment/655\",[]],[\"name/656\",[212,76.943]],[\"comment/656\",[]],[\"name/657\",[213,76.943]],[\"comment/657\",[]],[\"name/658\",[214,76.943]],[\"comment/658\",[]],[\"name/659\",[215,76.943]],[\"comment/659\",[]],[\"name/660\",[216,76.943]],[\"comment/660\",[]],[\"name/661\",[217,71.799]],[\"comment/661\",[]],[\"name/662\",[218,76.943]],[\"comment/662\",[]],[\"name/663\",[219,76.943]],[\"comment/663\",[]],[\"name/664\",[220,76.943]],[\"comment/664\",[]],[\"name/665\",[221,76.943]],[\"comment/665\",[]],[\"name/666\",[222,71.799]],[\"comment/666\",[]],[\"name/667\",[223,76.943]],[\"comment/667\",[]],[\"name/668\",[224,76.943]],[\"comment/668\",[]],[\"name/669\",[225,76.943]],[\"comment/669\",[]],[\"name/670\",[226,71.799]],[\"comment/670\",[]],[\"name/671\",[227,68.411]],[\"comment/671\",[]],[\"name/672\",[228,76.943]],[\"comment/672\",[]],[\"name/673\",[229,76.943]],[\"comment/673\",[]],[\"name/674\",[230,68.411]],[\"comment/674\",[]],[\"name/675\",[231,76.943]],[\"comment/675\",[]],[\"name/676\",[232,76.943]],[\"comment/676\",[]],[\"name/677\",[233,76.943]],[\"comment/677\",[]],[\"name/678\",[234,76.943]],[\"comment/678\",[]],[\"name/679\",[235,76.943]],[\"comment/679\",[]],[\"name/680\",[236,58.355]],[\"comment/680\",[]],[\"name/681\",[237,76.943]],[\"comment/681\",[]],[\"name/682\",[238,76.943]],[\"comment/682\",[]],[\"name/683\",[239,76.943]],[\"comment/683\",[]],[\"name/684\",[240,76.943]],[\"comment/684\",[]],[\"name/685\",[241,76.943]],[\"comment/685\",[]],[\"name/686\",[242,76.943]],[\"comment/686\",[]],[\"name/687\",[37,41.14]],[\"comment/687\",[]],[\"name/688\",[243,71.799]],[\"comment/688\",[]],[\"name/689\",[165,55.592]],[\"comment/689\",[]],[\"name/690\",[244,71.799]],[\"comment/690\",[]],[\"name/691\",[20,42.581]],[\"comment/691\",[]],[\"name/692\",[30,40.95]],[\"comment/692\",[]],[\"name/693\",[196,62.177]],[\"comment/693\",[]],[\"name/694\",[34,44.005]],[\"comment/694\",[]],[\"name/695\",[97,57.348]],[\"comment/695\",[]],[\"name/696\",[245,76.943]],[\"comment/696\",[]],[\"name/697\",[133,65.88]],[\"comment/697\",[]],[\"name/698\",[226,71.799]],[\"comment/698\",[]],[\"name/699\",[132,71.799]],[\"comment/699\",[]],[\"name/700\",[194,65.88]],[\"comment/700\",[]],[\"name/701\",[222,71.799]],[\"comment/701\",[]],[\"name/702\",[246,76.943]],[\"comment/702\",[]],[\"name/703\",[247,76.943]],[\"comment/703\",[]],[\"name/704\",[248,76.943]],[\"comment/704\",[]],[\"name/705\",[249,76.943]],[\"comment/705\",[]],[\"name/706\",[250,76.943]],[\"comment/706\",[]],[\"name/707\",[211,71.799]],[\"comment/707\",[]],[\"name/708\",[138,71.799]],[\"comment/708\",[]],[\"name/709\",[139,71.799]],[\"comment/709\",[]],[\"name/710\",[251,76.943]],[\"comment/710\",[]],[\"name/711\",[252,68.411]],[\"comment/711\",[]],[\"name/712\",[217,71.799]],[\"comment/712\",[]],[\"name/713\",[227,68.411]],[\"comment/713\",[]],[\"name/714\",[253,76.943]],[\"comment/714\",[]],[\"name/715\",[254,76.943]],[\"comment/715\",[]],[\"name/716\",[95,50.131]],[\"comment/716\",[]],[\"name/717\",[115,60.736]],[\"comment/717\",[]],[\"name/718\",[110,60.736]],[\"comment/718\",[]],[\"name/719\",[230,68.411]],[\"comment/719\",[]],[\"name/720\",[35,45.665]],[\"comment/720\",[]],[\"name/721\",[255,58.355]],[\"comment/721\",[]],[\"name/722\",[197,49.235]],[\"comment/722\",[]],[\"name/723\",[256,65.88]],[\"comment/723\",[]],[\"name/724\",[257,62.177]],[\"comment/724\",[]],[\"name/725\",[258,71.799]],[\"comment/725\",[]],[\"name/726\",[259,71.799]],[\"comment/726\",[]],[\"name/727\",[260,76.943]],[\"comment/727\",[]],[\"name/728\",[23,45.665]],[\"comment/728\",[]],[\"name/729\",[261,58.355]],[\"comment/729\",[]],[\"name/730\",[22,44.529]],[\"comment/730\",[]],[\"name/731\",[149,68.411]],[\"comment/731\",[]],[\"name/732\",[153,56.431]],[\"comment/732\",[]],[\"name/733\",[262,62.177]],[\"comment/733\",[]],[\"name/734\",[21,43.754]],[\"comment/734\",[]],[\"name/735\",[146,60.736]],[\"comment/735\",[]],[\"name/736\",[152,59.475]],[\"comment/736\",[]],[\"name/737\",[96,54.817]],[\"comment/737\",[]],[\"name/738\",[97,57.348]],[\"comment/738\",[]],[\"name/739\",[30,40.95]],[\"comment/739\",[]],[\"name/740\",[20,42.581]],[\"comment/740\",[]],[\"name/741\",[28,43.508]],[\"comment/741\",[]],[\"name/742\",[98,59.475]],[\"comment/742\",[]],[\"name/743\",[99,60.736]],[\"comment/743\",[]],[\"name/744\",[100,53.426]],[\"comment/744\",[]],[\"name/745\",[101,60.736]],[\"comment/745\",[]],[\"name/746\",[102,60.736]],[\"comment/746\",[]],[\"name/747\",[103,58.355]],[\"comment/747\",[]],[\"name/748\",[104,59.475]],[\"comment/748\",[]],[\"name/749\",[105,58.355]],[\"comment/749\",[]],[\"name/750\",[106,59.475]],[\"comment/750\",[]],[\"name/751\",[107,60.736]],[\"comment/751\",[]],[\"name/752\",[95,50.131]],[\"comment/752\",[]],[\"name/753\",[108,60.736]],[\"comment/753\",[]],[\"name/754\",[109,60.736]],[\"comment/754\",[]],[\"name/755\",[111,60.736]],[\"comment/755\",[]],[\"name/756\",[112,60.736]],[\"comment/756\",[]],[\"name/757\",[113,52.204]],[\"comment/757\",[]],[\"name/758\",[114,60.736]],[\"comment/758\",[]],[\"name/759\",[116,59.475]],[\"comment/759\",[]],[\"name/760\",[117,54.817]],[\"comment/760\",[]],[\"name/761\",[118,54.817]],[\"comment/761\",[]],[\"name/762\",[119,54.817]],[\"comment/762\",[]],[\"name/763\",[120,54.817]],[\"comment/763\",[]],[\"name/764\",[121,54.817]],[\"comment/764\",[]],[\"name/765\",[122,54.817]],[\"comment/765\",[]],[\"name/766\",[123,54.817]],[\"comment/766\",[]],[\"name/767\",[124,54.817]],[\"comment/767\",[]],[\"name/768\",[125,54.817]],[\"comment/768\",[]],[\"name/769\",[126,54.817]],[\"comment/769\",[]],[\"name/770\",[127,54.817]],[\"comment/770\",[]],[\"name/771\",[128,54.817]],[\"comment/771\",[]],[\"name/772\",[129,54.817]],[\"comment/772\",[]],[\"name/773\",[130,54.817]],[\"comment/773\",[]],[\"name/774\",[131,54.817]],[\"comment/774\",[]],[\"name/775\",[263,76.943]],[\"comment/775\",[]],[\"name/776\",[264,63.859]],[\"comment/776\",[]],[\"name/777\",[37,41.14]],[\"comment/777\",[]],[\"name/778\",[265,76.943]],[\"comment/778\",[]],[\"name/779\",[266,76.943]],[\"comment/779\",[]],[\"name/780\",[267,76.943]],[\"comment/780\",[]],[\"name/781\",[268,71.799]],[\"comment/781\",[]],[\"name/782\",[209,63.859]],[\"comment/782\",[]],[\"name/783\",[269,76.943]],[\"comment/783\",[]],[\"name/784\",[206,71.799]],[\"comment/784\",[]],[\"name/785\",[207,71.799]],[\"comment/785\",[]],[\"name/786\",[117,54.817]],[\"comment/786\",[]],[\"name/787\",[118,54.817]],[\"comment/787\",[]],[\"name/788\",[119,54.817]],[\"comment/788\",[]],[\"name/789\",[120,54.817]],[\"comment/789\",[]],[\"name/790\",[121,54.817]],[\"comment/790\",[]],[\"name/791\",[122,54.817]],[\"comment/791\",[]],[\"name/792\",[123,54.817]],[\"comment/792\",[]],[\"name/793\",[124,54.817]],[\"comment/793\",[]],[\"name/794\",[125,54.817]],[\"comment/794\",[]],[\"name/795\",[126,54.817]],[\"comment/795\",[]],[\"name/796\",[127,54.817]],[\"comment/796\",[]],[\"name/797\",[128,54.817]],[\"comment/797\",[]],[\"name/798\",[129,54.817]],[\"comment/798\",[]],[\"name/799\",[130,54.817]],[\"comment/799\",[]],[\"name/800\",[131,54.817]],[\"comment/800\",[]],[\"name/801\",[270,76.943]],[\"comment/801\",[]],[\"name/802\",[163,63.859]],[\"comment/802\",[]],[\"name/803\",[271,60.736]],[\"comment/803\",[]],[\"name/804\",[272,71.799]],[\"comment/804\",[]],[\"name/805\",[162,62.177]],[\"comment/805\",[]],[\"name/806\",[95,50.131]],[\"comment/806\",[]],[\"name/807\",[273,68.411]],[\"comment/807\",[]],[\"name/808\",[162,62.177]],[\"comment/808\",[]],[\"name/809\",[274,71.799]],[\"comment/809\",[]],[\"name/810\",[275,76.943]],[\"comment/810\",[]],[\"name/811\",[95,50.131]],[\"comment/811\",[]],[\"name/812\",[163,63.859]],[\"comment/812\",[]],[\"name/813\",[276,76.943]],[\"comment/813\",[]],[\"name/814\",[277,76.943]],[\"comment/814\",[]],[\"name/815\",[278,76.943]],[\"comment/815\",[]],[\"name/816\",[279,71.799]],[\"comment/816\",[]],[\"name/817\",[280,76.943]],[\"comment/817\",[]],[\"name/818\",[165,55.592]],[\"comment/818\",[]],[\"name/819\",[281,76.943]],[\"comment/819\",[]],[\"name/820\",[96,54.817]],[\"comment/820\",[]],[\"name/821\",[282,68.411]],[\"comment/821\",[]],[\"name/822\",[283,76.943]],[\"comment/822\",[]],[\"name/823\",[284,71.799]],[\"comment/823\",[]],[\"name/824\",[285,71.799]],[\"comment/824\",[]],[\"name/825\",[286,76.943]],[\"comment/825\",[]],[\"name/826\",[287,76.943]],[\"comment/826\",[]],[\"name/827\",[48,40.95]],[\"comment/827\",[]],[\"name/828\",[288,76.943]],[\"comment/828\",[]],[\"name/829\",[289,76.943]],[\"comment/829\",[]],[\"name/830\",[290,76.943]],[\"comment/830\",[]],[\"name/831\",[291,76.943]],[\"comment/831\",[]],[\"name/832\",[34,44.005]],[\"comment/832\",[]],[\"name/833\",[292,76.943]],[\"comment/833\",[]],[\"name/834\",[274,71.799]],[\"comment/834\",[]],[\"name/835\",[162,62.177]],[\"comment/835\",[]],[\"name/836\",[293,76.943]],[\"comment/836\",[]],[\"name/837\",[95,50.131]],[\"comment/837\",[]],[\"name/838\",[37,41.14]],[\"comment/838\",[]],[\"name/839\",[166,68.411]],[\"comment/839\",[]],[\"name/840\",[255,58.355]],[\"comment/840\",[]],[\"name/841\",[165,55.592]],[\"comment/841\",[]],[\"name/842\",[115,60.736]],[\"comment/842\",[]],[\"name/843\",[96,54.817]],[\"comment/843\",[]],[\"name/844\",[97,57.348]],[\"comment/844\",[]],[\"name/845\",[30,40.95]],[\"comment/845\",[]],[\"name/846\",[20,42.581]],[\"comment/846\",[]],[\"name/847\",[28,43.508]],[\"comment/847\",[]],[\"name/848\",[98,59.475]],[\"comment/848\",[]],[\"name/849\",[99,60.736]],[\"comment/849\",[]],[\"name/850\",[100,53.426]],[\"comment/850\",[]],[\"name/851\",[101,60.736]],[\"comment/851\",[]],[\"name/852\",[102,60.736]],[\"comment/852\",[]],[\"name/853\",[103,58.355]],[\"comment/853\",[]],[\"name/854\",[104,59.475]],[\"comment/854\",[]],[\"name/855\",[105,58.355]],[\"comment/855\",[]],[\"name/856\",[106,59.475]],[\"comment/856\",[]],[\"name/857\",[107,60.736]],[\"comment/857\",[]],[\"name/858\",[95,50.131]],[\"comment/858\",[]],[\"name/859\",[108,60.736]],[\"comment/859\",[]],[\"name/860\",[109,60.736]],[\"comment/860\",[]],[\"name/861\",[110,60.736]],[\"comment/861\",[]],[\"name/862\",[111,60.736]],[\"comment/862\",[]],[\"name/863\",[112,60.736]],[\"comment/863\",[]],[\"name/864\",[22,44.529]],[\"comment/864\",[]],[\"name/865\",[113,52.204]],[\"comment/865\",[]],[\"name/866\",[114,60.736]],[\"comment/866\",[]],[\"name/867\",[116,59.475]],[\"comment/867\",[]],[\"name/868\",[117,54.817]],[\"comment/868\",[]],[\"name/869\",[118,54.817]],[\"comment/869\",[]],[\"name/870\",[119,54.817]],[\"comment/870\",[]],[\"name/871\",[120,54.817]],[\"comment/871\",[]],[\"name/872\",[121,54.817]],[\"comment/872\",[]],[\"name/873\",[122,54.817]],[\"comment/873\",[]],[\"name/874\",[123,54.817]],[\"comment/874\",[]],[\"name/875\",[124,54.817]],[\"comment/875\",[]],[\"name/876\",[125,54.817]],[\"comment/876\",[]],[\"name/877\",[126,54.817]],[\"comment/877\",[]],[\"name/878\",[127,54.817]],[\"comment/878\",[]],[\"name/879\",[128,54.817]],[\"comment/879\",[]],[\"name/880\",[129,54.817]],[\"comment/880\",[]],[\"name/881\",[130,54.817]],[\"comment/881\",[]],[\"name/882\",[131,54.817]],[\"comment/882\",[]],[\"name/883\",[294,76.943]],[\"comment/883\",[]],[\"name/884\",[95,50.131]],[\"comment/884\",[]],[\"name/885\",[37,41.14]],[\"comment/885\",[]],[\"name/886\",[166,68.411]],[\"comment/886\",[]],[\"name/887\",[165,55.592]],[\"comment/887\",[]],[\"name/888\",[115,60.736]],[\"comment/888\",[]],[\"name/889\",[96,54.817]],[\"comment/889\",[]],[\"name/890\",[97,57.348]],[\"comment/890\",[]],[\"name/891\",[30,40.95]],[\"comment/891\",[]],[\"name/892\",[20,42.581]],[\"comment/892\",[]],[\"name/893\",[28,43.508]],[\"comment/893\",[]],[\"name/894\",[98,59.475]],[\"comment/894\",[]],[\"name/895\",[99,60.736]],[\"comment/895\",[]],[\"name/896\",[100,53.426]],[\"comment/896\",[]],[\"name/897\",[101,60.736]],[\"comment/897\",[]],[\"name/898\",[102,60.736]],[\"comment/898\",[]],[\"name/899\",[103,58.355]],[\"comment/899\",[]],[\"name/900\",[104,59.475]],[\"comment/900\",[]],[\"name/901\",[105,58.355]],[\"comment/901\",[]],[\"name/902\",[106,59.475]],[\"comment/902\",[]],[\"name/903\",[107,60.736]],[\"comment/903\",[]],[\"name/904\",[95,50.131]],[\"comment/904\",[]],[\"name/905\",[108,60.736]],[\"comment/905\",[]],[\"name/906\",[109,60.736]],[\"comment/906\",[]],[\"name/907\",[110,60.736]],[\"comment/907\",[]],[\"name/908\",[111,60.736]],[\"comment/908\",[]],[\"name/909\",[112,60.736]],[\"comment/909\",[]],[\"name/910\",[22,44.529]],[\"comment/910\",[]],[\"name/911\",[113,52.204]],[\"comment/911\",[]],[\"name/912\",[114,60.736]],[\"comment/912\",[]],[\"name/913\",[116,59.475]],[\"comment/913\",[]],[\"name/914\",[117,54.817]],[\"comment/914\",[]],[\"name/915\",[118,54.817]],[\"comment/915\",[]],[\"name/916\",[119,54.817]],[\"comment/916\",[]],[\"name/917\",[120,54.817]],[\"comment/917\",[]],[\"name/918\",[121,54.817]],[\"comment/918\",[]],[\"name/919\",[122,54.817]],[\"comment/919\",[]],[\"name/920\",[123,54.817]],[\"comment/920\",[]],[\"name/921\",[124,54.817]],[\"comment/921\",[]],[\"name/922\",[125,54.817]],[\"comment/922\",[]],[\"name/923\",[126,54.817]],[\"comment/923\",[]],[\"name/924\",[127,54.817]],[\"comment/924\",[]],[\"name/925\",[128,54.817]],[\"comment/925\",[]],[\"name/926\",[129,54.817]],[\"comment/926\",[]],[\"name/927\",[130,54.817]],[\"comment/927\",[]],[\"name/928\",[131,54.817]],[\"comment/928\",[]],[\"name/929\",[295,76.943]],[\"comment/929\",[]],[\"name/930\",[296,71.799]],[\"comment/930\",[]],[\"name/931\",[37,41.14]],[\"comment/931\",[]],[\"name/932\",[165,55.592]],[\"comment/932\",[]],[\"name/933\",[297,60.736]],[\"comment/933\",[]],[\"name/934\",[298,62.177]],[\"comment/934\",[]],[\"name/935\",[299,62.177]],[\"comment/935\",[]],[\"name/936\",[20,42.581]],[\"comment/936\",[]],[\"name/937\",[34,44.005]],[\"comment/937\",[]],[\"name/938\",[30,40.95]],[\"comment/938\",[]],[\"name/939\",[196,62.177]],[\"comment/939\",[]],[\"name/940\",[296,71.799]],[\"comment/940\",[]],[\"name/941\",[95,50.131]],[\"comment/941\",[]],[\"name/942\",[236,58.355]],[\"comment/942\",[]],[\"name/943\",[300,76.943]],[\"comment/943\",[]],[\"name/944\",[301,76.943]],[\"comment/944\",[]],[\"name/945\",[227,68.411]],[\"comment/945\",[]],[\"name/946\",[117,54.817]],[\"comment/946\",[]],[\"name/947\",[118,54.817]],[\"comment/947\",[]],[\"name/948\",[119,54.817]],[\"comment/948\",[]],[\"name/949\",[120,54.817]],[\"comment/949\",[]],[\"name/950\",[121,54.817]],[\"comment/950\",[]],[\"name/951\",[122,54.817]],[\"comment/951\",[]],[\"name/952\",[123,54.817]],[\"comment/952\",[]],[\"name/953\",[124,54.817]],[\"comment/953\",[]],[\"name/954\",[125,54.817]],[\"comment/954\",[]],[\"name/955\",[126,54.817]],[\"comment/955\",[]],[\"name/956\",[127,54.817]],[\"comment/956\",[]],[\"name/957\",[128,54.817]],[\"comment/957\",[]],[\"name/958\",[129,54.817]],[\"comment/958\",[]],[\"name/959\",[130,54.817]],[\"comment/959\",[]],[\"name/960\",[131,54.817]],[\"comment/960\",[]],[\"name/961\",[302,76.943]],[\"comment/961\",[]],[\"name/962\",[303,68.411]],[\"comment/962\",[]],[\"name/963\",[304,68.411]],[\"comment/963\",[]],[\"name/964\",[305,68.411]],[\"comment/964\",[]],[\"name/965\",[306,62.177]],[\"comment/965\",[]],[\"name/966\",[209,63.859]],[\"comment/966\",[]],[\"name/967\",[32,44.005]],[\"comment/967\",[]],[\"name/968\",[196,62.177]],[\"comment/968\",[]],[\"name/969\",[34,44.005]],[\"comment/969\",[]],[\"name/970\",[307,68.411]],[\"comment/970\",[]],[\"name/971\",[308,68.411]],[\"comment/971\",[]],[\"name/972\",[309,76.943]],[\"comment/972\",[]],[\"name/973\",[95,50.131]],[\"comment/973\",[]],[\"name/974\",[133,65.88]],[\"comment/974\",[]],[\"name/975\",[310,76.943]],[\"comment/975\",[]],[\"name/976\",[48,40.95]],[\"comment/976\",[]],[\"name/977\",[23,45.665]],[\"comment/977\",[]],[\"name/978\",[261,58.355]],[\"comment/978\",[]],[\"name/979\",[113,52.204]],[\"comment/979\",[]],[\"name/980\",[311,76.943]],[\"comment/980\",[]],[\"name/981\",[312,76.943]],[\"comment/981\",[]],[\"name/982\",[313,76.943]],[\"comment/982\",[]],[\"name/983\",[115,60.736]],[\"comment/983\",[]],[\"name/984\",[112,60.736]],[\"comment/984\",[]],[\"name/985\",[109,60.736]],[\"comment/985\",[]],[\"name/986\",[22,44.529]],[\"comment/986\",[]],[\"name/987\",[113,52.204]],[\"comment/987\",[]],[\"name/988\",[96,54.817]],[\"comment/988\",[]],[\"name/989\",[97,57.348]],[\"comment/989\",[]],[\"name/990\",[30,40.95]],[\"comment/990\",[]],[\"name/991\",[20,42.581]],[\"comment/991\",[]],[\"name/992\",[28,43.508]],[\"comment/992\",[]],[\"name/993\",[98,59.475]],[\"comment/993\",[]],[\"name/994\",[99,60.736]],[\"comment/994\",[]],[\"name/995\",[100,53.426]],[\"comment/995\",[]],[\"name/996\",[101,60.736]],[\"comment/996\",[]],[\"name/997\",[102,60.736]],[\"comment/997\",[]],[\"name/998\",[103,58.355]],[\"comment/998\",[]],[\"name/999\",[104,59.475]],[\"comment/999\",[]],[\"name/1000\",[105,58.355]],[\"comment/1000\",[]],[\"name/1001\",[106,59.475]],[\"comment/1001\",[]],[\"name/1002\",[107,60.736]],[\"comment/1002\",[]],[\"name/1003\",[95,50.131]],[\"comment/1003\",[]],[\"name/1004\",[108,60.736]],[\"comment/1004\",[]],[\"name/1005\",[110,60.736]],[\"comment/1005\",[]],[\"name/1006\",[111,60.736]],[\"comment/1006\",[]],[\"name/1007\",[114,60.736]],[\"comment/1007\",[]],[\"name/1008\",[116,59.475]],[\"comment/1008\",[]],[\"name/1009\",[117,54.817]],[\"comment/1009\",[]],[\"name/1010\",[118,54.817]],[\"comment/1010\",[]],[\"name/1011\",[119,54.817]],[\"comment/1011\",[]],[\"name/1012\",[120,54.817]],[\"comment/1012\",[]],[\"name/1013\",[121,54.817]],[\"comment/1013\",[]],[\"name/1014\",[122,54.817]],[\"comment/1014\",[]],[\"name/1015\",[123,54.817]],[\"comment/1015\",[]],[\"name/1016\",[124,54.817]],[\"comment/1016\",[]],[\"name/1017\",[125,54.817]],[\"comment/1017\",[]],[\"name/1018\",[126,54.817]],[\"comment/1018\",[]],[\"name/1019\",[127,54.817]],[\"comment/1019\",[]],[\"name/1020\",[128,54.817]],[\"comment/1020\",[]],[\"name/1021\",[129,54.817]],[\"comment/1021\",[]],[\"name/1022\",[130,54.817]],[\"comment/1022\",[]],[\"name/1023\",[131,54.817]],[\"comment/1023\",[]],[\"name/1024\",[314,76.943]],[\"comment/1024\",[]],[\"name/1025\",[315,76.943]],[\"comment/1025\",[]],[\"name/1026\",[303,68.411]],[\"comment/1026\",[]],[\"name/1027\",[304,68.411]],[\"comment/1027\",[]],[\"name/1028\",[305,68.411]],[\"comment/1028\",[]],[\"name/1029\",[306,62.177]],[\"comment/1029\",[]],[\"name/1030\",[209,63.859]],[\"comment/1030\",[]],[\"name/1031\",[32,44.005]],[\"comment/1031\",[]],[\"name/1032\",[196,62.177]],[\"comment/1032\",[]],[\"name/1033\",[34,44.005]],[\"comment/1033\",[]],[\"name/1034\",[307,68.411]],[\"comment/1034\",[]],[\"name/1035\",[308,68.411]],[\"comment/1035\",[]],[\"name/1036\",[316,68.411]],[\"comment/1036\",[]],[\"name/1037\",[316,68.411]],[\"comment/1037\",[]],[\"name/1038\",[317,71.799]],[\"comment/1038\",[]],[\"name/1039\",[317,71.799]],[\"comment/1039\",[]],[\"name/1040\",[318,68.411]],[\"comment/1040\",[]],[\"name/1041\",[318,68.411]],[\"comment/1041\",[]],[\"name/1042\",[319,68.411]],[\"comment/1042\",[]],[\"name/1043\",[319,68.411]],[\"comment/1043\",[]],[\"name/1044\",[320,76.943]],[\"comment/1044\",[]],[\"name/1045\",[321,71.799]],[\"comment/1045\",[]],[\"name/1046\",[321,71.799]],[\"comment/1046\",[]],[\"name/1047\",[322,71.799]],[\"comment/1047\",[]],[\"name/1048\",[322,71.799]],[\"comment/1048\",[]],[\"name/1049\",[323,71.799]],[\"comment/1049\",[]],[\"name/1050\",[323,71.799]],[\"comment/1050\",[]],[\"name/1051\",[324,71.799]],[\"comment/1051\",[]],[\"name/1052\",[324,71.799]],[\"comment/1052\",[]],[\"name/1053\",[325,65.88]],[\"comment/1053\",[]],[\"name/1054\",[325,65.88]],[\"comment/1054\",[]],[\"name/1055\",[252,68.411]],[\"comment/1055\",[]],[\"name/1056\",[252,68.411]],[\"comment/1056\",[]],[\"name/1057\",[326,68.411]],[\"comment/1057\",[]],[\"name/1058\",[326,68.411]],[\"comment/1058\",[]],[\"name/1059\",[327,71.799]],[\"comment/1059\",[]],[\"name/1060\",[327,71.799]],[\"comment/1060\",[]],[\"name/1061\",[328,71.799]],[\"comment/1061\",[]],[\"name/1062\",[328,71.799]],[\"comment/1062\",[]],[\"name/1063\",[329,71.799]],[\"comment/1063\",[]],[\"name/1064\",[329,71.799]],[\"comment/1064\",[]],[\"name/1065\",[20,42.581]],[\"comment/1065\",[]],[\"name/1066\",[330,68.411]],[\"comment/1066\",[]],[\"name/1067\",[331,76.943]],[\"comment/1067\",[]],[\"name/1068\",[332,71.799]],[\"comment/1068\",[]],[\"name/1069\",[333,76.943]],[\"comment/1069\",[]],[\"name/1070\",[334,71.799]],[\"comment/1070\",[]],[\"name/1071\",[37,41.14]],[\"comment/1071\",[]],[\"name/1072\",[335,76.943]],[\"comment/1072\",[]],[\"name/1073\",[336,65.88]],[\"comment/1073\",[]],[\"name/1074\",[30,40.95]],[\"comment/1074\",[]],[\"name/1075\",[337,68.411]],[\"comment/1075\",[]],[\"name/1076\",[338,76.943]],[\"comment/1076\",[]],[\"name/1077\",[339,71.799]],[\"comment/1077\",[]],[\"name/1078\",[340,76.943]],[\"comment/1078\",[]],[\"name/1079\",[341,71.799]],[\"comment/1079\",[]],[\"name/1080\",[337,68.411]],[\"comment/1080\",[]],[\"name/1081\",[342,76.943]],[\"comment/1081\",[]],[\"name/1082\",[339,71.799]],[\"comment/1082\",[]],[\"name/1083\",[343,76.943]],[\"comment/1083\",[]],[\"name/1084\",[341,71.799]],[\"comment/1084\",[]],[\"name/1085\",[344,65.88]],[\"comment/1085\",[]],[\"name/1086\",[330,68.411]],[\"comment/1086\",[]],[\"name/1087\",[345,76.943]],[\"comment/1087\",[]],[\"name/1088\",[346,71.799]],[\"comment/1088\",[]],[\"name/1089\",[37,41.14]],[\"comment/1089\",[]],[\"name/1090\",[347,76.943]],[\"comment/1090\",[]],[\"name/1091\",[348,71.799]],[\"comment/1091\",[]],[\"name/1092\",[349,65.88]],[\"comment/1092\",[]],[\"name/1093\",[350,63.859]],[\"comment/1093\",[]],[\"name/1094\",[351,65.88]],[\"comment/1094\",[]],[\"name/1095\",[352,76.943]],[\"comment/1095\",[]],[\"name/1096\",[346,71.799]],[\"comment/1096\",[]],[\"name/1097\",[244,71.799]],[\"comment/1097\",[]],[\"name/1098\",[186,65.88]],[\"comment/1098\",[]],[\"name/1099\",[336,65.88]],[\"comment/1099\",[]],[\"name/1100\",[34,44.005]],[\"comment/1100\",[]],[\"name/1101\",[330,68.411]],[\"comment/1101\",[]],[\"name/1102\",[37,41.14]],[\"comment/1102\",[]],[\"name/1103\",[353,65.88]],[\"comment/1103\",[]],[\"name/1104\",[354,71.799]],[\"comment/1104\",[]],[\"name/1105\",[355,71.799]],[\"comment/1105\",[]],[\"name/1106\",[356,71.799]],[\"comment/1106\",[]],[\"name/1107\",[357,76.943]],[\"comment/1107\",[]],[\"name/1108\",[358,50.61]],[\"comment/1108\",[]],[\"name/1109\",[359,56.431]],[\"comment/1109\",[]],[\"name/1110\",[360,68.411]],[\"comment/1110\",[]],[\"name/1111\",[361,65.88]],[\"comment/1111\",[]],[\"name/1112\",[362,68.411]],[\"comment/1112\",[]],[\"name/1113\",[363,71.799]],[\"comment/1113\",[]],[\"name/1114\",[364,65.88]],[\"comment/1114\",[]],[\"name/1115\",[365,68.411]],[\"comment/1115\",[]],[\"name/1116\",[366,76.943]],[\"comment/1116\",[]],[\"name/1117\",[367,76.943]],[\"comment/1117\",[]],[\"name/1118\",[360,68.411]],[\"comment/1118\",[]],[\"name/1119\",[243,71.799]],[\"comment/1119\",[]],[\"name/1120\",[362,68.411]],[\"comment/1120\",[]],[\"name/1121\",[133,65.88]],[\"comment/1121\",[]],[\"name/1122\",[358,50.61]],[\"comment/1122\",[]],[\"name/1123\",[359,56.431]],[\"comment/1123\",[]],[\"name/1124\",[364,65.88]],[\"comment/1124\",[]],[\"name/1125\",[365,68.411]],[\"comment/1125\",[]],[\"name/1126\",[368,76.943]],[\"comment/1126\",[]],[\"name/1127\",[358,50.61]],[\"comment/1127\",[]],[\"name/1128\",[359,56.431]],[\"comment/1128\",[]],[\"name/1129\",[360,68.411]],[\"comment/1129\",[]],[\"name/1130\",[361,65.88]],[\"comment/1130\",[]],[\"name/1131\",[362,68.411]],[\"comment/1131\",[]],[\"name/1132\",[369,71.799]],[\"comment/1132\",[]],[\"name/1133\",[364,65.88]],[\"comment/1133\",[]],[\"name/1134\",[365,68.411]],[\"comment/1134\",[]],[\"name/1135\",[370,76.943]],[\"comment/1135\",[]],[\"name/1136\",[359,56.431]],[\"comment/1136\",[]],[\"name/1137\",[371,55.592]],[\"comment/1137\",[]],[\"name/1138\",[358,50.61]],[\"comment/1138\",[]],[\"name/1139\",[372,76.943]],[\"comment/1139\",[]],[\"name/1140\",[359,56.431]],[\"comment/1140\",[]],[\"name/1141\",[371,55.592]],[\"comment/1141\",[]],[\"name/1142\",[358,50.61]],[\"comment/1142\",[]],[\"name/1143\",[373,76.943]],[\"comment/1143\",[]],[\"name/1144\",[87,65.88]],[\"comment/1144\",[]],[\"name/1145\",[371,55.592]],[\"comment/1145\",[]],[\"name/1146\",[358,50.61]],[\"comment/1146\",[]],[\"name/1147\",[374,76.943]],[\"comment/1147\",[]],[\"name/1148\",[371,55.592]],[\"comment/1148\",[]],[\"name/1149\",[358,50.61]],[\"comment/1149\",[]],[\"name/1150\",[375,76.943]],[\"comment/1150\",[]],[\"name/1151\",[359,56.431]],[\"comment/1151\",[]],[\"name/1152\",[87,65.88]],[\"comment/1152\",[]],[\"name/1153\",[364,65.88]],[\"comment/1153\",[]],[\"name/1154\",[371,55.592]],[\"comment/1154\",[]],[\"name/1155\",[358,50.61]],[\"comment/1155\",[]],[\"name/1156\",[376,76.943]],[\"comment/1156\",[]],[\"name/1157\",[359,56.431]],[\"comment/1157\",[]],[\"name/1158\",[371,55.592]],[\"comment/1158\",[]],[\"name/1159\",[358,50.61]],[\"comment/1159\",[]],[\"name/1160\",[377,76.943]],[\"comment/1160\",[]],[\"name/1161\",[378,76.943]],[\"comment/1161\",[]],[\"name/1162\",[371,55.592]],[\"comment/1162\",[]],[\"name/1163\",[358,50.61]],[\"comment/1163\",[]],[\"name/1164\",[379,76.943]],[\"comment/1164\",[]],[\"name/1165\",[371,55.592]],[\"comment/1165\",[]],[\"name/1166\",[358,50.61]],[\"comment/1166\",[]],[\"name/1167\",[380,76.943]],[\"comment/1167\",[]],[\"name/1168\",[165,55.592]],[\"comment/1168\",[]],[\"name/1169\",[371,55.592]],[\"comment/1169\",[]],[\"name/1170\",[358,50.61]],[\"comment/1170\",[]],[\"name/1171\",[381,76.943]],[\"comment/1171\",[]],[\"name/1172\",[371,55.592]],[\"comment/1172\",[]],[\"name/1173\",[358,50.61]],[\"comment/1173\",[]],[\"name/1174\",[382,76.943]],[\"comment/1174\",[]],[\"name/1175\",[371,55.592]],[\"comment/1175\",[]],[\"name/1176\",[358,50.61]],[\"comment/1176\",[]],[\"name/1177\",[383,76.943]],[\"comment/1177\",[]],[\"name/1178\",[359,56.431]],[\"comment/1178\",[]],[\"name/1179\",[371,55.592]],[\"comment/1179\",[]],[\"name/1180\",[358,50.61]],[\"comment/1180\",[]],[\"name/1181\",[384,76.943]],[\"comment/1181\",[]],[\"name/1182\",[385,62.177]],[\"comment/1182\",[]],[\"name/1183\",[358,50.61]],[\"comment/1183\",[]],[\"name/1184\",[386,76.943]],[\"comment/1184\",[]],[\"name/1185\",[385,62.177]],[\"comment/1185\",[]],[\"name/1186\",[358,50.61]],[\"comment/1186\",[]],[\"name/1187\",[387,71.799]],[\"comment/1187\",[]],[\"name/1188\",[388,71.799]],[\"comment/1188\",[]],[\"name/1189\",[389,76.943]],[\"comment/1189\",[]],[\"name/1190\",[359,56.431]],[\"comment/1190\",[]],[\"name/1191\",[361,65.88]],[\"comment/1191\",[]],[\"name/1192\",[363,71.799]],[\"comment/1192\",[]],[\"name/1193\",[390,76.943]],[\"comment/1193\",[]],[\"name/1194\",[359,56.431]],[\"comment/1194\",[]],[\"name/1195\",[391,76.943]],[\"comment/1195\",[]],[\"name/1196\",[359,56.431]],[\"comment/1196\",[]],[\"name/1197\",[361,65.88]],[\"comment/1197\",[]],[\"name/1198\",[369,71.799]],[\"comment/1198\",[]],[\"name/1199\",[392,76.943]],[\"comment/1199\",[]],[\"name/1200\",[385,62.177]],[\"comment/1200\",[]],[\"name/1201\",[358,50.61]],[\"comment/1201\",[]],[\"name/1202\",[393,76.943]],[\"comment/1202\",[]],[\"name/1203\",[385,62.177]],[\"comment/1203\",[]],[\"name/1204\",[394,76.943]],[\"comment/1204\",[]],[\"name/1205\",[385,62.177]],[\"comment/1205\",[]],[\"name/1206\",[387,71.799]],[\"comment/1206\",[]],[\"name/1207\",[388,71.799]],[\"comment/1207\",[]],[\"name/1208\",[395,76.943]],[\"comment/1208\",[]],[\"name/1209\",[385,62.177]],[\"comment/1209\",[]],[\"name/1210\",[396,76.943]],[\"comment/1210\",[]],[\"name/1211\",[32,44.005]],[\"comment/1211\",[]],[\"name/1212\",[33,45.081]],[\"comment/1212\",[]],[\"name/1213\",[397,71.799]],[\"comment/1213\",[]],[\"name/1214\",[398,76.943]],[\"comment/1214\",[]],[\"name/1215\",[399,76.943]],[\"comment/1215\",[]],[\"name/1216\",[400,76.943]],[\"comment/1216\",[]],[\"name/1217\",[264,63.859]],[\"comment/1217\",[]],[\"name/1218\",[4,44.005]],[\"comment/1218\",[]],[\"name/1219\",[57,44.005]],[\"comment/1219\",[]],[\"name/1220\",[52,59.475]],[\"comment/1220\",[]],[\"name/1221\",[401,71.799]],[\"comment/1221\",[]],[\"name/1222\",[402,76.943]],[\"comment/1222\",[]],[\"name/1223\",[403,76.943]],[\"comment/1223\",[]],[\"name/1224\",[48,40.95]],[\"comment/1224\",[]],[\"name/1225\",[38,68.411]],[\"comment/1225\",[]],[\"name/1226\",[42,68.411]],[\"comment/1226\",[]],[\"name/1227\",[43,68.411]],[\"comment/1227\",[]],[\"name/1228\",[44,68.411]],[\"comment/1228\",[]],[\"name/1229\",[45,68.411]],[\"comment/1229\",[]],[\"name/1230\",[46,68.411]],[\"comment/1230\",[]],[\"name/1231\",[49,71.799]],[\"comment/1231\",[]],[\"name/1232\",[48,40.95]],[\"comment/1232\",[]],[\"name/1233\",[47,68.411]],[\"comment/1233\",[]],[\"name/1234\",[48,40.95]],[\"comment/1234\",[]],[\"name/1235\",[53,60.736]],[\"comment/1235\",[]],[\"name/1236\",[404,76.943]],[\"comment/1236\",[]],[\"name/1237\",[405,76.943]],[\"comment/1237\",[]],[\"name/1238\",[406,76.943]],[\"comment/1238\",[]],[\"name/1239\",[407,76.943]],[\"comment/1239\",[]],[\"name/1240\",[408,76.943]],[\"comment/1240\",[]],[\"name/1241\",[409,76.943]],[\"comment/1241\",[]],[\"name/1242\",[410,76.943]],[\"comment/1242\",[]],[\"name/1243\",[411,76.943]],[\"comment/1243\",[]],[\"name/1244\",[412,76.943]],[\"comment/1244\",[]],[\"name/1245\",[413,76.943]],[\"comment/1245\",[]],[\"name/1246\",[414,76.943]],[\"comment/1246\",[]],[\"name/1247\",[415,76.943]],[\"comment/1247\",[]],[\"name/1248\",[416,76.943]],[\"comment/1248\",[]],[\"name/1249\",[417,76.943]],[\"comment/1249\",[]],[\"name/1250\",[418,62.177]],[\"comment/1250\",[]],[\"name/1251\",[419,76.943]],[\"comment/1251\",[]],[\"name/1252\",[420,76.943]],[\"comment/1252\",[]],[\"name/1253\",[255,58.355]],[\"comment/1253\",[]],[\"name/1254\",[21,43.754]],[\"comment/1254\",[]],[\"name/1255\",[197,49.235]],[\"comment/1255\",[]],[\"name/1256\",[421,76.943]],[\"comment/1256\",[]],[\"name/1257\",[255,58.355]],[\"comment/1257\",[]],[\"name/1258\",[21,43.754]],[\"comment/1258\",[]],[\"name/1259\",[197,49.235]],[\"comment/1259\",[]],[\"name/1260\",[422,76.943]],[\"comment/1260\",[]],[\"name/1261\",[397,71.799]],[\"comment/1261\",[]],[\"name/1262\",[423,76.943]],[\"comment/1262\",[]],[\"name/1263\",[255,58.355]],[\"comment/1263\",[]],[\"name/1264\",[424,76.943]],[\"comment/1264\",[]],[\"name/1265\",[21,43.754]],[\"comment/1265\",[]],[\"name/1266\",[197,49.235]],[\"comment/1266\",[]],[\"name/1267\",[425,58.355]],[\"comment/1267\",[]],[\"name/1268\",[426,76.943]],[\"comment/1268\",[]],[\"name/1269\",[255,58.355]],[\"comment/1269\",[]],[\"name/1270\",[427,63.859]],[\"comment/1270\",[]],[\"name/1271\",[428,62.177]],[\"comment/1271\",[]],[\"name/1272\",[21,43.754]],[\"comment/1272\",[]],[\"name/1273\",[197,49.235]],[\"comment/1273\",[]],[\"name/1274\",[425,58.355]],[\"comment/1274\",[]],[\"name/1275\",[429,76.943]],[\"comment/1275\",[]],[\"name/1276\",[255,58.355]],[\"comment/1276\",[]],[\"name/1277\",[427,63.859]],[\"comment/1277\",[]],[\"name/1278\",[428,62.177]],[\"comment/1278\",[]],[\"name/1279\",[21,43.754]],[\"comment/1279\",[]],[\"name/1280\",[197,49.235]],[\"comment/1280\",[]],[\"name/1281\",[425,58.355]],[\"comment/1281\",[]],[\"name/1282\",[51,65.88]],[\"comment/1282\",[]],[\"name/1283\",[37,41.14]],[\"comment/1283\",[]],[\"name/1284\",[4,44.005]],[\"comment/1284\",[]],[\"name/1285\",[57,44.005]],[\"comment/1285\",[]],[\"name/1286\",[52,59.475]],[\"comment/1286\",[]],[\"name/1287\",[336,65.88]],[\"comment/1287\",[]],[\"name/1288\",[418,62.177]],[\"comment/1288\",[]],[\"name/1289\",[430,76.943]],[\"comment/1289\",[]],[\"name/1290\",[37,41.14]],[\"comment/1290\",[]],[\"name/1291\",[40,68.411]],[\"comment/1291\",[]],[\"name/1292\",[4,44.005]],[\"comment/1292\",[]],[\"name/1293\",[264,63.859]],[\"comment/1293\",[]],[\"name/1294\",[57,44.005]],[\"comment/1294\",[]],[\"name/1295\",[52,59.475]],[\"comment/1295\",[]],[\"name/1296\",[431,76.943]],[\"comment/1296\",[]],[\"name/1297\",[336,65.88]],[\"comment/1297\",[]],[\"name/1298\",[48,40.95]],[\"comment/1298\",[]],[\"name/1299\",[4,44.005]],[\"comment/1299\",[]],[\"name/1300\",[264,63.859]],[\"comment/1300\",[]],[\"name/1301\",[57,44.005]],[\"comment/1301\",[]],[\"name/1302\",[401,71.799]],[\"comment/1302\",[]],[\"name/1303\",[418,62.177]],[\"comment/1303\",[]],[\"name/1304\",[432,76.943]],[\"comment/1304\",[]],[\"name/1305\",[37,41.14]],[\"comment/1305\",[]],[\"name/1306\",[433,76.943]],[\"comment/1306\",[]],[\"name/1307\",[434,76.943]],[\"comment/1307\",[]],[\"name/1308\",[435,76.943]],[\"comment/1308\",[]],[\"name/1309\",[316,68.411]],[\"comment/1309\",[]],[\"name/1310\",[436,76.943]],[\"comment/1310\",[]],[\"name/1311\",[437,60.736]],[\"comment/1311\",[]],[\"name/1312\",[438,76.943]],[\"comment/1312\",[]],[\"name/1313\",[439,76.943]],[\"comment/1313\",[]],[\"name/1314\",[304,68.411]],[\"comment/1314\",[]],[\"name/1315\",[305,68.411]],[\"comment/1315\",[]],[\"name/1316\",[306,62.177]],[\"comment/1316\",[]],[\"name/1317\",[209,63.859]],[\"comment/1317\",[]],[\"name/1318\",[32,44.005]],[\"comment/1318\",[]],[\"name/1319\",[196,62.177]],[\"comment/1319\",[]],[\"name/1320\",[34,44.005]],[\"comment/1320\",[]],[\"name/1321\",[307,68.411]],[\"comment/1321\",[]],[\"name/1322\",[308,68.411]],[\"comment/1322\",[]],[\"name/1323\",[303,68.411]],[\"comment/1323\",[]],[\"name/1324\",[440,76.943]],[\"comment/1324\",[]],[\"name/1325\",[441,76.943]],[\"comment/1325\",[]],[\"name/1326\",[427,63.859]],[\"comment/1326\",[]],[\"name/1327\",[201,71.799]],[\"comment/1327\",[]],[\"name/1328\",[202,71.799]],[\"comment/1328\",[]],[\"name/1329\",[204,71.799]],[\"comment/1329\",[]],[\"name/1330\",[268,71.799]],[\"comment/1330\",[]],[\"name/1331\",[425,58.355]],[\"comment/1331\",[]],[\"name/1332\",[21,43.754]],[\"comment/1332\",[]],[\"name/1333\",[428,62.177]],[\"comment/1333\",[]],[\"name/1334\",[197,49.235]],[\"comment/1334\",[]],[\"name/1335\",[442,76.943]],[\"comment/1335\",[]],[\"name/1336\",[4,44.005]],[\"comment/1336\",[]],[\"name/1337\",[57,44.005]],[\"comment/1337\",[]],[\"name/1338\",[52,59.475]],[\"comment/1338\",[]],[\"name/1339\",[443,76.943]],[\"comment/1339\",[]],[\"name/1340\",[444,53.426]],[\"comment/1340\",[]],[\"name/1341\",[445,49.235]],[\"comment/1341\",[]],[\"name/1342\",[175,50.61]],[\"comment/1342\",[]],[\"name/1343\",[446,52.204]],[\"comment/1343\",[]],[\"name/1344\",[447,52.796]],[\"comment/1344\",[]],[\"name/1345\",[448,54.817]],[\"comment/1345\",[]],[\"name/1346\",[449,76.943]],[\"comment/1346\",[]],[\"name/1347\",[444,53.426]],[\"comment/1347\",[]],[\"name/1348\",[445,49.235]],[\"comment/1348\",[]],[\"name/1349\",[175,50.61]],[\"comment/1349\",[]],[\"name/1350\",[446,52.204]],[\"comment/1350\",[]],[\"name/1351\",[447,52.796]],[\"comment/1351\",[]],[\"name/1352\",[448,54.817]],[\"comment/1352\",[]],[\"name/1353\",[450,76.943]],[\"comment/1353\",[]],[\"name/1354\",[444,53.426]],[\"comment/1354\",[]],[\"name/1355\",[445,49.235]],[\"comment/1355\",[]],[\"name/1356\",[175,50.61]],[\"comment/1356\",[]],[\"name/1357\",[446,52.204]],[\"comment/1357\",[]],[\"name/1358\",[447,52.796]],[\"comment/1358\",[]],[\"name/1359\",[448,54.817]],[\"comment/1359\",[]],[\"name/1360\",[451,62.177]],[\"comment/1360\",[]],[\"name/1361\",[452,76.943]],[\"comment/1361\",[]],[\"name/1362\",[444,53.426]],[\"comment/1362\",[]],[\"name/1363\",[453,59.475]],[\"comment/1363\",[]],[\"name/1364\",[454,65.88]],[\"comment/1364\",[]],[\"name/1365\",[445,49.235]],[\"comment/1365\",[]],[\"name/1366\",[175,50.61]],[\"comment/1366\",[]],[\"name/1367\",[446,52.204]],[\"comment/1367\",[]],[\"name/1368\",[447,52.796]],[\"comment/1368\",[]],[\"name/1369\",[455,63.859]],[\"comment/1369\",[]],[\"name/1370\",[48,40.95]],[\"comment/1370\",[]],[\"name/1371\",[445,49.235]],[\"comment/1371\",[]],[\"name/1372\",[448,54.817]],[\"comment/1372\",[]],[\"name/1373\",[456,76.943]],[\"comment/1373\",[]],[\"name/1374\",[457,76.943]],[\"comment/1374\",[]],[\"name/1375\",[448,54.817]],[\"comment/1375\",[]],[\"name/1376\",[458,76.943]],[\"comment/1376\",[]],[\"name/1377\",[445,49.235]],[\"comment/1377\",[]],[\"name/1378\",[175,50.61]],[\"comment/1378\",[]],[\"name/1379\",[446,52.204]],[\"comment/1379\",[]],[\"name/1380\",[447,52.796]],[\"comment/1380\",[]],[\"name/1381\",[459,76.943]],[\"comment/1381\",[]],[\"name/1382\",[455,63.859]],[\"comment/1382\",[]],[\"name/1383\",[48,40.95]],[\"comment/1383\",[]],[\"name/1384\",[445,49.235]],[\"comment/1384\",[]],[\"name/1385\",[460,76.943]],[\"comment/1385\",[]],[\"name/1386\",[451,62.177]],[\"comment/1386\",[]],[\"name/1387\",[461,76.943]],[\"comment/1387\",[]],[\"name/1388\",[444,53.426]],[\"comment/1388\",[]],[\"name/1389\",[453,59.475]],[\"comment/1389\",[]],[\"name/1390\",[48,40.95]],[\"comment/1390\",[]],[\"name/1391\",[236,58.355]],[\"comment/1391\",[]],[\"name/1392\",[445,49.235]],[\"comment/1392\",[]],[\"name/1393\",[175,50.61]],[\"comment/1393\",[]],[\"name/1394\",[446,52.204]],[\"comment/1394\",[]],[\"name/1395\",[447,52.796]],[\"comment/1395\",[]],[\"name/1396\",[462,76.943]],[\"comment/1396\",[]],[\"name/1397\",[444,53.426]],[\"comment/1397\",[]],[\"name/1398\",[453,59.475]],[\"comment/1398\",[]],[\"name/1399\",[445,49.235]],[\"comment/1399\",[]],[\"name/1400\",[175,50.61]],[\"comment/1400\",[]],[\"name/1401\",[446,52.204]],[\"comment/1401\",[]],[\"name/1402\",[447,52.796]],[\"comment/1402\",[]],[\"name/1403\",[448,54.817]],[\"comment/1403\",[]],[\"name/1404\",[463,76.943]],[\"comment/1404\",[]],[\"name/1405\",[444,53.426]],[\"comment/1405\",[]],[\"name/1406\",[445,49.235]],[\"comment/1406\",[]],[\"name/1407\",[175,50.61]],[\"comment/1407\",[]],[\"name/1408\",[446,52.204]],[\"comment/1408\",[]],[\"name/1409\",[447,52.796]],[\"comment/1409\",[]],[\"name/1410\",[448,54.817]],[\"comment/1410\",[]],[\"name/1411\",[451,62.177]],[\"comment/1411\",[]],[\"name/1412\",[464,76.943]],[\"comment/1412\",[]],[\"name/1413\",[465,76.943]],[\"comment/1413\",[]],[\"name/1414\",[444,53.426]],[\"comment/1414\",[]],[\"name/1415\",[466,63.859]],[\"comment/1415\",[]],[\"name/1416\",[453,59.475]],[\"comment/1416\",[]],[\"name/1417\",[445,49.235]],[\"comment/1417\",[]],[\"name/1418\",[175,50.61]],[\"comment/1418\",[]],[\"name/1419\",[446,52.204]],[\"comment/1419\",[]],[\"name/1420\",[447,52.796]],[\"comment/1420\",[]],[\"name/1421\",[455,63.859]],[\"comment/1421\",[]],[\"name/1422\",[48,40.95]],[\"comment/1422\",[]],[\"name/1423\",[445,49.235]],[\"comment/1423\",[]],[\"name/1424\",[448,54.817]],[\"comment/1424\",[]],[\"name/1425\",[467,76.943]],[\"comment/1425\",[]],[\"name/1426\",[444,53.426]],[\"comment/1426\",[]],[\"name/1427\",[445,49.235]],[\"comment/1427\",[]],[\"name/1428\",[175,50.61]],[\"comment/1428\",[]],[\"name/1429\",[446,52.204]],[\"comment/1429\",[]],[\"name/1430\",[447,52.796]],[\"comment/1430\",[]],[\"name/1431\",[468,76.943]],[\"comment/1431\",[]],[\"name/1432\",[236,58.355]],[\"comment/1432\",[]],[\"name/1433\",[469,71.799]],[\"comment/1433\",[]],[\"name/1434\",[470,76.943]],[\"comment/1434\",[]],[\"name/1435\",[466,63.859]],[\"comment/1435\",[]],[\"name/1436\",[454,65.88]],[\"comment/1436\",[]],[\"name/1437\",[261,58.355]],[\"comment/1437\",[]],[\"name/1438\",[471,71.799]],[\"comment/1438\",[]],[\"name/1439\",[472,71.799]],[\"comment/1439\",[]],[\"name/1440\",[473,71.799]],[\"comment/1440\",[]],[\"name/1441\",[113,52.204]],[\"comment/1441\",[]],[\"name/1442\",[474,76.943]],[\"comment/1442\",[]],[\"name/1443\",[32,44.005]],[\"comment/1443\",[]],[\"name/1444\",[33,45.081]],[\"comment/1444\",[]],[\"name/1445\",[28,43.508]],[\"comment/1445\",[]],[\"name/1446\",[25,46.284]],[\"comment/1446\",[]],[\"name/1447\",[20,42.581]],[\"comment/1447\",[]],[\"name/1448\",[30,40.95]],[\"comment/1448\",[]],[\"name/1449\",[24,45.97]],[\"comment/1449\",[]],[\"name/1450\",[475,58.355]],[\"comment/1450\",[]],[\"name/1451\",[29,46.609]],[\"comment/1451\",[]],[\"name/1452\",[31,46.609]],[\"comment/1452\",[]],[\"name/1453\",[23,45.665]],[\"comment/1453\",[]],[\"name/1454\",[22,44.529]],[\"comment/1454\",[]],[\"name/1455\",[35,45.665]],[\"comment/1455\",[]],[\"name/1456\",[21,43.754]],[\"comment/1456\",[]],[\"name/1457\",[26,46.945]],[\"comment/1457\",[]],[\"name/1458\",[27,46.945]],[\"comment/1458\",[]],[\"name/1459\",[197,49.235]],[\"comment/1459\",[]],[\"name/1460\",[262,62.177]],[\"comment/1460\",[]],[\"name/1461\",[16,57.348]],[\"comment/1461\",[]],[\"name/1462\",[19,55.592]],[\"comment/1462\",[]],[\"name/1463\",[148,62.177]],[\"comment/1463\",[]],[\"name/1464\",[476,76.943]],[\"comment/1464\",[]],[\"name/1465\",[444,53.426]],[\"comment/1465\",[]],[\"name/1466\",[445,49.235]],[\"comment/1466\",[]],[\"name/1467\",[175,50.61]],[\"comment/1467\",[]],[\"name/1468\",[446,52.204]],[\"comment/1468\",[]],[\"name/1469\",[447,52.796]],[\"comment/1469\",[]],[\"name/1470\",[448,54.817]],[\"comment/1470\",[]],[\"name/1471\",[451,62.177]],[\"comment/1471\",[]],[\"name/1472\",[477,76.943]],[\"comment/1472\",[]],[\"name/1473\",[444,53.426]],[\"comment/1473\",[]],[\"name/1474\",[478,76.943]],[\"comment/1474\",[]],[\"name/1475\",[48,40.95]],[\"comment/1475\",[]],[\"name/1476\",[236,58.355]],[\"comment/1476\",[]],[\"name/1477\",[469,71.799]],[\"comment/1477\",[]],[\"name/1478\",[453,59.475]],[\"comment/1478\",[]],[\"name/1479\",[445,49.235]],[\"comment/1479\",[]],[\"name/1480\",[175,50.61]],[\"comment/1480\",[]],[\"name/1481\",[446,52.204]],[\"comment/1481\",[]],[\"name/1482\",[447,52.796]],[\"comment/1482\",[]],[\"name/1483\",[448,54.817]],[\"comment/1483\",[]],[\"name/1484\",[479,76.943]],[\"comment/1484\",[]],[\"name/1485\",[444,53.426]],[\"comment/1485\",[]],[\"name/1486\",[466,63.859]],[\"comment/1486\",[]],[\"name/1487\",[453,59.475]],[\"comment/1487\",[]],[\"name/1488\",[454,65.88]],[\"comment/1488\",[]],[\"name/1489\",[445,49.235]],[\"comment/1489\",[]],[\"name/1490\",[175,50.61]],[\"comment/1490\",[]],[\"name/1491\",[446,52.204]],[\"comment/1491\",[]],[\"name/1492\",[447,52.796]],[\"comment/1492\",[]],[\"name/1493\",[455,63.859]],[\"comment/1493\",[]],[\"name/1494\",[48,40.95]],[\"comment/1494\",[]],[\"name/1495\",[445,49.235]],[\"comment/1495\",[]],[\"name/1496\",[480,76.943]],[\"comment/1496\",[]],[\"name/1497\",[444,53.426]],[\"comment/1497\",[]],[\"name/1498\",[445,49.235]],[\"comment/1498\",[]],[\"name/1499\",[175,50.61]],[\"comment/1499\",[]],[\"name/1500\",[446,52.204]],[\"comment/1500\",[]],[\"name/1501\",[447,52.796]],[\"comment/1501\",[]],[\"name/1502\",[448,54.817]],[\"comment/1502\",[]],[\"name/1503\",[451,62.177]],[\"comment/1503\",[]],[\"name/1504\",[481,76.943]],[\"comment/1504\",[]],[\"name/1505\",[444,53.426]],[\"comment/1505\",[]],[\"name/1506\",[445,49.235]],[\"comment/1506\",[]],[\"name/1507\",[175,50.61]],[\"comment/1507\",[]],[\"name/1508\",[446,52.204]],[\"comment/1508\",[]],[\"name/1509\",[447,52.796]],[\"comment/1509\",[]],[\"name/1510\",[448,54.817]],[\"comment/1510\",[]],[\"name/1511\",[451,62.177]],[\"comment/1511\",[]],[\"name/1512\",[482,76.943]],[\"comment/1512\",[]],[\"name/1513\",[444,53.426]],[\"comment/1513\",[]],[\"name/1514\",[466,63.859]],[\"comment/1514\",[]],[\"name/1515\",[483,71.799]],[\"comment/1515\",[]],[\"name/1516\",[453,59.475]],[\"comment/1516\",[]],[\"name/1517\",[454,65.88]],[\"comment/1517\",[]],[\"name/1518\",[445,49.235]],[\"comment/1518\",[]],[\"name/1519\",[175,50.61]],[\"comment/1519\",[]],[\"name/1520\",[446,52.204]],[\"comment/1520\",[]],[\"name/1521\",[447,52.796]],[\"comment/1521\",[]],[\"name/1522\",[455,63.859]],[\"comment/1522\",[]],[\"name/1523\",[48,40.95]],[\"comment/1523\",[]],[\"name/1524\",[445,49.235]],[\"comment/1524\",[]],[\"name/1525\",[448,54.817]],[\"comment/1525\",[]],[\"name/1526\",[176,71.799]],[\"comment/1526\",[]],[\"name/1527\",[484,76.943]],[\"comment/1527\",[]],[\"name/1528\",[473,71.799]],[\"comment/1528\",[]],[\"name/1529\",[113,52.204]],[\"comment/1529\",[]],[\"name/1530\",[261,58.355]],[\"comment/1530\",[]],[\"name/1531\",[21,43.754]],[\"comment/1531\",[]],[\"name/1532\",[30,40.95]],[\"comment/1532\",[]],[\"name/1533\",[471,71.799]],[\"comment/1533\",[]],[\"name/1534\",[472,71.799]],[\"comment/1534\",[]],[\"name/1535\",[466,63.859]],[\"comment/1535\",[]],[\"name/1536\",[169,71.799]],[\"comment/1536\",[]],[\"name/1537\",[483,71.799]],[\"comment/1537\",[]],[\"name/1538\",[485,76.943]],[\"comment/1538\",[]],[\"name/1539\",[486,76.943]],[\"comment/1539\",[]],[\"name/1540\",[487,76.943]],[\"comment/1540\",[]],[\"name/1541\",[488,76.943]],[\"comment/1541\",[]],[\"name/1542\",[489,71.799]],[\"comment/1542\",[]],[\"name/1543\",[490,76.943]],[\"comment/1543\",[]],[\"name/1544\",[491,76.943]],[\"comment/1544\",[]],[\"name/1545\",[492,76.943]],[\"comment/1545\",[]],[\"name/1546\",[493,76.943]],[\"comment/1546\",[]],[\"name/1547\",[494,76.943]],[\"comment/1547\",[]],[\"name/1548\",[495,76.943]],[\"comment/1548\",[]],[\"name/1549\",[496,76.943]],[\"comment/1549\",[]],[\"name/1550\",[497,76.943]],[\"comment/1550\",[]],[\"name/1551\",[498,76.943]],[\"comment/1551\",[]],[\"name/1552\",[499,76.943]],[\"comment/1552\",[]],[\"name/1553\",[500,76.943]],[\"comment/1553\",[]],[\"name/1554\",[501,76.943]],[\"comment/1554\",[]],[\"name/1555\",[37,41.14]],[\"comment/1555\",[]],[\"name/1556\",[502,68.411]],[\"comment/1556\",[]],[\"name/1557\",[503,68.411]],[\"comment/1557\",[]],[\"name/1558\",[504,71.799]],[\"comment/1558\",[]],[\"name/1559\",[505,71.799]],[\"comment/1559\",[]],[\"name/1560\",[506,71.799]],[\"comment/1560\",[]],[\"name/1561\",[186,65.88]],[\"comment/1561\",[]],[\"name/1562\",[507,76.943]],[\"comment/1562\",[]],[\"name/1563\",[508,76.943]],[\"comment/1563\",[]],[\"name/1564\",[509,76.943]],[\"comment/1564\",[]],[\"name/1565\",[502,68.411]],[\"comment/1565\",[]],[\"name/1566\",[503,68.411]],[\"comment/1566\",[]],[\"name/1567\",[504,71.799]],[\"comment/1567\",[]],[\"name/1568\",[236,58.355]],[\"comment/1568\",[]],[\"name/1569\",[505,71.799]],[\"comment/1569\",[]],[\"name/1570\",[506,71.799]],[\"comment/1570\",[]],[\"name/1571\",[510,76.943]],[\"comment/1571\",[]],[\"name/1572\",[511,76.943]],[\"comment/1572\",[]],[\"name/1573\",[512,76.943]],[\"comment/1573\",[]],[\"name/1574\",[513,76.943]],[\"comment/1574\",[]],[\"name/1575\",[514,76.943]],[\"comment/1575\",[]],[\"name/1576\",[515,76.943]],[\"comment/1576\",[]],[\"name/1577\",[516,76.943]],[\"comment/1577\",[]],[\"name/1578\",[517,71.799]],[\"comment/1578\",[]],[\"name/1579\",[518,76.943]],[\"comment/1579\",[]],[\"name/1580\",[517,71.799]],[\"comment/1580\",[]],[\"name/1581\",[519,76.943]],[\"comment/1581\",[]],[\"name/1582\",[520,76.943]],[\"comment/1582\",[]],[\"name/1583\",[521,57.348]],[\"comment/1583\",[]],[\"name/1584\",[522,76.943]],[\"comment/1584\",[]],[\"name/1585\",[48,40.95]],[\"comment/1585\",[]],[\"name/1586\",[523,76.943]],[\"comment/1586\",[]],[\"name/1587\",[48,40.95]],[\"comment/1587\",[]],[\"name/1588\",[524,76.943]],[\"comment/1588\",[]],[\"name/1589\",[525,76.943]],[\"comment/1589\",[]],[\"name/1590\",[103,58.355]],[\"comment/1590\",[]],[\"name/1591\",[526,76.943]],[\"comment/1591\",[]],[\"name/1592\",[48,40.95]],[\"comment/1592\",[]],[\"name/1593\",[527,76.943]],[\"comment/1593\",[]],[\"name/1594\",[528,76.943]],[\"comment/1594\",[]],[\"name/1595\",[529,76.943]],[\"comment/1595\",[]],[\"name/1596\",[530,76.943]],[\"comment/1596\",[]],[\"name/1597\",[95,50.131]],[\"comment/1597\",[]],[\"name/1598\",[531,71.799]],[\"comment/1598\",[]],[\"name/1599\",[532,76.943]],[\"comment/1599\",[]],[\"name/1600\",[533,76.943]],[\"comment/1600\",[]],[\"name/1601\",[534,76.943]],[\"comment/1601\",[]],[\"name/1602\",[96,54.817]],[\"comment/1602\",[]],[\"name/1603\",[535,76.943]],[\"comment/1603\",[]],[\"name/1604\",[536,65.88]],[\"comment/1604\",[]],[\"name/1605\",[299,62.177]],[\"comment/1605\",[]],[\"name/1606\",[297,60.736]],[\"comment/1606\",[]],[\"name/1607\",[298,62.177]],[\"comment/1607\",[]],[\"name/1608\",[537,65.88]],[\"comment/1608\",[]],[\"name/1609\",[538,63.859]],[\"comment/1609\",[]],[\"name/1610\",[539,63.859]],[\"comment/1610\",[]],[\"name/1611\",[540,63.859]],[\"comment/1611\",[]],[\"name/1612\",[541,63.859]],[\"comment/1612\",[]],[\"name/1613\",[542,63.859]],[\"comment/1613\",[]],[\"name/1614\",[543,63.859]],[\"comment/1614\",[]],[\"name/1615\",[156,65.88]],[\"comment/1615\",[]],[\"name/1616\",[544,62.177]],[\"comment/1616\",[]],[\"name/1617\",[545,60.736]],[\"comment/1617\",[]],[\"name/1618\",[546,60.736]],[\"comment/1618\",[]],[\"name/1619\",[100,53.426]],[\"comment/1619\",[]],[\"name/1620\",[547,62.177]],[\"comment/1620\",[]],[\"name/1621\",[548,62.177]],[\"comment/1621\",[]],[\"name/1622\",[549,62.177]],[\"comment/1622\",[]],[\"name/1623\",[550,62.177]],[\"comment/1623\",[]],[\"name/1624\",[551,71.799]],[\"comment/1624\",[]],[\"name/1625\",[547,62.177]],[\"comment/1625\",[]],[\"name/1626\",[548,62.177]],[\"comment/1626\",[]],[\"name/1627\",[549,62.177]],[\"comment/1627\",[]],[\"name/1628\",[550,62.177]],[\"comment/1628\",[]],[\"name/1629\",[552,76.943]],[\"comment/1629\",[]],[\"name/1630\",[553,71.799]],[\"comment/1630\",[]],[\"name/1631\",[554,76.943]],[\"comment/1631\",[]],[\"name/1632\",[555,76.943]],[\"comment/1632\",[]],[\"name/1633\",[556,68.411]],[\"comment/1633\",[]],[\"name/1634\",[557,68.411]],[\"comment/1634\",[]],[\"name/1635\",[558,68.411]],[\"comment/1635\",[]],[\"name/1636\",[559,68.411]],[\"comment/1636\",[]],[\"name/1637\",[560,68.411]],[\"comment/1637\",[]],[\"name/1638\",[100,53.426]],[\"comment/1638\",[]],[\"name/1639\",[537,65.88]],[\"comment/1639\",[]],[\"name/1640\",[536,65.88]],[\"comment/1640\",[]],[\"name/1641\",[547,62.177]],[\"comment/1641\",[]],[\"name/1642\",[548,62.177]],[\"comment/1642\",[]],[\"name/1643\",[549,62.177]],[\"comment/1643\",[]],[\"name/1644\",[550,62.177]],[\"comment/1644\",[]],[\"name/1645\",[539,63.859]],[\"comment/1645\",[]],[\"name/1646\",[538,63.859]],[\"comment/1646\",[]],[\"name/1647\",[543,63.859]],[\"comment/1647\",[]],[\"name/1648\",[545,60.736]],[\"comment/1648\",[]],[\"name/1649\",[542,63.859]],[\"comment/1649\",[]],[\"name/1650\",[540,63.859]],[\"comment/1650\",[]],[\"name/1651\",[541,63.859]],[\"comment/1651\",[]],[\"name/1652\",[298,62.177]],[\"comment/1652\",[]],[\"name/1653\",[297,60.736]],[\"comment/1653\",[]],[\"name/1654\",[156,65.88]],[\"comment/1654\",[]],[\"name/1655\",[299,62.177]],[\"comment/1655\",[]],[\"name/1656\",[544,62.177]],[\"comment/1656\",[]],[\"name/1657\",[546,60.736]],[\"comment/1657\",[]],[\"name/1658\",[561,76.943]],[\"comment/1658\",[]],[\"name/1659\",[562,76.943]],[\"comment/1659\",[]],[\"name/1660\",[48,40.95]],[\"comment/1660\",[]],[\"name/1661\",[41,42.805]],[\"comment/1661\",[]],[\"name/1662\",[521,57.348]],[\"comment/1662\",[]],[\"name/1663\",[563,76.943]],[\"comment/1663\",[]],[\"name/1664\",[48,40.95]],[\"comment/1664\",[]],[\"name/1665\",[167,60.736]],[\"comment/1665\",[]],[\"name/1666\",[41,42.805]],[\"comment/1666\",[]],[\"name/1667\",[564,76.943]],[\"comment/1667\",[]],[\"name/1668\",[521,57.348]],[\"comment/1668\",[]],[\"name/1669\",[565,68.411]],[\"comment/1669\",[]],[\"name/1670\",[566,76.943]],[\"comment/1670\",[]],[\"name/1671\",[48,40.95]],[\"comment/1671\",[]],[\"name/1672\",[41,42.805]],[\"comment/1672\",[]],[\"name/1673\",[567,76.943]],[\"comment/1673\",[]],[\"name/1674\",[48,40.95]],[\"comment/1674\",[]],[\"name/1675\",[41,42.805]],[\"comment/1675\",[]],[\"name/1676\",[568,76.943]],[\"comment/1676\",[]],[\"name/1677\",[569,76.943]],[\"comment/1677\",[]],[\"name/1678\",[570,76.943]],[\"comment/1678\",[]],[\"name/1679\",[571,76.943]],[\"comment/1679\",[]],[\"name/1680\",[572,76.943]],[\"comment/1680\",[]],[\"name/1681\",[573,65.88]],[\"comment/1681\",[]],[\"name/1682\",[48,40.95]],[\"comment/1682\",[]],[\"name/1683\",[41,42.805]],[\"comment/1683\",[]],[\"name/1684\",[521,57.348]],[\"comment/1684\",[]],[\"name/1685\",[565,68.411]],[\"comment/1685\",[]],[\"name/1686\",[574,68.411]],[\"comment/1686\",[]],[\"name/1687\",[575,76.943]],[\"comment/1687\",[]],[\"name/1688\",[37,41.14]],[\"comment/1688\",[]],[\"name/1689\",[358,50.61]],[\"comment/1689\",[]],[\"name/1690\",[167,60.736]],[\"comment/1690\",[]],[\"name/1691\",[351,65.88]],[\"comment/1691\",[]],[\"name/1692\",[576,68.411]],[\"comment/1692\",[]],[\"name/1693\",[577,76.943]],[\"comment/1693\",[]],[\"name/1694\",[578,76.943]],[\"comment/1694\",[]],[\"name/1695\",[579,76.943]],[\"comment/1695\",[]],[\"name/1696\",[545,60.736]],[\"comment/1696\",[]],[\"name/1697\",[319,68.411]],[\"comment/1697\",[]],[\"name/1698\",[546,60.736]],[\"comment/1698\",[]],[\"name/1699\",[100,53.426]],[\"comment/1699\",[]],[\"name/1700\",[580,76.943]],[\"comment/1700\",[]],[\"name/1701\",[581,68.411]],[\"comment/1701\",[]],[\"name/1702\",[582,76.943]],[\"comment/1702\",[]],[\"name/1703\",[583,76.943]],[\"comment/1703\",[]],[\"name/1704\",[545,60.736]],[\"comment/1704\",[]],[\"name/1705\",[546,60.736]],[\"comment/1705\",[]],[\"name/1706\",[100,53.426]],[\"comment/1706\",[]],[\"name/1707\",[584,76.943]],[\"comment/1707\",[]],[\"name/1708\",[585,76.943]],[\"comment/1708\",[]],[\"name/1709\",[20,42.581]],[\"comment/1709\",[]],[\"name/1710\",[30,40.95]],[\"comment/1710\",[]],[\"name/1711\",[32,44.005]],[\"comment/1711\",[]],[\"name/1712\",[33,45.081]],[\"comment/1712\",[]],[\"name/1713\",[34,44.005]],[\"comment/1713\",[]],[\"name/1714\",[586,76.943]],[\"comment/1714\",[]],[\"name/1715\",[587,68.411]],[\"comment/1715\",[]],[\"name/1716\",[588,76.943]],[\"comment/1716\",[]],[\"name/1717\",[53,60.736]],[\"comment/1717\",[]],[\"name/1718\",[589,76.943]],[\"comment/1718\",[]],[\"name/1719\",[590,76.943]],[\"comment/1719\",[]],[\"name/1720\",[48,40.95]],[\"comment/1720\",[]],[\"name/1721\",[95,50.131]],[\"comment/1721\",[]],[\"name/1722\",[591,76.943]],[\"comment/1722\",[]],[\"name/1723\",[28,43.508]],[\"comment/1723\",[]],[\"name/1724\",[30,40.95]],[\"comment/1724\",[]],[\"name/1725\",[20,42.581]],[\"comment/1725\",[]],[\"name/1726\",[113,52.204]],[\"comment/1726\",[]],[\"name/1727\",[22,44.529]],[\"comment/1727\",[]],[\"name/1728\",[261,58.355]],[\"comment/1728\",[]],[\"name/1729\",[23,45.665]],[\"comment/1729\",[]],[\"name/1730\",[592,68.411]],[\"comment/1730\",[]],[\"name/1731\",[593,68.411]],[\"comment/1731\",[]],[\"name/1732\",[594,68.411]],[\"comment/1732\",[]],[\"name/1733\",[32,44.005]],[\"comment/1733\",[]],[\"name/1734\",[33,45.081]],[\"comment/1734\",[]],[\"name/1735\",[595,76.943]],[\"comment/1735\",[]],[\"name/1736\",[596,76.943]],[\"comment/1736\",[]],[\"name/1737\",[597,76.943]],[\"comment/1737\",[]],[\"name/1738\",[598,76.943]],[\"comment/1738\",[]],[\"name/1739\",[28,43.508]],[\"comment/1739\",[]],[\"name/1740\",[30,40.95]],[\"comment/1740\",[]],[\"name/1741\",[20,42.581]],[\"comment/1741\",[]],[\"name/1742\",[113,52.204]],[\"comment/1742\",[]],[\"name/1743\",[22,44.529]],[\"comment/1743\",[]],[\"name/1744\",[261,58.355]],[\"comment/1744\",[]],[\"name/1745\",[23,45.665]],[\"comment/1745\",[]],[\"name/1746\",[592,68.411]],[\"comment/1746\",[]],[\"name/1747\",[593,68.411]],[\"comment/1747\",[]],[\"name/1748\",[594,68.411]],[\"comment/1748\",[]],[\"name/1749\",[32,44.005]],[\"comment/1749\",[]],[\"name/1750\",[33,45.081]],[\"comment/1750\",[]],[\"name/1751\",[262,62.177]],[\"comment/1751\",[]],[\"name/1752\",[16,57.348]],[\"comment/1752\",[]],[\"name/1753\",[475,58.355]],[\"comment/1753\",[]],[\"name/1754\",[21,43.754]],[\"comment/1754\",[]],[\"name/1755\",[197,49.235]],[\"comment/1755\",[]],[\"name/1756\",[19,55.592]],[\"comment/1756\",[]],[\"name/1757\",[148,62.177]],[\"comment/1757\",[]],[\"name/1758\",[24,45.97]],[\"comment/1758\",[]],[\"name/1759\",[25,46.284]],[\"comment/1759\",[]],[\"name/1760\",[26,46.945]],[\"comment/1760\",[]],[\"name/1761\",[27,46.945]],[\"comment/1761\",[]],[\"name/1762\",[29,46.609]],[\"comment/1762\",[]],[\"name/1763\",[31,46.609]],[\"comment/1763\",[]],[\"name/1764\",[34,44.005]],[\"comment/1764\",[]],[\"name/1765\",[35,45.665]],[\"comment/1765\",[]],[\"name/1766\",[599,76.943]],[\"comment/1766\",[]],[\"name/1767\",[95,50.131]],[\"comment/1767\",[]],[\"name/1768\",[144,65.88]],[\"comment/1768\",[]],[\"name/1769\",[115,60.736]],[\"comment/1769\",[]],[\"name/1770\",[110,60.736]],[\"comment/1770\",[]],[\"name/1771\",[35,45.665]],[\"comment/1771\",[]],[\"name/1772\",[145,71.799]],[\"comment/1772\",[]],[\"name/1773\",[146,60.736]],[\"comment/1773\",[]],[\"name/1774\",[147,71.799]],[\"comment/1774\",[]],[\"name/1775\",[148,62.177]],[\"comment/1775\",[]],[\"name/1776\",[149,68.411]],[\"comment/1776\",[]],[\"name/1777\",[150,71.799]],[\"comment/1777\",[]],[\"name/1778\",[151,71.799]],[\"comment/1778\",[]],[\"name/1779\",[152,59.475]],[\"comment/1779\",[]],[\"name/1780\",[153,56.431]],[\"comment/1780\",[]],[\"name/1781\",[154,71.799]],[\"comment/1781\",[]],[\"name/1782\",[155,71.799]],[\"comment/1782\",[]],[\"name/1783\",[96,54.817]],[\"comment/1783\",[]],[\"name/1784\",[97,57.348]],[\"comment/1784\",[]],[\"name/1785\",[30,40.95]],[\"comment/1785\",[]],[\"name/1786\",[20,42.581]],[\"comment/1786\",[]],[\"name/1787\",[28,43.508]],[\"comment/1787\",[]],[\"name/1788\",[98,59.475]],[\"comment/1788\",[]],[\"name/1789\",[99,60.736]],[\"comment/1789\",[]],[\"name/1790\",[100,53.426]],[\"comment/1790\",[]],[\"name/1791\",[101,60.736]],[\"comment/1791\",[]],[\"name/1792\",[102,60.736]],[\"comment/1792\",[]],[\"name/1793\",[103,58.355]],[\"comment/1793\",[]],[\"name/1794\",[104,59.475]],[\"comment/1794\",[]],[\"name/1795\",[105,58.355]],[\"comment/1795\",[]],[\"name/1796\",[106,59.475]],[\"comment/1796\",[]],[\"name/1797\",[107,60.736]],[\"comment/1797\",[]],[\"name/1798\",[95,50.131]],[\"comment/1798\",[]],[\"name/1799\",[108,60.736]],[\"comment/1799\",[]],[\"name/1800\",[109,60.736]],[\"comment/1800\",[]],[\"name/1801\",[111,60.736]],[\"comment/1801\",[]],[\"name/1802\",[112,60.736]],[\"comment/1802\",[]],[\"name/1803\",[22,44.529]],[\"comment/1803\",[]],[\"name/1804\",[113,52.204]],[\"comment/1804\",[]],[\"name/1805\",[114,60.736]],[\"comment/1805\",[]],[\"name/1806\",[116,59.475]],[\"comment/1806\",[]],[\"name/1807\",[117,54.817]],[\"comment/1807\",[]],[\"name/1808\",[118,54.817]],[\"comment/1808\",[]],[\"name/1809\",[119,54.817]],[\"comment/1809\",[]],[\"name/1810\",[120,54.817]],[\"comment/1810\",[]],[\"name/1811\",[121,54.817]],[\"comment/1811\",[]],[\"name/1812\",[122,54.817]],[\"comment/1812\",[]],[\"name/1813\",[123,54.817]],[\"comment/1813\",[]],[\"name/1814\",[124,54.817]],[\"comment/1814\",[]],[\"name/1815\",[125,54.817]],[\"comment/1815\",[]],[\"name/1816\",[126,54.817]],[\"comment/1816\",[]],[\"name/1817\",[127,54.817]],[\"comment/1817\",[]],[\"name/1818\",[128,54.817]],[\"comment/1818\",[]],[\"name/1819\",[129,54.817]],[\"comment/1819\",[]],[\"name/1820\",[130,54.817]],[\"comment/1820\",[]],[\"name/1821\",[131,54.817]],[\"comment/1821\",[]],[\"name/1822\",[600,76.943]],[\"comment/1822\",[]],[\"name/1823\",[601,76.943]],[\"comment/1823\",[]],[\"name/1824\",[602,76.943]],[\"comment/1824\",[]],[\"name/1825\",[603,71.799]],[\"comment/1825\",[]],[\"name/1826\",[18,63.859]],[\"comment/1826\",[]],[\"name/1827\",[30,40.95]],[\"comment/1827\",[]],[\"name/1828\",[604,63.859]],[\"comment/1828\",[]],[\"name/1829\",[20,42.581]],[\"comment/1829\",[]],[\"name/1830\",[24,45.97]],[\"comment/1830\",[]],[\"name/1831\",[32,44.005]],[\"comment/1831\",[]],[\"name/1832\",[33,45.081]],[\"comment/1832\",[]],[\"name/1833\",[34,44.005]],[\"comment/1833\",[]],[\"name/1834\",[299,62.177]],[\"comment/1834\",[]],[\"name/1835\",[160,71.799]],[\"comment/1835\",[]],[\"name/1836\",[605,76.943]],[\"comment/1836\",[]],[\"name/1837\",[606,76.943]],[\"comment/1837\",[]],[\"name/1838\",[607,76.943]],[\"comment/1838\",[]],[\"name/1839\",[608,76.943]],[\"comment/1839\",[]],[\"name/1840\",[37,41.14]],[\"comment/1840\",[]],[\"name/1841\",[609,76.943]],[\"comment/1841\",[]],[\"name/1842\",[610,76.943]],[\"comment/1842\",[]],[\"name/1843\",[611,76.943]],[\"comment/1843\",[]],[\"name/1844\",[612,76.943]],[\"comment/1844\",[]],[\"name/1845\",[48,40.95]],[\"comment/1845\",[]],[\"name/1846\",[613,71.799]],[\"comment/1846\",[]],[\"name/1847\",[614,71.799]],[\"comment/1847\",[]],[\"name/1848\",[48,40.95]],[\"comment/1848\",[]],[\"name/1849\",[615,63.859]],[\"comment/1849\",[]],[\"name/1850\",[616,71.799]],[\"comment/1850\",[]],[\"name/1851\",[617,71.799]],[\"comment/1851\",[]],[\"name/1852\",[618,71.799]],[\"comment/1852\",[]],[\"name/1853\",[48,40.95]],[\"comment/1853\",[]],[\"name/1854\",[619,76.943]],[\"comment/1854\",[]],[\"name/1855\",[620,76.943]],[\"comment/1855\",[]],[\"name/1856\",[621,76.943]],[\"comment/1856\",[]],[\"name/1857\",[622,76.943]],[\"comment/1857\",[]],[\"name/1858\",[623,76.943]],[\"comment/1858\",[]],[\"name/1859\",[165,55.592]],[\"comment/1859\",[]],[\"name/1860\",[48,40.95]],[\"comment/1860\",[]],[\"name/1861\",[624,76.943]],[\"comment/1861\",[]],[\"name/1862\",[48,40.95]],[\"comment/1862\",[]],[\"name/1863\",[625,76.943]],[\"comment/1863\",[]],[\"name/1864\",[48,40.95]],[\"comment/1864\",[]],[\"name/1865\",[626,76.943]],[\"comment/1865\",[]],[\"name/1866\",[627,76.943]],[\"comment/1866\",[]],[\"name/1867\",[628,76.943]],[\"comment/1867\",[]],[\"name/1868\",[629,76.943]],[\"comment/1868\",[]],[\"name/1869\",[630,76.943]],[\"comment/1869\",[]],[\"name/1870\",[631,76.943]],[\"comment/1870\",[]],[\"name/1871\",[551,71.799]],[\"comment/1871\",[]],[\"name/1872\",[632,76.943]],[\"comment/1872\",[]],[\"name/1873\",[48,40.95]],[\"comment/1873\",[]],[\"name/1874\",[613,71.799]],[\"comment/1874\",[]],[\"name/1875\",[614,71.799]],[\"comment/1875\",[]],[\"name/1876\",[616,71.799]],[\"comment/1876\",[]],[\"name/1877\",[617,71.799]],[\"comment/1877\",[]],[\"name/1878\",[618,71.799]],[\"comment/1878\",[]],[\"name/1879\",[633,76.943]],[\"comment/1879\",[]],[\"name/1880\",[634,71.799]],[\"comment/1880\",[]],[\"name/1881\",[635,71.799]],[\"comment/1881\",[]],[\"name/1882\",[636,71.799]],[\"comment/1882\",[]],[\"name/1883\",[637,76.943]],[\"comment/1883\",[]],[\"name/1884\",[638,76.943]],[\"comment/1884\",[]],[\"name/1885\",[531,71.799]],[\"comment/1885\",[]],[\"name/1886\",[57,44.005]],[\"comment/1886\",[]],[\"name/1887\",[40,68.411]],[\"comment/1887\",[]],[\"name/1888\",[60,45.368]],[\"comment/1888\",[]],[\"name/1889\",[52,59.475]],[\"comment/1889\",[]],[\"name/1890\",[639,76.943]],[\"comment/1890\",[]],[\"name/1891\",[640,76.943]],[\"comment/1891\",[]],[\"name/1892\",[641,76.943]],[\"comment/1892\",[]],[\"name/1893\",[35,45.665]],[\"comment/1893\",[]],[\"name/1894\",[642,76.943]],[\"comment/1894\",[]],[\"name/1895\",[643,76.943]],[\"comment/1895\",[]],[\"name/1896\",[153,56.431]],[\"comment/1896\",[]],[\"name/1897\",[152,59.475]],[\"comment/1897\",[]],[\"name/1898\",[273,68.411]],[\"comment/1898\",[]],[\"name/1899\",[162,62.177]],[\"comment/1899\",[]],[\"name/1900\",[644,76.943]],[\"comment/1900\",[]],[\"name/1901\",[645,76.943]],[\"comment/1901\",[]],[\"name/1902\",[153,56.431]],[\"comment/1902\",[]],[\"name/1903\",[152,59.475]],[\"comment/1903\",[]],[\"name/1904\",[273,68.411]],[\"comment/1904\",[]],[\"name/1905\",[162,62.177]],[\"comment/1905\",[]],[\"name/1906\",[646,76.943]],[\"comment/1906\",[]],[\"name/1907\",[445,49.235]],[\"comment/1907\",[]],[\"name/1908\",[284,71.799]],[\"comment/1908\",[]],[\"name/1909\",[647,76.943]],[\"comment/1909\",[]],[\"name/1910\",[279,71.799]],[\"comment/1910\",[]],[\"name/1911\",[648,71.799]],[\"comment/1911\",[]],[\"name/1912\",[649,71.799]],[\"comment/1912\",[]],[\"name/1913\",[544,62.177]],[\"comment/1913\",[]],[\"name/1914\",[650,76.943]],[\"comment/1914\",[]],[\"name/1915\",[651,76.943]],[\"comment/1915\",[]],[\"name/1916\",[48,40.95]],[\"comment/1916\",[]],[\"name/1917\",[264,63.859]],[\"comment/1917\",[]],[\"name/1918\",[652,76.943]],[\"comment/1918\",[]],[\"name/1919\",[653,76.943]],[\"comment/1919\",[]],[\"name/1920\",[282,68.411]],[\"comment/1920\",[]],[\"name/1921\",[30,40.95]],[\"comment/1921\",[]],[\"name/1922\",[34,44.005]],[\"comment/1922\",[]],[\"name/1923\",[654,76.943]],[\"comment/1923\",[]],[\"name/1924\",[282,68.411]],[\"comment/1924\",[]],[\"name/1925\",[96,54.817]],[\"comment/1925\",[]],[\"name/1926\",[544,62.177]],[\"comment/1926\",[]],[\"name/1927\",[648,71.799]],[\"comment/1927\",[]],[\"name/1928\",[649,71.799]],[\"comment/1928\",[]],[\"name/1929\",[34,44.005]],[\"comment/1929\",[]],[\"name/1930\",[655,76.943]],[\"comment/1930\",[]],[\"name/1931\",[445,49.235]],[\"comment/1931\",[]],[\"name/1932\",[656,76.943]],[\"comment/1932\",[]],[\"name/1933\",[285,71.799]],[\"comment/1933\",[]],[\"name/1934\",[272,71.799]],[\"comment/1934\",[]],[\"name/1935\",[657,71.799]],[\"comment/1935\",[]],[\"name/1936\",[502,68.411]],[\"comment/1936\",[]],[\"name/1937\",[503,68.411]],[\"comment/1937\",[]],[\"name/1938\",[573,65.88]],[\"comment/1938\",[]],[\"name/1939\",[41,42.805]],[\"comment/1939\",[]],[\"name/1940\",[521,57.348]],[\"comment/1940\",[]],[\"name/1941\",[565,68.411]],[\"comment/1941\",[]],[\"name/1942\",[658,76.943]],[\"comment/1942\",[]],[\"name/1943\",[659,76.943]],[\"comment/1943\",[]],[\"name/1944\",[660,71.799]],[\"comment/1944\",[]],[\"name/1945\",[539,63.859]],[\"comment/1945\",[]],[\"name/1946\",[661,76.943]],[\"comment/1946\",[]],[\"name/1947\",[662,76.943]],[\"comment/1947\",[]],[\"name/1948\",[634,71.799]],[\"comment/1948\",[]],[\"name/1949\",[635,71.799]],[\"comment/1949\",[]],[\"name/1950\",[636,71.799]],[\"comment/1950\",[]],[\"name/1951\",[663,71.799]],[\"comment/1951\",[]],[\"name/1952\",[664,71.799]],[\"comment/1952\",[]],[\"name/1953\",[665,71.799]],[\"comment/1953\",[]],[\"name/1954\",[538,63.859]],[\"comment/1954\",[]],[\"name/1955\",[543,63.859]],[\"comment/1955\",[]],[\"name/1956\",[545,60.736]],[\"comment/1956\",[]],[\"name/1957\",[581,68.411]],[\"comment/1957\",[]],[\"name/1958\",[666,71.799]],[\"comment/1958\",[]],[\"name/1959\",[667,71.799]],[\"comment/1959\",[]],[\"name/1960\",[556,68.411]],[\"comment/1960\",[]],[\"name/1961\",[557,68.411]],[\"comment/1961\",[]],[\"name/1962\",[558,68.411]],[\"comment/1962\",[]],[\"name/1963\",[559,68.411]],[\"comment/1963\",[]],[\"name/1964\",[560,68.411]],[\"comment/1964\",[]],[\"name/1965\",[20,42.581]],[\"comment/1965\",[]],[\"name/1966\",[326,68.411]],[\"comment/1966\",[]],[\"name/1967\",[30,40.95]],[\"comment/1967\",[]],[\"name/1968\",[350,63.859]],[\"comment/1968\",[]],[\"name/1969\",[668,71.799]],[\"comment/1969\",[]],[\"name/1970\",[657,71.799]],[\"comment/1970\",[]],[\"name/1971\",[603,71.799]],[\"comment/1971\",[]],[\"name/1972\",[318,68.411]],[\"comment/1972\",[]],[\"name/1973\",[489,71.799]],[\"comment/1973\",[]],[\"name/1974\",[669,65.88]],[\"comment/1974\",[]],[\"name/1975\",[670,68.411]],[\"comment/1975\",[]],[\"name/1976\",[671,63.859]],[\"comment/1976\",[]],[\"name/1977\",[672,68.411]],[\"comment/1977\",[]],[\"name/1978\",[574,68.411]],[\"comment/1978\",[]],[\"name/1979\",[673,71.799]],[\"comment/1979\",[]],[\"name/1980\",[24,45.97]],[\"comment/1980\",[]],[\"name/1981\",[674,71.799]],[\"comment/1981\",[]],[\"name/1982\",[100,53.426]],[\"comment/1982\",[]],[\"name/1983\",[353,65.88]],[\"comment/1983\",[]],[\"name/1984\",[675,71.799]],[\"comment/1984\",[]],[\"name/1985\",[676,71.799]],[\"comment/1985\",[]],[\"name/1986\",[34,44.005]],[\"comment/1986\",[]],[\"name/1987\",[677,76.943]],[\"comment/1987\",[]],[\"name/1988\",[678,76.943]],[\"comment/1988\",[]],[\"name/1989\",[679,76.943]],[\"comment/1989\",[]],[\"name/1990\",[680,76.943]],[\"comment/1990\",[]],[\"name/1991\",[681,76.943]],[\"comment/1991\",[]],[\"name/1992\",[682,76.943]],[\"comment/1992\",[]],[\"name/1993\",[542,63.859]],[\"comment/1993\",[]],[\"name/1994\",[540,63.859]],[\"comment/1994\",[]],[\"name/1995\",[541,63.859]],[\"comment/1995\",[]],[\"name/1996\",[18,63.859]],[\"comment/1996\",[]],[\"name/1997\",[604,63.859]],[\"comment/1997\",[]],[\"name/1998\",[298,62.177]],[\"comment/1998\",[]],[\"name/1999\",[297,60.736]],[\"comment/1999\",[]],[\"name/2000\",[683,71.799]],[\"comment/2000\",[]],[\"name/2001\",[573,65.88]],[\"comment/2001\",[]],[\"name/2002\",[547,62.177]],[\"comment/2002\",[]],[\"name/2003\",[548,62.177]],[\"comment/2003\",[]],[\"name/2004\",[549,62.177]],[\"comment/2004\",[]],[\"name/2005\",[550,62.177]],[\"comment/2005\",[]],[\"name/2006\",[32,44.005]],[\"comment/2006\",[]],[\"name/2007\",[33,45.081]],[\"comment/2007\",[]],[\"name/2008\",[684,76.943]],[\"comment/2008\",[]],[\"name/2009\",[574,68.411]],[\"comment/2009\",[]],[\"name/2010\",[685,71.799]],[\"comment/2010\",[]],[\"name/2011\",[686,76.943]],[\"comment/2011\",[]],[\"name/2012\",[537,65.88]],[\"comment/2012\",[]],[\"name/2013\",[30,40.95]],[\"comment/2013\",[]],[\"name/2014\",[20,42.581]],[\"comment/2014\",[]],[\"name/2015\",[100,53.426]],[\"comment/2015\",[]],[\"name/2016\",[297,60.736]],[\"comment/2016\",[]],[\"name/2017\",[545,60.736]],[\"comment/2017\",[]],[\"name/2018\",[34,44.005]],[\"comment/2018\",[]],[\"name/2019\",[25,46.284]],[\"comment/2019\",[]],[\"name/2020\",[544,62.177]],[\"comment/2020\",[]],[\"name/2021\",[299,62.177]],[\"comment/2021\",[]],[\"name/2022\",[547,62.177]],[\"comment/2022\",[]],[\"name/2023\",[548,62.177]],[\"comment/2023\",[]],[\"name/2024\",[549,62.177]],[\"comment/2024\",[]],[\"name/2025\",[550,62.177]],[\"comment/2025\",[]],[\"name/2026\",[539,63.859]],[\"comment/2026\",[]],[\"name/2027\",[32,44.005]],[\"comment/2027\",[]],[\"name/2028\",[683,71.799]],[\"comment/2028\",[]],[\"name/2029\",[557,68.411]],[\"comment/2029\",[]],[\"name/2030\",[660,71.799]],[\"comment/2030\",[]],[\"name/2031\",[663,71.799]],[\"comment/2031\",[]],[\"name/2032\",[664,71.799]],[\"comment/2032\",[]],[\"name/2033\",[665,71.799]],[\"comment/2033\",[]],[\"name/2034\",[538,63.859]],[\"comment/2034\",[]],[\"name/2035\",[543,63.859]],[\"comment/2035\",[]],[\"name/2036\",[581,68.411]],[\"comment/2036\",[]],[\"name/2037\",[666,71.799]],[\"comment/2037\",[]],[\"name/2038\",[667,71.799]],[\"comment/2038\",[]],[\"name/2039\",[556,68.411]],[\"comment/2039\",[]],[\"name/2040\",[558,68.411]],[\"comment/2040\",[]],[\"name/2041\",[559,68.411]],[\"comment/2041\",[]],[\"name/2042\",[560,68.411]],[\"comment/2042\",[]],[\"name/2043\",[669,65.88]],[\"comment/2043\",[]],[\"name/2044\",[670,68.411]],[\"comment/2044\",[]],[\"name/2045\",[671,63.859]],[\"comment/2045\",[]],[\"name/2046\",[672,68.411]],[\"comment/2046\",[]],[\"name/2047\",[673,71.799]],[\"comment/2047\",[]],[\"name/2048\",[24,45.97]],[\"comment/2048\",[]],[\"name/2049\",[674,71.799]],[\"comment/2049\",[]],[\"name/2050\",[542,63.859]],[\"comment/2050\",[]],[\"name/2051\",[540,63.859]],[\"comment/2051\",[]],[\"name/2052\",[541,63.859]],[\"comment/2052\",[]],[\"name/2053\",[18,63.859]],[\"comment/2053\",[]],[\"name/2054\",[604,63.859]],[\"comment/2054\",[]],[\"name/2055\",[298,62.177]],[\"comment/2055\",[]],[\"name/2056\",[573,65.88]],[\"comment/2056\",[]],[\"name/2057\",[604,63.859]],[\"comment/2057\",[]],[\"name/2058\",[687,76.943]],[\"comment/2058\",[]],[\"name/2059\",[297,60.736]],[\"comment/2059\",[]],[\"name/2060\",[521,57.348]],[\"comment/2060\",[]],[\"name/2061\",[688,76.943]],[\"comment/2061\",[]],[\"name/2062\",[689,76.943]],[\"comment/2062\",[]],[\"name/2063\",[690,76.943]],[\"comment/2063\",[]],[\"name/2064\",[691,76.943]],[\"comment/2064\",[]],[\"name/2065\",[692,76.943]],[\"comment/2065\",[]],[\"name/2066\",[693,76.943]],[\"comment/2066\",[]],[\"name/2067\",[694,76.943]],[\"comment/2067\",[]],[\"name/2068\",[48,40.95]],[\"comment/2068\",[]],[\"name/2069\",[695,76.943]],[\"comment/2069\",[]],[\"name/2070\",[696,76.943]],[\"comment/2070\",[]],[\"name/2071\",[697,76.943]],[\"comment/2071\",[]],[\"name/2072\",[48,40.95]],[\"comment/2072\",[]],[\"name/2073\",[698,76.943]],[\"comment/2073\",[]],[\"name/2074\",[117,54.817]],[\"comment/2074\",[]],[\"name/2075\",[118,54.817]],[\"comment/2075\",[]],[\"name/2076\",[119,54.817]],[\"comment/2076\",[]],[\"name/2077\",[120,54.817]],[\"comment/2077\",[]],[\"name/2078\",[121,54.817]],[\"comment/2078\",[]],[\"name/2079\",[122,54.817]],[\"comment/2079\",[]],[\"name/2080\",[123,54.817]],[\"comment/2080\",[]],[\"name/2081\",[124,54.817]],[\"comment/2081\",[]],[\"name/2082\",[125,54.817]],[\"comment/2082\",[]],[\"name/2083\",[126,54.817]],[\"comment/2083\",[]],[\"name/2084\",[127,54.817]],[\"comment/2084\",[]],[\"name/2085\",[128,54.817]],[\"comment/2085\",[]],[\"name/2086\",[129,54.817]],[\"comment/2086\",[]],[\"name/2087\",[130,54.817]],[\"comment/2087\",[]],[\"name/2088\",[131,54.817]],[\"comment/2088\",[]],[\"name/2089\",[699,76.943]],[\"comment/2089\",[]],[\"name/2090\",[700,76.943]],[\"comment/2090\",[]],[\"name/2091\",[48,40.95]],[\"comment/2091\",[]],[\"name/2092\",[701,71.799]],[\"comment/2092\",[]],[\"name/2093\",[702,76.943]],[\"comment/2093\",[]],[\"name/2094\",[703,76.943]],[\"comment/2094\",[]],[\"name/2095\",[704,76.943]],[\"comment/2095\",[]],[\"name/2096\",[48,40.95]],[\"comment/2096\",[]],[\"name/2097\",[701,71.799]],[\"comment/2097\",[]],[\"name/2098\",[705,76.943]],[\"comment/2098\",[]],[\"name/2099\",[706,76.943]],[\"comment/2099\",[]],[\"name/2100\",[153,56.431]],[\"comment/2100\",[]],[\"name/2101\",[707,76.943]],[\"comment/2101\",[]],[\"name/2102\",[708,76.943]],[\"comment/2102\",[]],[\"name/2103\",[709,76.943]],[\"comment/2103\",[]],[\"name/2104\",[710,76.943]],[\"comment/2104\",[]],[\"name/2105\",[255,58.355]],[\"comment/2105\",[]],[\"name/2106\",[711,76.943]],[\"comment/2106\",[]],[\"name/2107\",[712,76.943]],[\"comment/2107\",[]],[\"name/2108\",[713,76.943]],[\"comment/2108\",[]],[\"name/2109\",[714,76.943]],[\"comment/2109\",[]],[\"name/2110\",[715,76.943]],[\"comment/2110\",[]],[\"name/2111\",[716,71.799]],[\"comment/2111\",[]],[\"name/2112\",[717,76.943]],[\"comment/2112\",[]],[\"name/2113\",[718,76.943]],[\"comment/2113\",[]],[\"name/2114\",[719,76.943]],[\"comment/2114\",[]],[\"name/2115\",[720,76.943]],[\"comment/2115\",[]],[\"name/2116\",[721,76.943]],[\"comment/2116\",[]],[\"name/2117\",[722,76.943]],[\"comment/2117\",[]],[\"name/2118\",[167,60.736]],[\"comment/2118\",[]],[\"name/2119\",[723,76.943]],[\"comment/2119\",[]],[\"name/2120\",[724,76.943]],[\"comment/2120\",[]],[\"name/2121\",[725,76.943]],[\"comment/2121\",[]],[\"name/2122\",[726,76.943]],[\"comment/2122\",[]],[\"name/2123\",[165,55.592]],[\"comment/2123\",[]],[\"name/2124\",[727,76.943]],[\"comment/2124\",[]],[\"name/2125\",[48,40.95]],[\"comment/2125\",[]],[\"name/2126\",[728,76.943]],[\"comment/2126\",[]],[\"name/2127\",[729,76.943]],[\"comment/2127\",[]],[\"name/2128\",[730,71.799]],[\"comment/2128\",[]],[\"name/2129\",[731,76.943]],[\"comment/2129\",[]],[\"name/2130\",[732,76.943]],[\"comment/2130\",[]],[\"name/2131\",[733,76.943]],[\"comment/2131\",[]],[\"name/2132\",[734,76.943]],[\"comment/2132\",[]],[\"name/2133\",[437,60.736]],[\"comment/2133\",[]],[\"name/2134\",[735,76.943]],[\"comment/2134\",[]],[\"name/2135\",[736,76.943]],[\"comment/2135\",[]],[\"name/2136\",[737,76.943]],[\"comment/2136\",[]],[\"name/2137\",[738,76.943]],[\"comment/2137\",[]],[\"name/2138\",[739,76.943]],[\"comment/2138\",[]],[\"name/2139\",[740,76.943]],[\"comment/2139\",[]],[\"name/2140\",[741,76.943]],[\"comment/2140\",[]],[\"name/2141\",[742,76.943]],[\"comment/2141\",[]],[\"name/2142\",[743,76.943]],[\"comment/2142\",[]],[\"name/2143\",[744,76.943]],[\"comment/2143\",[]],[\"name/2144\",[745,76.943]],[\"comment/2144\",[]],[\"name/2145\",[746,76.943]],[\"comment/2145\",[]],[\"name/2146\",[747,76.943]],[\"comment/2146\",[]],[\"name/2147\",[748,76.943]],[\"comment/2147\",[]],[\"name/2148\",[749,76.943]],[\"comment/2148\",[]],[\"name/2149\",[750,76.943]],[\"comment/2149\",[]],[\"name/2150\",[751,76.943]],[\"comment/2150\",[]],[\"name/2151\",[752,76.943]],[\"comment/2151\",[]],[\"name/2152\",[753,76.943]],[\"comment/2152\",[]],[\"name/2153\",[754,76.943]],[\"comment/2153\",[]],[\"name/2154\",[755,76.943]],[\"comment/2154\",[]],[\"name/2155\",[756,76.943]],[\"comment/2155\",[]],[\"name/2156\",[757,76.943]],[\"comment/2156\",[]],[\"name/2157\",[758,76.943]],[\"comment/2157\",[]],[\"name/2158\",[759,76.943]],[\"comment/2158\",[]],[\"name/2159\",[760,76.943]],[\"comment/2159\",[]],[\"name/2160\",[761,76.943]],[\"comment/2160\",[]],[\"name/2161\",[762,76.943]],[\"comment/2161\",[]],[\"name/2162\",[763,71.799]],[\"comment/2162\",[]],[\"name/2163\",[764,76.943]],[\"comment/2163\",[]],[\"name/2164\",[765,76.943]],[\"comment/2164\",[]],[\"name/2165\",[766,76.943]],[\"comment/2165\",[]],[\"name/2166\",[48,40.95]],[\"comment/2166\",[]],[\"name/2167\",[767,68.411]],[\"comment/2167\",[]],[\"name/2168\",[768,76.943]],[\"comment/2168\",[]],[\"name/2169\",[769,76.943]],[\"comment/2169\",[]],[\"name/2170\",[770,76.943]],[\"comment/2170\",[]],[\"name/2171\",[771,76.943]],[\"comment/2171\",[]],[\"name/2172\",[23,45.665]],[\"comment/2172\",[]],[\"name/2173\",[772,76.943]],[\"comment/2173\",[]],[\"name/2174\",[773,76.943]],[\"comment/2174\",[]],[\"name/2175\",[774,76.943]],[\"comment/2175\",[]],[\"name/2176\",[775,76.943]],[\"comment/2176\",[]],[\"name/2177\",[776,76.943]],[\"comment/2177\",[]],[\"name/2178\",[777,76.943]],[\"comment/2178\",[]],[\"name/2179\",[778,76.943]],[\"comment/2179\",[]],[\"name/2180\",[779,76.943]],[\"comment/2180\",[]],[\"name/2181\",[780,76.943]],[\"comment/2181\",[]],[\"name/2182\",[781,76.943]],[\"comment/2182\",[]],[\"name/2183\",[782,76.943]],[\"comment/2183\",[]],[\"name/2184\",[20,42.581]],[\"comment/2184\",[]],[\"name/2185\",[21,43.754]],[\"comment/2185\",[]],[\"name/2186\",[22,44.529]],[\"comment/2186\",[]],[\"name/2187\",[23,45.665]],[\"comment/2187\",[]],[\"name/2188\",[24,45.97]],[\"comment/2188\",[]],[\"name/2189\",[25,46.284]],[\"comment/2189\",[]],[\"name/2190\",[26,46.945]],[\"comment/2190\",[]],[\"name/2191\",[27,46.945]],[\"comment/2191\",[]],[\"name/2192\",[28,43.508]],[\"comment/2192\",[]],[\"name/2193\",[29,46.609]],[\"comment/2193\",[]],[\"name/2194\",[30,40.95]],[\"comment/2194\",[]],[\"name/2195\",[31,46.609]],[\"comment/2195\",[]],[\"name/2196\",[32,44.005]],[\"comment/2196\",[]],[\"name/2197\",[33,45.081]],[\"comment/2197\",[]],[\"name/2198\",[34,44.005]],[\"comment/2198\",[]],[\"name/2199\",[35,45.665]],[\"comment/2199\",[]],[\"name/2200\",[783,76.943]],[\"comment/2200\",[]],[\"name/2201\",[784,76.943]],[\"comment/2201\",[]],[\"name/2202\",[236,58.355]],[\"comment/2202\",[]],[\"name/2203\",[785,76.943]],[\"comment/2203\",[]],[\"name/2204\",[262,62.177]],[\"comment/2204\",[]],[\"name/2205\",[113,52.204]],[\"comment/2205\",[]],[\"name/2206\",[16,57.348]],[\"comment/2206\",[]],[\"name/2207\",[475,58.355]],[\"comment/2207\",[]],[\"name/2208\",[22,44.529]],[\"comment/2208\",[]],[\"name/2209\",[261,58.355]],[\"comment/2209\",[]],[\"name/2210\",[21,43.754]],[\"comment/2210\",[]],[\"name/2211\",[197,49.235]],[\"comment/2211\",[]],[\"name/2212\",[19,55.592]],[\"comment/2212\",[]],[\"name/2213\",[148,62.177]],[\"comment/2213\",[]],[\"name/2214\",[20,42.581]],[\"comment/2214\",[]],[\"name/2215\",[23,45.665]],[\"comment/2215\",[]],[\"name/2216\",[24,45.97]],[\"comment/2216\",[]],[\"name/2217\",[25,46.284]],[\"comment/2217\",[]],[\"name/2218\",[26,46.945]],[\"comment/2218\",[]],[\"name/2219\",[27,46.945]],[\"comment/2219\",[]],[\"name/2220\",[28,43.508]],[\"comment/2220\",[]],[\"name/2221\",[29,46.609]],[\"comment/2221\",[]],[\"name/2222\",[30,40.95]],[\"comment/2222\",[]],[\"name/2223\",[31,46.609]],[\"comment/2223\",[]],[\"name/2224\",[32,44.005]],[\"comment/2224\",[]],[\"name/2225\",[33,45.081]],[\"comment/2225\",[]],[\"name/2226\",[34,44.005]],[\"comment/2226\",[]],[\"name/2227\",[35,45.665]],[\"comment/2227\",[]],[\"name/2228\",[786,76.943]],[\"comment/2228\",[]],[\"name/2229\",[787,76.943]],[\"comment/2229\",[]],[\"name/2230\",[788,76.943]],[\"comment/2230\",[]],[\"name/2231\",[789,76.943]],[\"comment/2231\",[]],[\"name/2232\",[790,76.943]],[\"comment/2232\",[]],[\"name/2233\",[791,76.943]],[\"comment/2233\",[]],[\"name/2234\",[792,76.943]],[\"comment/2234\",[]],[\"name/2235\",[793,76.943]],[\"comment/2235\",[]],[\"name/2236\",[794,76.943]],[\"comment/2236\",[]],[\"name/2237\",[795,76.943]],[\"comment/2237\",[]],[\"name/2238\",[796,76.943]],[\"comment/2238\",[]],[\"name/2239\",[20,42.581]],[\"comment/2239\",[]],[\"name/2240\",[21,43.754]],[\"comment/2240\",[]],[\"name/2241\",[22,44.529]],[\"comment/2241\",[]],[\"name/2242\",[23,45.665]],[\"comment/2242\",[]],[\"name/2243\",[24,45.97]],[\"comment/2243\",[]],[\"name/2244\",[25,46.284]],[\"comment/2244\",[]],[\"name/2245\",[26,46.945]],[\"comment/2245\",[]],[\"name/2246\",[27,46.945]],[\"comment/2246\",[]],[\"name/2247\",[28,43.508]],[\"comment/2247\",[]],[\"name/2248\",[29,46.609]],[\"comment/2248\",[]],[\"name/2249\",[30,40.95]],[\"comment/2249\",[]],[\"name/2250\",[31,46.609]],[\"comment/2250\",[]],[\"name/2251\",[32,44.005]],[\"comment/2251\",[]],[\"name/2252\",[33,45.081]],[\"comment/2252\",[]],[\"name/2253\",[34,44.005]],[\"comment/2253\",[]],[\"name/2254\",[35,45.665]],[\"comment/2254\",[]],[\"name/2255\",[797,76.943]],[\"comment/2255\",[]],[\"name/2256\",[798,76.943]],[\"comment/2256\",[]],[\"name/2257\",[30,40.95]],[\"comment/2257\",[]],[\"name/2258\",[28,43.508]],[\"comment/2258\",[]],[\"name/2259\",[799,76.943]],[\"comment/2259\",[]],[\"name/2260\",[152,59.475]],[\"comment/2260\",[]],[\"name/2261\",[146,60.736]],[\"comment/2261\",[]],[\"name/2262\",[22,44.529]],[\"comment/2262\",[]],[\"name/2263\",[197,49.235]],[\"comment/2263\",[]],[\"name/2264\",[20,42.581]],[\"comment/2264\",[]],[\"name/2265\",[21,43.754]],[\"comment/2265\",[]],[\"name/2266\",[23,45.665]],[\"comment/2266\",[]],[\"name/2267\",[24,45.97]],[\"comment/2267\",[]],[\"name/2268\",[25,46.284]],[\"comment/2268\",[]],[\"name/2269\",[26,46.945]],[\"comment/2269\",[]],[\"name/2270\",[27,46.945]],[\"comment/2270\",[]],[\"name/2271\",[28,43.508]],[\"comment/2271\",[]],[\"name/2272\",[29,46.609]],[\"comment/2272\",[]],[\"name/2273\",[30,40.95]],[\"comment/2273\",[]],[\"name/2274\",[31,46.609]],[\"comment/2274\",[]],[\"name/2275\",[32,44.005]],[\"comment/2275\",[]],[\"name/2276\",[33,45.081]],[\"comment/2276\",[]],[\"name/2277\",[34,44.005]],[\"comment/2277\",[]],[\"name/2278\",[35,45.665]],[\"comment/2278\",[]],[\"name/2279\",[800,76.943]],[\"comment/2279\",[]],[\"name/2280\",[152,59.475]],[\"comment/2280\",[]],[\"name/2281\",[146,60.736]],[\"comment/2281\",[]],[\"name/2282\",[262,62.177]],[\"comment/2282\",[]],[\"name/2283\",[113,52.204]],[\"comment/2283\",[]],[\"name/2284\",[16,57.348]],[\"comment/2284\",[]],[\"name/2285\",[475,58.355]],[\"comment/2285\",[]],[\"name/2286\",[22,44.529]],[\"comment/2286\",[]],[\"name/2287\",[261,58.355]],[\"comment/2287\",[]],[\"name/2288\",[21,43.754]],[\"comment/2288\",[]],[\"name/2289\",[197,49.235]],[\"comment/2289\",[]],[\"name/2290\",[19,55.592]],[\"comment/2290\",[]],[\"name/2291\",[148,62.177]],[\"comment/2291\",[]],[\"name/2292\",[20,42.581]],[\"comment/2292\",[]],[\"name/2293\",[23,45.665]],[\"comment/2293\",[]],[\"name/2294\",[24,45.97]],[\"comment/2294\",[]],[\"name/2295\",[25,46.284]],[\"comment/2295\",[]],[\"name/2296\",[26,46.945]],[\"comment/2296\",[]],[\"name/2297\",[27,46.945]],[\"comment/2297\",[]],[\"name/2298\",[28,43.508]],[\"comment/2298\",[]],[\"name/2299\",[29,46.609]],[\"comment/2299\",[]],[\"name/2300\",[30,40.95]],[\"comment/2300\",[]],[\"name/2301\",[31,46.609]],[\"comment/2301\",[]],[\"name/2302\",[32,44.005]],[\"comment/2302\",[]],[\"name/2303\",[33,45.081]],[\"comment/2303\",[]],[\"name/2304\",[34,44.005]],[\"comment/2304\",[]],[\"name/2305\",[35,45.665]],[\"comment/2305\",[]],[\"name/2306\",[801,76.943]],[\"comment/2306\",[]],[\"name/2307\",[41,42.805]],[\"comment/2307\",[]],[\"name/2308\",[615,63.859]],[\"comment/2308\",[]],[\"name/2309\",[802,68.411]],[\"comment/2309\",[]],[\"name/2310\",[803,76.943]],[\"comment/2310\",[]],[\"name/2311\",[804,71.799]],[\"comment/2311\",[]],[\"name/2312\",[805,76.943]],[\"comment/2312\",[]],[\"name/2313\",[437,60.736]],[\"comment/2313\",[]],[\"name/2314\",[257,62.177]],[\"comment/2314\",[]],[\"name/2315\",[806,76.943]],[\"comment/2315\",[]],[\"name/2316\",[807,68.411]],[\"comment/2316\",[]],[\"name/2317\",[808,76.943]],[\"comment/2317\",[]],[\"name/2318\",[809,76.943]],[\"comment/2318\",[]],[\"name/2319\",[810,76.943]],[\"comment/2319\",[]],[\"name/2320\",[811,76.943]],[\"comment/2320\",[]],[\"name/2321\",[812,76.943]],[\"comment/2321\",[]],[\"name/2322\",[144,65.88]],[\"comment/2322\",[]],[\"name/2323\",[604,63.859]],[\"comment/2323\",[]],[\"name/2324\",[813,76.943]],[\"comment/2324\",[]],[\"name/2325\",[814,76.943]],[\"comment/2325\",[]],[\"name/2326\",[815,68.411]],[\"comment/2326\",[]],[\"name/2327\",[816,71.799]],[\"comment/2327\",[]],[\"name/2328\",[817,76.943]],[\"comment/2328\",[]],[\"name/2329\",[48,40.95]],[\"comment/2329\",[]],[\"name/2330\",[818,71.799]],[\"comment/2330\",[]],[\"name/2331\",[20,42.581]],[\"comment/2331\",[]],[\"name/2332\",[21,43.754]],[\"comment/2332\",[]],[\"name/2333\",[22,44.529]],[\"comment/2333\",[]],[\"name/2334\",[23,45.665]],[\"comment/2334\",[]],[\"name/2335\",[24,45.97]],[\"comment/2335\",[]],[\"name/2336\",[25,46.284]],[\"comment/2336\",[]],[\"name/2337\",[26,46.945]],[\"comment/2337\",[]],[\"name/2338\",[27,46.945]],[\"comment/2338\",[]],[\"name/2339\",[28,43.508]],[\"comment/2339\",[]],[\"name/2340\",[29,46.609]],[\"comment/2340\",[]],[\"name/2341\",[30,40.95]],[\"comment/2341\",[]],[\"name/2342\",[31,46.609]],[\"comment/2342\",[]],[\"name/2343\",[32,44.005]],[\"comment/2343\",[]],[\"name/2344\",[33,45.081]],[\"comment/2344\",[]],[\"name/2345\",[34,44.005]],[\"comment/2345\",[]],[\"name/2346\",[35,45.665]],[\"comment/2346\",[]],[\"name/2347\",[819,76.943]],[\"comment/2347\",[]],[\"name/2348\",[820,76.943]],[\"comment/2348\",[]],[\"name/2349\",[821,76.943]],[\"comment/2349\",[]],[\"name/2350\",[822,76.943]],[\"comment/2350\",[]],[\"name/2351\",[823,76.943]],[\"comment/2351\",[]],[\"name/2352\",[824,76.943]],[\"comment/2352\",[]],[\"name/2353\",[825,76.943]],[\"comment/2353\",[]],[\"name/2354\",[17,71.799]],[\"comment/2354\",[]],[\"name/2355\",[21,43.754]],[\"comment/2355\",[]],[\"name/2356\",[197,49.235]],[\"comment/2356\",[]],[\"name/2357\",[19,55.592]],[\"comment/2357\",[]],[\"name/2358\",[20,42.581]],[\"comment/2358\",[]],[\"name/2359\",[22,44.529]],[\"comment/2359\",[]],[\"name/2360\",[23,45.665]],[\"comment/2360\",[]],[\"name/2361\",[24,45.97]],[\"comment/2361\",[]],[\"name/2362\",[25,46.284]],[\"comment/2362\",[]],[\"name/2363\",[26,46.945]],[\"comment/2363\",[]],[\"name/2364\",[27,46.945]],[\"comment/2364\",[]],[\"name/2365\",[28,43.508]],[\"comment/2365\",[]],[\"name/2366\",[29,46.609]],[\"comment/2366\",[]],[\"name/2367\",[30,40.95]],[\"comment/2367\",[]],[\"name/2368\",[31,46.609]],[\"comment/2368\",[]],[\"name/2369\",[32,44.005]],[\"comment/2369\",[]],[\"name/2370\",[33,45.081]],[\"comment/2370\",[]],[\"name/2371\",[34,44.005]],[\"comment/2371\",[]],[\"name/2372\",[35,45.665]],[\"comment/2372\",[]],[\"name/2373\",[826,76.943]],[\"comment/2373\",[]],[\"name/2374\",[827,65.88]],[\"comment/2374\",[]],[\"name/2375\",[45,68.411]],[\"comment/2375\",[]],[\"name/2376\",[828,76.943]],[\"comment/2376\",[]],[\"name/2377\",[829,71.799]],[\"comment/2377\",[]],[\"name/2378\",[146,60.736]],[\"comment/2378\",[]],[\"name/2379\",[21,43.754]],[\"comment/2379\",[]],[\"name/2380\",[197,49.235]],[\"comment/2380\",[]],[\"name/2381\",[830,76.943]],[\"comment/2381\",[]],[\"name/2382\",[831,76.943]],[\"comment/2382\",[]],[\"name/2383\",[816,71.799]],[\"comment/2383\",[]],[\"name/2384\",[20,42.581]],[\"comment/2384\",[]],[\"name/2385\",[21,43.754]],[\"comment/2385\",[]],[\"name/2386\",[22,44.529]],[\"comment/2386\",[]],[\"name/2387\",[23,45.665]],[\"comment/2387\",[]],[\"name/2388\",[24,45.97]],[\"comment/2388\",[]],[\"name/2389\",[25,46.284]],[\"comment/2389\",[]],[\"name/2390\",[26,46.945]],[\"comment/2390\",[]],[\"name/2391\",[27,46.945]],[\"comment/2391\",[]],[\"name/2392\",[28,43.508]],[\"comment/2392\",[]],[\"name/2393\",[29,46.609]],[\"comment/2393\",[]],[\"name/2394\",[30,40.95]],[\"comment/2394\",[]],[\"name/2395\",[31,46.609]],[\"comment/2395\",[]],[\"name/2396\",[32,44.005]],[\"comment/2396\",[]],[\"name/2397\",[33,45.081]],[\"comment/2397\",[]],[\"name/2398\",[34,44.005]],[\"comment/2398\",[]],[\"name/2399\",[35,45.665]],[\"comment/2399\",[]],[\"name/2400\",[832,76.943]],[\"comment/2400\",[]],[\"name/2401\",[833,76.943]],[\"comment/2401\",[]],[\"name/2402\",[22,44.529]],[\"comment/2402\",[]],[\"name/2403\",[20,42.581]],[\"comment/2403\",[]],[\"name/2404\",[21,43.754]],[\"comment/2404\",[]],[\"name/2405\",[23,45.665]],[\"comment/2405\",[]],[\"name/2406\",[24,45.97]],[\"comment/2406\",[]],[\"name/2407\",[25,46.284]],[\"comment/2407\",[]],[\"name/2408\",[26,46.945]],[\"comment/2408\",[]],[\"name/2409\",[27,46.945]],[\"comment/2409\",[]],[\"name/2410\",[28,43.508]],[\"comment/2410\",[]],[\"name/2411\",[29,46.609]],[\"comment/2411\",[]],[\"name/2412\",[30,40.95]],[\"comment/2412\",[]],[\"name/2413\",[31,46.609]],[\"comment/2413\",[]],[\"name/2414\",[32,44.005]],[\"comment/2414\",[]],[\"name/2415\",[33,45.081]],[\"comment/2415\",[]],[\"name/2416\",[34,44.005]],[\"comment/2416\",[]],[\"name/2417\",[35,45.665]],[\"comment/2417\",[]],[\"name/2418\",[834,76.943]],[\"comment/2418\",[]],[\"name/2419\",[835,76.943]],[\"comment/2419\",[]],[\"name/2420\",[20,42.581]],[\"comment/2420\",[]],[\"name/2421\",[21,43.754]],[\"comment/2421\",[]],[\"name/2422\",[22,44.529]],[\"comment/2422\",[]],[\"name/2423\",[23,45.665]],[\"comment/2423\",[]],[\"name/2424\",[24,45.97]],[\"comment/2424\",[]],[\"name/2425\",[25,46.284]],[\"comment/2425\",[]],[\"name/2426\",[26,46.945]],[\"comment/2426\",[]],[\"name/2427\",[27,46.945]],[\"comment/2427\",[]],[\"name/2428\",[28,43.508]],[\"comment/2428\",[]],[\"name/2429\",[29,46.609]],[\"comment/2429\",[]],[\"name/2430\",[30,40.95]],[\"comment/2430\",[]],[\"name/2431\",[31,46.609]],[\"comment/2431\",[]],[\"name/2432\",[32,44.005]],[\"comment/2432\",[]],[\"name/2433\",[33,45.081]],[\"comment/2433\",[]],[\"name/2434\",[34,44.005]],[\"comment/2434\",[]],[\"name/2435\",[35,45.665]],[\"comment/2435\",[]],[\"name/2436\",[836,76.943]],[\"comment/2436\",[]],[\"name/2437\",[146,60.736]],[\"comment/2437\",[]],[\"name/2438\",[153,56.431]],[\"comment/2438\",[]],[\"name/2439\",[837,65.88]],[\"comment/2439\",[]],[\"name/2440\",[152,59.475]],[\"comment/2440\",[]],[\"name/2441\",[197,49.235]],[\"comment/2441\",[]],[\"name/2442\",[838,76.943]],[\"comment/2442\",[]],[\"name/2443\",[592,68.411]],[\"comment/2443\",[]],[\"name/2444\",[593,68.411]],[\"comment/2444\",[]],[\"name/2445\",[113,52.204]],[\"comment/2445\",[]],[\"name/2446\",[258,71.799]],[\"comment/2446\",[]],[\"name/2447\",[256,65.88]],[\"comment/2447\",[]],[\"name/2448\",[257,62.177]],[\"comment/2448\",[]],[\"name/2449\",[22,44.529]],[\"comment/2449\",[]],[\"name/2450\",[261,58.355]],[\"comment/2450\",[]],[\"name/2451\",[594,68.411]],[\"comment/2451\",[]],[\"name/2452\",[21,43.754]],[\"comment/2452\",[]],[\"name/2453\",[262,62.177]],[\"comment/2453\",[]],[\"name/2454\",[839,76.943]],[\"comment/2454\",[]],[\"name/2455\",[840,76.943]],[\"comment/2455\",[]],[\"name/2456\",[259,71.799]],[\"comment/2456\",[]],[\"name/2457\",[19,55.592]],[\"comment/2457\",[]],[\"name/2458\",[841,76.943]],[\"comment/2458\",[]],[\"name/2459\",[32,44.005]],[\"comment/2459\",[]],[\"name/2460\",[33,45.081]],[\"comment/2460\",[]],[\"name/2461\",[28,43.508]],[\"comment/2461\",[]],[\"name/2462\",[25,46.284]],[\"comment/2462\",[]],[\"name/2463\",[20,42.581]],[\"comment/2463\",[]],[\"name/2464\",[30,40.95]],[\"comment/2464\",[]],[\"name/2465\",[24,45.97]],[\"comment/2465\",[]],[\"name/2466\",[29,46.609]],[\"comment/2466\",[]],[\"name/2467\",[31,46.609]],[\"comment/2467\",[]],[\"name/2468\",[23,45.665]],[\"comment/2468\",[]],[\"name/2469\",[35,45.665]],[\"comment/2469\",[]],[\"name/2470\",[26,46.945]],[\"comment/2470\",[]],[\"name/2471\",[27,46.945]],[\"comment/2471\",[]],[\"name/2472\",[842,76.943]],[\"comment/2472\",[]],[\"name/2473\",[197,49.235]],[\"comment/2473\",[]],[\"name/2474\",[837,65.88]],[\"comment/2474\",[]],[\"name/2475\",[153,56.431]],[\"comment/2475\",[]],[\"name/2476\",[19,55.592]],[\"comment/2476\",[]],[\"name/2477\",[843,68.411]],[\"comment/2477\",[]],[\"name/2478\",[20,42.581]],[\"comment/2478\",[]],[\"name/2479\",[21,43.754]],[\"comment/2479\",[]],[\"name/2480\",[22,44.529]],[\"comment/2480\",[]],[\"name/2481\",[23,45.665]],[\"comment/2481\",[]],[\"name/2482\",[24,45.97]],[\"comment/2482\",[]],[\"name/2483\",[25,46.284]],[\"comment/2483\",[]],[\"name/2484\",[26,46.945]],[\"comment/2484\",[]],[\"name/2485\",[27,46.945]],[\"comment/2485\",[]],[\"name/2486\",[28,43.508]],[\"comment/2486\",[]],[\"name/2487\",[29,46.609]],[\"comment/2487\",[]],[\"name/2488\",[30,40.95]],[\"comment/2488\",[]],[\"name/2489\",[31,46.609]],[\"comment/2489\",[]],[\"name/2490\",[32,44.005]],[\"comment/2490\",[]],[\"name/2491\",[33,45.081]],[\"comment/2491\",[]],[\"name/2492\",[34,44.005]],[\"comment/2492\",[]],[\"name/2493\",[35,45.665]],[\"comment/2493\",[]],[\"name/2494\",[844,76.943]],[\"comment/2494\",[]],[\"name/2495\",[16,57.348]],[\"comment/2495\",[]],[\"name/2496\",[197,49.235]],[\"comment/2496\",[]],[\"name/2497\",[837,65.88]],[\"comment/2497\",[]],[\"name/2498\",[325,65.88]],[\"comment/2498\",[]],[\"name/2499\",[153,56.431]],[\"comment/2499\",[]],[\"name/2500\",[425,58.355]],[\"comment/2500\",[]],[\"name/2501\",[19,55.592]],[\"comment/2501\",[]],[\"name/2502\",[843,68.411]],[\"comment/2502\",[]],[\"name/2503\",[20,42.581]],[\"comment/2503\",[]],[\"name/2504\",[21,43.754]],[\"comment/2504\",[]],[\"name/2505\",[22,44.529]],[\"comment/2505\",[]],[\"name/2506\",[23,45.665]],[\"comment/2506\",[]],[\"name/2507\",[24,45.97]],[\"comment/2507\",[]],[\"name/2508\",[25,46.284]],[\"comment/2508\",[]],[\"name/2509\",[26,46.945]],[\"comment/2509\",[]],[\"name/2510\",[27,46.945]],[\"comment/2510\",[]],[\"name/2511\",[28,43.508]],[\"comment/2511\",[]],[\"name/2512\",[29,46.609]],[\"comment/2512\",[]],[\"name/2513\",[30,40.95]],[\"comment/2513\",[]],[\"name/2514\",[31,46.609]],[\"comment/2514\",[]],[\"name/2515\",[32,44.005]],[\"comment/2515\",[]],[\"name/2516\",[33,45.081]],[\"comment/2516\",[]],[\"name/2517\",[34,44.005]],[\"comment/2517\",[]],[\"name/2518\",[35,45.665]],[\"comment/2518\",[]],[\"name/2519\",[845,76.943]],[\"comment/2519\",[]],[\"name/2520\",[428,62.177]],[\"comment/2520\",[]],[\"name/2521\",[16,57.348]],[\"comment/2521\",[]],[\"name/2522\",[197,49.235]],[\"comment/2522\",[]],[\"name/2523\",[837,65.88]],[\"comment/2523\",[]],[\"name/2524\",[325,65.88]],[\"comment/2524\",[]],[\"name/2525\",[153,56.431]],[\"comment/2525\",[]],[\"name/2526\",[425,58.355]],[\"comment/2526\",[]],[\"name/2527\",[19,55.592]],[\"comment/2527\",[]],[\"name/2528\",[843,68.411]],[\"comment/2528\",[]],[\"name/2529\",[20,42.581]],[\"comment/2529\",[]],[\"name/2530\",[21,43.754]],[\"comment/2530\",[]],[\"name/2531\",[22,44.529]],[\"comment/2531\",[]],[\"name/2532\",[23,45.665]],[\"comment/2532\",[]],[\"name/2533\",[24,45.97]],[\"comment/2533\",[]],[\"name/2534\",[25,46.284]],[\"comment/2534\",[]],[\"name/2535\",[26,46.945]],[\"comment/2535\",[]],[\"name/2536\",[27,46.945]],[\"comment/2536\",[]],[\"name/2537\",[28,43.508]],[\"comment/2537\",[]],[\"name/2538\",[29,46.609]],[\"comment/2538\",[]],[\"name/2539\",[30,40.95]],[\"comment/2539\",[]],[\"name/2540\",[31,46.609]],[\"comment/2540\",[]],[\"name/2541\",[32,44.005]],[\"comment/2541\",[]],[\"name/2542\",[33,45.081]],[\"comment/2542\",[]],[\"name/2543\",[34,44.005]],[\"comment/2543\",[]],[\"name/2544\",[35,45.665]],[\"comment/2544\",[]],[\"name/2545\",[846,76.943]],[\"comment/2545\",[]],[\"name/2546\",[847,68.411]],[\"comment/2546\",[]],[\"name/2547\",[802,68.411]],[\"comment/2547\",[]],[\"name/2548\",[41,42.805]],[\"comment/2548\",[]],[\"name/2549\",[848,71.799]],[\"comment/2549\",[]],[\"name/2550\",[849,71.799]],[\"comment/2550\",[]],[\"name/2551\",[815,68.411]],[\"comment/2551\",[]],[\"name/2552\",[807,68.411]],[\"comment/2552\",[]],[\"name/2553\",[850,76.943]],[\"comment/2553\",[]],[\"name/2554\",[521,57.348]],[\"comment/2554\",[]],[\"name/2555\",[851,71.799]],[\"comment/2555\",[]],[\"name/2556\",[852,71.799]],[\"comment/2556\",[]],[\"name/2557\",[853,71.799]],[\"comment/2557\",[]],[\"name/2558\",[854,71.799]],[\"comment/2558\",[]],[\"name/2559\",[855,71.799]],[\"comment/2559\",[]],[\"name/2560\",[856,71.799]],[\"comment/2560\",[]],[\"name/2561\",[256,65.88]],[\"comment/2561\",[]],[\"name/2562\",[257,62.177]],[\"comment/2562\",[]],[\"name/2563\",[857,71.799]],[\"comment/2563\",[]],[\"name/2564\",[858,71.799]],[\"comment/2564\",[]],[\"name/2565\",[859,71.799]],[\"comment/2565\",[]],[\"name/2566\",[32,44.005]],[\"comment/2566\",[]],[\"name/2567\",[33,45.081]],[\"comment/2567\",[]],[\"name/2568\",[28,43.508]],[\"comment/2568\",[]],[\"name/2569\",[25,46.284]],[\"comment/2569\",[]],[\"name/2570\",[20,42.581]],[\"comment/2570\",[]],[\"name/2571\",[30,40.95]],[\"comment/2571\",[]],[\"name/2572\",[24,45.97]],[\"comment/2572\",[]],[\"name/2573\",[29,46.609]],[\"comment/2573\",[]],[\"name/2574\",[31,46.609]],[\"comment/2574\",[]],[\"name/2575\",[23,45.665]],[\"comment/2575\",[]],[\"name/2576\",[22,44.529]],[\"comment/2576\",[]],[\"name/2577\",[35,45.665]],[\"comment/2577\",[]],[\"name/2578\",[21,43.754]],[\"comment/2578\",[]],[\"name/2579\",[26,46.945]],[\"comment/2579\",[]],[\"name/2580\",[27,46.945]],[\"comment/2580\",[]],[\"name/2581\",[860,76.943]],[\"comment/2581\",[]],[\"name/2582\",[861,76.943]],[\"comment/2582\",[]],[\"name/2583\",[21,43.754]],[\"comment/2583\",[]],[\"name/2584\",[41,42.805]],[\"comment/2584\",[]],[\"name/2585\",[615,63.859]],[\"comment/2585\",[]],[\"name/2586\",[257,62.177]],[\"comment/2586\",[]],[\"name/2587\",[256,65.88]],[\"comment/2587\",[]],[\"name/2588\",[521,57.348]],[\"comment/2588\",[]],[\"name/2589\",[859,71.799]],[\"comment/2589\",[]],[\"name/2590\",[847,68.411]],[\"comment/2590\",[]],[\"name/2591\",[802,68.411]],[\"comment/2591\",[]],[\"name/2592\",[848,71.799]],[\"comment/2592\",[]],[\"name/2593\",[849,71.799]],[\"comment/2593\",[]],[\"name/2594\",[815,68.411]],[\"comment/2594\",[]],[\"name/2595\",[807,68.411]],[\"comment/2595\",[]],[\"name/2596\",[851,71.799]],[\"comment/2596\",[]],[\"name/2597\",[852,71.799]],[\"comment/2597\",[]],[\"name/2598\",[853,71.799]],[\"comment/2598\",[]],[\"name/2599\",[854,71.799]],[\"comment/2599\",[]],[\"name/2600\",[855,71.799]],[\"comment/2600\",[]],[\"name/2601\",[856,71.799]],[\"comment/2601\",[]],[\"name/2602\",[857,71.799]],[\"comment/2602\",[]],[\"name/2603\",[858,71.799]],[\"comment/2603\",[]],[\"name/2604\",[862,76.943]],[\"comment/2604\",[]],[\"name/2605\",[863,76.943]],[\"comment/2605\",[]],[\"name/2606\",[864,76.943]],[\"comment/2606\",[]],[\"name/2607\",[113,52.204]],[\"comment/2607\",[]],[\"name/2608\",[32,44.005]],[\"comment/2608\",[]],[\"name/2609\",[33,45.081]],[\"comment/2609\",[]],[\"name/2610\",[28,43.508]],[\"comment/2610\",[]],[\"name/2611\",[25,46.284]],[\"comment/2611\",[]],[\"name/2612\",[20,42.581]],[\"comment/2612\",[]],[\"name/2613\",[30,40.95]],[\"comment/2613\",[]],[\"name/2614\",[24,45.97]],[\"comment/2614\",[]],[\"name/2615\",[29,46.609]],[\"comment/2615\",[]],[\"name/2616\",[31,46.609]],[\"comment/2616\",[]],[\"name/2617\",[23,45.665]],[\"comment/2617\",[]],[\"name/2618\",[22,44.529]],[\"comment/2618\",[]],[\"name/2619\",[35,45.665]],[\"comment/2619\",[]],[\"name/2620\",[21,43.754]],[\"comment/2620\",[]],[\"name/2621\",[26,46.945]],[\"comment/2621\",[]],[\"name/2622\",[27,46.945]],[\"comment/2622\",[]],[\"name/2623\",[865,76.943]],[\"comment/2623\",[]],[\"name/2624\",[827,65.88]],[\"comment/2624\",[]],[\"name/2625\",[42,68.411]],[\"comment/2625\",[]],[\"name/2626\",[47,68.411]],[\"comment/2626\",[]],[\"name/2627\",[48,40.95]],[\"comment/2627\",[]],[\"name/2628\",[866,76.943]],[\"comment/2628\",[]],[\"name/2629\",[16,57.348]],[\"comment/2629\",[]],[\"name/2630\",[18,63.859]],[\"comment/2630\",[]],[\"name/2631\",[20,42.581]],[\"comment/2631\",[]],[\"name/2632\",[21,43.754]],[\"comment/2632\",[]],[\"name/2633\",[22,44.529]],[\"comment/2633\",[]],[\"name/2634\",[23,45.665]],[\"comment/2634\",[]],[\"name/2635\",[24,45.97]],[\"comment/2635\",[]],[\"name/2636\",[25,46.284]],[\"comment/2636\",[]],[\"name/2637\",[26,46.945]],[\"comment/2637\",[]],[\"name/2638\",[27,46.945]],[\"comment/2638\",[]],[\"name/2639\",[28,43.508]],[\"comment/2639\",[]],[\"name/2640\",[29,46.609]],[\"comment/2640\",[]],[\"name/2641\",[30,40.95]],[\"comment/2641\",[]],[\"name/2642\",[31,46.609]],[\"comment/2642\",[]],[\"name/2643\",[32,44.005]],[\"comment/2643\",[]],[\"name/2644\",[33,45.081]],[\"comment/2644\",[]],[\"name/2645\",[34,44.005]],[\"comment/2645\",[]],[\"name/2646\",[35,45.665]],[\"comment/2646\",[]],[\"name/2647\",[867,76.943]],[\"comment/2647\",[]],[\"name/2648\",[827,65.88]],[\"comment/2648\",[]],[\"name/2649\",[868,76.943]],[\"comment/2649\",[]],[\"name/2650\",[869,76.943]],[\"comment/2650\",[]],[\"name/2651\",[41,42.805]],[\"comment/2651\",[]],[\"name/2652\",[167,60.736]],[\"comment/2652\",[]],[\"name/2653\",[165,55.592]],[\"comment/2653\",[]],[\"name/2654\",[870,76.943]],[\"comment/2654\",[]],[\"name/2655\",[48,40.95]],[\"comment/2655\",[]],[\"name/2656\",[871,76.943]],[\"comment/2656\",[]],[\"name/2657\",[872,76.943]],[\"comment/2657\",[]],[\"name/2658\",[873,76.943]],[\"comment/2658\",[]],[\"name/2659\",[874,76.943]],[\"comment/2659\",[]],[\"name/2660\",[875,71.799]],[\"comment/2660\",[]],[\"name/2661\",[876,76.943]],[\"comment/2661\",[]],[\"name/2662\",[113,52.204]],[\"comment/2662\",[]],[\"name/2663\",[32,44.005]],[\"comment/2663\",[]],[\"name/2664\",[33,45.081]],[\"comment/2664\",[]],[\"name/2665\",[28,43.508]],[\"comment/2665\",[]],[\"name/2666\",[25,46.284]],[\"comment/2666\",[]],[\"name/2667\",[20,42.581]],[\"comment/2667\",[]],[\"name/2668\",[30,40.95]],[\"comment/2668\",[]],[\"name/2669\",[24,45.97]],[\"comment/2669\",[]],[\"name/2670\",[29,46.609]],[\"comment/2670\",[]],[\"name/2671\",[31,46.609]],[\"comment/2671\",[]],[\"name/2672\",[23,45.665]],[\"comment/2672\",[]],[\"name/2673\",[22,44.529]],[\"comment/2673\",[]],[\"name/2674\",[35,45.665]],[\"comment/2674\",[]],[\"name/2675\",[21,43.754]],[\"comment/2675\",[]],[\"name/2676\",[26,46.945]],[\"comment/2676\",[]],[\"name/2677\",[27,46.945]],[\"comment/2677\",[]],[\"name/2678\",[877,76.943]],[\"comment/2678\",[]],[\"name/2679\",[255,58.355]],[\"comment/2679\",[]],[\"name/2680\",[875,71.799]],[\"comment/2680\",[]],[\"name/2681\",[878,76.943]],[\"comment/2681\",[]],[\"name/2682\",[20,42.581]],[\"comment/2682\",[]],[\"name/2683\",[21,43.754]],[\"comment/2683\",[]],[\"name/2684\",[22,44.529]],[\"comment/2684\",[]],[\"name/2685\",[23,45.665]],[\"comment/2685\",[]],[\"name/2686\",[24,45.97]],[\"comment/2686\",[]],[\"name/2687\",[25,46.284]],[\"comment/2687\",[]],[\"name/2688\",[26,46.945]],[\"comment/2688\",[]],[\"name/2689\",[27,46.945]],[\"comment/2689\",[]],[\"name/2690\",[28,43.508]],[\"comment/2690\",[]],[\"name/2691\",[29,46.609]],[\"comment/2691\",[]],[\"name/2692\",[30,40.95]],[\"comment/2692\",[]],[\"name/2693\",[31,46.609]],[\"comment/2693\",[]],[\"name/2694\",[32,44.005]],[\"comment/2694\",[]],[\"name/2695\",[33,45.081]],[\"comment/2695\",[]],[\"name/2696\",[34,44.005]],[\"comment/2696\",[]],[\"name/2697\",[35,45.665]],[\"comment/2697\",[]],[\"name/2698\",[879,76.943]],[\"comment/2698\",[]],[\"name/2699\",[880,76.943]],[\"comment/2699\",[]],[\"name/2700\",[881,71.799]],[\"comment/2700\",[]],[\"name/2701\",[882,76.943]],[\"comment/2701\",[]],[\"name/2702\",[53,60.736]],[\"comment/2702\",[]],[\"name/2703\",[197,49.235]],[\"comment/2703\",[]],[\"name/2704\",[883,76.943]],[\"comment/2704\",[]],[\"name/2705\",[28,43.508]],[\"comment/2705\",[]],[\"name/2706\",[29,46.609]],[\"comment/2706\",[]],[\"name/2707\",[30,40.95]],[\"comment/2707\",[]],[\"name/2708\",[31,46.609]],[\"comment/2708\",[]],[\"name/2709\",[32,44.005]],[\"comment/2709\",[]],[\"name/2710\",[33,45.081]],[\"comment/2710\",[]],[\"name/2711\",[884,76.943]],[\"comment/2711\",[]],[\"name/2712\",[885,76.943]],[\"comment/2712\",[]],[\"name/2713\",[886,76.943]],[\"comment/2713\",[]],[\"name/2714\",[887,76.943]],[\"comment/2714\",[]],[\"name/2715\",[888,76.943]],[\"comment/2715\",[]],[\"name/2716\",[20,42.581]],[\"comment/2716\",[]],[\"name/2717\",[21,43.754]],[\"comment/2717\",[]],[\"name/2718\",[22,44.529]],[\"comment/2718\",[]],[\"name/2719\",[23,45.665]],[\"comment/2719\",[]],[\"name/2720\",[24,45.97]],[\"comment/2720\",[]],[\"name/2721\",[25,46.284]],[\"comment/2721\",[]],[\"name/2722\",[26,46.945]],[\"comment/2722\",[]],[\"name/2723\",[27,46.945]],[\"comment/2723\",[]],[\"name/2724\",[28,43.508]],[\"comment/2724\",[]],[\"name/2725\",[29,46.609]],[\"comment/2725\",[]],[\"name/2726\",[30,40.95]],[\"comment/2726\",[]],[\"name/2727\",[31,46.609]],[\"comment/2727\",[]],[\"name/2728\",[32,44.005]],[\"comment/2728\",[]],[\"name/2729\",[33,45.081]],[\"comment/2729\",[]],[\"name/2730\",[34,44.005]],[\"comment/2730\",[]],[\"name/2731\",[35,45.665]],[\"comment/2731\",[]],[\"name/2732\",[889,76.943]],[\"comment/2732\",[]],[\"name/2733\",[890,76.943]],[\"comment/2733\",[]],[\"name/2734\",[41,42.805]],[\"comment/2734\",[]],[\"name/2735\",[891,76.943]],[\"comment/2735\",[]],[\"name/2736\",[892,76.943]],[\"comment/2736\",[]],[\"name/2737\",[893,76.943]],[\"comment/2737\",[]],[\"name/2738\",[453,59.475]],[\"comment/2738\",[]],[\"name/2739\",[230,68.411]],[\"comment/2739\",[]],[\"name/2740\",[437,60.736]],[\"comment/2740\",[]],[\"name/2741\",[894,76.943]],[\"comment/2741\",[]],[\"name/2742\",[895,76.943]],[\"comment/2742\",[]],[\"name/2743\",[896,76.943]],[\"comment/2743\",[]],[\"name/2744\",[897,76.943]],[\"comment/2744\",[]],[\"name/2745\",[898,76.943]],[\"comment/2745\",[]],[\"name/2746\",[899,76.943]],[\"comment/2746\",[]],[\"name/2747\",[900,76.943]],[\"comment/2747\",[]],[\"name/2748\",[901,76.943]],[\"comment/2748\",[]],[\"name/2749\",[902,76.943]],[\"comment/2749\",[]],[\"name/2750\",[48,40.95]],[\"comment/2750\",[]],[\"name/2751\",[903,76.943]],[\"comment/2751\",[]],[\"name/2752\",[804,71.799]],[\"comment/2752\",[]],[\"name/2753\",[257,62.177]],[\"comment/2753\",[]],[\"name/2754\",[904,76.943]],[\"comment/2754\",[]],[\"name/2755\",[905,76.943]],[\"comment/2755\",[]],[\"name/2756\",[906,76.943]],[\"comment/2756\",[]],[\"name/2757\",[53,60.736]],[\"comment/2757\",[]],[\"name/2758\",[907,76.943]],[\"comment/2758\",[]],[\"name/2759\",[908,76.943]],[\"comment/2759\",[]],[\"name/2760\",[881,71.799]],[\"comment/2760\",[]],[\"name/2761\",[909,76.943]],[\"comment/2761\",[]],[\"name/2762\",[910,76.943]],[\"comment/2762\",[]],[\"name/2763\",[911,71.799]],[\"comment/2763\",[]],[\"name/2764\",[20,42.581]],[\"comment/2764\",[]],[\"name/2765\",[21,43.754]],[\"comment/2765\",[]],[\"name/2766\",[22,44.529]],[\"comment/2766\",[]],[\"name/2767\",[23,45.665]],[\"comment/2767\",[]],[\"name/2768\",[24,45.97]],[\"comment/2768\",[]],[\"name/2769\",[25,46.284]],[\"comment/2769\",[]],[\"name/2770\",[26,46.945]],[\"comment/2770\",[]],[\"name/2771\",[27,46.945]],[\"comment/2771\",[]],[\"name/2772\",[28,43.508]],[\"comment/2772\",[]],[\"name/2773\",[29,46.609]],[\"comment/2773\",[]],[\"name/2774\",[30,40.95]],[\"comment/2774\",[]],[\"name/2775\",[31,46.609]],[\"comment/2775\",[]],[\"name/2776\",[32,44.005]],[\"comment/2776\",[]],[\"name/2777\",[33,45.081]],[\"comment/2777\",[]],[\"name/2778\",[34,44.005]],[\"comment/2778\",[]],[\"name/2779\",[35,45.665]],[\"comment/2779\",[]],[\"name/2780\",[912,76.943]],[\"comment/2780\",[]],[\"name/2781\",[911,71.799]],[\"comment/2781\",[]],[\"name/2782\",[20,42.581]],[\"comment/2782\",[]],[\"name/2783\",[21,43.754]],[\"comment/2783\",[]],[\"name/2784\",[22,44.529]],[\"comment/2784\",[]],[\"name/2785\",[23,45.665]],[\"comment/2785\",[]],[\"name/2786\",[24,45.97]],[\"comment/2786\",[]],[\"name/2787\",[25,46.284]],[\"comment/2787\",[]],[\"name/2788\",[26,46.945]],[\"comment/2788\",[]],[\"name/2789\",[27,46.945]],[\"comment/2789\",[]],[\"name/2790\",[28,43.508]],[\"comment/2790\",[]],[\"name/2791\",[29,46.609]],[\"comment/2791\",[]],[\"name/2792\",[30,40.95]],[\"comment/2792\",[]],[\"name/2793\",[31,46.609]],[\"comment/2793\",[]],[\"name/2794\",[32,44.005]],[\"comment/2794\",[]],[\"name/2795\",[33,45.081]],[\"comment/2795\",[]],[\"name/2796\",[34,44.005]],[\"comment/2796\",[]],[\"name/2797\",[35,45.665]],[\"comment/2797\",[]],[\"name/2798\",[913,76.943]],[\"comment/2798\",[]],[\"name/2799\",[914,76.943]],[\"comment/2799\",[]],[\"name/2800\",[915,54.766,916,54.766]],[\"comment/2800\",[]],[\"name/2801\",[48,40.95]],[\"comment/2801\",[]],[\"name/2802\",[271,27.422,917,34.74,918,34.74,919,34.74]],[\"comment/2802\",[]],[\"name/2803\",[920,51.104,921,54.766]],[\"comment/2803\",[]],[\"name/2804\",[920,51.104,922,54.766]],[\"comment/2804\",[]],[\"name/2805\",[437,43.23,923,54.766]],[\"comment/2805\",[]],[\"name/2806\",[271,27.422,437,27.422,924,34.74,925,34.74]],[\"comment/2806\",[]],[\"name/2807\",[271,23.183,332,27.406,926,24.376,927,29.37,928,29.37]],[\"comment/2807\",[]],[\"name/2808\",[271,33.558,929,42.512,930,37.798]],[\"comment/2808\",[]],[\"name/2809\",[271,27.422,521,25.892,930,30.887,931,34.74]],[\"comment/2809\",[]],[\"name/2810\",[271,27.422,437,27.422,716,32.417,926,28.832]],[\"comment/2810\",[]],[\"name/2811\",[521,31.685,930,37.798,932,42.512]],[\"comment/2811\",[]],[\"name/2812\",[933,76.943]],[\"comment/2812\",[]],[\"name/2813\",[934,76.943]],[\"comment/2813\",[]],[\"name/2814\",[935,76.943]],[\"comment/2814\",[]],[\"name/2815\",[936,76.943]],[\"comment/2815\",[]],[\"name/2816\",[475,58.355]],[\"comment/2816\",[]],[\"name/2817\",[48,40.95]],[\"comment/2817\",[]],[\"name/2818\",[306,23.733,475,22.275,937,29.37,938,29.37,939,21.54]],[\"comment/2818\",[]],[\"name/2819\",[939,40.166,940,54.766]],[\"comment/2819\",[]],[\"name/2820\",[306,18.129,475,17.015,587,19.947,615,18.619,763,20.934,926,18.619,941,22.434]],[\"comment/2820\",[]],[\"name/2821\",[475,22.275,615,24.376,926,24.376,942,27.406,943,29.37]],[\"comment/2821\",[]],[\"name/2822\",[427,24.376,475,22.275,587,26.113,926,24.376,944,29.37]],[\"comment/2822\",[]],[\"name/2823\",[306,44.256,939,40.166]],[\"comment/2823\",[]],[\"name/2824\",[105,41.536,939,40.166]],[\"comment/2824\",[]],[\"name/2825\",[939,40.166,945,54.766]],[\"comment/2825\",[]],[\"name/2826\",[939,40.166,942,51.104]],[\"comment/2826\",[]],[\"name/2827\",[939,40.166,946,54.766]],[\"comment/2827\",[]],[\"name/2828\",[947,54.766,948,54.766]],[\"comment/2828\",[]],[\"name/2829\",[767,48.693,939,40.166]],[\"comment/2829\",[]],[\"name/2830\",[730,39.67,767,37.798,939,31.179]],[\"comment/2830\",[]],[\"name/2831\",[939,40.166,949,54.766]],[\"comment/2831\",[]],[\"name/2832\",[427,45.453,939,40.166]],[\"comment/2832\",[]],[\"name/2833\",[950,76.943]],[\"comment/2833\",[]],[\"name/2834\",[951,76.943]],[\"comment/2834\",[]],[\"name/2835\",[16,57.348]],[\"comment/2835\",[]],[\"name/2836\",[21,43.754]],[\"comment/2836\",[]],[\"name/2837\",[197,49.235]],[\"comment/2837\",[]],[\"name/2838\",[425,58.355]],[\"comment/2838\",[]],[\"name/2839\",[19,55.592]],[\"comment/2839\",[]],[\"name/2840\",[20,42.581]],[\"comment/2840\",[]],[\"name/2841\",[22,44.529]],[\"comment/2841\",[]],[\"name/2842\",[23,45.665]],[\"comment/2842\",[]],[\"name/2843\",[24,45.97]],[\"comment/2843\",[]],[\"name/2844\",[25,46.284]],[\"comment/2844\",[]],[\"name/2845\",[26,46.945]],[\"comment/2845\",[]],[\"name/2846\",[27,46.945]],[\"comment/2846\",[]],[\"name/2847\",[28,43.508]],[\"comment/2847\",[]],[\"name/2848\",[29,46.609]],[\"comment/2848\",[]],[\"name/2849\",[30,40.95]],[\"comment/2849\",[]],[\"name/2850\",[31,46.609]],[\"comment/2850\",[]],[\"name/2851\",[32,44.005]],[\"comment/2851\",[]],[\"name/2852\",[33,45.081]],[\"comment/2852\",[]],[\"name/2853\",[34,44.005]],[\"comment/2853\",[]],[\"name/2854\",[35,45.665]],[\"comment/2854\",[]],[\"name/2855\",[952,76.943]],[\"comment/2855\",[]],[\"name/2856\",[428,62.177]],[\"comment/2856\",[]],[\"name/2857\",[16,57.348]],[\"comment/2857\",[]],[\"name/2858\",[21,43.754]],[\"comment/2858\",[]],[\"name/2859\",[197,49.235]],[\"comment/2859\",[]],[\"name/2860\",[425,58.355]],[\"comment/2860\",[]],[\"name/2861\",[19,55.592]],[\"comment/2861\",[]],[\"name/2862\",[20,42.581]],[\"comment/2862\",[]],[\"name/2863\",[22,44.529]],[\"comment/2863\",[]],[\"name/2864\",[23,45.665]],[\"comment/2864\",[]],[\"name/2865\",[24,45.97]],[\"comment/2865\",[]],[\"name/2866\",[25,46.284]],[\"comment/2866\",[]],[\"name/2867\",[26,46.945]],[\"comment/2867\",[]],[\"name/2868\",[27,46.945]],[\"comment/2868\",[]],[\"name/2869\",[28,43.508]],[\"comment/2869\",[]],[\"name/2870\",[29,46.609]],[\"comment/2870\",[]],[\"name/2871\",[30,40.95]],[\"comment/2871\",[]],[\"name/2872\",[31,46.609]],[\"comment/2872\",[]],[\"name/2873\",[32,44.005]],[\"comment/2873\",[]],[\"name/2874\",[33,45.081]],[\"comment/2874\",[]],[\"name/2875\",[34,44.005]],[\"comment/2875\",[]],[\"name/2876\",[35,45.665]],[\"comment/2876\",[]],[\"name/2877\",[953,76.943]],[\"comment/2877\",[]],[\"name/2878\",[827,65.88]],[\"comment/2878\",[]],[\"name/2879\",[43,68.411]],[\"comment/2879\",[]],[\"name/2880\",[44,68.411]],[\"comment/2880\",[]],[\"name/2881\",[46,68.411]],[\"comment/2881\",[]],[\"name/2882\",[954,76.943]],[\"comment/2882\",[]],[\"name/2883\",[955,76.943]],[\"comment/2883\",[]],[\"name/2884\",[829,71.799]],[\"comment/2884\",[]],[\"name/2885\",[956,76.943]],[\"comment/2885\",[]],[\"name/2886\",[425,58.355]],[\"comment/2886\",[]],[\"name/2887\",[957,76.943]],[\"comment/2887\",[]],[\"name/2888\",[21,43.754]],[\"comment/2888\",[]],[\"name/2889\",[428,62.177]],[\"comment/2889\",[]],[\"name/2890\",[197,49.235]],[\"comment/2890\",[]],[\"name/2891\",[958,76.943]],[\"comment/2891\",[]],[\"name/2892\",[847,68.411]],[\"comment/2892\",[]],[\"name/2893\",[20,42.581]],[\"comment/2893\",[]],[\"name/2894\",[21,43.754]],[\"comment/2894\",[]],[\"name/2895\",[22,44.529]],[\"comment/2895\",[]],[\"name/2896\",[23,45.665]],[\"comment/2896\",[]],[\"name/2897\",[24,45.97]],[\"comment/2897\",[]],[\"name/2898\",[25,46.284]],[\"comment/2898\",[]],[\"name/2899\",[26,46.945]],[\"comment/2899\",[]],[\"name/2900\",[27,46.945]],[\"comment/2900\",[]],[\"name/2901\",[28,43.508]],[\"comment/2901\",[]],[\"name/2902\",[29,46.609]],[\"comment/2902\",[]],[\"name/2903\",[30,40.95]],[\"comment/2903\",[]],[\"name/2904\",[31,46.609]],[\"comment/2904\",[]],[\"name/2905\",[32,44.005]],[\"comment/2905\",[]],[\"name/2906\",[33,45.081]],[\"comment/2906\",[]],[\"name/2907\",[34,44.005]],[\"comment/2907\",[]],[\"name/2908\",[35,45.665]],[\"comment/2908\",[]],[\"name/2909\",[959,76.943]],[\"comment/2909\",[]],[\"name/2910\",[960,76.943]],[\"comment/2910\",[]],[\"name/2911\",[818,71.799]],[\"comment/2911\",[]],[\"name/2912\",[961,76.943]],[\"comment/2912\",[]],[\"name/2913\",[28,43.508]],[\"comment/2913\",[]],[\"name/2914\",[668,71.799]],[\"comment/2914\",[]],[\"name/2915\",[349,65.88]],[\"comment/2915\",[]],[\"name/2916\",[30,40.95]],[\"comment/2916\",[]],[\"name/2917\",[350,63.859]],[\"comment/2917\",[]],[\"name/2918\",[962,76.943]],[\"comment/2918\",[]],[\"name/2919\",[963,76.943]],[\"comment/2919\",[]],[\"name/2920\",[30,40.95]],[\"comment/2920\",[]],[\"name/2921\",[350,63.859]],[\"comment/2921\",[]],[\"name/2922\",[349,65.88]],[\"comment/2922\",[]],[\"name/2923\",[964,76.943]],[\"comment/2923\",[]],[\"name/2924\",[350,63.859]],[\"comment/2924\",[]],[\"name/2925\",[349,65.88]],[\"comment/2925\",[]],[\"name/2926\",[175,50.61]],[\"comment/2926\",[]],[\"name/2927\",[175,50.61]],[\"comment/2927\",[]],[\"name/2928\",[965,76.943]],[\"comment/2928\",[]],[\"name/2929\",[48,40.95]],[\"comment/2929\",[]],[\"name/2930\",[966,76.943]],[\"comment/2930\",[]],[\"name/2931\",[967,76.943]],[\"comment/2931\",[]],[\"name/2932\",[968,76.943]],[\"comment/2932\",[]],[\"name/2933\",[969,76.943]],[\"comment/2933\",[]],[\"name/2934\",[538,63.859]],[\"comment/2934\",[]],[\"name/2935\",[671,63.859]],[\"comment/2935\",[]],[\"name/2936\",[672,68.411]],[\"comment/2936\",[]],[\"name/2937\",[537,65.88]],[\"comment/2937\",[]],[\"name/2938\",[100,53.426]],[\"comment/2938\",[]],[\"name/2939\",[547,62.177]],[\"comment/2939\",[]],[\"name/2940\",[548,62.177]],[\"comment/2940\",[]],[\"name/2941\",[549,62.177]],[\"comment/2941\",[]],[\"name/2942\",[550,62.177]],[\"comment/2942\",[]],[\"name/2943\",[539,63.859]],[\"comment/2943\",[]],[\"name/2944\",[543,63.859]],[\"comment/2944\",[]],[\"name/2945\",[545,60.736]],[\"comment/2945\",[]],[\"name/2946\",[542,63.859]],[\"comment/2946\",[]],[\"name/2947\",[540,63.859]],[\"comment/2947\",[]],[\"name/2948\",[541,63.859]],[\"comment/2948\",[]],[\"name/2949\",[298,62.177]],[\"comment/2949\",[]],[\"name/2950\",[297,60.736]],[\"comment/2950\",[]],[\"name/2951\",[156,65.88]],[\"comment/2951\",[]],[\"name/2952\",[299,62.177]],[\"comment/2952\",[]],[\"name/2953\",[544,62.177]],[\"comment/2953\",[]],[\"name/2954\",[546,60.736]],[\"comment/2954\",[]],[\"name/2955\",[970,76.943]],[\"comment/2955\",[]],[\"name/2956\",[971,76.943]],[\"comment/2956\",[]],[\"name/2957\",[358,50.61]],[\"comment/2957\",[]],[\"name/2958\",[167,60.736]],[\"comment/2958\",[]],[\"name/2959\",[685,71.799]],[\"comment/2959\",[]],[\"name/2960\",[972,76.943]],[\"comment/2960\",[]],[\"name/2961\",[973,76.943]],[\"comment/2961\",[]],[\"name/2962\",[348,71.799]],[\"comment/2962\",[]],[\"name/2963\",[163,63.859]],[\"comment/2963\",[]],[\"name/2964\",[54,45.081]],[\"comment/2964\",[]],[\"name/2965\",[351,65.88]],[\"comment/2965\",[]],[\"name/2966\",[576,68.411]],[\"comment/2966\",[]],[\"name/2967\",[974,76.943]],[\"comment/2967\",[]],[\"name/2968\",[975,76.943]],[\"comment/2968\",[]],[\"name/2969\",[976,76.943]],[\"comment/2969\",[]],[\"name/2970\",[977,76.943]],[\"comment/2970\",[]],[\"name/2971\",[337,68.411]],[\"comment/2971\",[]],[\"name/2972\",[978,71.799]],[\"comment/2972\",[]],[\"name/2973\",[979,76.943]],[\"comment/2973\",[]],[\"name/2974\",[980,76.943]],[\"comment/2974\",[]],[\"name/2975\",[546,60.736]],[\"comment/2975\",[]],[\"name/2976\",[175,50.61]],[\"comment/2976\",[]],[\"name/2977\",[536,65.88]],[\"comment/2977\",[]],[\"name/2978\",[981,76.943]],[\"comment/2978\",[]],[\"name/2979\",[982,76.943]],[\"comment/2979\",[]],[\"name/2980\",[983,76.943]],[\"comment/2980\",[]],[\"name/2981\",[984,76.943]],[\"comment/2981\",[]],[\"name/2982\",[985,68.411]],[\"comment/2982\",[]],[\"name/2983\",[986,68.411]],[\"comment/2983\",[]],[\"name/2984\",[186,65.88]],[\"comment/2984\",[]],[\"name/2985\",[987,76.943]],[\"comment/2985\",[]],[\"name/2986\",[48,40.95]],[\"comment/2986\",[]],[\"name/2987\",[54,45.081]],[\"comment/2987\",[]],[\"name/2988\",[988,76.943]],[\"comment/2988\",[]],[\"name/2989\",[989,76.943]],[\"comment/2989\",[]],[\"name/2990\",[990,76.943]],[\"comment/2990\",[]],[\"name/2991\",[30,40.95]],[\"comment/2991\",[]],[\"name/2992\",[991,76.943]],[\"comment/2992\",[]],[\"name/2993\",[30,40.95]],[\"comment/2993\",[]],[\"name/2994\",[670,68.411]],[\"comment/2994\",[]],[\"name/2995\",[28,43.508]],[\"comment/2995\",[]],[\"name/2996\",[992,76.943]],[\"comment/2996\",[]],[\"name/2997\",[37,41.14]],[\"comment/2997\",[]],[\"name/2998\",[576,68.411]],[\"comment/2998\",[]],[\"name/2999\",[351,65.88]],[\"comment/2999\",[]],[\"name/3000\",[993,76.943]],[\"comment/3000\",[]],[\"name/3001\",[994,76.943]],[\"comment/3001\",[]],[\"name/3002\",[995,76.943]],[\"comment/3002\",[]],[\"name/3003\",[996,76.943]],[\"comment/3003\",[]],[\"name/3004\",[997,76.943]],[\"comment/3004\",[]],[\"name/3005\",[998,76.943]],[\"comment/3005\",[]],[\"name/3006\",[999,76.943]],[\"comment/3006\",[]],[\"name/3007\",[1000,76.943]],[\"comment/3007\",[]],[\"name/3008\",[1001,76.943]],[\"comment/3008\",[]],[\"name/3009\",[1002,76.943]],[\"comment/3009\",[]],[\"name/3010\",[1003,76.943]],[\"comment/3010\",[]],[\"name/3011\",[37,41.14]],[\"comment/3011\",[]],[\"name/3012\",[167,60.736]],[\"comment/3012\",[]],[\"name/3013\",[978,71.799]],[\"comment/3013\",[]],[\"name/3014\",[1004,76.943]],[\"comment/3014\",[]],[\"name/3015\",[1005,76.943]],[\"comment/3015\",[]],[\"name/3016\",[1006,76.943]],[\"comment/3016\",[]],[\"name/3017\",[1007,76.943]],[\"comment/3017\",[]],[\"name/3018\",[1008,76.943]],[\"comment/3018\",[]],[\"name/3019\",[1009,76.943]],[\"comment/3019\",[]],[\"name/3020\",[546,60.736]],[\"comment/3020\",[]],[\"name/3021\",[671,63.859]],[\"comment/3021\",[]],[\"name/3022\",[669,65.88]],[\"comment/3022\",[]],[\"name/3023\",[1010,76.943]],[\"comment/3023\",[]],[\"name/3024\",[163,63.859]],[\"comment/3024\",[]],[\"name/3025\",[1011,76.943]],[\"comment/3025\",[]],[\"name/3026\",[1012,76.943]],[\"comment/3026\",[]],[\"name/3027\",[1013,76.943]],[\"comment/3027\",[]],[\"name/3028\",[671,63.859]],[\"comment/3028\",[]],[\"name/3029\",[669,65.88]],[\"comment/3029\",[]],[\"name/3030\",[1014,76.943]],[\"comment/3030\",[]],[\"name/3031\",[48,40.95]],[\"comment/3031\",[]],[\"name/3032\",[1015,76.943]],[\"comment/3032\",[]],[\"name/3033\",[1016,76.943]],[\"comment/3033\",[]],[\"name/3034\",[174,71.799]],[\"comment/3034\",[]],[\"name/3035\",[334,71.799]],[\"comment/3035\",[]],[\"name/3036\",[178,71.799]],[\"comment/3036\",[]],[\"name/3037\",[1017,76.943]],[\"comment/3037\",[]],[\"name/3038\",[553,71.799]],[\"comment/3038\",[]],[\"name/3039\",[1018,76.943]],[\"comment/3039\",[]],[\"name/3040\",[180,71.799]],[\"comment/3040\",[]],[\"name/3041\",[96,54.817]],[\"comment/3041\",[]],[\"name/3042\",[1019,76.943]],[\"comment/3042\",[]],[\"name/3043\",[446,52.204]],[\"comment/3043\",[]],[\"name/3044\",[1020,76.943]],[\"comment/3044\",[]],[\"name/3045\",[1021,76.943]],[\"comment/3045\",[]],[\"name/3046\",[1022,76.943]],[\"comment/3046\",[]],[\"name/3047\",[48,40.95]],[\"comment/3047\",[]],[\"name/3048\",[96,54.817]],[\"comment/3048\",[]],[\"name/3049\",[1023,76.943]],[\"comment/3049\",[]],[\"name/3050\",[48,40.95]],[\"comment/3050\",[]],[\"name/3051\",[153,56.431]],[\"comment/3051\",[]],[\"name/3052\",[1024,76.943]],[\"comment/3052\",[]],[\"name/3053\",[179,71.799]],[\"comment/3053\",[]],[\"name/3054\",[165,55.592]],[\"comment/3054\",[]],[\"name/3055\",[1025,76.943]],[\"comment/3055\",[]],[\"name/3056\",[182,71.799]],[\"comment/3056\",[]],[\"name/3057\",[1026,76.943]],[\"comment/3057\",[]],[\"name/3058\",[1027,76.943]],[\"comment/3058\",[]],[\"name/3059\",[1028,76.943]],[\"comment/3059\",[]],[\"name/3060\",[1029,76.943]],[\"comment/3060\",[]],[\"name/3061\",[20,42.581]],[\"comment/3061\",[]],[\"name/3062\",[34,44.005]],[\"comment/3062\",[]],[\"name/3063\",[30,40.95]],[\"comment/3063\",[]],[\"name/3064\",[1030,76.943]],[\"comment/3064\",[]],[\"name/3065\",[21,43.754]],[\"comment/3065\",[]],[\"name/3066\",[22,44.529]],[\"comment/3066\",[]],[\"name/3067\",[23,45.665]],[\"comment/3067\",[]],[\"name/3068\",[24,45.97]],[\"comment/3068\",[]],[\"name/3069\",[25,46.284]],[\"comment/3069\",[]],[\"name/3070\",[26,46.945]],[\"comment/3070\",[]],[\"name/3071\",[27,46.945]],[\"comment/3071\",[]],[\"name/3072\",[28,43.508]],[\"comment/3072\",[]],[\"name/3073\",[29,46.609]],[\"comment/3073\",[]],[\"name/3074\",[31,46.609]],[\"comment/3074\",[]],[\"name/3075\",[32,44.005]],[\"comment/3075\",[]],[\"name/3076\",[33,45.081]],[\"comment/3076\",[]],[\"name/3077\",[35,45.665]],[\"comment/3077\",[]],[\"name/3078\",[1031,76.943]],[\"comment/3078\",[]],[\"name/3079\",[48,40.95]],[\"comment/3079\",[]],[\"name/3080\",[1032,76.943]],[\"comment/3080\",[]],[\"name/3081\",[48,40.95]],[\"comment/3081\",[]],[\"name/3082\",[536,65.88]],[\"comment/3082\",[]],[\"name/3083\",[344,65.88]],[\"comment/3083\",[]],[\"name/3084\",[1033,76.943]],[\"comment/3084\",[]],[\"name/3085\",[1034,76.943]],[\"comment/3085\",[]],[\"name/3086\",[37,41.14]],[\"comment/3086\",[]],[\"name/3087\",[985,68.411]],[\"comment/3087\",[]],[\"name/3088\",[986,68.411]],[\"comment/3088\",[]],[\"name/3089\",[1035,76.943]],[\"comment/3089\",[]],[\"name/3090\",[1036,76.943]],[\"comment/3090\",[]],[\"name/3091\",[1037,76.943]],[\"comment/3091\",[]],[\"name/3092\",[418,62.177]],[\"comment/3092\",[]],[\"name/3093\",[1038,76.943]],[\"comment/3093\",[]],[\"name/3094\",[48,40.95]],[\"comment/3094\",[]],[\"name/3095\",[985,68.411]],[\"comment/3095\",[]],[\"name/3096\",[986,68.411]],[\"comment/3096\",[]],[\"name/3097\",[1039,76.943]],[\"comment/3097\",[]],[\"name/3098\",[344,65.88]],[\"comment/3098\",[]],[\"name/3099\",[37,41.14]],[\"comment/3099\",[]],[\"name/3100\",[194,65.88]],[\"comment/3100\",[]],[\"name/3101\",[236,58.355]],[\"comment/3101\",[]],[\"name/3102\",[418,62.177]],[\"comment/3102\",[]],[\"name/3103\",[1040,71.799]],[\"comment/3103\",[]],[\"name/3104\",[1041,76.943]],[\"comment/3104\",[]],[\"name/3105\",[344,65.88]],[\"comment/3105\",[]],[\"name/3106\",[37,41.14]],[\"comment/3106\",[]],[\"name/3107\",[236,58.355]],[\"comment/3107\",[]],[\"name/3108\",[194,65.88]],[\"comment/3108\",[]],[\"name/3109\",[418,62.177]],[\"comment/3109\",[]],[\"name/3110\",[1040,71.799]],[\"comment/3110\",[]],[\"name/3111\",[353,65.88]],[\"comment/3111\",[]],[\"name/3112\",[1042,76.943]],[\"comment/3112\",[]],[\"name/3113\",[34,44.005]],[\"comment/3113\",[]],[\"name/3114\",[1043,76.943]],[\"comment/3114\",[]],[\"name/3115\",[353,65.88]],[\"comment/3115\",[]],[\"name/3116\",[675,71.799]],[\"comment/3116\",[]],[\"name/3117\",[676,71.799]],[\"comment/3117\",[]],[\"name/3118\",[355,71.799]],[\"comment/3118\",[]],[\"name/3119\",[354,71.799]],[\"comment/3119\",[]],[\"name/3120\",[356,71.799]],[\"comment/3120\",[]]],\"invertedIndex\":[[\"2dsphereindexversion\",{\"_index\":855,\"name\":{\"2559\":{},\"2600\":{}},\"comment\":{}}],[\"__nodejs_mock_server__\",{\"_index\":580,\"name\":{\"1700\":{}},\"comment\":{}}],[\"__type\",{\"_index\":48,\"name\":{\"48\":{},\"50\":{},\"594\":{},\"827\":{},\"976\":{},\"1224\":{},\"1232\":{},\"1234\":{},\"1298\":{},\"1370\":{},\"1383\":{},\"1390\":{},\"1422\":{},\"1475\":{},\"1494\":{},\"1523\":{},\"1585\":{},\"1587\":{},\"1592\":{},\"1660\":{},\"1664\":{},\"1671\":{},\"1674\":{},\"1682\":{},\"1720\":{},\"1845\":{},\"1848\":{},\"1853\":{},\"1860\":{},\"1862\":{},\"1864\":{},\"1873\":{},\"1916\":{},\"2068\":{},\"2072\":{},\"2091\":{},\"2096\":{},\"2125\":{},\"2166\":{},\"2329\":{},\"2627\":{},\"2655\":{},\"2750\":{},\"2801\":{},\"2817\":{},\"2929\":{},\"2986\":{},\"3031\":{},\"3047\":{},\"3050\":{},\"3079\":{},\"3081\":{},\"3094\":{}},\"comment\":{}}],[\"_id\",{\"_index\":445,\"name\":{\"1341\":{},\"1348\":{},\"1355\":{},\"1365\":{},\"1371\":{},\"1377\":{},\"1384\":{},\"1392\":{},\"1399\":{},\"1406\":{},\"1417\":{},\"1423\":{},\"1427\":{},\"1466\":{},\"1479\":{},\"1489\":{},\"1495\":{},\"1498\":{},\"1506\":{},\"1518\":{},\"1524\":{},\"1907\":{},\"1931\":{}},\"comment\":{}}],[\"_id_\",{\"_index\":903,\"name\":{\"2751\":{}},\"comment\":{}}],[\"abort\",{\"_index\":274,\"name\":{\"809\":{},\"834\":{}},\"comment\":{}}],[\"aborted\",{\"_index\":291,\"name\":{\"831\":{}},\"comment\":{}}],[\"aborttransaction\",{\"_index\":191,\"name\":{\"614\":{}},\"comment\":{}}],[\"abstractcursor\",{\"_index\":94,\"name\":{\"426\":{}},\"comment\":{}}],[\"abstractcursorevents\",{\"_index\":590,\"name\":{\"1719\":{}},\"comment\":{}}],[\"abstractcursoroptions\",{\"_index\":591,\"name\":{\"1722\":{}},\"comment\":{}}],[\"acceptedfields\",{\"_index\":699,\"name\":{\"2089\":{}},\"comment\":{}}],[\"accesstoken\",{\"_index\":515,\"name\":{\"1576\":{}},\"comment\":{}}],[\"acknowledged\",{\"_index\":827,\"name\":{\"2374\":{},\"2624\":{},\"2648\":{},\"2878\":{}},\"comment\":{}}],[\"addcursorflag\",{\"_index\":109,\"name\":{\"445\":{},\"514\":{},\"754\":{},\"860\":{},\"906\":{},\"985\":{},\"1800\":{}},\"comment\":{}}],[\"adderrorlabel\",{\"_index\":59,\"name\":{\"61\":{},\"72\":{},\"83\":{},\"94\":{},\"105\":{},\"116\":{},\"127\":{},\"138\":{},\"149\":{},\"160\":{},\"171\":{},\"182\":{},\"193\":{},\"204\":{},\"215\":{},\"226\":{},\"237\":{},\"248\":{},\"259\":{},\"270\":{},\"281\":{},\"292\":{},\"303\":{},\"314\":{},\"325\":{},\"340\":{},\"352\":{},\"364\":{},\"375\":{},\"386\":{},\"397\":{},\"408\":{},\"424\":{}},\"comment\":{}}],[\"addlistener\",{\"_index\":117,\"name\":{\"454\":{},\"521\":{},\"537\":{},\"575\":{},\"617\":{},\"760\":{},\"786\":{},\"868\":{},\"914\":{},\"946\":{},\"1009\":{},\"1807\":{},\"2074\":{}},\"comment\":{}}],[\"addquerymodifier\",{\"_index\":260,\"name\":{\"727\":{}},\"comment\":{}}],[\"address\",{\"_index\":358,\"name\":{\"1108\":{},\"1122\":{},\"1127\":{},\"1138\":{},\"1142\":{},\"1146\":{},\"1149\":{},\"1155\":{},\"1159\":{},\"1163\":{},\"1166\":{},\"1170\":{},\"1173\":{},\"1176\":{},\"1180\":{},\"1183\":{},\"1186\":{},\"1201\":{},\"1689\":{},\"2957\":{}},\"comment\":{}}],[\"addtooperationslist\",{\"_index\":303,\"name\":{\"962\":{},\"1026\":{},\"1323\":{}},\"comment\":{}}],[\"addtosetoperators\",{\"_index\":700,\"name\":{\"2090\":{}},\"comment\":{}}],[\"adduser\",{\"_index\":138,\"name\":{\"475\":{},\"708\":{}},\"comment\":{}}],[\"adduseroptions\",{\"_index\":780,\"name\":{\"2181\":{}},\"comment\":{}}],[\"admin\",{\"_index\":132,\"name\":{\"469\":{},\"699\":{}},\"comment\":{}}],[\"advanceclustertime\",{\"_index\":185,\"name\":{\"608\":{}},\"comment\":{}}],[\"advanceoperationtime\",{\"_index\":184,\"name\":{\"607\":{}},\"comment\":{}}],[\"aggregate\",{\"_index\":226,\"name\":{\"670\":{},\"698\":{}},\"comment\":{}}],[\"aggregateoptions\",{\"_index\":785,\"name\":{\"2203\":{}},\"comment\":{}}],[\"aggregationcursor\",{\"_index\":143,\"name\":{\"480\":{}},\"comment\":{}}],[\"aggregationcursoroptions\",{\"_index\":598,\"name\":{\"1738\":{}},\"comment\":{}}],[\"aliases\",{\"_index\":649,\"name\":{\"1912\":{},\"1928\":{}},\"comment\":{}}],[\"all\",{\"_index\":733,\"name\":{\"2131\":{}},\"comment\":{}}],[\"allhosts\",{\"_index\":981,\"name\":{\"2978\":{}},\"comment\":{}}],[\"allocated\",{\"_index\":921,\"name\":{\"2803\":{}},\"comment\":{}}],[\"allocation\",{\"_index\":924,\"name\":{\"2806\":{}},\"comment\":{}}],[\"allocations\",{\"_index\":917,\"name\":{\"2802\":{}},\"comment\":{}}],[\"allowdiskuse\",{\"_index\":262,\"name\":{\"733\":{},\"1460\":{},\"1751\":{},\"2204\":{},\"2282\":{},\"2453\":{}},\"comment\":{}}],[\"allowed_hosts\",{\"_index\":498,\"name\":{\"1551\":{}},\"comment\":{}}],[\"allowpartialresults\",{\"_index\":840,\"name\":{\"2455\":{}},\"comment\":{}}],[\"alternate\",{\"_index\":792,\"name\":{\"2234\":{}},\"comment\":{}}],[\"alternativetype\",{\"_index\":702,\"name\":{\"2093\":{}},\"comment\":{}}],[\"and\",{\"_index\":763,\"name\":{\"2162\":{},\"2820\":{}},\"comment\":{}}],[\"anybulkwriteoperation\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"anyerror\",{\"_index\":637,\"name\":{\"1883\":{}},\"comment\":{}}],[\"application\",{\"_index\":566,\"name\":{\"1670\":{}},\"comment\":{}}],[\"appname\",{\"_index\":574,\"name\":{\"1686\":{},\"1978\":{},\"2009\":{}},\"comment\":{}}],[\"arbiters\",{\"_index\":973,\"name\":{\"2961\":{}},\"comment\":{}}],[\"architecture\",{\"_index\":564,\"name\":{\"1667\":{}},\"comment\":{}}],[\"arrayelement\",{\"_index\":703,\"name\":{\"2094\":{}},\"comment\":{}}],[\"arrayfilters\",{\"_index\":428,\"name\":{\"1271\":{},\"1278\":{},\"1333\":{},\"2520\":{},\"2856\":{},\"2889\":{}},\"comment\":{}}],[\"arrayoperator\",{\"_index\":704,\"name\":{\"2095\":{}},\"comment\":{}}],[\"asynciterator\",{\"_index\":116,\"name\":{\"453\":{},\"520\":{},\"574\":{},\"759\":{},\"867\":{},\"913\":{},\"1008\":{},\"1806\":{}},\"comment\":{}}],[\"auth\",{\"_index\":657,\"name\":{\"1935\":{},\"1970\":{}},\"comment\":{}}],[\"authdb\",{\"_index\":26,\"name\":{\"26\":{},\"1457\":{},\"1760\":{},\"2190\":{},\"2218\":{},\"2245\":{},\"2269\":{},\"2296\":{},\"2337\":{},\"2363\":{},\"2390\":{},\"2408\":{},\"2426\":{},\"2470\":{},\"2484\":{},\"2509\":{},\"2535\":{},\"2579\":{},\"2621\":{},\"2637\":{},\"2676\":{},\"2688\":{},\"2722\":{},\"2770\":{},\"2788\":{},\"2845\":{},\"2867\":{},\"2899\":{},\"3070\":{}},\"comment\":{}}],[\"authmechanism\",{\"_index\":318,\"name\":{\"1040\":{},\"1041\":{},\"1972\":{}},\"comment\":{}}],[\"authmechanismproperties\",{\"_index\":489,\"name\":{\"1542\":{},\"1973\":{}},\"comment\":{}}],[\"authorizedcollections\",{\"_index\":876,\"name\":{\"2661\":{}},\"comment\":{}}],[\"authorizeddatabases\",{\"_index\":878,\"name\":{\"2681\":{}},\"comment\":{}}],[\"authsource\",{\"_index\":603,\"name\":{\"1825\":{},\"1971\":{}},\"comment\":{}}],[\"autoencrypter\",{\"_index\":299,\"name\":{\"935\":{},\"1605\":{},\"1655\":{},\"1834\":{},\"2021\":{},\"2952\":{}},\"comment\":{}}],[\"autoencryption\",{\"_index\":683,\"name\":{\"2000\":{},\"2028\":{}},\"comment\":{}}],[\"autoencryptionloggerlevel\",{\"_index\":321,\"name\":{\"1045\":{},\"1046\":{}},\"comment\":{}}],[\"autoencryptionoptions\",{\"_index\":609,\"name\":{\"1841\":{}},\"comment\":{}}],[\"autoencryptiontlsoptions\",{\"_index\":633,\"name\":{\"1879\":{}},\"comment\":{}}],[\"autoindexid\",{\"_index\":805,\"name\":{\"2312\":{}},\"comment\":{}}],[\"available\",{\"_index\":332,\"name\":{\"1068\":{},\"2807\":{}},\"comment\":{}}],[\"avgobjsize\",{\"_index\":894,\"name\":{\"2741\":{}},\"comment\":{}}],[\"awaitdata\",{\"_index\":593,\"name\":{\"1731\":{},\"1747\":{},\"2444\":{}},\"comment\":{}}],[\"aws\",{\"_index\":613,\"name\":{\"1846\":{},\"1874\":{}},\"comment\":{}}],[\"aws_session_token\",{\"_index\":494,\"name\":{\"1547\":{}},\"comment\":{}}],[\"azure\",{\"_index\":616,\"name\":{\"1850\":{},\"1876\":{}},\"comment\":{}}],[\"background\",{\"_index\":847,\"name\":{\"2546\":{},\"2590\":{},\"2892\":{}},\"comment\":{}}],[\"backwards\",{\"_index\":794,\"name\":{\"2236\":{}},\"comment\":{}}],[\"batch\",{\"_index\":432,\"name\":{\"1304\":{}},\"comment\":{}}],[\"batches\",{\"_index\":307,\"name\":{\"970\":{},\"1034\":{},\"1321\":{}},\"comment\":{}}],[\"batchsize\",{\"_index\":113,\"name\":{\"450\":{},\"518\":{},\"757\":{},\"865\":{},\"911\":{},\"979\":{},\"987\":{},\"1441\":{},\"1529\":{},\"1726\":{},\"1742\":{},\"1804\":{},\"2205\":{},\"2283\":{},\"2445\":{},\"2607\":{},\"2662\":{}},\"comment\":{}}],[\"batchtype\",{\"_index\":316,\"name\":{\"1036\":{},\"1037\":{},\"1309\":{}},\"comment\":{}}],[\"beforehandshake\",{\"_index\":640,\"name\":{\"1891\":{}},\"comment\":{}}],[\"binary\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"bits\",{\"_index\":856,\"name\":{\"2560\":{},\"2601\":{}},\"comment\":{}}],[\"bitsallclear\",{\"_index\":735,\"name\":{\"2134\":{}},\"comment\":{}}],[\"bitsallset\",{\"_index\":736,\"name\":{\"2135\":{}},\"comment\":{}}],[\"bitsanyclear\",{\"_index\":737,\"name\":{\"2136\":{}},\"comment\":{}}],[\"bitsanyset\",{\"_index\":738,\"name\":{\"2137\":{}},\"comment\":{}}],[\"bitwisefilter\",{\"_index\":707,\"name\":{\"2101\":{}},\"comment\":{}}],[\"block\",{\"_index\":915,\"name\":{\"2800\":{}},\"comment\":{}}],[\"blocks\",{\"_index\":920,\"name\":{\"2803\":{},\"2804\":{}},\"comment\":{}}],[\"bsonoptions\",{\"_index\":196,\"name\":{\"638\":{},\"693\":{},\"939\":{},\"968\":{},\"1032\":{},\"1319\":{}},\"comment\":{}}],[\"bsonregexp\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"bsonserializeoptions\",{\"_index\":396,\"name\":{\"1210\":{}},\"comment\":{}}],[\"bsonsymbol\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"bsontype\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"bsontypealias\",{\"_index\":708,\"name\":{\"2102\":{}},\"comment\":{}}],[\"btree\",{\"_index\":933,\"name\":{\"2812\":{}},\"comment\":{}}],[\"bucket\",{\"_index\":277,\"name\":{\"814\":{}},\"comment\":{}}],[\"bucketmaxspanseconds\",{\"_index\":823,\"name\":{\"2351\":{}},\"comment\":{}}],[\"bucketname\",{\"_index\":653,\"name\":{\"1919\":{}},\"comment\":{}}],[\"bucketroundingseconds\",{\"_index\":824,\"name\":{\"2352\":{}},\"comment\":{}}],[\"bucketsize\",{\"_index\":857,\"name\":{\"2563\":{},\"2602\":{}},\"comment\":{}}],[\"bufferedcount\",{\"_index\":101,\"name\":{\"436\":{},\"505\":{},\"745\":{},\"851\":{},\"897\":{},\"996\":{},\"1791\":{}},\"comment\":{}}],[\"buftostore\",{\"_index\":283,\"name\":{\"822\":{}},\"comment\":{}}],[\"buildinfo\",{\"_index\":134,\"name\":{\"471\":{}},\"comment\":{}}],[\"bulk\",{\"_index\":937,\"name\":{\"2818\":{}},\"comment\":{}}],[\"bulkoperation\",{\"_index\":441,\"name\":{\"1325\":{}},\"comment\":{}}],[\"bulkoperationbase\",{\"_index\":439,\"name\":{\"1313\":{}},\"comment\":{}}],[\"bulkwrite\",{\"_index\":200,\"name\":{\"643\":{}},\"comment\":{}}],[\"bulkwriteoperationerror\",{\"_index\":400,\"name\":{\"1216\":{}},\"comment\":{}}],[\"bulkwriteoptions\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"bulkwriteresult\",{\"_index\":402,\"name\":{\"1222\":{}},\"comment\":{}}],[\"bypassautoencryption\",{\"_index\":622,\"name\":{\"1857\":{}},\"comment\":{}}],[\"bypassdocumentvalidation\",{\"_index\":16,\"name\":{\"16\":{},\"1461\":{},\"1752\":{},\"2206\":{},\"2284\":{},\"2495\":{},\"2521\":{},\"2629\":{},\"2835\":{},\"2857\":{}},\"comment\":{}}],[\"bypassqueryanalysis\",{\"_index\":623,\"name\":{\"1858\":{}},\"comment\":{}}],[\"bytes\",{\"_index\":926,\"name\":{\"2807\":{},\"2810\":{},\"2820\":{},\"2821\":{},\"2822\":{}},\"comment\":{}}],[\"cache\",{\"_index\":934,\"name\":{\"2813\":{}},\"comment\":{}}],[\"cache_walk\",{\"_index\":935,\"name\":{\"2814\":{}},\"comment\":{}}],[\"callback\",{\"_index\":1031,\"name\":{\"3078\":{}},\"comment\":{}}],[\"calls\",{\"_index\":939,\"name\":{\"2818\":{},\"2819\":{},\"2823\":{},\"2824\":{},\"2825\":{},\"2826\":{},\"2827\":{},\"2829\":{},\"2830\":{},\"2831\":{},\"2832\":{}},\"comment\":{}}],[\"cancellationtoken\",{\"_index\":156,\"name\":{\"536\":{},\"1615\":{},\"1654\":{},\"2951\":{}},\"comment\":{}}],[\"canonicalize_host_name\",{\"_index\":493,\"name\":{\"1546\":{}},\"comment\":{}}],[\"capped\",{\"_index\":804,\"name\":{\"2311\":{},\"2752\":{}},\"comment\":{}}],[\"casefirst\",{\"_index\":789,\"name\":{\"2231\":{}},\"comment\":{}}],[\"caselevel\",{\"_index\":788,\"name\":{\"2230\":{}},\"comment\":{}}],[\"casesensitive\",{\"_index\":769,\"name\":{\"2169\":{}},\"comment\":{}}],[\"causalconsistency\",{\"_index\":174,\"name\":{\"595\":{},\"3034\":{}},\"comment\":{}}],[\"cause\",{\"_index\":56,\"name\":{\"58\":{},\"69\":{},\"80\":{},\"91\":{},\"102\":{},\"113\":{},\"124\":{},\"135\":{},\"146\":{},\"157\":{},\"168\":{},\"178\":{},\"190\":{},\"201\":{},\"212\":{},\"223\":{},\"234\":{},\"245\":{},\"256\":{},\"267\":{},\"278\":{},\"289\":{},\"300\":{},\"311\":{},\"322\":{},\"337\":{},\"349\":{},\"361\":{},\"372\":{},\"383\":{},\"394\":{},\"405\":{},\"421\":{}},\"comment\":{}}],[\"change\",{\"_index\":161,\"name\":{\"557\":{}},\"comment\":{}}],[\"changestream\",{\"_index\":157,\"name\":{\"552\":{}},\"comment\":{}}],[\"changestreamcollmoddocument\",{\"_index\":443,\"name\":{\"1339\":{}},\"comment\":{}}],[\"changestreamcreatedocument\",{\"_index\":449,\"name\":{\"1346\":{}},\"comment\":{}}],[\"changestreamcreateindexdocument\",{\"_index\":450,\"name\":{\"1353\":{}},\"comment\":{}}],[\"changestreamdeletedocument\",{\"_index\":452,\"name\":{\"1361\":{}},\"comment\":{}}],[\"changestreamdocument\",{\"_index\":456,\"name\":{\"1373\":{}},\"comment\":{}}],[\"changestreamdocumentcollectionuuid\",{\"_index\":457,\"name\":{\"1374\":{}},\"comment\":{}}],[\"changestreamdocumentcommon\",{\"_index\":458,\"name\":{\"1376\":{}},\"comment\":{}}],[\"changestreamdocumentkey\",{\"_index\":459,\"name\":{\"1381\":{}},\"comment\":{}}],[\"changestreamdocumentoperationdescription\",{\"_index\":460,\"name\":{\"1385\":{}},\"comment\":{}}],[\"changestreamdropdatabasedocument\",{\"_index\":461,\"name\":{\"1387\":{}},\"comment\":{}}],[\"changestreamdropdocument\",{\"_index\":462,\"name\":{\"1396\":{}},\"comment\":{}}],[\"changestreamdropindexdocument\",{\"_index\":463,\"name\":{\"1404\":{}},\"comment\":{}}],[\"changestreamevents\",{\"_index\":464,\"name\":{\"1412\":{}},\"comment\":{}}],[\"changestreaminsertdocument\",{\"_index\":465,\"name\":{\"1413\":{}},\"comment\":{}}],[\"changestreaminvalidatedocument\",{\"_index\":467,\"name\":{\"1425\":{}},\"comment\":{}}],[\"changestreamnamespace\",{\"_index\":468,\"name\":{\"1431\":{}},\"comment\":{}}],[\"changestreamoptions\",{\"_index\":470,\"name\":{\"1434\":{}},\"comment\":{}}],[\"changestreampreandpostimages\",{\"_index\":817,\"name\":{\"2328\":{}},\"comment\":{}}],[\"changestreamrefinecollectionshardkeydocument\",{\"_index\":476,\"name\":{\"1464\":{}},\"comment\":{}}],[\"changestreamrenamedocument\",{\"_index\":477,\"name\":{\"1472\":{}},\"comment\":{}}],[\"changestreamreplacedocument\",{\"_index\":479,\"name\":{\"1484\":{}},\"comment\":{}}],[\"changestreamreshardcollectiondocument\",{\"_index\":480,\"name\":{\"1496\":{}},\"comment\":{}}],[\"changestreamshardcollectiondocument\",{\"_index\":481,\"name\":{\"1504\":{}},\"comment\":{}}],[\"changestreamupdatedocument\",{\"_index\":482,\"name\":{\"1512\":{}},\"comment\":{}}],[\"checkpoint\",{\"_index\":923,\"name\":{\"2805\":{}},\"comment\":{}}],[\"chunks\",{\"_index\":278,\"name\":{\"815\":{}},\"comment\":{}}],[\"chunksize\",{\"_index\":647,\"name\":{\"1909\":{}},\"comment\":{}}],[\"chunksizebytes\",{\"_index\":282,\"name\":{\"821\":{},\"1920\":{},\"1924\":{}},\"comment\":{}}],[\"clientid\",{\"_index\":512,\"name\":{\"1573\":{}},\"comment\":{}}],[\"clientmetadata\",{\"_index\":561,\"name\":{\"1658\":{}},\"comment\":{}}],[\"clientmetadataoptions\",{\"_index\":572,\"name\":{\"1680\":{}},\"comment\":{}}],[\"clientoptions\",{\"_index\":172,\"name\":{\"592\":{}},\"comment\":{}}],[\"clientsession\",{\"_index\":170,\"name\":{\"590\":{}},\"comment\":{}}],[\"clientsessionevents\",{\"_index\":1014,\"name\":{\"3030\":{}},\"comment\":{}}],[\"clientsessionoptions\",{\"_index\":1016,\"name\":{\"3033\":{}},\"comment\":{}}],[\"clone\",{\"_index\":115,\"name\":{\"452\":{},\"483\":{},\"717\":{},\"842\":{},\"888\":{},\"983\":{},\"1769\":{}},\"comment\":{}}],[\"close\",{\"_index\":95,\"name\":{\"427\":{},\"443\":{},\"481\":{},\"512\":{},\"556\":{},\"572\":{},\"716\":{},\"752\":{},\"806\":{},\"811\":{},\"837\":{},\"858\":{},\"884\":{},\"904\":{},\"941\":{},\"973\":{},\"1003\":{},\"1597\":{},\"1721\":{},\"1767\":{},\"1798\":{}},\"comment\":{}}],[\"closed\",{\"_index\":98,\"name\":{\"433\":{},\"502\":{},\"571\":{},\"742\":{},\"848\":{},\"894\":{},\"993\":{},\"1788\":{}},\"comment\":{}}],[\"closeoptions\",{\"_index\":552,\"name\":{\"1629\":{}},\"comment\":{}}],[\"clusteredcollectionoptions\",{\"_index\":801,\"name\":{\"2306\":{}},\"comment\":{}}],[\"clusteredindex\",{\"_index\":814,\"name\":{\"2325\":{}},\"comment\":{}}],[\"clustertime\",{\"_index\":175,\"name\":{\"596\":{},\"1342\":{},\"1349\":{},\"1356\":{},\"1366\":{},\"1378\":{},\"1393\":{},\"1400\":{},\"1407\":{},\"1418\":{},\"1428\":{},\"1467\":{},\"1480\":{},\"1490\":{},\"1499\":{},\"1507\":{},\"1519\":{},\"2926\":{},\"2927\":{},\"2976\":{}},\"comment\":{}}],[\"clustertimereceived\",{\"_index\":530,\"name\":{\"1596\":{}},\"comment\":{}}],[\"code\",{\"_index\":4,\"name\":{\"4\":{},\"55\":{},\"66\":{},\"77\":{},\"88\":{},\"99\":{},\"110\":{},\"121\":{},\"132\":{},\"143\":{},\"154\":{},\"165\":{},\"175\":{},\"187\":{},\"198\":{},\"209\":{},\"220\":{},\"231\":{},\"242\":{},\"253\":{},\"264\":{},\"275\":{},\"286\":{},\"297\":{},\"308\":{},\"319\":{},\"334\":{},\"346\":{},\"358\":{},\"369\":{},\"380\":{},\"391\":{},\"402\":{},\"418\":{},\"1218\":{},\"1284\":{},\"1292\":{},\"1299\":{},\"1336\":{}},\"comment\":{}}],[\"codename\",{\"_index\":50,\"name\":{\"51\":{},\"329\":{},\"414\":{}},\"comment\":{}}],[\"coll\",{\"_index\":469,\"name\":{\"1433\":{},\"1477\":{}},\"comment\":{}}],[\"collation\",{\"_index\":21,\"name\":{\"21\":{},\"734\":{},\"1254\":{},\"1258\":{},\"1265\":{},\"1272\":{},\"1279\":{},\"1332\":{},\"1456\":{},\"1531\":{},\"1754\":{},\"2185\":{},\"2210\":{},\"2240\":{},\"2265\":{},\"2288\":{},\"2332\":{},\"2355\":{},\"2379\":{},\"2385\":{},\"2404\":{},\"2421\":{},\"2452\":{},\"2479\":{},\"2504\":{},\"2530\":{},\"2578\":{},\"2583\":{},\"2620\":{},\"2632\":{},\"2675\":{},\"2683\":{},\"2717\":{},\"2765\":{},\"2783\":{},\"2836\":{},\"2858\":{},\"2888\":{},\"2894\":{},\"3065\":{}},\"comment\":{}}],[\"collationoptions\",{\"_index\":786,\"name\":{\"2228\":{}},\"comment\":{}}],[\"collection\",{\"_index\":194,\"name\":{\"632\":{},\"700\":{},\"3100\":{},\"3108\":{}},\"comment\":{}}],[\"collectioninfo\",{\"_index\":869,\"name\":{\"2650\":{}},\"comment\":{}}],[\"collectionname\",{\"_index\":195,\"name\":{\"634\":{}},\"comment\":{}}],[\"collectionoptions\",{\"_index\":585,\"name\":{\"1708\":{}},\"comment\":{}}],[\"collections\",{\"_index\":250,\"name\":{\"706\":{}},\"comment\":{}}],[\"collectionuuid\",{\"_index\":448,\"name\":{\"1345\":{},\"1352\":{},\"1359\":{},\"1372\":{},\"1375\":{},\"1403\":{},\"1410\":{},\"1424\":{},\"1470\":{},\"1483\":{},\"1502\":{},\"1510\":{},\"1525\":{}},\"comment\":{}}],[\"collstats\",{\"_index\":893,\"name\":{\"2737\":{}},\"comment\":{}}],[\"collstatsoptions\",{\"_index\":910,\"name\":{\"2762\":{}},\"comment\":{}}],[\"command\",{\"_index\":133,\"name\":{\"470\":{},\"697\":{},\"974\":{},\"1121\":{}},\"comment\":{}}],[\"commandfailed\",{\"_index\":529,\"name\":{\"1595\":{}},\"comment\":{}}],[\"commandfailedevent\",{\"_index\":357,\"name\":{\"1107\":{}},\"comment\":{}}],[\"commandname\",{\"_index\":362,\"name\":{\"1112\":{},\"1120\":{},\"1131\":{}},\"comment\":{}}],[\"commandobj\",{\"_index\":367,\"name\":{\"1117\":{}},\"comment\":{}}],[\"commandoperationoptions\",{\"_index\":796,\"name\":{\"2238\":{}},\"comment\":{}}],[\"commandstakecollation\",{\"_index\":1001,\"name\":{\"3008\":{}},\"comment\":{}}],[\"commandstakewriteconcern\",{\"_index\":1000,\"name\":{\"3007\":{}},\"comment\":{}}],[\"commandstarted\",{\"_index\":527,\"name\":{\"1593\":{}},\"comment\":{}}],[\"commandstartedevent\",{\"_index\":366,\"name\":{\"1116\":{}},\"comment\":{}}],[\"commandsucceeded\",{\"_index\":528,\"name\":{\"1594\":{}},\"comment\":{}}],[\"commandsucceededevent\",{\"_index\":368,\"name\":{\"1126\":{}},\"comment\":{}}],[\"comment\",{\"_index\":23,\"name\":{\"23\":{},\"728\":{},\"977\":{},\"1453\":{},\"1729\":{},\"1745\":{},\"2172\":{},\"2187\":{},\"2215\":{},\"2242\":{},\"2266\":{},\"2293\":{},\"2334\":{},\"2360\":{},\"2387\":{},\"2405\":{},\"2423\":{},\"2468\":{},\"2481\":{},\"2506\":{},\"2532\":{},\"2575\":{},\"2617\":{},\"2634\":{},\"2672\":{},\"2685\":{},\"2719\":{},\"2767\":{},\"2785\":{},\"2842\":{},\"2864\":{},\"2896\":{},\"3067\":{}},\"comment\":{}}],[\"commitquorum\",{\"_index\":850,\"name\":{\"2553\":{}},\"comment\":{}}],[\"committransaction\",{\"_index\":190,\"name\":{\"613\":{}},\"comment\":{}}],[\"commonevents\",{\"_index\":695,\"name\":{\"2069\":{}},\"comment\":{}}],[\"commonwireversion\",{\"_index\":1010,\"name\":{\"3023\":{}},\"comment\":{}}],[\"compatibilityerror\",{\"_index\":1009,\"name\":{\"3019\":{}},\"comment\":{}}],[\"compatible\",{\"_index\":1008,\"name\":{\"3018\":{}},\"comment\":{}}],[\"compression\",{\"_index\":936,\"name\":{\"2815\":{}},\"comment\":{}}],[\"compressor\",{\"_index\":319,\"name\":{\"1042\":{},\"1043\":{},\"1697\":{}},\"comment\":{}}],[\"compressorname\",{\"_index\":584,\"name\":{\"1707\":{}},\"comment\":{}}],[\"compressors\",{\"_index\":545,\"name\":{\"1617\":{},\"1648\":{},\"1696\":{},\"1704\":{},\"1956\":{},\"2017\":{},\"2945\":{}},\"comment\":{}}],[\"condition\",{\"_index\":709,\"name\":{\"2103\":{}},\"comment\":{}}],[\"connect\",{\"_index\":296,\"name\":{\"930\":{},\"940\":{}},\"comment\":{}}],[\"connectioncheckedinevent\",{\"_index\":370,\"name\":{\"1135\":{}},\"comment\":{}}],[\"connectioncheckedoutevent\",{\"_index\":372,\"name\":{\"1139\":{}},\"comment\":{}}],[\"connectioncheckoutfailedevent\",{\"_index\":373,\"name\":{\"1143\":{}},\"comment\":{}}],[\"connectioncheckoutstartedevent\",{\"_index\":374,\"name\":{\"1147\":{}},\"comment\":{}}],[\"connectionclosedevent\",{\"_index\":375,\"name\":{\"1150\":{}},\"comment\":{}}],[\"connectioncreatedevent\",{\"_index\":376,\"name\":{\"1156\":{}},\"comment\":{}}],[\"connectionevents\",{\"_index\":526,\"name\":{\"1591\":{}},\"comment\":{}}],[\"connectiongeneration\",{\"_index\":55,\"name\":{\"57\":{},\"68\":{},\"79\":{},\"90\":{},\"101\":{},\"112\":{},\"123\":{},\"134\":{},\"145\":{},\"156\":{},\"167\":{},\"177\":{},\"189\":{},\"200\":{},\"211\":{},\"222\":{},\"233\":{},\"244\":{},\"255\":{},\"266\":{},\"277\":{},\"288\":{},\"299\":{},\"310\":{},\"321\":{},\"336\":{},\"348\":{},\"360\":{},\"371\":{},\"382\":{},\"393\":{},\"404\":{},\"420\":{}},\"comment\":{}}],[\"connectionid\",{\"_index\":359,\"name\":{\"1109\":{},\"1123\":{},\"1128\":{},\"1136\":{},\"1140\":{},\"1151\":{},\"1157\":{},\"1178\":{},\"1190\":{},\"1194\":{},\"1196\":{}},\"comment\":{}}],[\"connectionoptions\",{\"_index\":534,\"name\":{\"1601\":{}},\"comment\":{}}],[\"connectionpoolclearedevent\",{\"_index\":377,\"name\":{\"1160\":{}},\"comment\":{}}],[\"connectionpoolclosedevent\",{\"_index\":379,\"name\":{\"1164\":{}},\"comment\":{}}],[\"connectionpoolcreatedevent\",{\"_index\":380,\"name\":{\"1167\":{}},\"comment\":{}}],[\"connectionpoolevents\",{\"_index\":554,\"name\":{\"1631\":{}},\"comment\":{}}],[\"connectionpoolmonitoringevent\",{\"_index\":381,\"name\":{\"1171\":{}},\"comment\":{}}],[\"connectionpooloptions\",{\"_index\":555,\"name\":{\"1632\":{}},\"comment\":{}}],[\"connectionpoolreadyevent\",{\"_index\":382,\"name\":{\"1174\":{}},\"comment\":{}}],[\"connectionreadyevent\",{\"_index\":383,\"name\":{\"1177\":{}},\"comment\":{}}],[\"connectoptions\",{\"_index\":990,\"name\":{\"2990\":{}},\"comment\":{}}],[\"connecttimeoutms\",{\"_index\":538,\"name\":{\"1609\":{},\"1646\":{},\"1954\":{},\"2034\":{},\"2934\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":37,\"name\":{\"37\":{},\"64\":{},\"75\":{},\"86\":{},\"97\":{},\"108\":{},\"119\":{},\"130\":{},\"141\":{},\"152\":{},\"163\":{},\"174\":{},\"185\":{},\"196\":{},\"207\":{},\"218\":{},\"229\":{},\"240\":{},\"251\":{},\"262\":{},\"273\":{},\"284\":{},\"295\":{},\"306\":{},\"317\":{},\"328\":{},\"343\":{},\"355\":{},\"367\":{},\"378\":{},\"389\":{},\"400\":{},\"411\":{},\"687\":{},\"777\":{},\"838\":{},\"885\":{},\"931\":{},\"1071\":{},\"1089\":{},\"1102\":{},\"1283\":{},\"1290\":{},\"1305\":{},\"1555\":{},\"1688\":{},\"1840\":{},\"2997\":{},\"3011\":{},\"3086\":{},\"3099\":{},\"3106\":{}},\"comment\":{}}],[\"contenttype\",{\"_index\":648,\"name\":{\"1911\":{},\"1927\":{}},\"comment\":{}}],[\"count\",{\"_index\":230,\"name\":{\"674\":{},\"719\":{},\"2739\":{}},\"comment\":{}}],[\"countdocuments\",{\"_index\":219,\"name\":{\"663\":{}},\"comment\":{}}],[\"countdocumentsoptions\",{\"_index\":800,\"name\":{\"2279\":{}},\"comment\":{}}],[\"counter\",{\"_index\":989,\"name\":{\"2989\":{}},\"comment\":{}}],[\"countoptions\",{\"_index\":799,\"name\":{\"2259\":{}},\"comment\":{}}],[\"create\",{\"_index\":940,\"name\":{\"2819\":{}},\"comment\":{}}],[\"createcollection\",{\"_index\":245,\"name\":{\"696\":{}},\"comment\":{}}],[\"createcollectionoptions\",{\"_index\":803,\"name\":{\"2310\":{}},\"comment\":{}}],[\"createindex\",{\"_index\":211,\"name\":{\"655\":{},\"707\":{}},\"comment\":{}}],[\"createindexes\",{\"_index\":212,\"name\":{\"656\":{}},\"comment\":{}}],[\"createindexesoptions\",{\"_index\":846,\"name\":{\"2545\":{}},\"comment\":{}}],[\"createpk\",{\"_index\":687,\"name\":{\"2058\":{}},\"comment\":{}}],[\"createsearchindex\",{\"_index\":232,\"name\":{\"676\":{}},\"comment\":{}}],[\"createsearchindexes\",{\"_index\":233,\"name\":{\"677\":{}},\"comment\":{}}],[\"credentials\",{\"_index\":537,\"name\":{\"1608\":{},\"1639\":{},\"2012\":{},\"2937\":{}},\"comment\":{}}],[\"cryptsharedlibpath\",{\"_index\":630,\"name\":{\"1869\":{}},\"comment\":{}}],[\"cryptsharedlibrequired\",{\"_index\":631,\"name\":{\"1870\":{}},\"comment\":{}}],[\"cryptsharedlibversioninfo\",{\"_index\":608,\"name\":{\"1839\":{}},\"comment\":{}}],[\"currentindex\",{\"_index\":434,\"name\":{\"1307\":{}},\"comment\":{}}],[\"cursor\",{\"_index\":475,\"name\":{\"1450\":{},\"1753\":{},\"2207\":{},\"2285\":{},\"2816\":{},\"2818\":{},\"2820\":{},\"2821\":{},\"2822\":{}},\"comment\":{}}],[\"cursor_flags\",{\"_index\":320,\"name\":{\"1044\":{}},\"comment\":{}}],[\"cursorflag\",{\"_index\":595,\"name\":{\"1735\":{}},\"comment\":{}}],[\"cursorstreamoptions\",{\"_index\":596,\"name\":{\"1736\":{}},\"comment\":{}}],[\"customdata\",{\"_index\":782,\"name\":{\"2183\":{}},\"comment\":{}}],[\"data\",{\"_index\":272,\"name\":{\"804\":{},\"1934\":{}},\"comment\":{}}],[\"databasename\",{\"_index\":243,\"name\":{\"688\":{},\"1119\":{}},\"comment\":{}}],[\"databases\",{\"_index\":880,\"name\":{\"2699\":{}},\"comment\":{}}],[\"db\",{\"_index\":236,\"name\":{\"680\":{},\"942\":{},\"1391\":{},\"1432\":{},\"1476\":{},\"1568\":{},\"2202\":{},\"3101\":{},\"3107\":{}},\"comment\":{}}],[\"dbname\",{\"_index\":25,\"name\":{\"25\":{},\"633\":{},\"1446\":{},\"1759\":{},\"2019\":{},\"2189\":{},\"2217\":{},\"2244\":{},\"2268\":{},\"2295\":{},\"2336\":{},\"2362\":{},\"2389\":{},\"2407\":{},\"2425\":{},\"2462\":{},\"2483\":{},\"2508\":{},\"2534\":{},\"2569\":{},\"2611\":{},\"2636\":{},\"2666\":{},\"2687\":{},\"2721\":{},\"2769\":{},\"2787\":{},\"2844\":{},\"2866\":{},\"2898\":{},\"3069\":{}},\"comment\":{}}],[\"dboptions\",{\"_index\":602,\"name\":{\"1824\":{}},\"comment\":{}}],[\"dbref\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"dbstatsoptions\",{\"_index\":912,\"name\":{\"2780\":{}},\"comment\":{}}],[\"decimal128\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"decrypt\",{\"_index\":607,\"name\":{\"1838\":{}},\"comment\":{}}],[\"default_language\",{\"_index\":852,\"name\":{\"2556\":{},\"2597\":{}},\"comment\":{}}],[\"defaulttransactionoptions\",{\"_index\":178,\"name\":{\"599\":{},\"3036\":{}},\"comment\":{}}],[\"definition\",{\"_index\":891,\"name\":{\"2735\":{}},\"comment\":{}}],[\"delete\",{\"_index\":268,\"name\":{\"781\":{},\"1330\":{}},\"comment\":{}}],[\"deletedcount\",{\"_index\":45,\"name\":{\"45\":{},\"1229\":{},\"2375\":{}},\"comment\":{}}],[\"deletemany\",{\"_index\":205,\"name\":{\"648\":{}},\"comment\":{}}],[\"deletemanymodel\",{\"_index\":420,\"name\":{\"1252\":{}},\"comment\":{}}],[\"deleteone\",{\"_index\":204,\"name\":{\"647\":{},\"1329\":{}},\"comment\":{}}],[\"deleteonemodel\",{\"_index\":421,\"name\":{\"1256\":{}},\"comment\":{}}],[\"deleteoptions\",{\"_index\":825,\"name\":{\"2353\":{}},\"comment\":{}}],[\"deleteresult\",{\"_index\":826,\"name\":{\"2373\":{}},\"comment\":{}}],[\"deletestatement\",{\"_index\":828,\"name\":{\"2376\":{}},\"comment\":{}}],[\"deprecationerrors\",{\"_index\":689,\"name\":{\"2062\":{}},\"comment\":{}}],[\"deserialize\",{\"_index\":398,\"name\":{\"1214\":{}},\"comment\":{}}],[\"diacriticsensitive\",{\"_index\":770,\"name\":{\"2170\":{}},\"comment\":{}}],[\"directconnection\",{\"_index\":674,\"name\":{\"1981\":{},\"2049\":{}},\"comment\":{}}],[\"disambiguatedpaths\",{\"_index\":488,\"name\":{\"1541\":{}},\"comment\":{}}],[\"distinct\",{\"_index\":220,\"name\":{\"664\":{}},\"comment\":{}}],[\"distinctoptions\",{\"_index\":830,\"name\":{\"2381\":{}},\"comment\":{}}],[\"document\",{\"_index\":397,\"name\":{\"1213\":{},\"1261\":{}},\"comment\":{}}],[\"documentkey\",{\"_index\":455,\"name\":{\"1369\":{},\"1382\":{},\"1421\":{},\"1493\":{},\"1522\":{}},\"comment\":{}}],[\"done\",{\"_index\":281,\"name\":{\"819\":{}},\"comment\":{}}],[\"double\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"driver\",{\"_index\":562,\"name\":{\"1659\":{}},\"comment\":{}}],[\"driverinfo\",{\"_index\":573,\"name\":{\"1681\":{},\"1938\":{},\"2001\":{},\"2056\":{}},\"comment\":{}}],[\"drop\",{\"_index\":207,\"name\":{\"650\":{},\"785\":{}},\"comment\":{}}],[\"dropcollection\",{\"_index\":248,\"name\":{\"704\":{}},\"comment\":{}}],[\"dropcollectionoptions\",{\"_index\":831,\"name\":{\"2382\":{}},\"comment\":{}}],[\"dropdatabase\",{\"_index\":249,\"name\":{\"705\":{}},\"comment\":{}}],[\"dropdatabaseoptions\",{\"_index\":832,\"name\":{\"2400\":{}},\"comment\":{}}],[\"dropindex\",{\"_index\":213,\"name\":{\"657\":{}},\"comment\":{}}],[\"dropindexes\",{\"_index\":214,\"name\":{\"658\":{}},\"comment\":{}}],[\"dropindexesoptions\",{\"_index\":860,\"name\":{\"2581\":{}},\"comment\":{}}],[\"dropsearchindex\",{\"_index\":234,\"name\":{\"678\":{}},\"comment\":{}}],[\"droptarget\",{\"_index\":887,\"name\":{\"2714\":{}},\"comment\":{}}],[\"duration\",{\"_index\":361,\"name\":{\"1111\":{},\"1130\":{},\"1191\":{},\"1197\":{}},\"comment\":{}}],[\"each\",{\"_index\":701,\"name\":{\"2092\":{},\"2097\":{}},\"comment\":{}}],[\"electionid\",{\"_index\":980,\"name\":{\"2974\":{}},\"comment\":{}}],[\"elemmatch\",{\"_index\":734,\"name\":{\"2132\":{}},\"comment\":{}}],[\"emit\",{\"_index\":125,\"name\":{\"462\":{},\"529\":{},\"545\":{},\"583\":{},\"625\":{},\"768\":{},\"794\":{},\"876\":{},\"922\":{},\"954\":{},\"1017\":{},\"1815\":{},\"2082\":{}},\"comment\":{}}],[\"enabled\",{\"_index\":818,\"name\":{\"2330\":{},\"2911\":{}},\"comment\":{}}],[\"enableutf8validation\",{\"_index\":33,\"name\":{\"33\":{},\"1212\":{},\"1444\":{},\"1712\":{},\"1734\":{},\"1750\":{},\"1832\":{},\"2007\":{},\"2197\":{},\"2225\":{},\"2252\":{},\"2276\":{},\"2303\":{},\"2344\":{},\"2370\":{},\"2397\":{},\"2415\":{},\"2433\":{},\"2460\":{},\"2491\":{},\"2516\":{},\"2542\":{},\"2567\":{},\"2609\":{},\"2644\":{},\"2664\":{},\"2695\":{},\"2710\":{},\"2729\":{},\"2777\":{},\"2795\":{},\"2852\":{},\"2874\":{},\"2906\":{},\"3076\":{}},\"comment\":{}}],[\"encrypt\",{\"_index\":606,\"name\":{\"1837\":{}},\"comment\":{}}],[\"encryptedfields\",{\"_index\":816,\"name\":{\"2327\":{},\"2383\":{}},\"comment\":{}}],[\"encryptedfieldsmap\",{\"_index\":621,\"name\":{\"1856\":{}},\"comment\":{}}],[\"end\",{\"_index\":162,\"name\":{\"558\":{},\"805\":{},\"808\":{},\"835\":{},\"1899\":{},\"1905\":{}},\"comment\":{}}],[\"ended\",{\"_index\":1015,\"name\":{\"3032\":{}},\"comment\":{}}],[\"endpoint\",{\"_index\":619,\"name\":{\"1854\":{}},\"comment\":{}}],[\"endsession\",{\"_index\":183,\"name\":{\"606\":{}},\"comment\":{}}],[\"endsessionoptions\",{\"_index\":1017,\"name\":{\"3037\":{}},\"comment\":{}}],[\"enhancedomit\",{\"_index\":710,\"name\":{\"2104\":{}},\"comment\":{}}],[\"env\",{\"_index\":567,\"name\":{\"1673\":{}},\"comment\":{}}],[\"eq\",{\"_index\":713,\"name\":{\"2108\":{}},\"comment\":{}}],[\"equals\",{\"_index\":186,\"name\":{\"609\":{},\"1098\":{},\"1561\":{},\"2984\":{}},\"comment\":{}}],[\"err\",{\"_index\":40,\"name\":{\"40\":{},\"1291\":{},\"1887\":{}},\"comment\":{}}],[\"errinfo\",{\"_index\":52,\"name\":{\"53\":{},\"331\":{},\"416\":{},\"1220\":{},\"1286\":{},\"1295\":{},\"1338\":{},\"1889\":{}},\"comment\":{}}],[\"errmsg\",{\"_index\":57,\"name\":{\"59\":{},\"70\":{},\"81\":{},\"92\":{},\"103\":{},\"114\":{},\"125\":{},\"136\":{},\"147\":{},\"158\":{},\"169\":{},\"180\":{},\"191\":{},\"202\":{},\"213\":{},\"224\":{},\"235\":{},\"246\":{},\"257\":{},\"268\":{},\"279\":{},\"290\":{},\"301\":{},\"312\":{},\"323\":{},\"338\":{},\"350\":{},\"362\":{},\"373\":{},\"384\":{},\"395\":{},\"406\":{},\"422\":{},\"1219\":{},\"1285\":{},\"1294\":{},\"1301\":{},\"1337\":{},\"1886\":{}},\"comment\":{}}],[\"error\",{\"_index\":163,\"name\":{\"559\":{},\"802\":{},\"812\":{},\"2963\":{},\"3024\":{}},\"comment\":{}}],[\"errordescription\",{\"_index\":638,\"name\":{\"1884\":{}},\"comment\":{}}],[\"errored\",{\"_index\":290,\"name\":{\"830\":{}},\"comment\":{}}],[\"errorlabels\",{\"_index\":60,\"name\":{\"62\":{},\"73\":{},\"84\":{},\"95\":{},\"106\":{},\"117\":{},\"128\":{},\"139\":{},\"150\":{},\"161\":{},\"172\":{},\"183\":{},\"194\":{},\"205\":{},\"216\":{},\"227\":{},\"238\":{},\"249\":{},\"260\":{},\"271\":{},\"282\":{},\"293\":{},\"304\":{},\"315\":{},\"326\":{},\"341\":{},\"353\":{},\"365\":{},\"376\":{},\"387\":{},\"398\":{},\"409\":{},\"425\":{},\"1888\":{}},\"comment\":{}}],[\"estimateddocumentcount\",{\"_index\":218,\"name\":{\"662\":{}},\"comment\":{}}],[\"estimateddocumentcountoptions\",{\"_index\":833,\"name\":{\"2401\":{}},\"comment\":{}}],[\"evaloptions\",{\"_index\":834,\"name\":{\"2418\":{}},\"comment\":{}}],[\"eventemitterwithstate\",{\"_index\":1032,\"name\":{\"3080\":{}},\"comment\":{}}],[\"eventnames\",{\"_index\":129,\"name\":{\"466\":{},\"533\":{},\"549\":{},\"587\":{},\"629\":{},\"772\":{},\"798\":{},\"880\":{},\"926\":{},\"958\":{},\"1021\":{},\"1819\":{},\"2086\":{}},\"comment\":{}}],[\"eventsdescription\",{\"_index\":696,\"name\":{\"2070\":{}},\"comment\":{}}],[\"execute\",{\"_index\":308,\"name\":{\"971\":{},\"1035\":{},\"1322\":{}},\"comment\":{}}],[\"exists\",{\"_index\":722,\"name\":{\"2117\":{}},\"comment\":{}}],[\"expireafterseconds\",{\"_index\":815,\"name\":{\"2326\":{},\"2551\":{},\"2594\":{}},\"comment\":{}}],[\"expiresinseconds\",{\"_index\":516,\"name\":{\"1577\":{}},\"comment\":{}}],[\"explain\",{\"_index\":35,\"name\":{\"35\":{},\"485\":{},\"720\":{},\"1455\":{},\"1765\":{},\"1771\":{},\"1893\":{},\"2199\":{},\"2227\":{},\"2254\":{},\"2278\":{},\"2305\":{},\"2346\":{},\"2372\":{},\"2399\":{},\"2417\":{},\"2435\":{},\"2469\":{},\"2493\":{},\"2518\":{},\"2544\":{},\"2577\":{},\"2619\":{},\"2646\":{},\"2674\":{},\"2697\":{},\"2731\":{},\"2779\":{},\"2797\":{},\"2854\":{},\"2876\":{},\"2908\":{},\"3077\":{}},\"comment\":{}}],[\"explainoptions\",{\"_index\":641,\"name\":{\"1892\":{}},\"comment\":{}}],[\"explainverbosity\",{\"_index\":323,\"name\":{\"1049\":{},\"1050\":{}},\"comment\":{}}],[\"explainverbositylike\",{\"_index\":642,\"name\":{\"1894\":{}},\"comment\":{}}],[\"explicit\",{\"_index\":177,\"name\":{\"598\":{}},\"comment\":{}}],[\"expr\",{\"_index\":723,\"name\":{\"2119\":{}},\"comment\":{}}],[\"extension\",{\"_index\":919,\"name\":{\"2802\":{}},\"comment\":{}}],[\"extraoptions\",{\"_index\":625,\"name\":{\"1863\":{}},\"comment\":{}}],[\"failure\",{\"_index\":363,\"name\":{\"1113\":{},\"1192\":{}},\"comment\":{}}],[\"file\",{\"_index\":271,\"name\":{\"803\":{},\"2802\":{},\"2806\":{},\"2807\":{},\"2808\":{},\"2809\":{},\"2810\":{}},\"comment\":{}}],[\"filename\",{\"_index\":279,\"name\":{\"816\":{},\"1910\":{}},\"comment\":{}}],[\"files\",{\"_index\":280,\"name\":{\"817\":{}},\"comment\":{}}],[\"files_id\",{\"_index\":656,\"name\":{\"1932\":{}},\"comment\":{}}],[\"filter\",{\"_index\":255,\"name\":{\"721\":{},\"840\":{},\"1253\":{},\"1257\":{},\"1263\":{},\"1269\":{},\"1276\":{},\"2105\":{},\"2679\":{}},\"comment\":{}}],[\"filteroperations\",{\"_index\":711,\"name\":{\"2106\":{}},\"comment\":{}}],[\"filteroperators\",{\"_index\":712,\"name\":{\"2107\":{}},\"comment\":{}}],[\"find\",{\"_index\":209,\"name\":{\"652\":{},\"782\":{},\"966\":{},\"1030\":{},\"1317\":{}},\"comment\":{}}],[\"findcursor\",{\"_index\":254,\"name\":{\"715\":{}},\"comment\":{}}],[\"findone\",{\"_index\":208,\"name\":{\"651\":{}},\"comment\":{}}],[\"findoneanddelete\",{\"_index\":223,\"name\":{\"667\":{}},\"comment\":{}}],[\"findoneanddeleteoptions\",{\"_index\":842,\"name\":{\"2472\":{}},\"comment\":{}}],[\"findoneandreplace\",{\"_index\":224,\"name\":{\"668\":{}},\"comment\":{}}],[\"findoneandreplaceoptions\",{\"_index\":844,\"name\":{\"2494\":{}},\"comment\":{}}],[\"findoneandupdate\",{\"_index\":225,\"name\":{\"669\":{}},\"comment\":{}}],[\"findoneandupdateoptions\",{\"_index\":845,\"name\":{\"2519\":{}},\"comment\":{}}],[\"findoperators\",{\"_index\":440,\"name\":{\"1324\":{}},\"comment\":{}}],[\"findoptions\",{\"_index\":836,\"name\":{\"2436\":{}},\"comment\":{}}],[\"finish\",{\"_index\":276,\"name\":{\"813\":{}},\"comment\":{}}],[\"flags\",{\"_index\":806,\"name\":{\"2315\":{}},\"comment\":{}}],[\"flatten\",{\"_index\":740,\"name\":{\"2139\":{}},\"comment\":{}}],[\"for\",{\"_index\":927,\"name\":{\"2807\":{}},\"comment\":{}}],[\"force\",{\"_index\":553,\"name\":{\"1630\":{},\"3038\":{}},\"comment\":{}}],[\"forceclear\",{\"_index\":1018,\"name\":{\"3039\":{}},\"comment\":{}}],[\"forceserverobjectid\",{\"_index\":18,\"name\":{\"18\":{},\"1826\":{},\"1996\":{},\"2053\":{},\"2630\":{}},\"comment\":{}}],[\"foreach\",{\"_index\":107,\"name\":{\"442\":{},\"511\":{},\"751\":{},\"857\":{},\"903\":{},\"1002\":{},\"1797\":{}},\"comment\":{}}],[\"freed\",{\"_index\":922,\"name\":{\"2804\":{}},\"comment\":{}}],[\"freestoragesize\",{\"_index\":907,\"name\":{\"2758\":{}},\"comment\":{}}],[\"fromhostport\",{\"_index\":1033,\"name\":{\"3084\":{}},\"comment\":{}}],[\"fromoptions\",{\"_index\":330,\"name\":{\"1066\":{},\"1086\":{},\"1101\":{}},\"comment\":{}}],[\"fromsrvrecord\",{\"_index\":1034,\"name\":{\"3085\":{}},\"comment\":{}}],[\"fromstring\",{\"_index\":344,\"name\":{\"1085\":{},\"3083\":{},\"3098\":{},\"3105\":{}},\"comment\":{}}],[\"fsync\",{\"_index\":356,\"name\":{\"1106\":{},\"3120\":{}},\"comment\":{}}],[\"full\",{\"_index\":798,\"name\":{\"2256\":{}},\"comment\":{}}],[\"fulldocument\",{\"_index\":466,\"name\":{\"1415\":{},\"1435\":{},\"1486\":{},\"1514\":{},\"1535\":{}},\"comment\":{}}],[\"fulldocumentbeforechange\",{\"_index\":454,\"name\":{\"1364\":{},\"1436\":{},\"1488\":{},\"1517\":{}},\"comment\":{}}],[\"gcp\",{\"_index\":617,\"name\":{\"1851\":{},\"1877\":{}},\"comment\":{}}],[\"generateidmap\",{\"_index\":403,\"name\":{\"1223\":{}},\"comment\":{}}],[\"generation\",{\"_index\":535,\"name\":{\"1603\":{}},\"comment\":{}}],[\"genericlistener\",{\"_index\":697,\"name\":{\"2071\":{}},\"comment\":{}}],[\"geointersects\",{\"_index\":727,\"name\":{\"2124\":{}},\"comment\":{}}],[\"geometry\",{\"_index\":728,\"name\":{\"2126\":{}},\"comment\":{}}],[\"geonear\",{\"_index\":155,\"name\":{\"496\":{},\"1782\":{}},\"comment\":{}}],[\"geowithin\",{\"_index\":729,\"name\":{\"2127\":{}},\"comment\":{}}],[\"getinsertedids\",{\"_index\":409,\"name\":{\"1241\":{}},\"comment\":{}}],[\"getmaxlisteners\",{\"_index\":130,\"name\":{\"467\":{},\"534\":{},\"550\":{},\"588\":{},\"630\":{},\"773\":{},\"799\":{},\"881\":{},\"927\":{},\"959\":{},\"1022\":{},\"1820\":{},\"2087\":{}},\"comment\":{}}],[\"getmoreoptions\",{\"_index\":310,\"name\":{\"975\":{}},\"comment\":{}}],[\"getoperation\",{\"_index\":431,\"name\":{\"1296\":{}},\"comment\":{}}],[\"getrawresponse\",{\"_index\":412,\"name\":{\"1244\":{}},\"comment\":{}}],[\"getupsertedidat\",{\"_index\":411,\"name\":{\"1243\":{}},\"comment\":{}}],[\"getupsertedids\",{\"_index\":410,\"name\":{\"1242\":{}},\"comment\":{}}],[\"getwriteconcernerror\",{\"_index\":417,\"name\":{\"1249\":{}},\"comment\":{}}],[\"getwriteerrorat\",{\"_index\":415,\"name\":{\"1247\":{}},\"comment\":{}}],[\"getwriteerrorcount\",{\"_index\":414,\"name\":{\"1246\":{}},\"comment\":{}}],[\"getwriteerrors\",{\"_index\":416,\"name\":{\"1248\":{}},\"comment\":{}}],[\"granularity\",{\"_index\":822,\"name\":{\"2350\":{}},\"comment\":{}}],[\"gridfsbucket\",{\"_index\":263,\"name\":{\"775\":{}},\"comment\":{}}],[\"gridfsbucketevents\",{\"_index\":651,\"name\":{\"1915\":{}},\"comment\":{}}],[\"gridfsbucketoptions\",{\"_index\":652,\"name\":{\"1918\":{}},\"comment\":{}}],[\"gridfsbucketreadstream\",{\"_index\":270,\"name\":{\"801\":{}},\"comment\":{}}],[\"gridfsbucketreadstreamoptions\",{\"_index\":643,\"name\":{\"1895\":{}},\"comment\":{}}],[\"gridfsbucketreadstreamoptionswithrevision\",{\"_index\":644,\"name\":{\"1900\":{}},\"comment\":{}}],[\"gridfsbucketwritestream\",{\"_index\":275,\"name\":{\"810\":{}},\"comment\":{}}],[\"gridfsbucketwritestreamoptions\",{\"_index\":654,\"name\":{\"1923\":{}},\"comment\":{}}],[\"gridfschunk\",{\"_index\":655,\"name\":{\"1930\":{}},\"comment\":{}}],[\"gridfsfile\",{\"_index\":646,\"name\":{\"1906\":{}},\"comment\":{}}],[\"group\",{\"_index\":145,\"name\":{\"486\":{},\"1772\":{}},\"comment\":{}}],[\"gssapicanonicalizationvalue\",{\"_index\":317,\"name\":{\"1038\":{},\"1039\":{}},\"comment\":{}}],[\"gt\",{\"_index\":714,\"name\":{\"2109\":{}},\"comment\":{}}],[\"gte\",{\"_index\":715,\"name\":{\"2110\":{}},\"comment\":{}}],[\"handlewriteerror\",{\"_index\":315,\"name\":{\"1025\":{}},\"comment\":{}}],[\"hasaggregationcursor\",{\"_index\":993,\"name\":{\"3000\":{}},\"comment\":{}}],[\"hasauthcommands\",{\"_index\":996,\"name\":{\"3003\":{}},\"comment\":{}}],[\"hasdatabearingservers\",{\"_index\":1012,\"name\":{\"3026\":{}},\"comment\":{}}],[\"hasended\",{\"_index\":171,\"name\":{\"591\":{}},\"comment\":{}}],[\"haserrorlabel\",{\"_index\":58,\"name\":{\"60\":{},\"71\":{},\"82\":{},\"93\":{},\"104\":{},\"115\":{},\"126\":{},\"137\":{},\"148\":{},\"159\":{},\"170\":{},\"181\":{},\"192\":{},\"203\":{},\"214\":{},\"225\":{},\"236\":{},\"247\":{},\"258\":{},\"269\":{},\"280\":{},\"291\":{},\"302\":{},\"313\":{},\"324\":{},\"339\":{},\"351\":{},\"363\":{},\"374\":{},\"385\":{},\"396\":{},\"407\":{},\"423\":{}},\"comment\":{}}],[\"hash\",{\"_index\":966,\"name\":{\"2930\":{}},\"comment\":{}}],[\"hasknownservers\",{\"_index\":1011,\"name\":{\"3025\":{}},\"comment\":{}}],[\"haslistcollectionscommand\",{\"_index\":997,\"name\":{\"3004\":{}},\"comment\":{}}],[\"haslistindexescommand\",{\"_index\":998,\"name\":{\"3005\":{}},\"comment\":{}}],[\"hasnext\",{\"_index\":104,\"name\":{\"439\":{},\"508\":{},\"568\":{},\"748\":{},\"854\":{},\"900\":{},\"999\":{},\"1794\":{}},\"comment\":{}}],[\"hasserviceid\",{\"_index\":365,\"name\":{\"1115\":{},\"1125\":{},\"1134\":{}},\"comment\":{}}],[\"hastextsearch\",{\"_index\":995,\"name\":{\"3002\":{}},\"comment\":{}}],[\"hastimedout\",{\"_index\":1021,\"name\":{\"3045\":{}},\"comment\":{}}],[\"haswritecommands\",{\"_index\":994,\"name\":{\"3001\":{}},\"comment\":{}}],[\"haswriteerrors\",{\"_index\":413,\"name\":{\"1245\":{}},\"comment\":{}}],[\"heartbeatfrequencyms\",{\"_index\":671,\"name\":{\"1976\":{},\"2045\":{},\"2935\":{},\"3021\":{},\"3028\":{}},\"comment\":{}}],[\"hedge\",{\"_index\":349,\"name\":{\"1092\":{},\"2915\":{},\"2922\":{},\"2925\":{}},\"comment\":{}}],[\"hedgeoptions\",{\"_index\":960,\"name\":{\"2910\":{}},\"comment\":{}}],[\"hidden\",{\"_index\":859,\"name\":{\"2565\":{},\"2589\":{}},\"comment\":{}}],[\"hint\",{\"_index\":197,\"name\":{\"640\":{},\"722\":{},\"1255\":{},\"1259\":{},\"1266\":{},\"1273\":{},\"1280\":{},\"1334\":{},\"1459\":{},\"1755\":{},\"2211\":{},\"2263\":{},\"2289\":{},\"2356\":{},\"2380\":{},\"2441\":{},\"2473\":{},\"2496\":{},\"2522\":{},\"2703\":{},\"2837\":{},\"2859\":{},\"2890\":{}},\"comment\":{}}],[\"host\",{\"_index\":985,\"name\":{\"2982\":{},\"3087\":{},\"3095\":{}},\"comment\":{}}],[\"hostaddress\",{\"_index\":536,\"name\":{\"1604\":{},\"1640\":{},\"2977\":{},\"3082\":{}},\"comment\":{}}],[\"hosts\",{\"_index\":685,\"name\":{\"2010\":{},\"2959\":{}},\"comment\":{}}],[\"id\",{\"_index\":96,\"name\":{\"428\":{},\"497\":{},\"601\":{},\"737\":{},\"820\":{},\"843\":{},\"889\":{},\"988\":{},\"1602\":{},\"1783\":{},\"1925\":{},\"3041\":{},\"3048\":{}},\"comment\":{}}],[\"idindex\",{\"_index\":873,\"name\":{\"2658\":{}},\"comment\":{}}],[\"idpserverinfo\",{\"_index\":510,\"name\":{\"1571\":{}},\"comment\":{}}],[\"idpserverresponse\",{\"_index\":514,\"name\":{\"1575\":{}},\"comment\":{}}],[\"in\",{\"_index\":716,\"name\":{\"2111\":{},\"2810\":{}},\"comment\":{}}],[\"includeresultmetadata\",{\"_index\":843,\"name\":{\"2477\":{},\"2502\":{},\"2528\":{}},\"comment\":{}}],[\"incrementtransactionnumber\",{\"_index\":187,\"name\":{\"610\":{}},\"comment\":{}}],[\"index\",{\"_index\":264,\"name\":{\"776\":{},\"1217\":{},\"1293\":{},\"1300\":{},\"1917\":{}},\"comment\":{}}],[\"indexbuilds\",{\"_index\":908,\"name\":{\"2759\":{}},\"comment\":{}}],[\"indexdescription\",{\"_index\":861,\"name\":{\"2582\":{}},\"comment\":{}}],[\"indexdetails\",{\"_index\":906,\"name\":{\"2756\":{}},\"comment\":{}}],[\"indexdirection\",{\"_index\":862,\"name\":{\"2604\":{}},\"comment\":{}}],[\"indexes\",{\"_index\":221,\"name\":{\"665\":{}},\"comment\":{}}],[\"indexexists\",{\"_index\":216,\"name\":{\"660\":{}},\"comment\":{}}],[\"indexinformation\",{\"_index\":217,\"name\":{\"661\":{},\"712\":{}},\"comment\":{}}],[\"indexinformationoptions\",{\"_index\":797,\"name\":{\"2255\":{}},\"comment\":{}}],[\"indexoptiondefaults\",{\"_index\":811,\"name\":{\"2320\":{}},\"comment\":{}}],[\"indexsizes\",{\"_index\":902,\"name\":{\"2749\":{}},\"comment\":{}}],[\"indexspecification\",{\"_index\":863,\"name\":{\"2605\":{}},\"comment\":{}}],[\"inferidtype\",{\"_index\":741,\"name\":{\"2140\":{}},\"comment\":{}}],[\"info\",{\"_index\":870,\"name\":{\"2654\":{}},\"comment\":{}}],[\"init\",{\"_index\":160,\"name\":{\"555\":{},\"1835\":{}},\"comment\":{}}],[\"initializeorderedbulkop\",{\"_index\":229,\"name\":{\"673\":{}},\"comment\":{}}],[\"initializeunorderedbulkop\",{\"_index\":228,\"name\":{\"672\":{}},\"comment\":{}}],[\"insert\",{\"_index\":306,\"name\":{\"965\":{},\"1029\":{},\"1316\":{},\"2818\":{},\"2820\":{},\"2823\":{}},\"comment\":{}}],[\"inserted\",{\"_index\":941,\"name\":{\"2820\":{}},\"comment\":{}}],[\"insertedcount\",{\"_index\":42,\"name\":{\"42\":{},\"1226\":{},\"2625\":{}},\"comment\":{}}],[\"insertedid\",{\"_index\":868,\"name\":{\"2649\":{}},\"comment\":{}}],[\"insertedids\",{\"_index\":47,\"name\":{\"47\":{},\"1233\":{},\"2626\":{}},\"comment\":{}}],[\"insertmany\",{\"_index\":199,\"name\":{\"642\":{}},\"comment\":{}}],[\"insertmanyresult\",{\"_index\":865,\"name\":{\"2623\":{}},\"comment\":{}}],[\"insertone\",{\"_index\":198,\"name\":{\"641\":{}},\"comment\":{}}],[\"insertonemodel\",{\"_index\":422,\"name\":{\"1260\":{}},\"comment\":{}}],[\"insertoneoptions\",{\"_index\":866,\"name\":{\"2628\":{}},\"comment\":{}}],[\"insertoneresult\",{\"_index\":867,\"name\":{\"2647\":{}},\"comment\":{}}],[\"inspect\",{\"_index\":1037,\"name\":{\"3091\":{}},\"comment\":{}}],[\"int32\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"integertype\",{\"_index\":742,\"name\":{\"2141\":{}},\"comment\":{}}],[\"interruptinuseconnections\",{\"_index\":378,\"name\":{\"1161\":{}},\"comment\":{}}],[\"intransaction\",{\"_index\":188,\"name\":{\"611\":{}},\"comment\":{}}],[\"isactive\",{\"_index\":1027,\"name\":{\"3058\":{}},\"comment\":{}}],[\"isany\",{\"_index\":743,\"name\":{\"2142\":{}},\"comment\":{}}],[\"iscapped\",{\"_index\":210,\"name\":{\"654\":{}},\"comment\":{}}],[\"iscommitted\",{\"_index\":1028,\"name\":{\"3059\":{}},\"comment\":{}}],[\"isdatabearing\",{\"_index\":983,\"name\":{\"2980\":{}},\"comment\":{}}],[\"isdirty\",{\"_index\":1020,\"name\":{\"3044\":{}},\"comment\":{}}],[\"isipv6\",{\"_index\":1036,\"name\":{\"3090\":{}},\"comment\":{}}],[\"isok\",{\"_index\":419,\"name\":{\"1251\":{}},\"comment\":{}}],[\"isordered\",{\"_index\":304,\"name\":{\"963\":{},\"1027\":{},\"1314\":{}},\"comment\":{}}],[\"ispinned\",{\"_index\":182,\"name\":{\"605\":{},\"3056\":{}},\"comment\":{}}],[\"isreadable\",{\"_index\":982,\"name\":{\"2979\":{}},\"comment\":{}}],[\"isstarting\",{\"_index\":1026,\"name\":{\"3057\":{}},\"comment\":{}}],[\"issuer\",{\"_index\":511,\"name\":{\"1572\":{}},\"comment\":{}}],[\"isvalid\",{\"_index\":346,\"name\":{\"1088\":{},\"1096\":{}},\"comment\":{}}],[\"iswritable\",{\"_index\":984,\"name\":{\"2981\":{}},\"comment\":{}}],[\"j\",{\"_index\":355,\"name\":{\"1105\":{},\"3118\":{}},\"comment\":{}}],[\"join\",{\"_index\":744,\"name\":{\"2143\":{}},\"comment\":{}}],[\"journal\",{\"_index\":676,\"name\":{\"1985\":{},\"3117\":{}},\"comment\":{}}],[\"jsonschema\",{\"_index\":724,\"name\":{\"2120\":{}},\"comment\":{}}],[\"keepalive\",{\"_index\":540,\"name\":{\"1611\":{},\"1650\":{},\"1994\":{},\"2051\":{},\"2947\":{}},\"comment\":{}}],[\"keepaliveinitialdelay\",{\"_index\":541,\"name\":{\"1612\":{},\"1651\":{},\"1995\":{},\"2052\":{},\"2948\":{}},\"comment\":{}}],[\"key\",{\"_index\":615,\"name\":{\"1849\":{},\"2308\":{},\"2585\":{},\"2820\":{},\"2821\":{}},\"comment\":{}}],[\"keyid\",{\"_index\":967,\"name\":{\"2931\":{}},\"comment\":{}}],[\"keysofatype\",{\"_index\":745,\"name\":{\"2144\":{}},\"comment\":{}}],[\"keysofothertype\",{\"_index\":746,\"name\":{\"2145\":{}},\"comment\":{}}],[\"keyvaultclient\",{\"_index\":610,\"name\":{\"1842\":{}},\"comment\":{}}],[\"keyvaultnamespace\",{\"_index\":611,\"name\":{\"1843\":{}},\"comment\":{}}],[\"killed\",{\"_index\":99,\"name\":{\"434\":{},\"503\":{},\"743\":{},\"849\":{},\"895\":{},\"994\":{},\"1789\":{}},\"comment\":{}}],[\"kmip\",{\"_index\":618,\"name\":{\"1852\":{},\"1878\":{}},\"comment\":{}}],[\"kmsproviders\",{\"_index\":612,\"name\":{\"1844\":{}},\"comment\":{}}],[\"language\",{\"_index\":768,\"name\":{\"2168\":{}},\"comment\":{}}],[\"language_override\",{\"_index\":853,\"name\":{\"2557\":{},\"2598\":{}},\"comment\":{}}],[\"lasterrorobject\",{\"_index\":588,\"name\":{\"1716\":{}},\"comment\":{}}],[\"lastextentsize\",{\"_index\":898,\"name\":{\"2745\":{}},\"comment\":{}}],[\"lastupdatetime\",{\"_index\":975,\"name\":{\"2968\":{}},\"comment\":{}}],[\"lastuse\",{\"_index\":1019,\"name\":{\"3042\":{}},\"comment\":{}}],[\"lastwritedate\",{\"_index\":976,\"name\":{\"2969\":{}},\"comment\":{}}],[\"legal_tcp_socket_options\",{\"_index\":524,\"name\":{\"1588\":{}},\"comment\":{}}],[\"legal_tls_socket_options\",{\"_index\":525,\"name\":{\"1589\":{}},\"comment\":{}}],[\"length\",{\"_index\":284,\"name\":{\"823\":{},\"1908\":{}},\"comment\":{}}],[\"let\",{\"_index\":19,\"name\":{\"19\":{},\"1462\":{},\"1756\":{},\"2212\":{},\"2290\":{},\"2357\":{},\"2457\":{},\"2476\":{},\"2501\":{},\"2527\":{},\"2839\":{},\"2861\":{}},\"comment\":{}}],[\"level\",{\"_index\":335,\"name\":{\"1072\":{}},\"comment\":{}}],[\"limit\",{\"_index\":146,\"name\":{\"487\":{},\"735\":{},\"1773\":{},\"2261\":{},\"2281\":{},\"2378\":{},\"2437\":{}},\"comment\":{}}],[\"linearizable\",{\"_index\":333,\"name\":{\"1069\":{}},\"comment\":{}}],[\"listcollections\",{\"_index\":246,\"name\":{\"702\":{}},\"comment\":{}}],[\"listcollectionscursor\",{\"_index\":293,\"name\":{\"836\":{}},\"comment\":{}}],[\"listcollectionsoptions\",{\"_index\":874,\"name\":{\"2659\":{}},\"comment\":{}}],[\"listdatabases\",{\"_index\":141,\"name\":{\"478\":{}},\"comment\":{}}],[\"listdatabasesoptions\",{\"_index\":877,\"name\":{\"2678\":{}},\"comment\":{}}],[\"listdatabasesresult\",{\"_index\":879,\"name\":{\"2698\":{}},\"comment\":{}}],[\"listenercount\",{\"_index\":126,\"name\":{\"463\":{},\"530\":{},\"546\":{},\"584\":{},\"626\":{},\"769\":{},\"795\":{},\"877\":{},\"923\":{},\"955\":{},\"1018\":{},\"1816\":{},\"2083\":{}},\"comment\":{}}],[\"listeners\",{\"_index\":123,\"name\":{\"460\":{},\"527\":{},\"543\":{},\"581\":{},\"623\":{},\"766\":{},\"792\":{},\"874\":{},\"920\":{},\"952\":{},\"1015\":{},\"1813\":{},\"2080\":{}},\"comment\":{}}],[\"listindexes\",{\"_index\":215,\"name\":{\"659\":{}},\"comment\":{}}],[\"listindexescursor\",{\"_index\":294,\"name\":{\"883\":{}},\"comment\":{}}],[\"listindexesoptions\",{\"_index\":864,\"name\":{\"2606\":{}},\"comment\":{}}],[\"listsearchindexes\",{\"_index\":231,\"name\":{\"675\":{}},\"comment\":{}}],[\"listsearchindexescursor\",{\"_index\":599,\"name\":{\"1766\":{}},\"comment\":{}}],[\"listsearchindexesoptions\",{\"_index\":600,\"name\":{\"1822\":{}},\"comment\":{}}],[\"loadbalanced\",{\"_index\":100,\"name\":{\"435\":{},\"504\":{},\"604\":{},\"744\":{},\"850\":{},\"896\":{},\"995\":{},\"1619\":{},\"1638\":{},\"1699\":{},\"1706\":{},\"1790\":{},\"1982\":{},\"2015\":{},\"2938\":{}},\"comment\":{}}],[\"loaded\",{\"_index\":938,\"name\":{\"2818\":{}},\"comment\":{}}],[\"local\",{\"_index\":614,\"name\":{\"1847\":{},\"1875\":{}},\"comment\":{}}],[\"locale\",{\"_index\":787,\"name\":{\"2229\":{}},\"comment\":{}}],[\"localthresholdms\",{\"_index\":669,\"name\":{\"1974\":{},\"2043\":{},\"3022\":{},\"3029\":{}},\"comment\":{}}],[\"logger\",{\"_index\":624,\"name\":{\"1861\":{}},\"comment\":{}}],[\"logicalsessiontimeoutminutes\",{\"_index\":546,\"name\":{\"1618\":{},\"1657\":{},\"1698\":{},\"1705\":{},\"2954\":{},\"2975\":{},\"3020\":{}},\"comment\":{}}],[\"long\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"lookup\",{\"_index\":150,\"name\":{\"491\":{},\"1777\":{}},\"comment\":{}}],[\"lsid\",{\"_index\":447,\"name\":{\"1344\":{},\"1351\":{},\"1358\":{},\"1368\":{},\"1380\":{},\"1395\":{},\"1402\":{},\"1409\":{},\"1420\":{},\"1430\":{},\"1469\":{},\"1482\":{},\"1492\":{},\"1501\":{},\"1509\":{},\"1521\":{}},\"comment\":{}}],[\"lsm\",{\"_index\":914,\"name\":{\"2799\":{}},\"comment\":{}}],[\"lt\",{\"_index\":717,\"name\":{\"2112\":{}},\"comment\":{}}],[\"lte\",{\"_index\":718,\"name\":{\"2113\":{}},\"comment\":{}}],[\"magic\",{\"_index\":929,\"name\":{\"2808\":{}},\"comment\":{}}],[\"major\",{\"_index\":931,\"name\":{\"2809\":{}},\"comment\":{}}],[\"majority\",{\"_index\":331,\"name\":{\"1067\":{}},\"comment\":{}}],[\"manager\",{\"_index\":916,\"name\":{\"2800\":{}},\"comment\":{}}],[\"map\",{\"_index\":110,\"name\":{\"446\":{},\"484\":{},\"718\":{},\"861\":{},\"907\":{},\"1005\":{},\"1770\":{}},\"comment\":{}}],[\"match\",{\"_index\":147,\"name\":{\"488\":{},\"1774\":{}},\"comment\":{}}],[\"matchedcount\",{\"_index\":43,\"name\":{\"43\":{},\"1227\":{},\"2879\":{}},\"comment\":{}}],[\"matchkeysandvalues\",{\"_index\":747,\"name\":{\"2146\":{}},\"comment\":{}}],[\"max\",{\"_index\":257,\"name\":{\"724\":{},\"2314\":{},\"2448\":{},\"2562\":{},\"2586\":{},\"2753\":{}},\"comment\":{}}],[\"maxawaittimems\",{\"_index\":261,\"name\":{\"729\":{},\"978\":{},\"1437\":{},\"1530\":{},\"1728\":{},\"1744\":{},\"2209\":{},\"2287\":{},\"2450\":{}},\"comment\":{}}],[\"maxbsonobjectsize\",{\"_index\":577,\"name\":{\"1693\":{}},\"comment\":{}}],[\"maxcommittimems\",{\"_index\":1030,\"name\":{\"3064\":{}},\"comment\":{}}],[\"maxconnecting\",{\"_index\":558,\"name\":{\"1635\":{},\"1962\":{},\"2040\":{}},\"comment\":{}}],[\"maxdistance\",{\"_index\":732,\"name\":{\"2130\":{}},\"comment\":{}}],[\"maxelectionid\",{\"_index\":1005,\"name\":{\"3015\":{}},\"comment\":{}}],[\"maxidletimems\",{\"_index\":559,\"name\":{\"1636\":{},\"1963\":{},\"2041\":{}},\"comment\":{}}],[\"maxkey\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"maxmessagesizebytes\",{\"_index\":578,\"name\":{\"1694\":{}},\"comment\":{}}],[\"maxpoolsize\",{\"_index\":556,\"name\":{\"1633\":{},\"1960\":{},\"2039\":{}},\"comment\":{}}],[\"maxsetversion\",{\"_index\":1004,\"name\":{\"3014\":{}},\"comment\":{}}],[\"maxsize\",{\"_index\":904,\"name\":{\"2754\":{}},\"comment\":{}}],[\"maxstalenessseconds\",{\"_index\":350,\"name\":{\"1093\":{},\"1968\":{},\"2917\":{},\"2921\":{},\"2924\":{}},\"comment\":{}}],[\"maxtimems\",{\"_index\":22,\"name\":{\"22\":{},\"449\":{},\"517\":{},\"730\":{},\"864\":{},\"910\":{},\"986\":{},\"1454\":{},\"1727\":{},\"1743\":{},\"1803\":{},\"2186\":{},\"2208\":{},\"2241\":{},\"2262\":{},\"2286\":{},\"2333\":{},\"2359\":{},\"2386\":{},\"2402\":{},\"2422\":{},\"2449\":{},\"2480\":{},\"2505\":{},\"2531\":{},\"2576\":{},\"2618\":{},\"2633\":{},\"2673\":{},\"2684\":{},\"2718\":{},\"2766\":{},\"2784\":{},\"2841\":{},\"2863\":{},\"2895\":{},\"3066\":{}},\"comment\":{}}],[\"maxvariable\",{\"_index\":793,\"name\":{\"2235\":{}},\"comment\":{}}],[\"maxwireversion\",{\"_index\":576,\"name\":{\"1692\":{},\"2966\":{},\"2998\":{}},\"comment\":{}}],[\"maxwritebatchsize\",{\"_index\":579,\"name\":{\"1695\":{}},\"comment\":{}}],[\"me\",{\"_index\":977,\"name\":{\"2970\":{}},\"comment\":{}}],[\"mechanism\",{\"_index\":505,\"name\":{\"1559\":{},\"1569\":{}},\"comment\":{}}],[\"mechanismproperties\",{\"_index\":506,\"name\":{\"1560\":{},\"1570\":{}},\"comment\":{}}],[\"memory_mb\",{\"_index\":569,\"name\":{\"1677\":{}},\"comment\":{}}],[\"merge\",{\"_index\":501,\"name\":{\"1554\":{}},\"comment\":{}}],[\"message\",{\"_index\":531,\"name\":{\"1598\":{},\"1885\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":544,\"name\":{\"1616\":{},\"1656\":{},\"1913\":{},\"1926\":{},\"2020\":{},\"2953\":{}},\"comment\":{}}],[\"metafield\",{\"_index\":821,\"name\":{\"2349\":{}},\"comment\":{}}],[\"min\",{\"_index\":256,\"name\":{\"723\":{},\"2447\":{},\"2561\":{},\"2587\":{}},\"comment\":{}}],[\"minheartbeatfrequencyms\",{\"_index\":672,\"name\":{\"1977\":{},\"2046\":{},\"2936\":{}},\"comment\":{}}],[\"minkey\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"minor\",{\"_index\":932,\"name\":{\"2811\":{}},\"comment\":{}}],[\"minpoolsize\",{\"_index\":557,\"name\":{\"1634\":{},\"1961\":{},\"2029\":{}},\"comment\":{}}],[\"minwireversion\",{\"_index\":351,\"name\":{\"1094\":{},\"1691\":{},\"2965\":{},\"2999\":{}},\"comment\":{}}],[\"mod\",{\"_index\":725,\"name\":{\"2121\":{}},\"comment\":{}}],[\"mode\",{\"_index\":347,\"name\":{\"1090\":{}},\"comment\":{}}],[\"modifiedcount\",{\"_index\":44,\"name\":{\"44\":{},\"1228\":{},\"2880\":{}},\"comment\":{}}],[\"modifyresult\",{\"_index\":586,\"name\":{\"1714\":{}},\"comment\":{}}],[\"mongo_client_events\",{\"_index\":589,\"name\":{\"1718\":{}},\"comment\":{}}],[\"mongoapierror\",{\"_index\":61,\"name\":{\"63\":{}},\"comment\":{}}],[\"mongoawserror\",{\"_index\":62,\"name\":{\"74\":{}},\"comment\":{}}],[\"mongoazureerror\",{\"_index\":63,\"name\":{\"85\":{}},\"comment\":{}}],[\"mongobatchreexecutionerror\",{\"_index\":64,\"name\":{\"96\":{}},\"comment\":{}}],[\"mongobulkwriteerror\",{\"_index\":36,\"name\":{\"36\":{}},\"comment\":{}}],[\"mongochangestreamerror\",{\"_index\":65,\"name\":{\"107\":{}},\"comment\":{}}],[\"mongoclient\",{\"_index\":295,\"name\":{\"929\":{}},\"comment\":{}}],[\"mongoclientevents\",{\"_index\":658,\"name\":{\"1942\":{}},\"comment\":{}}],[\"mongoclientoptions\",{\"_index\":659,\"name\":{\"1943\":{}},\"comment\":{}}],[\"mongocompatibilityerror\",{\"_index\":66,\"name\":{\"118\":{}},\"comment\":{}}],[\"mongocredentials\",{\"_index\":500,\"name\":{\"1553\":{}},\"comment\":{}}],[\"mongocredentialsoptions\",{\"_index\":509,\"name\":{\"1564\":{}},\"comment\":{}}],[\"mongocryptdbypassspawn\",{\"_index\":627,\"name\":{\"1866\":{}},\"comment\":{}}],[\"mongocryptdspawnargs\",{\"_index\":629,\"name\":{\"1868\":{}},\"comment\":{}}],[\"mongocryptdspawnpath\",{\"_index\":628,\"name\":{\"1867\":{}},\"comment\":{}}],[\"mongocryptduri\",{\"_index\":626,\"name\":{\"1865\":{}},\"comment\":{}}],[\"mongocursorexhaustederror\",{\"_index\":67,\"name\":{\"129\":{}},\"comment\":{}}],[\"mongocursorinuseerror\",{\"_index\":68,\"name\":{\"140\":{}},\"comment\":{}}],[\"mongodbcollectionnamespace\",{\"_index\":1039,\"name\":{\"3097\":{}},\"comment\":{}}],[\"mongodbnamespace\",{\"_index\":1041,\"name\":{\"3104\":{}},\"comment\":{}}],[\"mongodecompressionerror\",{\"_index\":69,\"name\":{\"151\":{}},\"comment\":{}}],[\"mongodrivererror\",{\"_index\":70,\"name\":{\"162\":{}},\"comment\":{}}],[\"mongoerror\",{\"_index\":71,\"name\":{\"173\":{}},\"comment\":{}}],[\"mongoerrorlabel\",{\"_index\":322,\"name\":{\"1047\":{},\"1048\":{}},\"comment\":{}}],[\"mongoexpiredsessionerror\",{\"_index\":72,\"name\":{\"184\":{}},\"comment\":{}}],[\"mongogridfschunkerror\",{\"_index\":73,\"name\":{\"195\":{}},\"comment\":{}}],[\"mongogridfsstreamerror\",{\"_index\":74,\"name\":{\"206\":{}},\"comment\":{}}],[\"mongoinvalidargumenterror\",{\"_index\":75,\"name\":{\"217\":{}},\"comment\":{}}],[\"mongokerberoserror\",{\"_index\":76,\"name\":{\"228\":{}},\"comment\":{}}],[\"mongomissingcredentialserror\",{\"_index\":77,\"name\":{\"239\":{}},\"comment\":{}}],[\"mongomissingdependencyerror\",{\"_index\":78,\"name\":{\"250\":{}},\"comment\":{}}],[\"mongonetworkerror\",{\"_index\":79,\"name\":{\"261\":{}},\"comment\":{}}],[\"mongonetworkerroroptions\",{\"_index\":639,\"name\":{\"1890\":{}},\"comment\":{}}],[\"mongonetworktimeouterror\",{\"_index\":80,\"name\":{\"272\":{}},\"comment\":{}}],[\"mongonotconnectederror\",{\"_index\":81,\"name\":{\"283\":{}},\"comment\":{}}],[\"mongooptions\",{\"_index\":684,\"name\":{\"2008\":{}},\"comment\":{}}],[\"mongoparseerror\",{\"_index\":82,\"name\":{\"294\":{}},\"comment\":{}}],[\"mongoruntimeerror\",{\"_index\":83,\"name\":{\"305\":{}},\"comment\":{}}],[\"mongoserverclosederror\",{\"_index\":84,\"name\":{\"316\":{}},\"comment\":{}}],[\"mongoservererror\",{\"_index\":85,\"name\":{\"327\":{}},\"comment\":{}}],[\"mongoserverselectionerror\",{\"_index\":86,\"name\":{\"342\":{}},\"comment\":{}}],[\"mongosystemerror\",{\"_index\":88,\"name\":{\"354\":{}},\"comment\":{}}],[\"mongotailablecursorerror\",{\"_index\":89,\"name\":{\"366\":{}},\"comment\":{}}],[\"mongotopologyclosederror\",{\"_index\":90,\"name\":{\"377\":{}},\"comment\":{}}],[\"mongotransactionerror\",{\"_index\":91,\"name\":{\"388\":{}},\"comment\":{}}],[\"mongounexpectedserverresponseerror\",{\"_index\":92,\"name\":{\"399\":{}},\"comment\":{}}],[\"mongowriteconcernerror\",{\"_index\":93,\"name\":{\"410\":{}},\"comment\":{}}],[\"monitorcommands\",{\"_index\":298,\"name\":{\"934\":{},\"1607\":{},\"1652\":{},\"1998\":{},\"2055\":{},\"2949\":{}},\"comment\":{}}],[\"monitorevents\",{\"_index\":968,\"name\":{\"2932\":{}},\"comment\":{}}],[\"monitoroptions\",{\"_index\":969,\"name\":{\"2933\":{}},\"comment\":{}}],[\"more\",{\"_index\":159,\"name\":{\"554\":{}},\"comment\":{}}],[\"multi\",{\"_index\":957,\"name\":{\"2887\":{}},\"comment\":{}}],[\"n\",{\"_index\":285,\"name\":{\"824\":{},\"1933\":{}},\"comment\":{}}],[\"name\",{\"_index\":41,\"name\":{\"41\":{},\"65\":{},\"76\":{},\"87\":{},\"98\":{},\"109\":{},\"120\":{},\"131\":{},\"142\":{},\"153\":{},\"164\":{},\"179\":{},\"186\":{},\"197\":{},\"208\":{},\"219\":{},\"230\":{},\"241\":{},\"252\":{},\"263\":{},\"274\":{},\"285\":{},\"296\":{},\"307\":{},\"318\":{},\"333\":{},\"344\":{},\"357\":{},\"368\":{},\"379\":{},\"390\":{},\"401\":{},\"413\":{},\"1661\":{},\"1666\":{},\"1672\":{},\"1675\":{},\"1683\":{},\"1939\":{},\"2307\":{},\"2548\":{},\"2584\":{},\"2651\":{},\"2734\":{}},\"comment\":{}}],[\"nameonly\",{\"_index\":875,\"name\":{\"2660\":{},\"2680\":{}},\"comment\":{}}],[\"namespace\",{\"_index\":97,\"name\":{\"429\":{},\"498\":{},\"564\":{},\"635\":{},\"695\":{},\"738\":{},\"844\":{},\"890\":{},\"989\":{},\"1784\":{}},\"comment\":{}}],[\"ne\",{\"_index\":719,\"name\":{\"2114\":{}},\"comment\":{}}],[\"near\",{\"_index\":730,\"name\":{\"2128\":{},\"2830\":{}},\"comment\":{}}],[\"nearest\",{\"_index\":341,\"name\":{\"1079\":{},\"1084\":{}},\"comment\":{}}],[\"nearsphere\",{\"_index\":731,\"name\":{\"2129\":{}},\"comment\":{}}],[\"nestedpaths\",{\"_index\":748,\"name\":{\"2147\":{}},\"comment\":{}}],[\"nestedpathsoftype\",{\"_index\":749,\"name\":{\"2148\":{}},\"comment\":{}}],[\"new_collection\",{\"_index\":888,\"name\":{\"2715\":{}},\"comment\":{}}],[\"newdescription\",{\"_index\":388,\"name\":{\"1188\":{},\"1207\":{}},\"comment\":{}}],[\"next\",{\"_index\":105,\"name\":{\"440\":{},\"509\":{},\"569\":{},\"749\":{},\"855\":{},\"901\":{},\"1000\":{},\"1795\":{},\"2824\":{}},\"comment\":{}}],[\"nin\",{\"_index\":720,\"name\":{\"2115\":{}},\"comment\":{}}],[\"nindexes\",{\"_index\":897,\"name\":{\"2744\":{}},\"comment\":{}}],[\"ninserted\",{\"_index\":404,\"name\":{\"1236\":{}},\"comment\":{}}],[\"nmatched\",{\"_index\":406,\"name\":{\"1238\":{}},\"comment\":{}}],[\"nmodified\",{\"_index\":407,\"name\":{\"1239\":{}},\"comment\":{}}],[\"nocursortimeout\",{\"_index\":594,\"name\":{\"1732\":{},\"1748\":{},\"2451\":{}},\"comment\":{}}],[\"nodelay\",{\"_index\":542,\"name\":{\"1613\":{},\"1649\":{},\"1993\":{},\"2050\":{},\"2946\":{}},\"comment\":{}}],[\"nolock\",{\"_index\":835,\"name\":{\"2419\":{}},\"comment\":{}}],[\"nonobjectidlikedocument\",{\"_index\":750,\"name\":{\"2149\":{}},\"comment\":{}}],[\"nor\",{\"_index\":764,\"name\":{\"2163\":{}},\"comment\":{}}],[\"noresponse\",{\"_index\":27,\"name\":{\"27\":{},\"1458\":{},\"1761\":{},\"2191\":{},\"2219\":{},\"2246\":{},\"2270\":{},\"2297\":{},\"2338\":{},\"2364\":{},\"2391\":{},\"2409\":{},\"2427\":{},\"2471\":{},\"2485\":{},\"2510\":{},\"2536\":{},\"2580\":{},\"2622\":{},\"2638\":{},\"2677\":{},\"2689\":{},\"2723\":{},\"2771\":{},\"2789\":{},\"2846\":{},\"2868\":{},\"2900\":{},\"3071\":{}},\"comment\":{}}],[\"normalization\",{\"_index\":795,\"name\":{\"2237\":{}},\"comment\":{}}],[\"not\",{\"_index\":721,\"name\":{\"2116\":{}},\"comment\":{}}],[\"notacceptedfields\",{\"_index\":751,\"name\":{\"2150\":{}},\"comment\":{}}],[\"nremoved\",{\"_index\":408,\"name\":{\"1240\":{}},\"comment\":{}}],[\"ns\",{\"_index\":453,\"name\":{\"1363\":{},\"1389\":{},\"1398\":{},\"1416\":{},\"1478\":{},\"1487\":{},\"1516\":{},\"2738\":{}},\"comment\":{}}],[\"number\",{\"_index\":930,\"name\":{\"2808\":{},\"2809\":{},\"2811\":{}},\"comment\":{}}],[\"numericordering\",{\"_index\":791,\"name\":{\"2233\":{}},\"comment\":{}}],[\"numerictype\",{\"_index\":752,\"name\":{\"2151\":{}},\"comment\":{}}],[\"numextents\",{\"_index\":896,\"name\":{\"2743\":{}},\"comment\":{}}],[\"nupserted\",{\"_index\":405,\"name\":{\"1237\":{}},\"comment\":{}}],[\"objectid\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"off\",{\"_index\":121,\"name\":{\"458\":{},\"525\":{},\"541\":{},\"579\":{},\"621\":{},\"764\":{},\"790\":{},\"872\":{},\"918\":{},\"950\":{},\"1013\":{},\"1811\":{},\"2078\":{}},\"comment\":{}}],[\"oidccallbackcontext\",{\"_index\":518,\"name\":{\"1579\":{}},\"comment\":{}}],[\"oidcrefreshfunction\",{\"_index\":522,\"name\":{\"1584\":{}},\"comment\":{}}],[\"oidcrequestfunction\",{\"_index\":523,\"name\":{\"1586\":{}},\"comment\":{}}],[\"ok\",{\"_index\":53,\"name\":{\"54\":{},\"332\":{},\"417\":{},\"1235\":{},\"1717\":{},\"2702\":{},\"2757\":{}},\"comment\":{}}],[\"omitreadpreference\",{\"_index\":31,\"name\":{\"31\":{},\"1452\":{},\"1763\":{},\"2195\":{},\"2223\":{},\"2250\":{},\"2274\":{},\"2301\":{},\"2342\":{},\"2368\":{},\"2395\":{},\"2413\":{},\"2431\":{},\"2467\":{},\"2489\":{},\"2514\":{},\"2540\":{},\"2574\":{},\"2616\":{},\"2642\":{},\"2671\":{},\"2693\":{},\"2708\":{},\"2727\":{},\"2775\":{},\"2793\":{},\"2850\":{},\"2872\":{},\"2904\":{},\"3074\":{}},\"comment\":{}}],[\"on\",{\"_index\":118,\"name\":{\"455\":{},\"522\":{},\"538\":{},\"576\":{},\"618\":{},\"761\":{},\"787\":{},\"869\":{},\"915\":{},\"947\":{},\"1010\":{},\"1808\":{},\"2075\":{}},\"comment\":{}}],[\"once\",{\"_index\":119,\"name\":{\"456\":{},\"523\":{},\"539\":{},\"577\":{},\"619\":{},\"762\":{},\"788\":{},\"870\":{},\"916\":{},\"948\":{},\"1011\":{},\"1809\":{},\"2076\":{}},\"comment\":{}}],[\"oneormore\",{\"_index\":753,\"name\":{\"2152\":{}},\"comment\":{}}],[\"onlyfieldsoftype\",{\"_index\":754,\"name\":{\"2153\":{}},\"comment\":{}}],[\"op\",{\"_index\":401,\"name\":{\"1221\":{},\"1302\":{}},\"comment\":{}}],[\"opendownloadstream\",{\"_index\":267,\"name\":{\"780\":{}},\"comment\":{}}],[\"opendownloadstreambyname\",{\"_index\":269,\"name\":{\"783\":{}},\"comment\":{}}],[\"openuploadstream\",{\"_index\":265,\"name\":{\"778\":{}},\"comment\":{}}],[\"openuploadstreamwithid\",{\"_index\":266,\"name\":{\"779\":{}},\"comment\":{}}],[\"operationdescription\",{\"_index\":451,\"name\":{\"1360\":{},\"1386\":{},\"1411\":{},\"1471\":{},\"1503\":{},\"1511\":{}},\"comment\":{}}],[\"operationid\",{\"_index\":305,\"name\":{\"964\":{},\"1028\":{},\"1315\":{}},\"comment\":{}}],[\"operationoptions\",{\"_index\":883,\"name\":{\"2704\":{}},\"comment\":{}}],[\"operations\",{\"_index\":436,\"name\":{\"1310\":{}},\"comment\":{}}],[\"operationtime\",{\"_index\":176,\"name\":{\"597\":{},\"1526\":{}},\"comment\":{}}],[\"operationtype\",{\"_index\":444,\"name\":{\"1340\":{},\"1347\":{},\"1354\":{},\"1362\":{},\"1388\":{},\"1397\":{},\"1405\":{},\"1414\":{},\"1426\":{},\"1465\":{},\"1473\":{},\"1485\":{},\"1497\":{},\"1505\":{},\"1513\":{}},\"comment\":{}}],[\"oplogreplay\",{\"_index\":841,\"name\":{\"2458\":{}},\"comment\":{}}],[\"optionalid\",{\"_index\":755,\"name\":{\"2154\":{}},\"comment\":{}}],[\"optionalunlessrequiredid\",{\"_index\":756,\"name\":{\"2155\":{}},\"comment\":{}}],[\"options\",{\"_index\":165,\"name\":{\"562\":{},\"653\":{},\"689\":{},\"818\":{},\"841\":{},\"887\":{},\"932\":{},\"1168\":{},\"1859\":{},\"2123\":{},\"2653\":{},\"3054\":{}},\"comment\":{}}],[\"or\",{\"_index\":765,\"name\":{\"2164\":{}},\"comment\":{}}],[\"ordered\",{\"_index\":17,\"name\":{\"17\":{},\"2354\":{}},\"comment\":{}}],[\"orderedbulkoperation\",{\"_index\":302,\"name\":{\"961\":{}},\"comment\":{}}],[\"originalindexes\",{\"_index\":435,\"name\":{\"1308\":{}},\"comment\":{}}],[\"originalzeroindex\",{\"_index\":433,\"name\":{\"1306\":{}},\"comment\":{}}],[\"os\",{\"_index\":563,\"name\":{\"1663\":{}},\"comment\":{}}],[\"out\",{\"_index\":148,\"name\":{\"489\":{},\"1463\":{},\"1757\":{},\"1775\":{},\"2213\":{},\"2291\":{}},\"comment\":{}}],[\"outstandingrequests\",{\"_index\":289,\"name\":{\"829\":{}},\"comment\":{}}],[\"paddingfactor\",{\"_index\":899,\"name\":{\"2746\":{}},\"comment\":{}}],[\"parent\",{\"_index\":166,\"name\":{\"563\":{},\"839\":{},\"886\":{}},\"comment\":{}}],[\"partialfilterexpression\",{\"_index\":848,\"name\":{\"2549\":{},\"2592\":{}},\"comment\":{}}],[\"passives\",{\"_index\":972,\"name\":{\"2960\":{}},\"comment\":{}}],[\"password\",{\"_index\":503,\"name\":{\"1557\":{},\"1566\":{},\"1937\":{}},\"comment\":{}}],[\"ping\",{\"_index\":137,\"name\":{\"474\":{}},\"comment\":{}}],[\"pinned\",{\"_index\":532,\"name\":{\"1599\":{}},\"comment\":{}}],[\"pipeline\",{\"_index\":144,\"name\":{\"482\":{},\"561\":{},\"1768\":{},\"2322\":{}},\"comment\":{}}],[\"pkfactory\",{\"_index\":604,\"name\":{\"1828\":{},\"1997\":{},\"2054\":{},\"2057\":{},\"2323\":{}},\"comment\":{}}],[\"platform\",{\"_index\":565,\"name\":{\"1669\":{},\"1685\":{},\"1941\":{}},\"comment\":{}}],[\"port\",{\"_index\":986,\"name\":{\"2983\":{},\"3088\":{},\"3096\":{}},\"comment\":{}}],[\"pos\",{\"_index\":286,\"name\":{\"825\":{}},\"comment\":{}}],[\"position\",{\"_index\":706,\"name\":{\"2099\":{}},\"comment\":{}}],[\"preference\",{\"_index\":352,\"name\":{\"1095\":{}},\"comment\":{}}],[\"prependlistener\",{\"_index\":127,\"name\":{\"464\":{},\"531\":{},\"547\":{},\"585\":{},\"627\":{},\"770\":{},\"796\":{},\"878\":{},\"924\":{},\"956\":{},\"1019\":{},\"1817\":{},\"2084\":{}},\"comment\":{}}],[\"prependoncelistener\",{\"_index\":128,\"name\":{\"465\":{},\"532\":{},\"548\":{},\"586\":{},\"628\":{},\"771\":{},\"797\":{},\"879\":{},\"925\":{},\"957\":{},\"1020\":{},\"1818\":{},\"2085\":{}},\"comment\":{}}],[\"prev\",{\"_index\":945,\"name\":{\"2825\":{}},\"comment\":{}}],[\"previousdescription\",{\"_index\":387,\"name\":{\"1187\":{},\"1206\":{}},\"comment\":{}}],[\"primary\",{\"_index\":337,\"name\":{\"1075\":{},\"1080\":{},\"2971\":{}},\"comment\":{}}],[\"primary_preferred\",{\"_index\":338,\"name\":{\"1076\":{}},\"comment\":{}}],[\"primarypreferred\",{\"_index\":342,\"name\":{\"1081\":{}},\"comment\":{}}],[\"processid\",{\"_index\":988,\"name\":{\"2988\":{}},\"comment\":{}}],[\"profilinglevel\",{\"_index\":252,\"name\":{\"711\":{},\"1055\":{},\"1056\":{}},\"comment\":{}}],[\"profilingleveloptions\",{\"_index\":884,\"name\":{\"2711\":{}},\"comment\":{}}],[\"project\",{\"_index\":149,\"name\":{\"490\":{},\"731\":{},\"1776\":{}},\"comment\":{}}],[\"projection\",{\"_index\":837,\"name\":{\"2439\":{},\"2474\":{},\"2497\":{},\"2523\":{}},\"comment\":{}}],[\"propertytype\",{\"_index\":757,\"name\":{\"2156\":{}},\"comment\":{}}],[\"provider_name\",{\"_index\":497,\"name\":{\"1550\":{}},\"comment\":{}}],[\"proxyhost\",{\"_index\":547,\"name\":{\"1620\":{},\"1625\":{},\"1641\":{},\"2002\":{},\"2022\":{},\"2939\":{}},\"comment\":{}}],[\"proxyoptions\",{\"_index\":551,\"name\":{\"1624\":{},\"1871\":{}},\"comment\":{}}],[\"proxypassword\",{\"_index\":550,\"name\":{\"1623\":{},\"1628\":{},\"1644\":{},\"2005\":{},\"2025\":{},\"2942\":{}},\"comment\":{}}],[\"proxyport\",{\"_index\":548,\"name\":{\"1621\":{},\"1626\":{},\"1642\":{},\"2003\":{},\"2023\":{},\"2940\":{}},\"comment\":{}}],[\"proxyusername\",{\"_index\":549,\"name\":{\"1622\":{},\"1627\":{},\"1643\":{},\"2004\":{},\"2024\":{},\"2941\":{}},\"comment\":{}}],[\"pullalloperator\",{\"_index\":758,\"name\":{\"2157\":{}},\"comment\":{}}],[\"pulloperator\",{\"_index\":759,\"name\":{\"2158\":{}},\"comment\":{}}],[\"pushoperator\",{\"_index\":760,\"name\":{\"2159\":{}},\"comment\":{}}],[\"q\",{\"_index\":829,\"name\":{\"2377\":{},\"2884\":{}},\"comment\":{}}],[\"rand\",{\"_index\":739,\"name\":{\"2138\":{}},\"comment\":{}}],[\"raw\",{\"_index\":32,\"name\":{\"32\":{},\"967\":{},\"1031\":{},\"1211\":{},\"1318\":{},\"1443\":{},\"1711\":{},\"1733\":{},\"1749\":{},\"1831\":{},\"2006\":{},\"2027\":{},\"2196\":{},\"2224\":{},\"2251\":{},\"2275\":{},\"2302\":{},\"2343\":{},\"2369\":{},\"2396\":{},\"2414\":{},\"2432\":{},\"2459\":{},\"2490\":{},\"2515\":{},\"2541\":{},\"2566\":{},\"2608\":{},\"2643\":{},\"2663\":{},\"2694\":{},\"2709\":{},\"2728\":{},\"2776\":{},\"2794\":{},\"2851\":{},\"2873\":{},\"2905\":{},\"3075\":{}},\"comment\":{}}],[\"rawlisteners\",{\"_index\":124,\"name\":{\"461\":{},\"528\":{},\"544\":{},\"582\":{},\"624\":{},\"767\":{},\"793\":{},\"875\":{},\"921\":{},\"953\":{},\"1016\":{},\"1814\":{},\"2081\":{}},\"comment\":{}}],[\"readbuffereddocuments\",{\"_index\":102,\"name\":{\"437\":{},\"506\":{},\"746\":{},\"852\":{},\"898\":{},\"997\":{},\"1792\":{}},\"comment\":{}}],[\"readconcern\",{\"_index\":20,\"name\":{\"20\":{},\"431\":{},\"500\":{},\"636\":{},\"691\":{},\"740\":{},\"846\":{},\"892\":{},\"936\":{},\"991\":{},\"1065\":{},\"1447\":{},\"1709\":{},\"1725\":{},\"1741\":{},\"1786\":{},\"1829\":{},\"1965\":{},\"2014\":{},\"2184\":{},\"2214\":{},\"2239\":{},\"2264\":{},\"2292\":{},\"2331\":{},\"2358\":{},\"2384\":{},\"2403\":{},\"2420\":{},\"2463\":{},\"2478\":{},\"2503\":{},\"2529\":{},\"2570\":{},\"2612\":{},\"2631\":{},\"2667\":{},\"2682\":{},\"2716\":{},\"2764\":{},\"2782\":{},\"2840\":{},\"2862\":{},\"2893\":{},\"3061\":{}},\"comment\":{}}],[\"readconcernlevel\",{\"_index\":326,\"name\":{\"1057\":{},\"1058\":{},\"1966\":{}},\"comment\":{}}],[\"readconcernlike\",{\"_index\":959,\"name\":{\"2909\":{}},\"comment\":{}}],[\"readonly\",{\"_index\":871,\"name\":{\"2656\":{}},\"comment\":{}}],[\"readpreference\",{\"_index\":30,\"name\":{\"30\":{},\"430\":{},\"499\":{},\"637\":{},\"692\":{},\"739\":{},\"845\":{},\"891\":{},\"938\":{},\"990\":{},\"1074\":{},\"1448\":{},\"1532\":{},\"1710\":{},\"1724\":{},\"1740\":{},\"1785\":{},\"1827\":{},\"1921\":{},\"1967\":{},\"2013\":{},\"2194\":{},\"2222\":{},\"2249\":{},\"2257\":{},\"2273\":{},\"2300\":{},\"2341\":{},\"2367\":{},\"2394\":{},\"2412\":{},\"2430\":{},\"2464\":{},\"2488\":{},\"2513\":{},\"2539\":{},\"2571\":{},\"2613\":{},\"2641\":{},\"2668\":{},\"2692\":{},\"2707\":{},\"2726\":{},\"2774\":{},\"2792\":{},\"2849\":{},\"2871\":{},\"2903\":{},\"2916\":{},\"2920\":{},\"2991\":{},\"2993\":{},\"3063\":{}},\"comment\":{}}],[\"readpreferencefromoptions\",{\"_index\":961,\"name\":{\"2912\":{}},\"comment\":{}}],[\"readpreferencelike\",{\"_index\":962,\"name\":{\"2918\":{}},\"comment\":{}}],[\"readpreferencelikeoptions\",{\"_index\":963,\"name\":{\"2919\":{}},\"comment\":{}}],[\"readpreferencemode\",{\"_index\":327,\"name\":{\"1059\":{},\"1060\":{}},\"comment\":{}}],[\"readpreferenceoptions\",{\"_index\":964,\"name\":{\"2923\":{}},\"comment\":{}}],[\"readpreferencetags\",{\"_index\":668,\"name\":{\"1969\":{},\"2914\":{}},\"comment\":{}}],[\"reason\",{\"_index\":87,\"name\":{\"345\":{},\"356\":{},\"1144\":{},\"1152\":{}},\"comment\":{}}],[\"receiveresponse\",{\"_index\":582,\"name\":{\"1702\":{}},\"comment\":{}}],[\"reconciliation\",{\"_index\":950,\"name\":{\"2833\":{}},\"comment\":{}}],[\"recoverytoken\",{\"_index\":1025,\"name\":{\"3055\":{}},\"comment\":{}}],[\"redact\",{\"_index\":151,\"name\":{\"492\":{},\"1778\":{}},\"comment\":{}}],[\"refresh_token_callback\",{\"_index\":496,\"name\":{\"1549\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":517,\"name\":{\"1578\":{},\"1580\":{}},\"comment\":{}}],[\"regex\",{\"_index\":726,\"name\":{\"2122\":{}},\"comment\":{}}],[\"regexporstring\",{\"_index\":761,\"name\":{\"2160\":{}},\"comment\":{}}],[\"region\",{\"_index\":570,\"name\":{\"1678\":{}},\"comment\":{}}],[\"remove\",{\"_index\":942,\"name\":{\"2821\":{},\"2826\":{}},\"comment\":{}}],[\"removealllisteners\",{\"_index\":122,\"name\":{\"459\":{},\"526\":{},\"542\":{},\"580\":{},\"622\":{},\"765\":{},\"791\":{},\"873\":{},\"919\":{},\"951\":{},\"1014\":{},\"1812\":{},\"2079\":{}},\"comment\":{}}],[\"removed\",{\"_index\":943,\"name\":{\"2821\":{}},\"comment\":{}}],[\"removedfields\",{\"_index\":486,\"name\":{\"1539\":{}},\"comment\":{}}],[\"removelistener\",{\"_index\":120,\"name\":{\"457\":{},\"524\":{},\"540\":{},\"578\":{},\"620\":{},\"763\":{},\"789\":{},\"871\":{},\"917\":{},\"949\":{},\"1012\":{},\"1810\":{},\"2077\":{}},\"comment\":{}}],[\"removeuser\",{\"_index\":139,\"name\":{\"476\":{},\"709\":{}},\"comment\":{}}],[\"removeuseroptions\",{\"_index\":885,\"name\":{\"2712\":{}},\"comment\":{}}],[\"rename\",{\"_index\":206,\"name\":{\"649\":{},\"784\":{}},\"comment\":{}}],[\"renamecollection\",{\"_index\":247,\"name\":{\"703\":{}},\"comment\":{}}],[\"renameoptions\",{\"_index\":886,\"name\":{\"2713\":{}},\"comment\":{}}],[\"replacement\",{\"_index\":424,\"name\":{\"1264\":{}},\"comment\":{}}],[\"replaceone\",{\"_index\":202,\"name\":{\"645\":{},\"1328\":{}},\"comment\":{}}],[\"replaceonemodel\",{\"_index\":423,\"name\":{\"1262\":{}},\"comment\":{}}],[\"replaceoptions\",{\"_index\":951,\"name\":{\"2834\":{}},\"comment\":{}}],[\"replicaset\",{\"_index\":660,\"name\":{\"1944\":{},\"2030\":{}},\"comment\":{}}],[\"replsetgetstatus\",{\"_index\":142,\"name\":{\"479\":{}},\"comment\":{}}],[\"reply\",{\"_index\":369,\"name\":{\"1132\":{},\"1198\":{}},\"comment\":{}}],[\"request_token_callback\",{\"_index\":495,\"name\":{\"1548\":{}},\"comment\":{}}],[\"requestid\",{\"_index\":360,\"name\":{\"1110\":{},\"1118\":{},\"1129\":{}},\"comment\":{}}],[\"requestscopes\",{\"_index\":513,\"name\":{\"1574\":{}},\"comment\":{}}],[\"requiring\",{\"_index\":918,\"name\":{\"2802\":{}},\"comment\":{}}],[\"reset\",{\"_index\":946,\"name\":{\"2827\":{}},\"comment\":{}}],[\"resolveauthmechanism\",{\"_index\":507,\"name\":{\"1562\":{}},\"comment\":{}}],[\"response\",{\"_index\":158,\"name\":{\"553\":{}},\"comment\":{}}],[\"restarted\",{\"_index\":947,\"name\":{\"2828\":{}},\"comment\":{}}],[\"result\",{\"_index\":38,\"name\":{\"38\":{},\"412\":{},\"1225\":{}},\"comment\":{}}],[\"resume_token_changed\",{\"_index\":164,\"name\":{\"560\":{}},\"comment\":{}}],[\"resumeafter\",{\"_index\":471,\"name\":{\"1438\":{},\"1533\":{}},\"comment\":{}}],[\"resumeoptions\",{\"_index\":484,\"name\":{\"1527\":{}},\"comment\":{}}],[\"resumetoken\",{\"_index\":169,\"name\":{\"567\":{},\"1536\":{}},\"comment\":{}}],[\"retryreads\",{\"_index\":673,\"name\":{\"1979\":{},\"2047\":{}},\"comment\":{}}],[\"retrywrites\",{\"_index\":24,\"name\":{\"24\":{},\"1449\":{},\"1758\":{},\"1830\":{},\"1980\":{},\"2048\":{},\"2188\":{},\"2216\":{},\"2243\":{},\"2267\":{},\"2294\":{},\"2335\":{},\"2361\":{},\"2388\":{},\"2406\":{},\"2424\":{},\"2465\":{},\"2482\":{},\"2507\":{},\"2533\":{},\"2572\":{},\"2614\":{},\"2635\":{},\"2669\":{},\"2686\":{},\"2720\":{},\"2768\":{},\"2786\":{},\"2843\":{},\"2865\":{},\"2897\":{},\"3068\":{}},\"comment\":{}}],[\"returndocument\",{\"_index\":325,\"name\":{\"1053\":{},\"1054\":{},\"2498\":{},\"2524\":{}},\"comment\":{}}],[\"returnkey\",{\"_index\":258,\"name\":{\"725\":{},\"2446\":{}},\"comment\":{}}],[\"reuse\",{\"_index\":928,\"name\":{\"2807\":{}},\"comment\":{}}],[\"revision\",{\"_index\":645,\"name\":{\"1901\":{}},\"comment\":{}}],[\"rewind\",{\"_index\":114,\"name\":{\"451\":{},\"519\":{},\"758\":{},\"866\":{},\"912\":{},\"1007\":{},\"1805\":{}},\"comment\":{}}],[\"role\",{\"_index\":784,\"name\":{\"2201\":{}},\"comment\":{}}],[\"roles\",{\"_index\":781,\"name\":{\"2182\":{}},\"comment\":{}}],[\"rolespecification\",{\"_index\":783,\"name\":{\"2200\":{}},\"comment\":{}}],[\"rootfilteroperators\",{\"_index\":762,\"name\":{\"2161\":{}},\"comment\":{}}],[\"roundtriptime\",{\"_index\":974,\"name\":{\"2967\":{}},\"comment\":{}}],[\"runcommandcursor\",{\"_index\":309,\"name\":{\"972\":{}},\"comment\":{}}],[\"runcommandoptions\",{\"_index\":889,\"name\":{\"2732\":{}},\"comment\":{}}],[\"runcursorcommand\",{\"_index\":253,\"name\":{\"714\":{}},\"comment\":{}}],[\"runcursorcommandoptions\",{\"_index\":601,\"name\":{\"1823\":{}},\"comment\":{}}],[\"scale\",{\"_index\":911,\"name\":{\"2763\":{},\"2781\":{}},\"comment\":{}}],[\"scalefactor\",{\"_index\":909,\"name\":{\"2761\":{}},\"comment\":{}}],[\"schemamap\",{\"_index\":620,\"name\":{\"1855\":{}},\"comment\":{}}],[\"schemamember\",{\"_index\":772,\"name\":{\"2173\":{}},\"comment\":{}}],[\"search\",{\"_index\":767,\"name\":{\"2167\":{},\"2829\":{},\"2830\":{}},\"comment\":{}}],[\"searches\",{\"_index\":948,\"name\":{\"2828\":{}},\"comment\":{}}],[\"searchindexdescription\",{\"_index\":890,\"name\":{\"2733\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":339,\"name\":{\"1077\":{},\"1082\":{}},\"comment\":{}}],[\"secondary_preferred\",{\"_index\":340,\"name\":{\"1078\":{}},\"comment\":{}}],[\"secondaryok\",{\"_index\":244,\"name\":{\"690\":{},\"1097\":{}},\"comment\":{}}],[\"secondarypreferred\",{\"_index\":343,\"name\":{\"1083\":{}},\"comment\":{}}],[\"selectserveroptions\",{\"_index\":991,\"name\":{\"2992\":{}},\"comment\":{}}],[\"serialize\",{\"_index\":399,\"name\":{\"1215\":{}},\"comment\":{}}],[\"serverapi\",{\"_index\":297,\"name\":{\"933\":{},\"1606\":{},\"1653\":{},\"1999\":{},\"2016\":{},\"2059\":{},\"2950\":{}},\"comment\":{}}],[\"serverapiversion\",{\"_index\":324,\"name\":{\"1051\":{},\"1052\":{}},\"comment\":{}}],[\"servercapabilities\",{\"_index\":992,\"name\":{\"2996\":{}},\"comment\":{}}],[\"serverclosedevent\",{\"_index\":384,\"name\":{\"1181\":{}},\"comment\":{}}],[\"serverdescription\",{\"_index\":971,\"name\":{\"2956\":{}},\"comment\":{}}],[\"serverdescriptionchangedevent\",{\"_index\":386,\"name\":{\"1184\":{}},\"comment\":{}}],[\"serverevents\",{\"_index\":970,\"name\":{\"2955\":{}},\"comment\":{}}],[\"serverheartbeatfailedevent\",{\"_index\":389,\"name\":{\"1189\":{}},\"comment\":{}}],[\"serverheartbeatstartedevent\",{\"_index\":390,\"name\":{\"1193\":{}},\"comment\":{}}],[\"serverheartbeatsucceededevent\",{\"_index\":391,\"name\":{\"1195\":{}},\"comment\":{}}],[\"serverinfo\",{\"_index\":135,\"name\":{\"472\":{}},\"comment\":{}}],[\"serveropeningevent\",{\"_index\":392,\"name\":{\"1199\":{}},\"comment\":{}}],[\"servers\",{\"_index\":1006,\"name\":{\"3016\":{}},\"comment\":{}}],[\"serverselectiontimeoutms\",{\"_index\":670,\"name\":{\"1975\":{},\"2044\":{},\"2994\":{}},\"comment\":{}}],[\"serversession\",{\"_index\":180,\"name\":{\"602\":{},\"3040\":{}},\"comment\":{}}],[\"serversessionid\",{\"_index\":1022,\"name\":{\"3046\":{}},\"comment\":{}}],[\"serverstatus\",{\"_index\":136,\"name\":{\"473\":{}},\"comment\":{}}],[\"servertype\",{\"_index\":328,\"name\":{\"1061\":{},\"1062\":{}},\"comment\":{}}],[\"service_host\",{\"_index\":490,\"name\":{\"1543\":{}},\"comment\":{}}],[\"service_name\",{\"_index\":491,\"name\":{\"1544\":{}},\"comment\":{}}],[\"service_realm\",{\"_index\":492,\"name\":{\"1545\":{}},\"comment\":{}}],[\"serviceid\",{\"_index\":364,\"name\":{\"1114\":{},\"1124\":{},\"1133\":{},\"1153\":{}},\"comment\":{}}],[\"session\",{\"_index\":28,\"name\":{\"28\":{},\"432\":{},\"501\":{},\"741\":{},\"847\":{},\"893\":{},\"992\":{},\"1445\":{},\"1723\":{},\"1739\":{},\"1787\":{},\"2192\":{},\"2220\":{},\"2247\":{},\"2258\":{},\"2271\":{},\"2298\":{},\"2339\":{},\"2365\":{},\"2392\":{},\"2410\":{},\"2428\":{},\"2461\":{},\"2486\":{},\"2511\":{},\"2537\":{},\"2568\":{},\"2610\":{},\"2639\":{},\"2665\":{},\"2690\":{},\"2705\":{},\"2724\":{},\"2772\":{},\"2790\":{},\"2847\":{},\"2869\":{},\"2901\":{},\"2913\":{},\"2995\":{},\"3072\":{}},\"comment\":{}}],[\"setbatchsize\",{\"_index\":313,\"name\":{\"982\":{}},\"comment\":{}}],[\"setcomment\",{\"_index\":311,\"name\":{\"980\":{}},\"comment\":{}}],[\"setfields\",{\"_index\":773,\"name\":{\"2174\":{}},\"comment\":{}}],[\"setmaxlisteners\",{\"_index\":131,\"name\":{\"468\":{},\"535\":{},\"551\":{},\"589\":{},\"631\":{},\"774\":{},\"800\":{},\"882\":{},\"928\":{},\"960\":{},\"1023\":{},\"1821\":{},\"2088\":{}},\"comment\":{}}],[\"setmaxtimems\",{\"_index\":312,\"name\":{\"981\":{}},\"comment\":{}}],[\"setname\",{\"_index\":978,\"name\":{\"2972\":{},\"3013\":{}},\"comment\":{}}],[\"setprofilinglevel\",{\"_index\":251,\"name\":{\"710\":{}},\"comment\":{}}],[\"setprofilingleveloptions\",{\"_index\":892,\"name\":{\"2736\":{}},\"comment\":{}}],[\"setversion\",{\"_index\":979,\"name\":{\"2973\":{}},\"comment\":{}}],[\"showexpandedevents\",{\"_index\":474,\"name\":{\"1442\":{}},\"comment\":{}}],[\"showrecordid\",{\"_index\":259,\"name\":{\"726\":{},\"2456\":{}},\"comment\":{}}],[\"signature\",{\"_index\":965,\"name\":{\"2928\":{}},\"comment\":{}}],[\"singlebatch\",{\"_index\":839,\"name\":{\"2454\":{}},\"comment\":{}}],[\"size\",{\"_index\":437,\"name\":{\"1311\":{},\"2133\":{},\"2313\":{},\"2740\":{},\"2805\":{},\"2806\":{},\"2810\":{}},\"comment\":{}}],[\"sizebytes\",{\"_index\":438,\"name\":{\"1312\":{}},\"comment\":{}}],[\"skip\",{\"_index\":152,\"name\":{\"493\":{},\"736\":{},\"1779\":{},\"1897\":{},\"1903\":{},\"2260\":{},\"2280\":{},\"2440\":{}},\"comment\":{}}],[\"slice\",{\"_index\":705,\"name\":{\"2098\":{}},\"comment\":{}}],[\"snapshot\",{\"_index\":334,\"name\":{\"1070\":{},\"3035\":{}},\"comment\":{}}],[\"snapshotenabled\",{\"_index\":181,\"name\":{\"603\":{}},\"comment\":{}}],[\"socketpath\",{\"_index\":1035,\"name\":{\"3089\":{}},\"comment\":{}}],[\"sockettimeoutms\",{\"_index\":543,\"name\":{\"1614\":{},\"1647\":{},\"1955\":{},\"2035\":{},\"2944\":{}},\"comment\":{}}],[\"sort\",{\"_index\":153,\"name\":{\"494\":{},\"732\":{},\"1780\":{},\"1896\":{},\"1902\":{},\"2100\":{},\"2438\":{},\"2475\":{},\"2499\":{},\"2525\":{},\"3051\":{}},\"comment\":{}}],[\"sortdirection\",{\"_index\":1024,\"name\":{\"3052\":{}},\"comment\":{}}],[\"source\",{\"_index\":504,\"name\":{\"1558\":{},\"1567\":{}},\"comment\":{}}],[\"sparse\",{\"_index\":849,\"name\":{\"2550\":{},\"2593\":{}},\"comment\":{}}],[\"srvhost\",{\"_index\":686,\"name\":{\"2011\":{}},\"comment\":{}}],[\"srvmaxhosts\",{\"_index\":666,\"name\":{\"1958\":{},\"2037\":{}},\"comment\":{}}],[\"srvservicename\",{\"_index\":667,\"name\":{\"1959\":{},\"2038\":{}},\"comment\":{}}],[\"ssl\",{\"_index\":661,\"name\":{\"1946\":{}},\"comment\":{}}],[\"sslca\",{\"_index\":678,\"name\":{\"1988\":{}},\"comment\":{}}],[\"sslcert\",{\"_index\":679,\"name\":{\"1989\":{}},\"comment\":{}}],[\"sslcrl\",{\"_index\":682,\"name\":{\"1992\":{}},\"comment\":{}}],[\"sslkey\",{\"_index\":680,\"name\":{\"1990\":{}},\"comment\":{}}],[\"sslpass\",{\"_index\":681,\"name\":{\"1991\":{}},\"comment\":{}}],[\"sslvalidate\",{\"_index\":677,\"name\":{\"1987\":{}},\"comment\":{}}],[\"stale\",{\"_index\":1007,\"name\":{\"3017\":{}},\"comment\":{}}],[\"start\",{\"_index\":273,\"name\":{\"807\":{},\"1898\":{},\"1904\":{}},\"comment\":{}}],[\"startafter\",{\"_index\":472,\"name\":{\"1439\":{},\"1534\":{}},\"comment\":{}}],[\"startatoperationtime\",{\"_index\":473,\"name\":{\"1440\":{},\"1528\":{}},\"comment\":{}}],[\"startsession\",{\"_index\":300,\"name\":{\"943\":{}},\"comment\":{}}],[\"starttransaction\",{\"_index\":189,\"name\":{\"612\":{}},\"comment\":{}}],[\"state\",{\"_index\":287,\"name\":{\"826\":{}},\"comment\":{}}],[\"stats\",{\"_index\":222,\"name\":{\"666\":{},\"701\":{}},\"comment\":{}}],[\"storageengine\",{\"_index\":807,\"name\":{\"2316\":{},\"2552\":{},\"2595\":{}},\"comment\":{}}],[\"storagesize\",{\"_index\":895,\"name\":{\"2742\":{}},\"comment\":{}}],[\"stream\",{\"_index\":103,\"name\":{\"438\":{},\"507\":{},\"573\":{},\"747\":{},\"853\":{},\"899\":{},\"998\":{},\"1590\":{},\"1793\":{}},\"comment\":{}}],[\"streamdescription\",{\"_index\":575,\"name\":{\"1687\":{}},\"comment\":{}}],[\"streamdescriptionoptions\",{\"_index\":583,\"name\":{\"1703\":{}},\"comment\":{}}],[\"streamend\",{\"_index\":288,\"name\":{\"828\":{}},\"comment\":{}}],[\"streamoptions\",{\"_index\":168,\"name\":{\"566\":{}},\"comment\":{}}],[\"strength\",{\"_index\":790,\"name\":{\"2232\":{}},\"comment\":{}}],[\"strict\",{\"_index\":688,\"name\":{\"2061\":{}},\"comment\":{}}],[\"strictfilter\",{\"_index\":774,\"name\":{\"2175\":{}},\"comment\":{}}],[\"strictmatchkeysandvalues\",{\"_index\":775,\"name\":{\"2176\":{}},\"comment\":{}}],[\"strictupdatefilter\",{\"_index\":776,\"name\":{\"2177\":{}},\"comment\":{}}],[\"supportednodeconnectionoptions\",{\"_index\":690,\"name\":{\"2063\":{}},\"comment\":{}}],[\"supportedsocketoptions\",{\"_index\":691,\"name\":{\"2064\":{}},\"comment\":{}}],[\"supportedtlsconnectionoptions\",{\"_index\":692,\"name\":{\"2065\":{}},\"comment\":{}}],[\"supportedtlssocketoptions\",{\"_index\":693,\"name\":{\"2066\":{}},\"comment\":{}}],[\"supports\",{\"_index\":173,\"name\":{\"593\":{}},\"comment\":{}}],[\"supportssnapshotreads\",{\"_index\":999,\"name\":{\"3006\":{}},\"comment\":{}}],[\"system_command_collection\",{\"_index\":241,\"name\":{\"685\":{}},\"comment\":{}}],[\"system_index_collection\",{\"_index\":238,\"name\":{\"682\":{}},\"comment\":{}}],[\"system_js_collection\",{\"_index\":242,\"name\":{\"686\":{}},\"comment\":{}}],[\"system_namespace_collection\",{\"_index\":237,\"name\":{\"681\":{}},\"comment\":{}}],[\"system_profile_collection\",{\"_index\":239,\"name\":{\"683\":{}},\"comment\":{}}],[\"system_user_collection\",{\"_index\":240,\"name\":{\"684\":{}},\"comment\":{}}],[\"tags\",{\"_index\":348,\"name\":{\"1091\":{},\"2962\":{}},\"comment\":{}}],[\"tagset\",{\"_index\":987,\"name\":{\"2985\":{}},\"comment\":{}}],[\"tailable\",{\"_index\":592,\"name\":{\"1730\":{},\"1746\":{},\"2443\":{}},\"comment\":{}}],[\"teardown\",{\"_index\":605,\"name\":{\"1836\":{}},\"comment\":{}}],[\"text\",{\"_index\":766,\"name\":{\"2165\":{}},\"comment\":{}}],[\"textindexversion\",{\"_index\":854,\"name\":{\"2558\":{},\"2599\":{}},\"comment\":{}}],[\"time\",{\"_index\":371,\"name\":{\"1137\":{},\"1141\":{},\"1145\":{},\"1148\":{},\"1154\":{},\"1158\":{},\"1162\":{},\"1165\":{},\"1169\":{},\"1172\":{},\"1175\":{},\"1179\":{}},\"comment\":{}}],[\"timefield\",{\"_index\":820,\"name\":{\"2348\":{}},\"comment\":{}}],[\"timeout\",{\"_index\":838,\"name\":{\"2442\":{}},\"comment\":{}}],[\"timeout_sec\",{\"_index\":568,\"name\":{\"1676\":{}},\"comment\":{}}],[\"timeoutcontext\",{\"_index\":520,\"name\":{\"1582\":{}},\"comment\":{}}],[\"timeoutseconds\",{\"_index\":519,\"name\":{\"1581\":{}},\"comment\":{}}],[\"timeseries\",{\"_index\":813,\"name\":{\"2324\":{}},\"comment\":{}}],[\"timeseriescollectionoptions\",{\"_index\":819,\"name\":{\"2347\":{}},\"comment\":{}}],[\"timestamp\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"tls\",{\"_index\":539,\"name\":{\"1610\":{},\"1645\":{},\"1945\":{},\"2026\":{},\"2943\":{}},\"comment\":{}}],[\"tlsallowinvalidcertificates\",{\"_index\":663,\"name\":{\"1951\":{},\"2031\":{}},\"comment\":{}}],[\"tlsallowinvalidhostnames\",{\"_index\":664,\"name\":{\"1952\":{},\"2032\":{}},\"comment\":{}}],[\"tlscafile\",{\"_index\":636,\"name\":{\"1882\":{},\"1950\":{}},\"comment\":{}}],[\"tlscertificatefile\",{\"_index\":662,\"name\":{\"1947\":{}},\"comment\":{}}],[\"tlscertificatekeyfile\",{\"_index\":634,\"name\":{\"1880\":{},\"1948\":{}},\"comment\":{}}],[\"tlscertificatekeyfilepassword\",{\"_index\":635,\"name\":{\"1881\":{},\"1949\":{}},\"comment\":{}}],[\"tlsinsecure\",{\"_index\":665,\"name\":{\"1953\":{},\"2033\":{}},\"comment\":{}}],[\"tlsoptions\",{\"_index\":632,\"name\":{\"1872\":{}},\"comment\":{}}],[\"to\",{\"_index\":478,\"name\":{\"1474\":{}},\"comment\":{}}],[\"toarray\",{\"_index\":108,\"name\":{\"444\":{},\"513\":{},\"753\":{},\"859\":{},\"905\":{},\"1004\":{},\"1799\":{}},\"comment\":{}}],[\"tobson\",{\"_index\":192,\"name\":{\"615\":{}},\"comment\":{}}],[\"tohostport\",{\"_index\":1038,\"name\":{\"3093\":{}},\"comment\":{}}],[\"tojson\",{\"_index\":336,\"name\":{\"1073\":{},\"1099\":{},\"1287\":{},\"1297\":{}},\"comment\":{}}],[\"token_audience\",{\"_index\":499,\"name\":{\"1552\":{}},\"comment\":{}}],[\"topologyclosedevent\",{\"_index\":393,\"name\":{\"1202\":{}},\"comment\":{}}],[\"topologydescription\",{\"_index\":1003,\"name\":{\"3010\":{}},\"comment\":{}}],[\"topologydescriptionchangedevent\",{\"_index\":394,\"name\":{\"1204\":{}},\"comment\":{}}],[\"topologydescriptionoptions\",{\"_index\":1013,\"name\":{\"3027\":{}},\"comment\":{}}],[\"topologyevents\",{\"_index\":1002,\"name\":{\"3009\":{}},\"comment\":{}}],[\"topologyid\",{\"_index\":385,\"name\":{\"1182\":{},\"1185\":{},\"1200\":{},\"1203\":{},\"1205\":{},\"1209\":{}},\"comment\":{}}],[\"topologyopeningevent\",{\"_index\":395,\"name\":{\"1208\":{}},\"comment\":{}}],[\"topologytype\",{\"_index\":329,\"name\":{\"1063\":{},\"1064\":{}},\"comment\":{}}],[\"topologyversion\",{\"_index\":54,\"name\":{\"56\":{},\"67\":{},\"78\":{},\"89\":{},\"100\":{},\"111\":{},\"122\":{},\"133\":{},\"144\":{},\"155\":{},\"166\":{},\"176\":{},\"188\":{},\"199\":{},\"210\":{},\"221\":{},\"232\":{},\"243\":{},\"254\":{},\"265\":{},\"276\":{},\"287\":{},\"298\":{},\"309\":{},\"320\":{},\"335\":{},\"347\":{},\"359\":{},\"370\":{},\"381\":{},\"392\":{},\"403\":{},\"419\":{},\"2964\":{},\"2987\":{}},\"comment\":{}}],[\"tostring\",{\"_index\":418,\"name\":{\"1250\":{},\"1288\":{},\"1303\":{},\"3092\":{},\"3102\":{},\"3109\":{}},\"comment\":{}}],[\"totalindexsize\",{\"_index\":901,\"name\":{\"2748\":{}},\"comment\":{}}],[\"totalsize\",{\"_index\":881,\"name\":{\"2700\":{},\"2760\":{}},\"comment\":{}}],[\"totalsizemb\",{\"_index\":882,\"name\":{\"2701\":{}},\"comment\":{}}],[\"transaction\",{\"_index\":179,\"name\":{\"600\":{},\"3053\":{}},\"comment\":{}}],[\"transactionoptions\",{\"_index\":1029,\"name\":{\"3060\":{}},\"comment\":{}}],[\"transform\",{\"_index\":597,\"name\":{\"1737\":{}},\"comment\":{}}],[\"translate\",{\"_index\":345,\"name\":{\"1087\":{}},\"comment\":{}}],[\"truncate\",{\"_index\":949,\"name\":{\"2831\":{}},\"comment\":{}}],[\"truncatedarrays\",{\"_index\":487,\"name\":{\"1540\":{}},\"comment\":{}}],[\"trynext\",{\"_index\":106,\"name\":{\"441\":{},\"510\":{},\"570\":{},\"750\":{},\"856\":{},\"902\":{},\"1001\":{},\"1796\":{}},\"comment\":{}}],[\"txnnumber\",{\"_index\":446,\"name\":{\"1343\":{},\"1350\":{},\"1357\":{},\"1367\":{},\"1379\":{},\"1394\":{},\"1401\":{},\"1408\":{},\"1419\":{},\"1429\":{},\"1468\":{},\"1481\":{},\"1491\":{},\"1500\":{},\"1508\":{},\"1520\":{},\"3043\":{}},\"comment\":{}}],[\"type\",{\"_index\":167,\"name\":{\"565\":{},\"1665\":{},\"1690\":{},\"2118\":{},\"2652\":{},\"2958\":{},\"3012\":{}},\"comment\":{}}],[\"typedeventemitter\",{\"_index\":698,\"name\":{\"2073\":{}},\"comment\":{}}],[\"u\",{\"_index\":956,\"name\":{\"2885\":{}},\"comment\":{}}],[\"unique\",{\"_index\":802,\"name\":{\"2309\":{},\"2547\":{},\"2591\":{}},\"comment\":{}}],[\"unit\",{\"_index\":925,\"name\":{\"2806\":{}},\"comment\":{}}],[\"unorderedbulkoperation\",{\"_index\":314,\"name\":{\"1024\":{}},\"comment\":{}}],[\"unpinned\",{\"_index\":533,\"name\":{\"1600\":{}},\"comment\":{}}],[\"unwind\",{\"_index\":154,\"name\":{\"495\":{},\"1781\":{}},\"comment\":{}}],[\"update\",{\"_index\":427,\"name\":{\"1270\":{},\"1277\":{},\"1326\":{},\"2822\":{},\"2832\":{}},\"comment\":{}}],[\"updated\",{\"_index\":944,\"name\":{\"2822\":{}},\"comment\":{}}],[\"updatedescription\",{\"_index\":483,\"name\":{\"1515\":{},\"1537\":{}},\"comment\":{}}],[\"updatedfields\",{\"_index\":485,\"name\":{\"1538\":{}},\"comment\":{}}],[\"updatefilter\",{\"_index\":777,\"name\":{\"2178\":{}},\"comment\":{}}],[\"updatemany\",{\"_index\":203,\"name\":{\"646\":{}},\"comment\":{}}],[\"updatemanymodel\",{\"_index\":426,\"name\":{\"1268\":{}},\"comment\":{}}],[\"updateone\",{\"_index\":201,\"name\":{\"644\":{},\"1327\":{}},\"comment\":{}}],[\"updateonemodel\",{\"_index\":429,\"name\":{\"1275\":{}},\"comment\":{}}],[\"updateoptions\",{\"_index\":952,\"name\":{\"2855\":{}},\"comment\":{}}],[\"updateresult\",{\"_index\":953,\"name\":{\"2877\":{}},\"comment\":{}}],[\"updatesearchindex\",{\"_index\":235,\"name\":{\"679\":{}},\"comment\":{}}],[\"updatestatement\",{\"_index\":955,\"name\":{\"2883\":{}},\"comment\":{}}],[\"uploaddate\",{\"_index\":650,\"name\":{\"1914\":{}},\"comment\":{}}],[\"upsert\",{\"_index\":425,\"name\":{\"1267\":{},\"1274\":{},\"1281\":{},\"1331\":{},\"2500\":{},\"2526\":{},\"2838\":{},\"2860\":{},\"2886\":{}},\"comment\":{}}],[\"upsertedcount\",{\"_index\":46,\"name\":{\"46\":{},\"1230\":{},\"2881\":{}},\"comment\":{}}],[\"upsertedid\",{\"_index\":954,\"name\":{\"2882\":{}},\"comment\":{}}],[\"upsertedids\",{\"_index\":49,\"name\":{\"49\":{},\"1231\":{}},\"comment\":{}}],[\"url\",{\"_index\":571,\"name\":{\"1679\":{}},\"comment\":{}}],[\"userflags\",{\"_index\":900,\"name\":{\"2747\":{}},\"comment\":{}}],[\"username\",{\"_index\":502,\"name\":{\"1556\":{},\"1565\":{},\"1936\":{}},\"comment\":{}}],[\"uuid\",{\"_index\":872,\"name\":{\"2657\":{}},\"comment\":{}}],[\"validate\",{\"_index\":508,\"name\":{\"1563\":{}},\"comment\":{}}],[\"validatecollection\",{\"_index\":140,\"name\":{\"477\":{}},\"comment\":{}}],[\"validatecollectionoptions\",{\"_index\":958,\"name\":{\"2891\":{}},\"comment\":{}}],[\"validationaction\",{\"_index\":810,\"name\":{\"2319\":{}},\"comment\":{}}],[\"validationlevel\",{\"_index\":809,\"name\":{\"2318\":{}},\"comment\":{}}],[\"validator\",{\"_index\":808,\"name\":{\"2317\":{}},\"comment\":{}}],[\"value\",{\"_index\":587,\"name\":{\"1715\":{},\"2820\":{},\"2822\":{}},\"comment\":{}}],[\"version\",{\"_index\":521,\"name\":{\"1583\":{},\"1662\":{},\"1668\":{},\"1684\":{},\"1940\":{},\"2060\":{},\"2554\":{},\"2588\":{},\"2809\":{},\"2811\":{}},\"comment\":{}}],[\"viewon\",{\"_index\":812,\"name\":{\"2321\":{}},\"comment\":{}}],[\"w\",{\"_index\":353,\"name\":{\"1103\":{},\"1983\":{},\"3111\":{},\"3115\":{}},\"comment\":{}}],[\"waitqueuetimeoutms\",{\"_index\":560,\"name\":{\"1637\":{},\"1964\":{},\"2042\":{}},\"comment\":{}}],[\"watch\",{\"_index\":227,\"name\":{\"671\":{},\"713\":{},\"945\":{}},\"comment\":{}}],[\"weights\",{\"_index\":851,\"name\":{\"2555\":{},\"2596\":{}},\"comment\":{}}],[\"where\",{\"_index\":771,\"name\":{\"2171\":{}},\"comment\":{}}],[\"wildcardprojection\",{\"_index\":858,\"name\":{\"2564\":{},\"2603\":{}},\"comment\":{}}],[\"willretrywrite\",{\"_index\":29,\"name\":{\"29\":{},\"1451\":{},\"1762\":{},\"2193\":{},\"2221\":{},\"2248\":{},\"2272\":{},\"2299\":{},\"2340\":{},\"2366\":{},\"2393\":{},\"2411\":{},\"2429\":{},\"2466\":{},\"2487\":{},\"2512\":{},\"2538\":{},\"2573\":{},\"2615\":{},\"2640\":{},\"2670\":{},\"2691\":{},\"2706\":{},\"2725\":{},\"2773\":{},\"2791\":{},\"2848\":{},\"2870\":{},\"2902\":{},\"3073\":{}},\"comment\":{}}],[\"wiredtiger\",{\"_index\":905,\"name\":{\"2755\":{}},\"comment\":{}}],[\"wiredtigerdata\",{\"_index\":913,\"name\":{\"2798\":{}},\"comment\":{}}],[\"withcollection\",{\"_index\":1040,\"name\":{\"3103\":{},\"3110\":{}},\"comment\":{}}],[\"withid\",{\"_index\":778,\"name\":{\"2179\":{}},\"comment\":{}}],[\"withoutid\",{\"_index\":779,\"name\":{\"2180\":{}},\"comment\":{}}],[\"withreadconcern\",{\"_index\":112,\"name\":{\"448\":{},\"516\":{},\"756\":{},\"863\":{},\"909\":{},\"984\":{},\"1802\":{}},\"comment\":{}}],[\"withreadpreference\",{\"_index\":111,\"name\":{\"447\":{},\"515\":{},\"755\":{},\"862\":{},\"908\":{},\"1006\":{},\"1801\":{}},\"comment\":{}}],[\"withsession\",{\"_index\":301,\"name\":{\"944\":{}},\"comment\":{}}],[\"withsessioncallback\",{\"_index\":694,\"name\":{\"2067\":{}},\"comment\":{}}],[\"withtransaction\",{\"_index\":193,\"name\":{\"616\":{}},\"comment\":{}}],[\"withtransactioncallback\",{\"_index\":1023,\"name\":{\"3049\":{}},\"comment\":{}}],[\"write\",{\"_index\":292,\"name\":{\"833\":{}},\"comment\":{}}],[\"writeconcern\",{\"_index\":34,\"name\":{\"34\":{},\"639\":{},\"694\":{},\"832\":{},\"937\":{},\"969\":{},\"1033\":{},\"1100\":{},\"1320\":{},\"1713\":{},\"1764\":{},\"1833\":{},\"1922\":{},\"1929\":{},\"1986\":{},\"2018\":{},\"2198\":{},\"2226\":{},\"2253\":{},\"2277\":{},\"2304\":{},\"2345\":{},\"2371\":{},\"2398\":{},\"2416\":{},\"2434\":{},\"2492\":{},\"2517\":{},\"2543\":{},\"2645\":{},\"2696\":{},\"2730\":{},\"2778\":{},\"2796\":{},\"2853\":{},\"2875\":{},\"2907\":{},\"3062\":{},\"3113\":{}},\"comment\":{}}],[\"writeconcernerror\",{\"_index\":51,\"name\":{\"52\":{},\"330\":{},\"415\":{},\"1282\":{}},\"comment\":{}}],[\"writeconcernerrordata\",{\"_index\":442,\"name\":{\"1335\":{}},\"comment\":{}}],[\"writeconcernoptions\",{\"_index\":1042,\"name\":{\"3112\":{}},\"comment\":{}}],[\"writeconcernsettings\",{\"_index\":1043,\"name\":{\"3114\":{}},\"comment\":{}}],[\"writeerror\",{\"_index\":430,\"name\":{\"1289\":{}},\"comment\":{}}],[\"writeerrors\",{\"_index\":39,\"name\":{\"39\":{}},\"comment\":{}}],[\"wtimeout\",{\"_index\":354,\"name\":{\"1104\":{},\"3119\":{}},\"comment\":{}}],[\"wtimeoutms\",{\"_index\":675,\"name\":{\"1984\":{},\"3116\":{}},\"comment\":{}}],[\"zlibcompressionlevel\",{\"_index\":581,\"name\":{\"1701\":{},\"1957\":{},\"2036\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"rows\":[{\"kind\":8388608,\"name\":\"Binary\",\"url\":\"modules.html#Binary\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"BSONRegExp\",\"url\":\"modules.html#BSONRegExp\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"BSONSymbol\",\"url\":\"modules.html#BSONSymbol\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"BSONType\",\"url\":\"modules.html#BSONType\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Code\",\"url\":\"modules.html#Code\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"DBRef\",\"url\":\"modules.html#DBRef\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Decimal128\",\"url\":\"modules.html#Decimal128\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Double\",\"url\":\"modules.html#Double\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Int32\",\"url\":\"modules.html#Int32\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Long\",\"url\":\"modules.html#Long\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"MaxKey\",\"url\":\"modules.html#MaxKey\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"MinKey\",\"url\":\"modules.html#MinKey\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"ObjectId\",\"url\":\"modules.html#ObjectId\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"Timestamp\",\"url\":\"modules.html#Timestamp\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"UUID\",\"url\":\"modules.html#UUID\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AnyBulkWriteOperation\",\"url\":\"types/AnyBulkWriteOperation.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"BulkWriteOptions\",\"url\":\"interfaces/BulkWriteOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/BulkWriteOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"ordered\",\"url\":\"interfaces/BulkWriteOptions.html#ordered\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/BulkWriteOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/BulkWriteOptions.html#let\",\"classes\":\"\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/BulkWriteOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/BulkWriteOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/BulkWriteOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/BulkWriteOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/BulkWriteOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/BulkWriteOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/BulkWriteOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/BulkWriteOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/BulkWriteOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/BulkWriteOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/BulkWriteOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/BulkWriteOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/BulkWriteOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/BulkWriteOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/BulkWriteOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/BulkWriteOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"BulkWriteOptions\"},{\"kind\":128,\"name\":\"MongoBulkWriteError\",\"url\":\"classes/MongoBulkWriteError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoBulkWriteError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"classes/MongoBulkWriteError.html#result\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"writeErrors\",\"url\":\"classes/MongoBulkWriteError.html#writeErrors\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"classes/MongoBulkWriteError.html#err\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoBulkWriteError.html#name\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"insertedCount\",\"url\":\"classes/MongoBulkWriteError.html#insertedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"matchedCount\",\"url\":\"classes/MongoBulkWriteError.html#matchedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"modifiedCount\",\"url\":\"classes/MongoBulkWriteError.html#modifiedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"deletedCount\",\"url\":\"classes/MongoBulkWriteError.html#deletedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"upsertedCount\",\"url\":\"classes/MongoBulkWriteError.html#upsertedCount\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"insertedIds\",\"url\":\"classes/MongoBulkWriteError.html#insertedIds\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/MongoBulkWriteError.html#insertedIds.insertedIds-1.__type-2\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError.insertedIds.insertedIds\"},{\"kind\":262144,\"name\":\"upsertedIds\",\"url\":\"classes/MongoBulkWriteError.html#upsertedIds\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/MongoBulkWriteError.html#upsertedIds.upsertedIds-1.__type-3\",\"classes\":\"\",\"parent\":\"MongoBulkWriteError.upsertedIds.upsertedIds\"},{\"kind\":1024,\"name\":\"codeName\",\"url\":\"classes/MongoBulkWriteError.html#codeName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"writeConcernError\",\"url\":\"classes/MongoBulkWriteError.html#writeConcernError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"classes/MongoBulkWriteError.html#errInfo\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"classes/MongoBulkWriteError.html#ok\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoBulkWriteError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoBulkWriteError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoBulkWriteError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoBulkWriteError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoBulkWriteError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoBulkWriteError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoBulkWriteError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoBulkWriteError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBulkWriteError\"},{\"kind\":128,\"name\":\"ClientEncryption\",\"url\":\"classes/ClientEncryption.html\",\"classes\":\"\"},{\"kind\":262144,\"name\":\"libmongocryptVersion\",\"url\":\"classes/ClientEncryption.html#libmongocryptVersion\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ClientEncryption.html#constructor\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"createDataKey\",\"url\":\"classes/ClientEncryption.html#createDataKey\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"rewrapManyDataKey\",\"url\":\"classes/ClientEncryption.html#rewrapManyDataKey\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"deleteKey\",\"url\":\"classes/ClientEncryption.html#deleteKey\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"getKeys\",\"url\":\"classes/ClientEncryption.html#getKeys\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"getKey\",\"url\":\"classes/ClientEncryption.html#getKey\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"getKeyByAltName\",\"url\":\"classes/ClientEncryption.html#getKeyByAltName\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"addKeyAltName\",\"url\":\"classes/ClientEncryption.html#addKeyAltName\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"removeKeyAltName\",\"url\":\"classes/ClientEncryption.html#removeKeyAltName\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"createEncryptedCollection\",\"url\":\"classes/ClientEncryption.html#createEncryptedCollection\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"encrypt\",\"url\":\"classes/ClientEncryption.html#encrypt\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"encryptExpression\",\"url\":\"classes/ClientEncryption.html#encryptExpression\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":2048,\"name\":\"decrypt\",\"url\":\"classes/ClientEncryption.html#decrypt\",\"classes\":\"\",\"parent\":\"ClientEncryption\"},{\"kind\":128,\"name\":\"MongoAPIError\",\"url\":\"classes/MongoAPIError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoAPIError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoAPIError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoAPIError.html#name\",\"classes\":\"\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoAPIError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoAPIError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoAPIError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoAPIError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoAPIError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoAPIError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoAPIError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoAPIError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAPIError\"},{\"kind\":128,\"name\":\"MongoAWSError\",\"url\":\"classes/MongoAWSError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoAWSError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoAWSError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoAWSError.html#name\",\"classes\":\"\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoAWSError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoAWSError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoAWSError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoAWSError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoAWSError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoAWSError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoAWSError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoAWSError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAWSError\"},{\"kind\":128,\"name\":\"MongoAzureError\",\"url\":\"classes/MongoAzureError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoAzureError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoAzureError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoAzureError.html#name\",\"classes\":\"\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoAzureError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoAzureError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoAzureError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoAzureError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoAzureError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoAzureError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoAzureError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoAzureError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoAzureError\"},{\"kind\":128,\"name\":\"MongoBatchReExecutionError\",\"url\":\"classes/MongoBatchReExecutionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoBatchReExecutionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoBatchReExecutionError.html#name\",\"classes\":\"\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoBatchReExecutionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoBatchReExecutionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoBatchReExecutionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoBatchReExecutionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoBatchReExecutionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoBatchReExecutionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoBatchReExecutionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoBatchReExecutionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoBatchReExecutionError\"},{\"kind\":128,\"name\":\"MongoChangeStreamError\",\"url\":\"classes/MongoChangeStreamError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoChangeStreamError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoChangeStreamError.html#name\",\"classes\":\"\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoChangeStreamError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoChangeStreamError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoChangeStreamError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoChangeStreamError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoChangeStreamError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoChangeStreamError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoChangeStreamError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoChangeStreamError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoChangeStreamError\"},{\"kind\":128,\"name\":\"MongoCompatibilityError\",\"url\":\"classes/MongoCompatibilityError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCompatibilityError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCompatibilityError.html#name\",\"classes\":\"\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoCompatibilityError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoCompatibilityError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoCompatibilityError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoCompatibilityError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoCompatibilityError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoCompatibilityError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoCompatibilityError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoCompatibilityError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCompatibilityError\"},{\"kind\":128,\"name\":\"MongoCursorExhaustedError\",\"url\":\"classes/MongoCursorExhaustedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCursorExhaustedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCursorExhaustedError.html#name\",\"classes\":\"\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoCursorExhaustedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoCursorExhaustedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoCursorExhaustedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoCursorExhaustedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoCursorExhaustedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoCursorExhaustedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoCursorExhaustedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoCursorExhaustedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorExhaustedError\"},{\"kind\":128,\"name\":\"MongoCursorInUseError\",\"url\":\"classes/MongoCursorInUseError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCursorInUseError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCursorInUseError.html#name\",\"classes\":\"\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoCursorInUseError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoCursorInUseError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoCursorInUseError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoCursorInUseError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoCursorInUseError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoCursorInUseError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoCursorInUseError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoCursorInUseError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoCursorInUseError\"},{\"kind\":128,\"name\":\"MongoDecompressionError\",\"url\":\"classes/MongoDecompressionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDecompressionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDecompressionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoDecompressionError.html#name\",\"classes\":\"\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoDecompressionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoDecompressionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoDecompressionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoDecompressionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoDecompressionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoDecompressionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoDecompressionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoDecompressionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDecompressionError\"},{\"kind\":128,\"name\":\"MongoDriverError\",\"url\":\"classes/MongoDriverError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDriverError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDriverError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoDriverError.html#name\",\"classes\":\"\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoDriverError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoDriverError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoDriverError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoDriverError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoDriverError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoDriverError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoDriverError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoDriverError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDriverError\"},{\"kind\":128,\"name\":\"MongoError\",\"url\":\"classes/MongoError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoError.html#code\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoError.html#topologyVersion\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoError.html#connectionGeneration\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoError.html#cause\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoError.html#name\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoError.html#errmsg\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoError.html#hasErrorLabel\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoError.html#addErrorLabel\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoError.html#errorLabels\",\"classes\":\"\",\"parent\":\"MongoError\"},{\"kind\":128,\"name\":\"MongoExpiredSessionError\",\"url\":\"classes/MongoExpiredSessionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoExpiredSessionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoExpiredSessionError.html#name\",\"classes\":\"\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoExpiredSessionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoExpiredSessionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoExpiredSessionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoExpiredSessionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoExpiredSessionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoExpiredSessionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoExpiredSessionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoExpiredSessionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoExpiredSessionError\"},{\"kind\":128,\"name\":\"MongoGridFSChunkError\",\"url\":\"classes/MongoGridFSChunkError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoGridFSChunkError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoGridFSChunkError.html#name\",\"classes\":\"\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoGridFSChunkError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoGridFSChunkError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoGridFSChunkError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoGridFSChunkError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoGridFSChunkError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoGridFSChunkError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoGridFSChunkError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoGridFSChunkError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSChunkError\"},{\"kind\":128,\"name\":\"MongoGridFSStreamError\",\"url\":\"classes/MongoGridFSStreamError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoGridFSStreamError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoGridFSStreamError.html#name\",\"classes\":\"\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoGridFSStreamError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoGridFSStreamError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoGridFSStreamError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoGridFSStreamError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoGridFSStreamError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoGridFSStreamError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoGridFSStreamError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoGridFSStreamError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoGridFSStreamError\"},{\"kind\":128,\"name\":\"MongoInvalidArgumentError\",\"url\":\"classes/MongoInvalidArgumentError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoInvalidArgumentError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoInvalidArgumentError.html#name\",\"classes\":\"\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoInvalidArgumentError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoInvalidArgumentError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoInvalidArgumentError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoInvalidArgumentError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoInvalidArgumentError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoInvalidArgumentError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoInvalidArgumentError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoInvalidArgumentError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoInvalidArgumentError\"},{\"kind\":128,\"name\":\"MongoKerberosError\",\"url\":\"classes/MongoKerberosError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoKerberosError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoKerberosError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoKerberosError.html#name\",\"classes\":\"\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoKerberosError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoKerberosError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoKerberosError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoKerberosError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoKerberosError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoKerberosError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoKerberosError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoKerberosError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoKerberosError\"},{\"kind\":128,\"name\":\"MongoMissingCredentialsError\",\"url\":\"classes/MongoMissingCredentialsError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoMissingCredentialsError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoMissingCredentialsError.html#name\",\"classes\":\"\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoMissingCredentialsError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoMissingCredentialsError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoMissingCredentialsError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoMissingCredentialsError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoMissingCredentialsError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoMissingCredentialsError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoMissingCredentialsError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoMissingCredentialsError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingCredentialsError\"},{\"kind\":128,\"name\":\"MongoMissingDependencyError\",\"url\":\"classes/MongoMissingDependencyError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoMissingDependencyError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoMissingDependencyError.html#name\",\"classes\":\"\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoMissingDependencyError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoMissingDependencyError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoMissingDependencyError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoMissingDependencyError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoMissingDependencyError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoMissingDependencyError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoMissingDependencyError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoMissingDependencyError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoMissingDependencyError\"},{\"kind\":128,\"name\":\"MongoNetworkError\",\"url\":\"classes/MongoNetworkError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoNetworkError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoNetworkError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoNetworkError.html#name\",\"classes\":\"\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoNetworkError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoNetworkError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoNetworkError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoNetworkError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoNetworkError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoNetworkError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoNetworkError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoNetworkError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkError\"},{\"kind\":128,\"name\":\"MongoNetworkTimeoutError\",\"url\":\"classes/MongoNetworkTimeoutError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoNetworkTimeoutError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoNetworkTimeoutError.html#name\",\"classes\":\"\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoNetworkTimeoutError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoNetworkTimeoutError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoNetworkTimeoutError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoNetworkTimeoutError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoNetworkTimeoutError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoNetworkTimeoutError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoNetworkTimeoutError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoNetworkTimeoutError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNetworkTimeoutError\"},{\"kind\":128,\"name\":\"MongoNotConnectedError\",\"url\":\"classes/MongoNotConnectedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoNotConnectedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoNotConnectedError.html#name\",\"classes\":\"\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoNotConnectedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoNotConnectedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoNotConnectedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoNotConnectedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoNotConnectedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoNotConnectedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoNotConnectedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoNotConnectedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoNotConnectedError\"},{\"kind\":128,\"name\":\"MongoParseError\",\"url\":\"classes/MongoParseError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoParseError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoParseError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoParseError.html#name\",\"classes\":\"\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoParseError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoParseError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoParseError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoParseError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoParseError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoParseError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoParseError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoParseError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoParseError\"},{\"kind\":128,\"name\":\"MongoRuntimeError\",\"url\":\"classes/MongoRuntimeError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoRuntimeError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoRuntimeError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoRuntimeError.html#name\",\"classes\":\"\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoRuntimeError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoRuntimeError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoRuntimeError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoRuntimeError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoRuntimeError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoRuntimeError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoRuntimeError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoRuntimeError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoRuntimeError\"},{\"kind\":128,\"name\":\"MongoServerClosedError\",\"url\":\"classes/MongoServerClosedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoServerClosedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoServerClosedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoServerClosedError.html#name\",\"classes\":\"\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoServerClosedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoServerClosedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoServerClosedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoServerClosedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoServerClosedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoServerClosedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoServerClosedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoServerClosedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerClosedError\"},{\"kind\":128,\"name\":\"MongoServerError\",\"url\":\"classes/MongoServerError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoServerError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"codeName\",\"url\":\"classes/MongoServerError.html#codeName\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"writeConcernError\",\"url\":\"classes/MongoServerError.html#writeConcernError\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"classes/MongoServerError.html#errInfo\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"classes/MongoServerError.html#ok\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoServerError.html#name\",\"classes\":\"\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoServerError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoServerError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoServerError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoServerError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoServerError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoServerError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoServerError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoServerError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerError\"},{\"kind\":128,\"name\":\"MongoServerSelectionError\",\"url\":\"classes/MongoServerSelectionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoServerSelectionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoServerSelectionError.html#name\",\"classes\":\"\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/MongoServerSelectionError.html#reason\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoServerSelectionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoServerSelectionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoServerSelectionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoServerSelectionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoServerSelectionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoServerSelectionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoServerSelectionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoServerSelectionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoServerSelectionError\"},{\"kind\":128,\"name\":\"MongoSystemError\",\"url\":\"classes/MongoSystemError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoSystemError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/MongoSystemError.html#reason\",\"classes\":\"\",\"parent\":\"MongoSystemError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoSystemError.html#name\",\"classes\":\"\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoSystemError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoSystemError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoSystemError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoSystemError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoSystemError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoSystemError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoSystemError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoSystemError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoSystemError\"},{\"kind\":128,\"name\":\"MongoTailableCursorError\",\"url\":\"classes/MongoTailableCursorError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoTailableCursorError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoTailableCursorError.html#name\",\"classes\":\"\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoTailableCursorError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoTailableCursorError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoTailableCursorError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoTailableCursorError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoTailableCursorError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoTailableCursorError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoTailableCursorError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoTailableCursorError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTailableCursorError\"},{\"kind\":128,\"name\":\"MongoTopologyClosedError\",\"url\":\"classes/MongoTopologyClosedError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoTopologyClosedError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoTopologyClosedError.html#name\",\"classes\":\"\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoTopologyClosedError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoTopologyClosedError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoTopologyClosedError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoTopologyClosedError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoTopologyClosedError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoTopologyClosedError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoTopologyClosedError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoTopologyClosedError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTopologyClosedError\"},{\"kind\":128,\"name\":\"MongoTransactionError\",\"url\":\"classes/MongoTransactionError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoTransactionError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoTransactionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoTransactionError.html#name\",\"classes\":\"\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoTransactionError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoTransactionError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoTransactionError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoTransactionError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoTransactionError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoTransactionError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoTransactionError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoTransactionError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoTransactionError\"},{\"kind\":128,\"name\":\"MongoUnexpectedServerResponseError\",\"url\":\"classes/MongoUnexpectedServerResponseError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#name\",\"classes\":\"\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoUnexpectedServerResponseError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoUnexpectedServerResponseError\"},{\"kind\":128,\"name\":\"MongoWriteConcernError\",\"url\":\"classes/MongoWriteConcernError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoWriteConcernError.html#constructor\",\"classes\":\"\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"classes/MongoWriteConcernError.html#result\",\"classes\":\"\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoWriteConcernError.html#name\",\"classes\":\"\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"codeName\",\"url\":\"classes/MongoWriteConcernError.html#codeName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"writeConcernError\",\"url\":\"classes/MongoWriteConcernError.html#writeConcernError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"classes/MongoWriteConcernError.html#errInfo\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"classes/MongoWriteConcernError.html#ok\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/MongoWriteConcernError.html#code\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/MongoWriteConcernError.html#topologyVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"connectionGeneration\",\"url\":\"classes/MongoWriteConcernError.html#connectionGeneration\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"classes/MongoWriteConcernError.html#cause\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/MongoWriteConcernError.html#errmsg\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":2048,\"name\":\"hasErrorLabel\",\"url\":\"classes/MongoWriteConcernError.html#hasErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":2048,\"name\":\"addErrorLabel\",\"url\":\"classes/MongoWriteConcernError.html#addErrorLabel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":262144,\"name\":\"errorLabels\",\"url\":\"classes/MongoWriteConcernError.html#errorLabels\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoWriteConcernError\"},{\"kind\":128,\"name\":\"AbstractCursor\",\"url\":\"classes/AbstractCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/AbstractCursor.html#CLOSE\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/AbstractCursor.html#id\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/AbstractCursor.html#namespace\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/AbstractCursor.html#readPreference\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/AbstractCursor.html#readConcern\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/AbstractCursor.html#session\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/AbstractCursor.html#closed\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/AbstractCursor.html#killed\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/AbstractCursor.html#loadBalanced\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/AbstractCursor.html#bufferedCount\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/AbstractCursor.html#readBufferedDocuments\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/AbstractCursor.html#stream\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/AbstractCursor.html#hasNext\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/AbstractCursor.html#next\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/AbstractCursor.html#tryNext\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/AbstractCursor.html#forEach\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/AbstractCursor.html#close-1\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/AbstractCursor.html#toArray\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/AbstractCursor.html#addCursorFlag\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/AbstractCursor.html#map\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/AbstractCursor.html#withReadPreference\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/AbstractCursor.html#withReadConcern\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/AbstractCursor.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/AbstractCursor.html#batchSize\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/AbstractCursor.html#rewind\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/AbstractCursor.html#clone\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/AbstractCursor.html#_asyncIterator_\",\"classes\":\"\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/AbstractCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/AbstractCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/AbstractCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/AbstractCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/AbstractCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/AbstractCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/AbstractCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/AbstractCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/AbstractCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/AbstractCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/AbstractCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/AbstractCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/AbstractCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/AbstractCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/AbstractCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursor\"},{\"kind\":128,\"name\":\"Admin\",\"url\":\"classes/Admin.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"command\",\"url\":\"classes/Admin.html#command\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"buildInfo\",\"url\":\"classes/Admin.html#buildInfo\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"serverInfo\",\"url\":\"classes/Admin.html#serverInfo\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"serverStatus\",\"url\":\"classes/Admin.html#serverStatus\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"ping\",\"url\":\"classes/Admin.html#ping\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"removeUser\",\"url\":\"classes/Admin.html#removeUser\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"validateCollection\",\"url\":\"classes/Admin.html#validateCollection\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"listDatabases\",\"url\":\"classes/Admin.html#listDatabases\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":2048,\"name\":\"replSetGetStatus\",\"url\":\"classes/Admin.html#replSetGetStatus\",\"classes\":\"\",\"parent\":\"Admin\"},{\"kind\":128,\"name\":\"AggregationCursor\",\"url\":\"classes/AggregationCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/AggregationCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"pipeline\",\"url\":\"classes/AggregationCursor.html#pipeline\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/AggregationCursor.html#clone\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/AggregationCursor.html#map\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/AggregationCursor.html#explain\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"group\",\"url\":\"classes/AggregationCursor.html#group\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"limit\",\"url\":\"classes/AggregationCursor.html#limit\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"match\",\"url\":\"classes/AggregationCursor.html#match\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"out\",\"url\":\"classes/AggregationCursor.html#out\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"project\",\"url\":\"classes/AggregationCursor.html#project\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"lookup\",\"url\":\"classes/AggregationCursor.html#lookup\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"redact\",\"url\":\"classes/AggregationCursor.html#redact\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"skip\",\"url\":\"classes/AggregationCursor.html#skip\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"sort\",\"url\":\"classes/AggregationCursor.html#sort\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"unwind\",\"url\":\"classes/AggregationCursor.html#unwind\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"geoNear\",\"url\":\"classes/AggregationCursor.html#geoNear\",\"classes\":\"\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/AggregationCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/AggregationCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/AggregationCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/AggregationCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/AggregationCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/AggregationCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/AggregationCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/AggregationCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/AggregationCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/AggregationCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/AggregationCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/AggregationCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/AggregationCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/AggregationCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/AggregationCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/AggregationCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/AggregationCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/AggregationCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/AggregationCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/AggregationCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/AggregationCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/AggregationCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/AggregationCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/AggregationCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/AggregationCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/AggregationCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/AggregationCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/AggregationCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/AggregationCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/AggregationCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/AggregationCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/AggregationCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/AggregationCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/AggregationCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/AggregationCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/AggregationCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/AggregationCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/AggregationCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/AggregationCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursor\"},{\"kind\":128,\"name\":\"CancellationToken\",\"url\":\"classes/CancellationToken.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/CancellationToken.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/CancellationToken.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/CancellationToken.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/CancellationToken.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/CancellationToken.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/CancellationToken.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/CancellationToken.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/CancellationToken.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/CancellationToken.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/CancellationToken.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/CancellationToken.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/CancellationToken.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/CancellationToken.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/CancellationToken.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/CancellationToken.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CancellationToken\"},{\"kind\":128,\"name\":\"ChangeStream\",\"url\":\"classes/ChangeStream.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"RESPONSE\",\"url\":\"classes/ChangeStream.html#RESPONSE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"MORE\",\"url\":\"classes/ChangeStream.html#MORE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"INIT\",\"url\":\"classes/ChangeStream.html#INIT\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ChangeStream.html#CLOSE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"CHANGE\",\"url\":\"classes/ChangeStream.html#CHANGE\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"END\",\"url\":\"classes/ChangeStream.html#END\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"ERROR\",\"url\":\"classes/ChangeStream.html#ERROR\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"RESUME_TOKEN_CHANGED\",\"url\":\"classes/ChangeStream.html#RESUME_TOKEN_CHANGED\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"pipeline\",\"url\":\"classes/ChangeStream.html#pipeline\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ChangeStream.html#options\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"parent\",\"url\":\"classes/ChangeStream.html#parent\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"namespace\",\"url\":\"classes/ChangeStream.html#namespace\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/ChangeStream.html#type\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":1024,\"name\":\"streamOptions\",\"url\":\"classes/ChangeStream.html#streamOptions\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":262144,\"name\":\"resumeToken\",\"url\":\"classes/ChangeStream.html#resumeToken\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ChangeStream.html#hasNext\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ChangeStream.html#next\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ChangeStream.html#tryNext\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ChangeStream.html#closed\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ChangeStream.html#close-1\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ChangeStream.html#stream\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ChangeStream.html#_asyncIterator_\",\"classes\":\"\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ChangeStream.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ChangeStream.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ChangeStream.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ChangeStream.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ChangeStream.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ChangeStream.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ChangeStream.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ChangeStream.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ChangeStream.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ChangeStream.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ChangeStream.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ChangeStream.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ChangeStream.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ChangeStream.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ChangeStream.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStream\"},{\"kind\":128,\"name\":\"ClientSession\",\"url\":\"classes/ClientSession.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"hasEnded\",\"url\":\"classes/ClientSession.html#hasEnded\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"clientOptions\",\"url\":\"classes/ClientSession.html#clientOptions\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"supports\",\"url\":\"classes/ClientSession.html#supports\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/ClientSession.html#supports.__type\",\"classes\":\"\",\"parent\":\"ClientSession.supports\"},{\"kind\":1024,\"name\":\"causalConsistency\",\"url\":\"classes/ClientSession.html#supports.__type.causalConsistency\",\"classes\":\"\",\"parent\":\"ClientSession.supports.__type\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"classes/ClientSession.html#clusterTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"operationTime\",\"url\":\"classes/ClientSession.html#operationTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"explicit\",\"url\":\"classes/ClientSession.html#explicit\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"defaultTransactionOptions\",\"url\":\"classes/ClientSession.html#defaultTransactionOptions\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":1024,\"name\":\"transaction\",\"url\":\"classes/ClientSession.html#transaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ClientSession.html#id\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"serverSession\",\"url\":\"classes/ClientSession.html#serverSession\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"snapshotEnabled\",\"url\":\"classes/ClientSession.html#snapshotEnabled\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ClientSession.html#loadBalanced\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":262144,\"name\":\"isPinned\",\"url\":\"classes/ClientSession.html#isPinned\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"endSession\",\"url\":\"classes/ClientSession.html#endSession\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"advanceOperationTime\",\"url\":\"classes/ClientSession.html#advanceOperationTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"advanceClusterTime\",\"url\":\"classes/ClientSession.html#advanceClusterTime\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ClientSession.html#equals\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"incrementTransactionNumber\",\"url\":\"classes/ClientSession.html#incrementTransactionNumber\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"inTransaction\",\"url\":\"classes/ClientSession.html#inTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"startTransaction\",\"url\":\"classes/ClientSession.html#startTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"commitTransaction\",\"url\":\"classes/ClientSession.html#commitTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"abortTransaction\",\"url\":\"classes/ClientSession.html#abortTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"toBSON\",\"url\":\"classes/ClientSession.html#toBSON\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"withTransaction\",\"url\":\"classes/ClientSession.html#withTransaction\",\"classes\":\"\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ClientSession.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ClientSession.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ClientSession.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ClientSession.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ClientSession.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ClientSession.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ClientSession.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ClientSession.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ClientSession.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ClientSession.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ClientSession.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ClientSession.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ClientSession.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ClientSession.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ClientSession.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ClientSession\"},{\"kind\":128,\"name\":\"Collection\",\"url\":\"classes/Collection.html\",\"classes\":\"\"},{\"kind\":262144,\"name\":\"dbName\",\"url\":\"classes/Collection.html#dbName\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"collectionName\",\"url\":\"classes/Collection.html#collectionName\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/Collection.html#namespace\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/Collection.html#readConcern\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/Collection.html#readPreference\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/Collection.html#bsonOptions\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/Collection.html#writeConcern\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":262144,\"name\":\"hint\",\"url\":\"classes/Collection.html#hint\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"insertOne\",\"url\":\"classes/Collection.html#insertOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"insertMany\",\"url\":\"classes/Collection.html#insertMany\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"bulkWrite\",\"url\":\"classes/Collection.html#bulkWrite\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"updateOne\",\"url\":\"classes/Collection.html#updateOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"replaceOne\",\"url\":\"classes/Collection.html#replaceOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"updateMany\",\"url\":\"classes/Collection.html#updateMany\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"deleteOne\",\"url\":\"classes/Collection.html#deleteOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"deleteMany\",\"url\":\"classes/Collection.html#deleteMany\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"classes/Collection.html#rename\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/Collection.html#drop\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOne\",\"url\":\"classes/Collection.html#findOne\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/Collection.html#find\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"options\",\"url\":\"classes/Collection.html#options\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"isCapped\",\"url\":\"classes/Collection.html#isCapped\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createIndex\",\"url\":\"classes/Collection.html#createIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createIndexes\",\"url\":\"classes/Collection.html#createIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"dropIndex\",\"url\":\"classes/Collection.html#dropIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"dropIndexes\",\"url\":\"classes/Collection.html#dropIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"listIndexes\",\"url\":\"classes/Collection.html#listIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"indexExists\",\"url\":\"classes/Collection.html#indexExists\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"indexInformation\",\"url\":\"classes/Collection.html#indexInformation\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"estimatedDocumentCount\",\"url\":\"classes/Collection.html#estimatedDocumentCount\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"countDocuments\",\"url\":\"classes/Collection.html#countDocuments\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"distinct\",\"url\":\"classes/Collection.html#distinct\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"indexes\",\"url\":\"classes/Collection.html#indexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOneAndDelete\",\"url\":\"classes/Collection.html#findOneAndDelete\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOneAndReplace\",\"url\":\"classes/Collection.html#findOneAndReplace\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"findOneAndUpdate\",\"url\":\"classes/Collection.html#findOneAndUpdate\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"aggregate\",\"url\":\"classes/Collection.html#aggregate\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/Collection.html#watch\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"initializeUnorderedBulkOp\",\"url\":\"classes/Collection.html#initializeUnorderedBulkOp\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"initializeOrderedBulkOp\",\"url\":\"classes/Collection.html#initializeOrderedBulkOp\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"classes/Collection.html#count\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"listSearchIndexes\",\"url\":\"classes/Collection.html#listSearchIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createSearchIndex\",\"url\":\"classes/Collection.html#createSearchIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"createSearchIndexes\",\"url\":\"classes/Collection.html#createSearchIndexes\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"dropSearchIndex\",\"url\":\"classes/Collection.html#dropSearchIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":2048,\"name\":\"updateSearchIndex\",\"url\":\"classes/Collection.html#updateSearchIndex\",\"classes\":\"\",\"parent\":\"Collection\"},{\"kind\":128,\"name\":\"Db\",\"url\":\"classes/Db.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"SYSTEM_NAMESPACE_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_NAMESPACE_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_INDEX_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_INDEX_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_PROFILE_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_PROFILE_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_USER_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_USER_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_COMMAND_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_COMMAND_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":1024,\"name\":\"SYSTEM_JS_COLLECTION\",\"url\":\"classes/Db.html#SYSTEM_JS_COLLECTION\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Db.html#constructor\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"databaseName\",\"url\":\"classes/Db.html#databaseName\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"options\",\"url\":\"classes/Db.html#options\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"secondaryOk\",\"url\":\"classes/Db.html#secondaryOk\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/Db.html#readConcern\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/Db.html#readPreference\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/Db.html#bsonOptions\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/Db.html#writeConcern\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/Db.html#namespace\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"createCollection\",\"url\":\"classes/Db.html#createCollection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"command\",\"url\":\"classes/Db.html#command\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"aggregate\",\"url\":\"classes/Db.html#aggregate\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"admin\",\"url\":\"classes/Db.html#admin\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"collection\",\"url\":\"classes/Db.html#collection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"stats\",\"url\":\"classes/Db.html#stats\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"listCollections\",\"url\":\"classes/Db.html#listCollections\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"renameCollection\",\"url\":\"classes/Db.html#renameCollection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"dropCollection\",\"url\":\"classes/Db.html#dropCollection\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"dropDatabase\",\"url\":\"classes/Db.html#dropDatabase\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"collections\",\"url\":\"classes/Db.html#collections\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"createIndex\",\"url\":\"classes/Db.html#createIndex\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"removeUser\",\"url\":\"classes/Db.html#removeUser\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"setProfilingLevel\",\"url\":\"classes/Db.html#setProfilingLevel\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"profilingLevel\",\"url\":\"classes/Db.html#profilingLevel\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"indexInformation\",\"url\":\"classes/Db.html#indexInformation\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/Db.html#watch\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":2048,\"name\":\"runCursorCommand\",\"url\":\"classes/Db.html#runCursorCommand\",\"classes\":\"\",\"parent\":\"Db\"},{\"kind\":128,\"name\":\"FindCursor\",\"url\":\"classes/FindCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/FindCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/FindCursor.html#clone\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/FindCursor.html#map\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"classes/FindCursor.html#count\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/FindCursor.html#explain\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"filter\",\"url\":\"classes/FindCursor.html#filter\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"hint\",\"url\":\"classes/FindCursor.html#hint\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"min\",\"url\":\"classes/FindCursor.html#min\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"max\",\"url\":\"classes/FindCursor.html#max\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"returnKey\",\"url\":\"classes/FindCursor.html#returnKey\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"showRecordId\",\"url\":\"classes/FindCursor.html#showRecordId\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"addQueryModifier\",\"url\":\"classes/FindCursor.html#addQueryModifier\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"comment\",\"url\":\"classes/FindCursor.html#comment\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"maxAwaitTimeMS\",\"url\":\"classes/FindCursor.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/FindCursor.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"project\",\"url\":\"classes/FindCursor.html#project\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"sort\",\"url\":\"classes/FindCursor.html#sort\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"allowDiskUse\",\"url\":\"classes/FindCursor.html#allowDiskUse\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"collation\",\"url\":\"classes/FindCursor.html#collation\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"limit\",\"url\":\"classes/FindCursor.html#limit\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"skip\",\"url\":\"classes/FindCursor.html#skip\",\"classes\":\"\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/FindCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/FindCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/FindCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/FindCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/FindCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/FindCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/FindCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/FindCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/FindCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/FindCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/FindCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/FindCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/FindCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/FindCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/FindCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/FindCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/FindCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/FindCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/FindCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/FindCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/FindCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/FindCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/FindCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/FindCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/FindCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/FindCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/FindCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/FindCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/FindCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/FindCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/FindCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/FindCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/FindCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/FindCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/FindCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/FindCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/FindCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/FindCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindCursor\"},{\"kind\":128,\"name\":\"GridFSBucket\",\"url\":\"classes/GridFSBucket.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"INDEX\",\"url\":\"classes/GridFSBucket.html#INDEX\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GridFSBucket.html#constructor\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openUploadStream\",\"url\":\"classes/GridFSBucket.html#openUploadStream\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openUploadStreamWithId\",\"url\":\"classes/GridFSBucket.html#openUploadStreamWithId\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openDownloadStream\",\"url\":\"classes/GridFSBucket.html#openDownloadStream\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/GridFSBucket.html#delete\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/GridFSBucket.html#find\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"openDownloadStreamByName\",\"url\":\"classes/GridFSBucket.html#openDownloadStreamByName\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"classes/GridFSBucket.html#rename\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/GridFSBucket.html#drop\",\"classes\":\"\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/GridFSBucket.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/GridFSBucket.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/GridFSBucket.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/GridFSBucket.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/GridFSBucket.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/GridFSBucket.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/GridFSBucket.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/GridFSBucket.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/GridFSBucket.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/GridFSBucket.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/GridFSBucket.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/GridFSBucket.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/GridFSBucket.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/GridFSBucket.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/GridFSBucket.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucket\"},{\"kind\":128,\"name\":\"GridFSBucketReadStream\",\"url\":\"classes/GridFSBucketReadStream.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"FILE\",\"url\":\"classes/GridFSBucketReadStream.html#FILE\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":2048,\"name\":\"start\",\"url\":\"classes/GridFSBucketReadStream.html#start\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":2048,\"name\":\"end\",\"url\":\"classes/GridFSBucketReadStream.html#end\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":2048,\"name\":\"abort\",\"url\":\"classes/GridFSBucketReadStream.html#abort\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStream\"},{\"kind\":128,\"name\":\"GridFSBucketWriteStream\",\"url\":\"classes/GridFSBucketWriteStream.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bucket\",\"url\":\"classes/GridFSBucketWriteStream.html#bucket\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"chunks\",\"url\":\"classes/GridFSBucketWriteStream.html#chunks\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"files\",\"url\":\"classes/GridFSBucketWriteStream.html#files\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"filename\",\"url\":\"classes/GridFSBucketWriteStream.html#filename\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/GridFSBucketWriteStream.html#options\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"done\",\"url\":\"classes/GridFSBucketWriteStream.html#done\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/GridFSBucketWriteStream.html#id\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"chunkSizeBytes\",\"url\":\"classes/GridFSBucketWriteStream.html#chunkSizeBytes\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"bufToStore\",\"url\":\"classes/GridFSBucketWriteStream.html#bufToStore\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"length\",\"url\":\"classes/GridFSBucketWriteStream.html#length\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"n\",\"url\":\"classes/GridFSBucketWriteStream.html#n\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"pos\",\"url\":\"classes/GridFSBucketWriteStream.html#pos\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"classes/GridFSBucketWriteStream.html#state\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state\"},{\"kind\":1024,\"name\":\"streamEnd\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.streamEnd\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"outstandingRequests\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.outstandingRequests\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"errored\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.errored-1\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"aborted\",\"url\":\"classes/GridFSBucketWriteStream.html#state.__type.aborted\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream.state.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"classes/GridFSBucketWriteStream.html#writeConcern\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":1024,\"name\":\"gridFSFile\",\"url\":\"classes/GridFSBucketWriteStream.html#gridFSFile\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":2048,\"name\":\"abort\",\"url\":\"classes/GridFSBucketWriteStream.html#abort\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStream\"},{\"kind\":128,\"name\":\"ListCollectionsCursor\",\"url\":\"classes/ListCollectionsCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ListCollectionsCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ListCollectionsCursor.html#constructor\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":1024,\"name\":\"parent\",\"url\":\"classes/ListCollectionsCursor.html#parent\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"classes/ListCollectionsCursor.html#filter\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ListCollectionsCursor.html#options\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ListCollectionsCursor.html#clone\",\"classes\":\"\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ListCollectionsCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/ListCollectionsCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/ListCollectionsCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/ListCollectionsCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/ListCollectionsCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ListCollectionsCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/ListCollectionsCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ListCollectionsCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/ListCollectionsCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/ListCollectionsCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ListCollectionsCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ListCollectionsCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ListCollectionsCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ListCollectionsCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/ListCollectionsCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ListCollectionsCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/ListCollectionsCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/ListCollectionsCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/ListCollectionsCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/ListCollectionsCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/ListCollectionsCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/ListCollectionsCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/ListCollectionsCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/ListCollectionsCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ListCollectionsCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ListCollectionsCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ListCollectionsCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ListCollectionsCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ListCollectionsCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ListCollectionsCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ListCollectionsCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ListCollectionsCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ListCollectionsCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ListCollectionsCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ListCollectionsCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ListCollectionsCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ListCollectionsCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ListCollectionsCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ListCollectionsCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ListCollectionsCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsCursor\"},{\"kind\":128,\"name\":\"ListIndexesCursor\",\"url\":\"classes/ListIndexesCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ListIndexesCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ListIndexesCursor.html#constructor\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":1024,\"name\":\"parent\",\"url\":\"classes/ListIndexesCursor.html#parent\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ListIndexesCursor.html#options\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ListIndexesCursor.html#clone\",\"classes\":\"\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ListIndexesCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/ListIndexesCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/ListIndexesCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/ListIndexesCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/ListIndexesCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ListIndexesCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/ListIndexesCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ListIndexesCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/ListIndexesCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/ListIndexesCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ListIndexesCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ListIndexesCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ListIndexesCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ListIndexesCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/ListIndexesCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ListIndexesCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/ListIndexesCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/ListIndexesCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/ListIndexesCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/ListIndexesCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/ListIndexesCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/ListIndexesCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/ListIndexesCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/ListIndexesCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ListIndexesCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ListIndexesCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ListIndexesCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ListIndexesCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ListIndexesCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ListIndexesCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ListIndexesCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ListIndexesCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ListIndexesCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ListIndexesCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ListIndexesCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ListIndexesCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ListIndexesCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ListIndexesCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ListIndexesCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ListIndexesCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesCursor\"},{\"kind\":128,\"name\":\"MongoClient\",\"url\":\"classes/MongoClient.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/MongoClient.html#connect-2\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoClient.html#constructor\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"options\",\"url\":\"classes/MongoClient.html#options\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"serverApi\",\"url\":\"classes/MongoClient.html#serverApi\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"monitorCommands\",\"url\":\"classes/MongoClient.html#monitorCommands\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/MongoClient.html#readConcern\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/MongoClient.html#writeConcern\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/MongoClient.html#readPreference\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/MongoClient.html#bsonOptions\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/MongoClient.html#connect\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/MongoClient.html#close\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"db\",\"url\":\"classes/MongoClient.html#db\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"startSession\",\"url\":\"classes/MongoClient.html#startSession\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"withSession\",\"url\":\"classes/MongoClient.html#withSession\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"watch\",\"url\":\"classes/MongoClient.html#watch\",\"classes\":\"\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/MongoClient.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/MongoClient.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/MongoClient.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/MongoClient.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/MongoClient.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/MongoClient.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/MongoClient.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/MongoClient.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/MongoClient.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/MongoClient.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/MongoClient.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/MongoClient.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/MongoClient.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/MongoClient.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/MongoClient.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClient\"},{\"kind\":128,\"name\":\"OrderedBulkOperation\",\"url\":\"classes/OrderedBulkOperation.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"addToOperationsList\",\"url\":\"classes/OrderedBulkOperation.html#addToOperationsList\",\"classes\":\"\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":1024,\"name\":\"isOrdered\",\"url\":\"classes/OrderedBulkOperation.html#isOrdered\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":1024,\"name\":\"operationId\",\"url\":\"classes/OrderedBulkOperation.html#operationId\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"insert\",\"url\":\"classes/OrderedBulkOperation.html#insert\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/OrderedBulkOperation.html#find\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"classes/OrderedBulkOperation.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/OrderedBulkOperation.html#bsonOptions\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/OrderedBulkOperation.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/OrderedBulkOperation.html#batches\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/OrderedBulkOperation.html#execute\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OrderedBulkOperation\"},{\"kind\":128,\"name\":\"RunCommandCursor\",\"url\":\"classes/RunCommandCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/RunCommandCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/RunCommandCursor.html#command\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":1024,\"name\":\"getMoreOptions\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type.comment\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions.__type\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type.maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"classes/RunCommandCursor.html#getMoreOptions.__type.batchSize\",\"classes\":\"\",\"parent\":\"RunCommandCursor.getMoreOptions.__type\"},{\"kind\":2048,\"name\":\"setComment\",\"url\":\"classes/RunCommandCursor.html#setComment\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"setMaxTimeMS\",\"url\":\"classes/RunCommandCursor.html#setMaxTimeMS\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"setBatchSize\",\"url\":\"classes/RunCommandCursor.html#setBatchSize\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/RunCommandCursor.html#clone\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/RunCommandCursor.html#withReadConcern\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/RunCommandCursor.html#addCursorFlag\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/RunCommandCursor.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/RunCommandCursor.html#batchSize-1\",\"classes\":\"\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/RunCommandCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/RunCommandCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/RunCommandCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/RunCommandCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/RunCommandCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/RunCommandCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/RunCommandCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/RunCommandCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/RunCommandCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/RunCommandCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/RunCommandCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/RunCommandCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/RunCommandCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/RunCommandCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/RunCommandCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/RunCommandCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/RunCommandCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/RunCommandCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/RunCommandCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/RunCommandCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/RunCommandCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/RunCommandCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/RunCommandCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/RunCommandCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/RunCommandCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/RunCommandCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/RunCommandCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/RunCommandCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/RunCommandCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/RunCommandCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/RunCommandCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/RunCommandCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/RunCommandCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/RunCommandCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/RunCommandCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/RunCommandCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RunCommandCursor\"},{\"kind\":128,\"name\":\"UnorderedBulkOperation\",\"url\":\"classes/UnorderedBulkOperation.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"handleWriteError\",\"url\":\"classes/UnorderedBulkOperation.html#handleWriteError\",\"classes\":\"\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"addToOperationsList\",\"url\":\"classes/UnorderedBulkOperation.html#addToOperationsList\",\"classes\":\"\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":1024,\"name\":\"isOrdered\",\"url\":\"classes/UnorderedBulkOperation.html#isOrdered\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":1024,\"name\":\"operationId\",\"url\":\"classes/UnorderedBulkOperation.html#operationId\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"insert\",\"url\":\"classes/UnorderedBulkOperation.html#insert\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/UnorderedBulkOperation.html#find\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"classes/UnorderedBulkOperation.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/UnorderedBulkOperation.html#bsonOptions\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/UnorderedBulkOperation.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/UnorderedBulkOperation.html#batches\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/UnorderedBulkOperation.html#execute\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UnorderedBulkOperation\"},{\"kind\":32,\"name\":\"BatchType\",\"url\":\"variables/BatchType-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BatchType\",\"url\":\"types/BatchType.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"AutoEncryptionLoggerLevel\",\"url\":\"variables/AutoEncryptionLoggerLevel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AutoEncryptionLoggerLevel\",\"url\":\"types/AutoEncryptionLoggerLevel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"GSSAPICanonicalizationValue\",\"url\":\"variables/GSSAPICanonicalizationValue-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"GSSAPICanonicalizationValue\",\"url\":\"types/GSSAPICanonicalizationValue.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"AuthMechanism\",\"url\":\"variables/AuthMechanism-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AuthMechanism\",\"url\":\"types/AuthMechanism.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"Compressor\",\"url\":\"variables/Compressor-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Compressor\",\"url\":\"types/Compressor.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"CURSOR_FLAGS\",\"url\":\"variables/CURSOR_FLAGS.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"MongoErrorLabel\",\"url\":\"variables/MongoErrorLabel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"MongoErrorLabel\",\"url\":\"types/MongoErrorLabel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ExplainVerbosity\",\"url\":\"variables/ExplainVerbosity-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ExplainVerbosity\",\"url\":\"types/ExplainVerbosity.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ServerApiVersion\",\"url\":\"variables/ServerApiVersion-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ServerApiVersion\",\"url\":\"types/ServerApiVersion.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ReturnDocument\",\"url\":\"variables/ReturnDocument-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ReturnDocument\",\"url\":\"types/ReturnDocument.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ProfilingLevel\",\"url\":\"variables/ProfilingLevel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ProfilingLevel\",\"url\":\"types/ProfilingLevel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ReadConcernLevel\",\"url\":\"variables/ReadConcernLevel-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ReadConcernLevel\",\"url\":\"types/ReadConcernLevel.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ReadPreferenceMode\",\"url\":\"variables/ReadPreferenceMode-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ReadPreferenceMode\",\"url\":\"types/ReadPreferenceMode.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"ServerType\",\"url\":\"variables/ServerType-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ServerType\",\"url\":\"types/ServerType.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"TopologyType\",\"url\":\"variables/TopologyType-1.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TopologyType\",\"url\":\"types/TopologyType.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ReadConcern\",\"url\":\"classes/ReadConcern.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromOptions\",\"url\":\"classes/ReadConcern.html#fromOptions\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"MAJORITY\",\"url\":\"classes/ReadConcern.html#MAJORITY\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"AVAILABLE\",\"url\":\"classes/ReadConcern.html#AVAILABLE\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"LINEARIZABLE\",\"url\":\"classes/ReadConcern.html#LINEARIZABLE\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":262144,\"name\":\"SNAPSHOT\",\"url\":\"classes/ReadConcern.html#SNAPSHOT\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReadConcern.html#constructor\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"classes/ReadConcern.html#level\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/ReadConcern.html#toJSON\",\"classes\":\"\",\"parent\":\"ReadConcern\"},{\"kind\":128,\"name\":\"ReadPreference\",\"url\":\"classes/ReadPreference.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"PRIMARY\",\"url\":\"classes/ReadPreference.html#PRIMARY\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"PRIMARY_PREFERRED\",\"url\":\"classes/ReadPreference.html#PRIMARY_PREFERRED\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"SECONDARY\",\"url\":\"classes/ReadPreference.html#SECONDARY\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"SECONDARY_PREFERRED\",\"url\":\"classes/ReadPreference.html#SECONDARY_PREFERRED\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"NEAREST\",\"url\":\"classes/ReadPreference.html#NEAREST\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"primary\",\"url\":\"classes/ReadPreference.html#primary-1\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"primaryPreferred\",\"url\":\"classes/ReadPreference.html#primaryPreferred\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"secondary\",\"url\":\"classes/ReadPreference.html#secondary-1\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"secondaryPreferred\",\"url\":\"classes/ReadPreference.html#secondaryPreferred\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"nearest\",\"url\":\"classes/ReadPreference.html#nearest-1\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/ReadPreference.html#fromString\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"fromOptions\",\"url\":\"classes/ReadPreference.html#fromOptions\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"translate\",\"url\":\"classes/ReadPreference.html#translate\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"isValid\",\"url\":\"classes/ReadPreference.html#isValid-2\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReadPreference.html#constructor\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"mode\",\"url\":\"classes/ReadPreference.html#mode\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/ReadPreference.html#tags\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"classes/ReadPreference.html#hedge\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"classes/ReadPreference.html#maxStalenessSeconds\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/ReadPreference.html#minWireVersion\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":262144,\"name\":\"preference\",\"url\":\"classes/ReadPreference.html#preference\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"isValid\",\"url\":\"classes/ReadPreference.html#isValid\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"secondaryOk\",\"url\":\"classes/ReadPreference.html#secondaryOk\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ReadPreference.html#equals\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/ReadPreference.html#toJSON\",\"classes\":\"\",\"parent\":\"ReadPreference\"},{\"kind\":128,\"name\":\"WriteConcern\",\"url\":\"classes/WriteConcern.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"apply\",\"url\":\"classes/WriteConcern.html#apply\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":2048,\"name\":\"fromOptions\",\"url\":\"classes/WriteConcern.html#fromOptions\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WriteConcern.html#constructor\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"w\",\"url\":\"classes/WriteConcern.html#w\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"journal\",\"url\":\"classes/WriteConcern.html#journal\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"wtimeoutMS\",\"url\":\"classes/WriteConcern.html#wtimeoutMS\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"wtimeout\",\"url\":\"classes/WriteConcern.html#wtimeout\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"j\",\"url\":\"classes/WriteConcern.html#j\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":1024,\"name\":\"fsync\",\"url\":\"classes/WriteConcern.html#fsync\",\"classes\":\"\",\"parent\":\"WriteConcern\"},{\"kind\":128,\"name\":\"CommandFailedEvent\",\"url\":\"classes/CommandFailedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CommandFailedEvent.html#address\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/CommandFailedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"requestId\",\"url\":\"classes/CommandFailedEvent.html#requestId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/CommandFailedEvent.html#duration\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"commandName\",\"url\":\"classes/CommandFailedEvent.html#commandName\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"failure\",\"url\":\"classes/CommandFailedEvent.html#failure\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/CommandFailedEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":262144,\"name\":\"hasServiceId\",\"url\":\"classes/CommandFailedEvent.html#hasServiceId\",\"classes\":\"\",\"parent\":\"CommandFailedEvent\"},{\"kind\":128,\"name\":\"CommandStartedEvent\",\"url\":\"classes/CommandStartedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"commandObj\",\"url\":\"classes/CommandStartedEvent.html#commandObj\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"requestId\",\"url\":\"classes/CommandStartedEvent.html#requestId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"databaseName\",\"url\":\"classes/CommandStartedEvent.html#databaseName\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"commandName\",\"url\":\"classes/CommandStartedEvent.html#commandName\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/CommandStartedEvent.html#command\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CommandStartedEvent.html#address\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/CommandStartedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/CommandStartedEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":262144,\"name\":\"hasServiceId\",\"url\":\"classes/CommandStartedEvent.html#hasServiceId\",\"classes\":\"\",\"parent\":\"CommandStartedEvent\"},{\"kind\":128,\"name\":\"CommandSucceededEvent\",\"url\":\"classes/CommandSucceededEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/CommandSucceededEvent.html#address\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/CommandSucceededEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"requestId\",\"url\":\"classes/CommandSucceededEvent.html#requestId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/CommandSucceededEvent.html#duration\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"commandName\",\"url\":\"classes/CommandSucceededEvent.html#commandName\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"reply\",\"url\":\"classes/CommandSucceededEvent.html#reply\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/CommandSucceededEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":262144,\"name\":\"hasServiceId\",\"url\":\"classes/CommandSucceededEvent.html#hasServiceId\",\"classes\":\"\",\"parent\":\"CommandSucceededEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckedInEvent\",\"url\":\"classes/ConnectionCheckedInEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionCheckedInEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionCheckedInEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckedInEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedInEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckedInEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedInEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckedOutEvent\",\"url\":\"classes/ConnectionCheckedOutEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionCheckedOutEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionCheckedOutEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckedOutEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedOutEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckedOutEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckedOutEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckOutFailedEvent\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html#reason\",\"classes\":\"\",\"parent\":\"ConnectionCheckOutFailedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutFailedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckOutFailedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutFailedEvent\"},{\"kind\":128,\"name\":\"ConnectionCheckOutStartedEvent\",\"url\":\"classes/ConnectionCheckOutStartedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCheckOutStartedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutStartedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCheckOutStartedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCheckOutStartedEvent\"},{\"kind\":128,\"name\":\"ConnectionClosedEvent\",\"url\":\"classes/ConnectionClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionClosedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"classes/ConnectionClosedEvent.html#reason\",\"classes\":\"\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"serviceId\",\"url\":\"classes/ConnectionClosedEvent.html#serviceId\",\"classes\":\"\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionClosedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionClosedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionClosedEvent\"},{\"kind\":128,\"name\":\"ConnectionCreatedEvent\",\"url\":\"classes/ConnectionCreatedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionCreatedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionCreatedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionCreatedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCreatedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionCreatedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionCreatedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolClearedEvent\",\"url\":\"classes/ConnectionPoolClearedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"interruptInUseConnections\",\"url\":\"classes/ConnectionPoolClearedEvent.html#interruptInUseConnections\",\"classes\":\"\",\"parent\":\"ConnectionPoolClearedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolClearedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClearedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolClearedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClearedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolClosedEvent\",\"url\":\"classes/ConnectionPoolClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolClosedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClosedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolClosedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolClosedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolCreatedEvent\",\"url\":\"classes/ConnectionPoolCreatedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/ConnectionPoolCreatedEvent.html#options\",\"classes\":\"\",\"parent\":\"ConnectionPoolCreatedEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolCreatedEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolCreatedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolCreatedEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolCreatedEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolMonitoringEvent\",\"url\":\"classes/ConnectionPoolMonitoringEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolMonitoringEvent.html#time\",\"classes\":\"\",\"parent\":\"ConnectionPoolMonitoringEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolMonitoringEvent.html#address\",\"classes\":\"\",\"parent\":\"ConnectionPoolMonitoringEvent\"},{\"kind\":128,\"name\":\"ConnectionPoolReadyEvent\",\"url\":\"classes/ConnectionPoolReadyEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionPoolReadyEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolReadyEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionPoolReadyEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolReadyEvent\"},{\"kind\":128,\"name\":\"ConnectionReadyEvent\",\"url\":\"classes/ConnectionReadyEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ConnectionReadyEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ConnectionReadyEvent\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"classes/ConnectionReadyEvent.html#time\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionReadyEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ConnectionReadyEvent.html#address\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionReadyEvent\"},{\"kind\":128,\"name\":\"ServerClosedEvent\",\"url\":\"classes/ServerClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/ServerClosedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"ServerClosedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerClosedEvent.html#address\",\"classes\":\"\",\"parent\":\"ServerClosedEvent\"},{\"kind\":128,\"name\":\"ServerDescriptionChangedEvent\",\"url\":\"classes/ServerDescriptionChangedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/ServerDescriptionChangedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerDescriptionChangedEvent.html#address\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"previousDescription\",\"url\":\"classes/ServerDescriptionChangedEvent.html#previousDescription\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"newDescription\",\"url\":\"classes/ServerDescriptionChangedEvent.html#newDescription\",\"classes\":\"\",\"parent\":\"ServerDescriptionChangedEvent\"},{\"kind\":128,\"name\":\"ServerHeartbeatFailedEvent\",\"url\":\"classes/ServerHeartbeatFailedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ServerHeartbeatFailedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ServerHeartbeatFailedEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/ServerHeartbeatFailedEvent.html#duration\",\"classes\":\"\",\"parent\":\"ServerHeartbeatFailedEvent\"},{\"kind\":1024,\"name\":\"failure\",\"url\":\"classes/ServerHeartbeatFailedEvent.html#failure\",\"classes\":\"\",\"parent\":\"ServerHeartbeatFailedEvent\"},{\"kind\":128,\"name\":\"ServerHeartbeatStartedEvent\",\"url\":\"classes/ServerHeartbeatStartedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ServerHeartbeatStartedEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ServerHeartbeatStartedEvent\"},{\"kind\":128,\"name\":\"ServerHeartbeatSucceededEvent\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectionId\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html#connectionId\",\"classes\":\"\",\"parent\":\"ServerHeartbeatSucceededEvent\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html#duration\",\"classes\":\"\",\"parent\":\"ServerHeartbeatSucceededEvent\"},{\"kind\":1024,\"name\":\"reply\",\"url\":\"classes/ServerHeartbeatSucceededEvent.html#reply\",\"classes\":\"\",\"parent\":\"ServerHeartbeatSucceededEvent\"},{\"kind\":128,\"name\":\"ServerOpeningEvent\",\"url\":\"classes/ServerOpeningEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/ServerOpeningEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"ServerOpeningEvent\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerOpeningEvent.html#address\",\"classes\":\"\",\"parent\":\"ServerOpeningEvent\"},{\"kind\":128,\"name\":\"TopologyClosedEvent\",\"url\":\"classes/TopologyClosedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/TopologyClosedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"TopologyClosedEvent\"},{\"kind\":128,\"name\":\"TopologyDescriptionChangedEvent\",\"url\":\"classes/TopologyDescriptionChangedEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/TopologyDescriptionChangedEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"TopologyDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"previousDescription\",\"url\":\"classes/TopologyDescriptionChangedEvent.html#previousDescription\",\"classes\":\"\",\"parent\":\"TopologyDescriptionChangedEvent\"},{\"kind\":1024,\"name\":\"newDescription\",\"url\":\"classes/TopologyDescriptionChangedEvent.html#newDescription\",\"classes\":\"\",\"parent\":\"TopologyDescriptionChangedEvent\"},{\"kind\":128,\"name\":\"TopologyOpeningEvent\",\"url\":\"classes/TopologyOpeningEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"topologyId\",\"url\":\"classes/TopologyOpeningEvent.html#topologyId\",\"classes\":\"\",\"parent\":\"TopologyOpeningEvent\"},{\"kind\":256,\"name\":\"BSONSerializeOptions\",\"url\":\"interfaces/BSONSerializeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/BSONSerializeOptions.html#raw\",\"classes\":\"\",\"parent\":\"BSONSerializeOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/BSONSerializeOptions.html#enableUtf8Validation\",\"classes\":\"\",\"parent\":\"BSONSerializeOptions\"},{\"kind\":8388608,\"name\":\"Document\",\"url\":\"modules.html#Document\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"deserialize\",\"url\":\"modules.html#deserialize\",\"classes\":\"\"},{\"kind\":8388608,\"name\":\"serialize\",\"url\":\"modules.html#serialize\",\"classes\":\"\"},{\"kind\":256,\"name\":\"BulkWriteOperationError\",\"url\":\"interfaces/BulkWriteOperationError.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"interfaces/BulkWriteOperationError.html#index\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/BulkWriteOperationError.html#code\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"interfaces/BulkWriteOperationError.html#errmsg\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"interfaces/BulkWriteOperationError.html#errInfo\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":1024,\"name\":\"op\",\"url\":\"interfaces/BulkWriteOperationError.html#op\",\"classes\":\"\",\"parent\":\"BulkWriteOperationError\"},{\"kind\":128,\"name\":\"BulkWriteResult\",\"url\":\"classes/BulkWriteResult.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"generateIdMap\",\"url\":\"classes/BulkWriteResult.html#generateIdMap\",\"classes\":\"tsd-is-private\",\"parent\":\"BulkWriteResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/BulkWriteResult.html#generateIdMap.generateIdMap-1.__type-2\",\"classes\":\"\",\"parent\":\"BulkWriteResult.generateIdMap.generateIdMap\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"classes/BulkWriteResult.html#result\",\"classes\":\"tsd-is-private\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"insertedCount\",\"url\":\"classes/BulkWriteResult.html#insertedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"matchedCount\",\"url\":\"classes/BulkWriteResult.html#matchedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"modifiedCount\",\"url\":\"classes/BulkWriteResult.html#modifiedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"deletedCount\",\"url\":\"classes/BulkWriteResult.html#deletedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"upsertedCount\",\"url\":\"classes/BulkWriteResult.html#upsertedCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":1024,\"name\":\"upsertedIds\",\"url\":\"classes/BulkWriteResult.html#upsertedIds\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/BulkWriteResult.html#upsertedIds.__type-1\",\"classes\":\"\",\"parent\":\"BulkWriteResult.upsertedIds\"},{\"kind\":1024,\"name\":\"insertedIds\",\"url\":\"classes/BulkWriteResult.html#insertedIds\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/BulkWriteResult.html#insertedIds.__type\",\"classes\":\"\",\"parent\":\"BulkWriteResult.insertedIds\"},{\"kind\":262144,\"name\":\"ok\",\"url\":\"classes/BulkWriteResult.html#ok\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getUpsertedIdAt\",\"url\":\"classes/BulkWriteResult.html#getUpsertedIdAt\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getRawResponse\",\"url\":\"classes/BulkWriteResult.html#getRawResponse\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"hasWriteErrors\",\"url\":\"classes/BulkWriteResult.html#hasWriteErrors\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteErrorCount\",\"url\":\"classes/BulkWriteResult.html#getWriteErrorCount\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteErrorAt\",\"url\":\"classes/BulkWriteResult.html#getWriteErrorAt\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteErrors\",\"url\":\"classes/BulkWriteResult.html#getWriteErrors\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"getWriteConcernError\",\"url\":\"classes/BulkWriteResult.html#getWriteConcernError\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/BulkWriteResult.html#toString\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":2048,\"name\":\"isOk\",\"url\":\"classes/BulkWriteResult.html#isOk\",\"classes\":\"\",\"parent\":\"BulkWriteResult\"},{\"kind\":256,\"name\":\"DeleteManyModel\",\"url\":\"interfaces/DeleteManyModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/DeleteManyModel.html#filter\",\"classes\":\"\",\"parent\":\"DeleteManyModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteManyModel.html#collation\",\"classes\":\"\",\"parent\":\"DeleteManyModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteManyModel.html#hint\",\"classes\":\"\",\"parent\":\"DeleteManyModel\"},{\"kind\":256,\"name\":\"DeleteOneModel\",\"url\":\"interfaces/DeleteOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/DeleteOneModel.html#filter\",\"classes\":\"\",\"parent\":\"DeleteOneModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteOneModel.html#collation\",\"classes\":\"\",\"parent\":\"DeleteOneModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteOneModel.html#hint\",\"classes\":\"\",\"parent\":\"DeleteOneModel\"},{\"kind\":256,\"name\":\"InsertOneModel\",\"url\":\"interfaces/InsertOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"document\",\"url\":\"interfaces/InsertOneModel.html#document\",\"classes\":\"\",\"parent\":\"InsertOneModel\"},{\"kind\":256,\"name\":\"ReplaceOneModel\",\"url\":\"interfaces/ReplaceOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/ReplaceOneModel.html#filter\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"replacement\",\"url\":\"interfaces/ReplaceOneModel.html#replacement\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ReplaceOneModel.html#collation\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/ReplaceOneModel.html#hint\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/ReplaceOneModel.html#upsert\",\"classes\":\"\",\"parent\":\"ReplaceOneModel\"},{\"kind\":256,\"name\":\"UpdateManyModel\",\"url\":\"interfaces/UpdateManyModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/UpdateManyModel.html#filter\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/UpdateManyModel.html#update\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateManyModel.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateManyModel.html#collation\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateManyModel.html#hint\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateManyModel.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateManyModel\"},{\"kind\":256,\"name\":\"UpdateOneModel\",\"url\":\"interfaces/UpdateOneModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/UpdateOneModel.html#filter\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"update\",\"url\":\"interfaces/UpdateOneModel.html#update\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateOneModel.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateOneModel.html#collation\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateOneModel.html#hint\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateOneModel.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateOneModel\"},{\"kind\":128,\"name\":\"WriteConcernError\",\"url\":\"classes/WriteConcernError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WriteConcernError.html#constructor\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":262144,\"name\":\"code\",\"url\":\"classes/WriteConcernError.html#code\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/WriteConcernError.html#errmsg\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":262144,\"name\":\"errInfo\",\"url\":\"classes/WriteConcernError.html#errInfo\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/WriteConcernError.html#toJSON\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/WriteConcernError.html#toString\",\"classes\":\"\",\"parent\":\"WriteConcernError\"},{\"kind\":128,\"name\":\"WriteError\",\"url\":\"classes/WriteError.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WriteError.html#constructor\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"classes/WriteError.html#err\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"code\",\"url\":\"classes/WriteError.html#code\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"index\",\"url\":\"classes/WriteError.html#index\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"errmsg\",\"url\":\"classes/WriteError.html#errmsg\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":262144,\"name\":\"errInfo\",\"url\":\"classes/WriteError.html#errInfo\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":2048,\"name\":\"getOperation\",\"url\":\"classes/WriteError.html#getOperation\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/WriteError.html#toJSON\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.code-2\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.index-2\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.errmsg-2\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"op\",\"url\":\"classes/WriteError.html#toJSON.toJSON-1.__type.op\",\"classes\":\"\",\"parent\":\"WriteError.toJSON.toJSON.__type\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/WriteError.html#toString\",\"classes\":\"\",\"parent\":\"WriteError\"},{\"kind\":128,\"name\":\"Batch\",\"url\":\"classes/Batch.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Batch.html#constructor\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"originalZeroIndex\",\"url\":\"classes/Batch.html#originalZeroIndex\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"currentIndex\",\"url\":\"classes/Batch.html#currentIndex\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"originalIndexes\",\"url\":\"classes/Batch.html#originalIndexes\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"batchType\",\"url\":\"classes/Batch.html#batchType\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"operations\",\"url\":\"classes/Batch.html#operations\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"classes/Batch.html#size\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":1024,\"name\":\"sizeBytes\",\"url\":\"classes/Batch.html#sizeBytes\",\"classes\":\"\",\"parent\":\"Batch\"},{\"kind\":128,\"name\":\"BulkOperationBase\",\"url\":\"classes/BulkOperationBase.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"isOrdered\",\"url\":\"classes/BulkOperationBase.html#isOrdered\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":1024,\"name\":\"operationId\",\"url\":\"classes/BulkOperationBase.html#operationId\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"insert\",\"url\":\"classes/BulkOperationBase.html#insert\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"find\",\"url\":\"classes/BulkOperationBase.html#find\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"raw\",\"url\":\"classes/BulkOperationBase.html#raw\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":262144,\"name\":\"bsonOptions\",\"url\":\"classes/BulkOperationBase.html#bsonOptions\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":262144,\"name\":\"writeConcern\",\"url\":\"classes/BulkOperationBase.html#writeConcern\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/BulkOperationBase.html#batches\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/BulkOperationBase.html#execute\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":2048,\"name\":\"addToOperationsList\",\"url\":\"classes/BulkOperationBase.html#addToOperationsList\",\"classes\":\"\",\"parent\":\"BulkOperationBase\"},{\"kind\":128,\"name\":\"FindOperators\",\"url\":\"classes/FindOperators.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bulkOperation\",\"url\":\"classes/FindOperators.html#bulkOperation\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/FindOperators.html#update\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"updateOne\",\"url\":\"classes/FindOperators.html#updateOne\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"replaceOne\",\"url\":\"classes/FindOperators.html#replaceOne\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"deleteOne\",\"url\":\"classes/FindOperators.html#deleteOne\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/FindOperators.html#delete\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"upsert\",\"url\":\"classes/FindOperators.html#upsert\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"collation\",\"url\":\"classes/FindOperators.html#collation\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"arrayFilters\",\"url\":\"classes/FindOperators.html#arrayFilters\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":2048,\"name\":\"hint\",\"url\":\"classes/FindOperators.html#hint\",\"classes\":\"\",\"parent\":\"FindOperators\"},{\"kind\":256,\"name\":\"WriteConcernErrorData\",\"url\":\"interfaces/WriteConcernErrorData.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/WriteConcernErrorData.html#code\",\"classes\":\"\",\"parent\":\"WriteConcernErrorData\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"interfaces/WriteConcernErrorData.html#errmsg\",\"classes\":\"\",\"parent\":\"WriteConcernErrorData\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"interfaces/WriteConcernErrorData.html#errInfo\",\"classes\":\"\",\"parent\":\"WriteConcernErrorData\"},{\"kind\":256,\"name\":\"ChangeStreamCollModDocument\",\"url\":\"interfaces/ChangeStreamCollModDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamCollModDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCollModDocument\"},{\"kind\":256,\"name\":\"ChangeStreamCreateDocument\",\"url\":\"interfaces/ChangeStreamCreateDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamCreateDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateDocument\"},{\"kind\":256,\"name\":\"ChangeStreamCreateIndexDocument\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamCreateIndexDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamCreateIndexDocument\"},{\"kind\":256,\"name\":\"ChangeStreamDeleteDocument\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamDeleteDocument.documentKey.__type\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDeleteDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDeleteDocument\"},{\"kind\":4194304,\"name\":\"ChangeStreamDocument\",\"url\":\"types/ChangeStreamDocument.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentCollectionUUID\",\"url\":\"interfaces/ChangeStreamDocumentCollectionUUID.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDocumentCollectionUUID.html#collectionUUID\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCollectionUUID\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentCommon\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#_id\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#clusterTime\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#txnNumber\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#lsid\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamDocumentCommon.html#splitEvent\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentCommon\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentKey\",\"url\":\"interfaces/ChangeStreamDocumentKey.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamDocumentKey.html#documentKey\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentKey\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamDocumentKey.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentKey.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDocumentKey.html#documentKey.__type._id\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentKey.documentKey.__type\"},{\"kind\":256,\"name\":\"ChangeStreamDocumentOperationDescription\",\"url\":\"interfaces/ChangeStreamDocumentOperationDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamDocumentOperationDescription.html#operationDescription\",\"classes\":\"\",\"parent\":\"ChangeStreamDocumentOperationDescription\"},{\"kind\":256,\"name\":\"ChangeStreamDropDatabaseDocument\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#ns.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument.ns\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#ns.__type.db\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDatabaseDocument.ns.__type\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamDropDatabaseDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDatabaseDocument\"},{\"kind\":256,\"name\":\"ChangeStreamDropDocument\",\"url\":\"interfaces/ChangeStreamDropDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDropDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamDropDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDropDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDropDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDropDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDropDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamDropDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDropDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropDocument\"},{\"kind\":256,\"name\":\"ChangeStreamDropIndexDocument\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamDropIndexDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamDropIndexDocument\"},{\"kind\":4194304,\"name\":\"ChangeStreamEvents\",\"url\":\"types/ChangeStreamEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ChangeStreamInsertDocument\",\"url\":\"interfaces/ChangeStreamInsertDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamInsertDocument.documentKey.__type\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamInsertDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInsertDocument\"},{\"kind\":256,\"name\":\"ChangeStreamInvalidateDocument\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamInvalidateDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamInvalidateDocument\"},{\"kind\":256,\"name\":\"ChangeStreamNameSpace\",\"url\":\"interfaces/ChangeStreamNameSpace.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/ChangeStreamNameSpace.html#db\",\"classes\":\"\",\"parent\":\"ChangeStreamNameSpace\"},{\"kind\":1024,\"name\":\"coll\",\"url\":\"interfaces/ChangeStreamNameSpace.html#coll\",\"classes\":\"\",\"parent\":\"ChangeStreamNameSpace\"},{\"kind\":256,\"name\":\"ChangeStreamOptions\",\"url\":\"interfaces/ChangeStreamOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamOptions.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamOptions.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/ChangeStreamOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"resumeAfter\",\"url\":\"interfaces/ChangeStreamOptions.html#resumeAfter\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"startAfter\",\"url\":\"interfaces/ChangeStreamOptions.html#startAfter\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"startAtOperationTime\",\"url\":\"interfaces/ChangeStreamOptions.html#startAtOperationTime\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ChangeStreamOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"showExpandedEvents\",\"url\":\"interfaces/ChangeStreamOptions.html#showExpandedEvents\",\"classes\":\"\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ChangeStreamOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ChangeStreamOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ChangeStreamOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ChangeStreamOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ChangeStreamOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ChangeStreamOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ChangeStreamOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/ChangeStreamOptions.html#cursor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ChangeStreamOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ChangeStreamOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ChangeStreamOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ChangeStreamOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ChangeStreamOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ChangeStreamOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ChangeStreamOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ChangeStreamOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/ChangeStreamOptions.html#hint\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/ChangeStreamOptions.html#allowDiskUse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/ChangeStreamOptions.html#bypassDocumentValidation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/ChangeStreamOptions.html#let\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/ChangeStreamOptions.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamOptions\"},{\"kind\":256,\"name\":\"ChangeStreamRefineCollectionShardKeyDocument\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamRefineCollectionShardKeyDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRefineCollectionShardKeyDocument\"},{\"kind\":256,\"name\":\"ChangeStreamRenameDocument\",\"url\":\"interfaces/ChangeStreamRenameDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument.to\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to.__type.db\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument.to.__type\"},{\"kind\":1024,\"name\":\"coll\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#to.__type.coll\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument.to.__type\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamRenameDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamRenameDocument\"},{\"kind\":256,\"name\":\"ChangeStreamReplaceDocument\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReplaceDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamReplaceDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamReplaceDocument.documentKey.__type\"},{\"kind\":256,\"name\":\"ChangeStreamReshardCollectionDocument\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamReshardCollectionDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamReshardCollectionDocument\"},{\"kind\":256,\"name\":\"ChangeStreamShardCollectionDocument\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":1024,\"name\":\"operationDescription\",\"url\":\"interfaces/ChangeStreamShardCollectionDocument.html#operationDescription\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamShardCollectionDocument\"},{\"kind\":256,\"name\":\"ChangeStreamSplitEvent\",\"url\":\"interfaces/ChangeStreamSplitEvent.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"fragment\",\"url\":\"interfaces/ChangeStreamSplitEvent.html#fragment\",\"classes\":\"\",\"parent\":\"ChangeStreamSplitEvent\"},{\"kind\":1024,\"name\":\"of\",\"url\":\"interfaces/ChangeStreamSplitEvent.html#of\",\"classes\":\"\",\"parent\":\"ChangeStreamSplitEvent\"},{\"kind\":256,\"name\":\"ChangeStreamUpdateDocument\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"operationType\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#operationType\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#fullDocument\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"updateDescription\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#updateDescription\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"ns\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#ns\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"fullDocumentBeforeChange\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#fullDocumentBeforeChange\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#clusterTime\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#txnNumber\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"lsid\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#lsid\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"splitEvent\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#splitEvent\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":1024,\"name\":\"documentKey\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#documentKey\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#documentKey.__type\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument.documentKey\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#documentKey.__type._id-1\",\"classes\":\"\",\"parent\":\"ChangeStreamUpdateDocument.documentKey.__type\"},{\"kind\":1024,\"name\":\"collectionUUID\",\"url\":\"interfaces/ChangeStreamUpdateDocument.html#collectionUUID\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChangeStreamUpdateDocument\"},{\"kind\":4194304,\"name\":\"OperationTime\",\"url\":\"types/OperationTime.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ResumeOptions\",\"url\":\"interfaces/ResumeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"startAtOperationTime\",\"url\":\"interfaces/ResumeOptions.html#startAtOperationTime\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ResumeOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/ResumeOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ResumeOptions.html#collation\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ResumeOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"resumeAfter\",\"url\":\"interfaces/ResumeOptions.html#resumeAfter\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"startAfter\",\"url\":\"interfaces/ResumeOptions.html#startAfter\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":1024,\"name\":\"fullDocument\",\"url\":\"interfaces/ResumeOptions.html#fullDocument\",\"classes\":\"\",\"parent\":\"ResumeOptions\"},{\"kind\":4194304,\"name\":\"ResumeToken\",\"url\":\"types/ResumeToken.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"UpdateDescription\",\"url\":\"interfaces/UpdateDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"updatedFields\",\"url\":\"interfaces/UpdateDescription.html#updatedFields\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":1024,\"name\":\"removedFields\",\"url\":\"interfaces/UpdateDescription.html#removedFields\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":1024,\"name\":\"truncatedArrays\",\"url\":\"interfaces/UpdateDescription.html#truncatedArrays\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":1024,\"name\":\"disambiguatedPaths\",\"url\":\"interfaces/UpdateDescription.html#disambiguatedPaths\",\"classes\":\"\",\"parent\":\"UpdateDescription\"},{\"kind\":256,\"name\":\"AutoEncryptionOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"keyVaultClient\",\"url\":\"interfaces/AutoEncryptionOptions.html#keyVaultClient\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"keyVaultNamespace\",\"url\":\"interfaces/AutoEncryptionOptions.html#keyVaultNamespace\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"kmsProviders\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders\"},{\"kind\":1024,\"name\":\"aws\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.aws\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":1024,\"name\":\"local\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.local\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.local.__type-3\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.local\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.local.__type-3.key\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.local.__type\"},{\"kind\":1024,\"name\":\"azure\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.azure\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":1024,\"name\":\"gcp\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.gcp\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":1024,\"name\":\"kmip\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.kmip\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.kmip.__type-2\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.kmip\"},{\"kind\":1024,\"name\":\"endpoint\",\"url\":\"interfaces/AutoEncryptionOptions.html#kmsProviders.__type-1.kmip.__type-2.endpoint\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.kmsProviders.__type.kmip.__type\"},{\"kind\":1024,\"name\":\"schemaMap\",\"url\":\"interfaces/AutoEncryptionOptions.html#schemaMap\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"encryptedFieldsMap\",\"url\":\"interfaces/AutoEncryptionOptions.html#encryptedFieldsMap\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"bypassAutoEncryption\",\"url\":\"interfaces/AutoEncryptionOptions.html#bypassAutoEncryption\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"bypassQueryAnalysis\",\"url\":\"interfaces/AutoEncryptionOptions.html#bypassQueryAnalysis\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/AutoEncryptionOptions.html#options\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#options.__type-4\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.options\"},{\"kind\":1024,\"name\":\"logger\",\"url\":\"interfaces/AutoEncryptionOptions.html#options.__type-4.logger\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.options.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#options.__type-4.logger.__type-5\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.options.__type.logger\"},{\"kind\":1024,\"name\":\"extraOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions\"},{\"kind\":1024,\"name\":\"mongocryptdURI\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdURI\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"mongocryptdBypassSpawn\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdBypassSpawn\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"mongocryptdSpawnPath\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdSpawnPath\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"mongocryptdSpawnArgs\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.mongocryptdSpawnArgs\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"cryptSharedLibPath\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.cryptSharedLibPath\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"cryptSharedLibRequired\",\"url\":\"interfaces/AutoEncryptionOptions.html#extraOptions.__type.cryptSharedLibRequired\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions.extraOptions.__type\"},{\"kind\":1024,\"name\":\"proxyOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html#proxyOptions\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":1024,\"name\":\"tlsOptions\",\"url\":\"interfaces/AutoEncryptionOptions.html#tlsOptions\",\"classes\":\"\",\"parent\":\"AutoEncryptionOptions\"},{\"kind\":4194304,\"name\":\"AutoEncryptionExtraOptions\",\"url\":\"types/AutoEncryptionExtraOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"AWSEncryptionKeyOptions\",\"url\":\"interfaces/AWSEncryptionKeyOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"region\",\"url\":\"interfaces/AWSEncryptionKeyOptions.html#region\",\"classes\":\"\",\"parent\":\"AWSEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/AWSEncryptionKeyOptions.html#key\",\"classes\":\"\",\"parent\":\"AWSEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"endpoint\",\"url\":\"interfaces/AWSEncryptionKeyOptions.html#endpoint\",\"classes\":\"\",\"parent\":\"AWSEncryptionKeyOptions\"},{\"kind\":256,\"name\":\"AzureEncryptionKeyOptions\",\"url\":\"interfaces/AzureEncryptionKeyOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"keyName\",\"url\":\"interfaces/AzureEncryptionKeyOptions.html#keyName\",\"classes\":\"\",\"parent\":\"AzureEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"keyVaultEndpoint\",\"url\":\"interfaces/AzureEncryptionKeyOptions.html#keyVaultEndpoint\",\"classes\":\"\",\"parent\":\"AzureEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"keyVersion\",\"url\":\"interfaces/AzureEncryptionKeyOptions.html#keyVersion\",\"classes\":\"\",\"parent\":\"AzureEncryptionKeyOptions\"},{\"kind\":256,\"name\":\"ClientEncryptionCreateDataKeyProviderOptions\",\"url\":\"interfaces/ClientEncryptionCreateDataKeyProviderOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"masterKey\",\"url\":\"interfaces/ClientEncryptionCreateDataKeyProviderOptions.html#masterKey\",\"classes\":\"\",\"parent\":\"ClientEncryptionCreateDataKeyProviderOptions\"},{\"kind\":1024,\"name\":\"keyAltNames\",\"url\":\"interfaces/ClientEncryptionCreateDataKeyProviderOptions.html#keyAltNames\",\"classes\":\"\",\"parent\":\"ClientEncryptionCreateDataKeyProviderOptions\"},{\"kind\":1024,\"name\":\"keyMaterial\",\"url\":\"interfaces/ClientEncryptionCreateDataKeyProviderOptions.html#keyMaterial\",\"classes\":\"\",\"parent\":\"ClientEncryptionCreateDataKeyProviderOptions\"},{\"kind\":256,\"name\":\"ClientEncryptionEncryptOptions\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"algorithm\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html#algorithm\",\"classes\":\"\",\"parent\":\"ClientEncryptionEncryptOptions\"},{\"kind\":1024,\"name\":\"keyId\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html#keyId\",\"classes\":\"\",\"parent\":\"ClientEncryptionEncryptOptions\"},{\"kind\":1024,\"name\":\"keyAltName\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html#keyAltName\",\"classes\":\"\",\"parent\":\"ClientEncryptionEncryptOptions\"},{\"kind\":1024,\"name\":\"contentionFactor\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html#contentionFactor\",\"classes\":\"\",\"parent\":\"ClientEncryptionEncryptOptions\"},{\"kind\":1024,\"name\":\"queryType\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html#queryType\",\"classes\":\"\",\"parent\":\"ClientEncryptionEncryptOptions\"},{\"kind\":1024,\"name\":\"rangeOptions\",\"url\":\"interfaces/ClientEncryptionEncryptOptions.html#rangeOptions\",\"classes\":\"\",\"parent\":\"ClientEncryptionEncryptOptions\"},{\"kind\":256,\"name\":\"ClientEncryptionOptions\",\"url\":\"interfaces/ClientEncryptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"keyVaultNamespace\",\"url\":\"interfaces/ClientEncryptionOptions.html#keyVaultNamespace\",\"classes\":\"\",\"parent\":\"ClientEncryptionOptions\"},{\"kind\":1024,\"name\":\"keyVaultClient\",\"url\":\"interfaces/ClientEncryptionOptions.html#keyVaultClient\",\"classes\":\"\",\"parent\":\"ClientEncryptionOptions\"},{\"kind\":1024,\"name\":\"kmsProviders\",\"url\":\"interfaces/ClientEncryptionOptions.html#kmsProviders\",\"classes\":\"\",\"parent\":\"ClientEncryptionOptions\"},{\"kind\":1024,\"name\":\"proxyOptions\",\"url\":\"interfaces/ClientEncryptionOptions.html#proxyOptions\",\"classes\":\"\",\"parent\":\"ClientEncryptionOptions\"},{\"kind\":1024,\"name\":\"tlsOptions\",\"url\":\"interfaces/ClientEncryptionOptions.html#tlsOptions\",\"classes\":\"\",\"parent\":\"ClientEncryptionOptions\"},{\"kind\":256,\"name\":\"ClientEncryptionRewrapManyDataKeyProviderOptions\",\"url\":\"interfaces/ClientEncryptionRewrapManyDataKeyProviderOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/ClientEncryptionRewrapManyDataKeyProviderOptions.html#provider\",\"classes\":\"\",\"parent\":\"ClientEncryptionRewrapManyDataKeyProviderOptions\"},{\"kind\":1024,\"name\":\"masterKey\",\"url\":\"interfaces/ClientEncryptionRewrapManyDataKeyProviderOptions.html#masterKey\",\"classes\":\"\",\"parent\":\"ClientEncryptionRewrapManyDataKeyProviderOptions\"},{\"kind\":256,\"name\":\"ClientEncryptionRewrapManyDataKeyResult\",\"url\":\"interfaces/ClientEncryptionRewrapManyDataKeyResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bulkWriteResult\",\"url\":\"interfaces/ClientEncryptionRewrapManyDataKeyResult.html#bulkWriteResult\",\"classes\":\"\",\"parent\":\"ClientEncryptionRewrapManyDataKeyResult\"},{\"kind\":256,\"name\":\"DataKey\",\"url\":\"interfaces/DataKey.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/DataKey.html#_id\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/DataKey.html#version\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"keyAltNames\",\"url\":\"interfaces/DataKey.html#keyAltNames\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"keyMaterial\",\"url\":\"interfaces/DataKey.html#keyMaterial\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"creationDate\",\"url\":\"interfaces/DataKey.html#creationDate\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"updateDate\",\"url\":\"interfaces/DataKey.html#updateDate\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DataKey.html#status\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":1024,\"name\":\"masterKey\",\"url\":\"interfaces/DataKey.html#masterKey\",\"classes\":\"\",\"parent\":\"DataKey\"},{\"kind\":256,\"name\":\"GCPEncryptionKeyOptions\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"projectId\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html#projectId\",\"classes\":\"\",\"parent\":\"GCPEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"location\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html#location\",\"classes\":\"\",\"parent\":\"GCPEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"keyRing\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html#keyRing\",\"classes\":\"\",\"parent\":\"GCPEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"keyName\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html#keyName\",\"classes\":\"\",\"parent\":\"GCPEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"keyVersion\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html#keyVersion\",\"classes\":\"\",\"parent\":\"GCPEncryptionKeyOptions\"},{\"kind\":1024,\"name\":\"endpoint\",\"url\":\"interfaces/GCPEncryptionKeyOptions.html#endpoint\",\"classes\":\"\",\"parent\":\"GCPEncryptionKeyOptions\"},{\"kind\":256,\"name\":\"RangeOptions\",\"url\":\"interfaces/RangeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/RangeOptions.html#min\",\"classes\":\"\",\"parent\":\"RangeOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/RangeOptions.html#max\",\"classes\":\"\",\"parent\":\"RangeOptions\"},{\"kind\":1024,\"name\":\"sparsity\",\"url\":\"interfaces/RangeOptions.html#sparsity\",\"classes\":\"\",\"parent\":\"RangeOptions\"},{\"kind\":1024,\"name\":\"precision\",\"url\":\"interfaces/RangeOptions.html#precision\",\"classes\":\"\",\"parent\":\"RangeOptions\"},{\"kind\":128,\"name\":\"MongoCryptAzureKMSRequestError\",\"url\":\"classes/MongoCryptAzureKMSRequestError.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"classes/MongoCryptAzureKMSRequestError.html#body\",\"classes\":\"\",\"parent\":\"MongoCryptAzureKMSRequestError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCryptAzureKMSRequestError.html#name\",\"classes\":\"\",\"parent\":\"MongoCryptAzureKMSRequestError\"},{\"kind\":128,\"name\":\"MongoCryptCreateDataKeyError\",\"url\":\"classes/MongoCryptCreateDataKeyError.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"encryptedFields\",\"url\":\"classes/MongoCryptCreateDataKeyError.html#encryptedFields\",\"classes\":\"\",\"parent\":\"MongoCryptCreateDataKeyError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCryptCreateDataKeyError.html#name\",\"classes\":\"\",\"parent\":\"MongoCryptCreateDataKeyError\"},{\"kind\":128,\"name\":\"MongoCryptCreateEncryptedCollectionError\",\"url\":\"classes/MongoCryptCreateEncryptedCollectionError.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"encryptedFields\",\"url\":\"classes/MongoCryptCreateEncryptedCollectionError.html#encryptedFields\",\"classes\":\"\",\"parent\":\"MongoCryptCreateEncryptedCollectionError\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCryptCreateEncryptedCollectionError.html#name\",\"classes\":\"\",\"parent\":\"MongoCryptCreateEncryptedCollectionError\"},{\"kind\":128,\"name\":\"MongoCryptError\",\"url\":\"classes/MongoCryptError.html\",\"classes\":\"\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCryptError.html#name\",\"classes\":\"\",\"parent\":\"MongoCryptError\"},{\"kind\":128,\"name\":\"MongoCryptInvalidArgumentError\",\"url\":\"classes/MongoCryptInvalidArgumentError.html\",\"classes\":\"\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCryptInvalidArgumentError.html#name\",\"classes\":\"\",\"parent\":\"MongoCryptInvalidArgumentError\"},{\"kind\":128,\"name\":\"MongoCryptKMSRequestNetworkTimeoutError\",\"url\":\"classes/MongoCryptKMSRequestNetworkTimeoutError.html\",\"classes\":\"\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/MongoCryptKMSRequestNetworkTimeoutError.html#name\",\"classes\":\"\",\"parent\":\"MongoCryptKMSRequestNetworkTimeoutError\"},{\"kind\":4194304,\"name\":\"ClientEncryptionDataKeyProvider\",\"url\":\"types/ClientEncryptionDataKeyProvider.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"KMSProviders\",\"url\":\"interfaces/KMSProviders.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"aws\",\"url\":\"interfaces/KMSProviders.html#aws\",\"classes\":\"\",\"parent\":\"KMSProviders\"},{\"kind\":1024,\"name\":\"local\",\"url\":\"interfaces/KMSProviders.html#local\",\"classes\":\"\",\"parent\":\"KMSProviders\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/KMSProviders.html#local.__type-1\",\"classes\":\"\",\"parent\":\"KMSProviders.local\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/KMSProviders.html#local.__type-1.key\",\"classes\":\"\",\"parent\":\"KMSProviders.local.__type\"},{\"kind\":1024,\"name\":\"kmip\",\"url\":\"interfaces/KMSProviders.html#kmip\",\"classes\":\"\",\"parent\":\"KMSProviders\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/KMSProviders.html#kmip.__type\",\"classes\":\"\",\"parent\":\"KMSProviders.kmip\"},{\"kind\":1024,\"name\":\"endpoint\",\"url\":\"interfaces/KMSProviders.html#kmip.__type.endpoint\",\"classes\":\"\",\"parent\":\"KMSProviders.kmip.__type\"},{\"kind\":1024,\"name\":\"azure\",\"url\":\"interfaces/KMSProviders.html#azure\",\"classes\":\"\",\"parent\":\"KMSProviders\"},{\"kind\":1024,\"name\":\"gcp\",\"url\":\"interfaces/KMSProviders.html#gcp\",\"classes\":\"\",\"parent\":\"KMSProviders\"},{\"kind\":4194304,\"name\":\"ClientEncryptionTlsOptions\",\"url\":\"types/ClientEncryptionTlsOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"CSFLEKMSTlsOptions\",\"url\":\"types/CSFLEKMSTlsOptions.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CSFLEKMSTlsOptions.html#__type\",\"classes\":\"\",\"parent\":\"CSFLEKMSTlsOptions\"},{\"kind\":1024,\"name\":\"aws\",\"url\":\"types/CSFLEKMSTlsOptions.html#__type.aws\",\"classes\":\"\",\"parent\":\"CSFLEKMSTlsOptions.__type\"},{\"kind\":1024,\"name\":\"gcp\",\"url\":\"types/CSFLEKMSTlsOptions.html#__type.gcp\",\"classes\":\"\",\"parent\":\"CSFLEKMSTlsOptions.__type\"},{\"kind\":1024,\"name\":\"kmip\",\"url\":\"types/CSFLEKMSTlsOptions.html#__type.kmip\",\"classes\":\"\",\"parent\":\"CSFLEKMSTlsOptions.__type\"},{\"kind\":1024,\"name\":\"local\",\"url\":\"types/CSFLEKMSTlsOptions.html#__type.local\",\"classes\":\"\",\"parent\":\"CSFLEKMSTlsOptions.__type\"},{\"kind\":1024,\"name\":\"azure\",\"url\":\"types/CSFLEKMSTlsOptions.html#__type.azure\",\"classes\":\"\",\"parent\":\"CSFLEKMSTlsOptions.__type\"},{\"kind\":256,\"name\":\"AuthMechanismProperties\",\"url\":\"interfaces/AuthMechanismProperties.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"SERVICE_HOST\",\"url\":\"interfaces/AuthMechanismProperties.html#SERVICE_HOST\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"SERVICE_NAME\",\"url\":\"interfaces/AuthMechanismProperties.html#SERVICE_NAME\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"SERVICE_REALM\",\"url\":\"interfaces/AuthMechanismProperties.html#SERVICE_REALM\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"CANONICALIZE_HOST_NAME\",\"url\":\"interfaces/AuthMechanismProperties.html#CANONICALIZE_HOST_NAME\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"AWS_SESSION_TOKEN\",\"url\":\"interfaces/AuthMechanismProperties.html#AWS_SESSION_TOKEN\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"REQUEST_TOKEN_CALLBACK\",\"url\":\"interfaces/AuthMechanismProperties.html#REQUEST_TOKEN_CALLBACK\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"REFRESH_TOKEN_CALLBACK\",\"url\":\"interfaces/AuthMechanismProperties.html#REFRESH_TOKEN_CALLBACK\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"PROVIDER_NAME\",\"url\":\"interfaces/AuthMechanismProperties.html#PROVIDER_NAME\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"ALLOWED_HOSTS\",\"url\":\"interfaces/AuthMechanismProperties.html#ALLOWED_HOSTS\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":1024,\"name\":\"TOKEN_AUDIENCE\",\"url\":\"interfaces/AuthMechanismProperties.html#TOKEN_AUDIENCE\",\"classes\":\"\",\"parent\":\"AuthMechanismProperties\"},{\"kind\":128,\"name\":\"MongoCredentials\",\"url\":\"classes/MongoCredentials.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"merge\",\"url\":\"classes/MongoCredentials.html#merge\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoCredentials.html#constructor\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"classes/MongoCredentials.html#username\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"classes/MongoCredentials.html#password\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"source\",\"url\":\"classes/MongoCredentials.html#source\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"mechanism\",\"url\":\"classes/MongoCredentials.html#mechanism\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":1024,\"name\":\"mechanismProperties\",\"url\":\"classes/MongoCredentials.html#mechanismProperties\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/MongoCredentials.html#equals\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":2048,\"name\":\"resolveAuthMechanism\",\"url\":\"classes/MongoCredentials.html#resolveAuthMechanism\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":2048,\"name\":\"validate\",\"url\":\"classes/MongoCredentials.html#validate\",\"classes\":\"\",\"parent\":\"MongoCredentials\"},{\"kind\":256,\"name\":\"MongoCredentialsOptions\",\"url\":\"interfaces/MongoCredentialsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/MongoCredentialsOptions.html#username\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/MongoCredentialsOptions.html#password\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"source\",\"url\":\"interfaces/MongoCredentialsOptions.html#source\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"interfaces/MongoCredentialsOptions.html#db\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"mechanism\",\"url\":\"interfaces/MongoCredentialsOptions.html#mechanism\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":1024,\"name\":\"mechanismProperties\",\"url\":\"interfaces/MongoCredentialsOptions.html#mechanismProperties\",\"classes\":\"\",\"parent\":\"MongoCredentialsOptions\"},{\"kind\":256,\"name\":\"IdPServerInfo\",\"url\":\"interfaces/IdPServerInfo.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"issuer\",\"url\":\"interfaces/IdPServerInfo.html#issuer\",\"classes\":\"\",\"parent\":\"IdPServerInfo\"},{\"kind\":1024,\"name\":\"clientId\",\"url\":\"interfaces/IdPServerInfo.html#clientId\",\"classes\":\"\",\"parent\":\"IdPServerInfo\"},{\"kind\":1024,\"name\":\"requestScopes\",\"url\":\"interfaces/IdPServerInfo.html#requestScopes\",\"classes\":\"\",\"parent\":\"IdPServerInfo\"},{\"kind\":256,\"name\":\"IdPServerResponse\",\"url\":\"interfaces/IdPServerResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"accessToken\",\"url\":\"interfaces/IdPServerResponse.html#accessToken\",\"classes\":\"\",\"parent\":\"IdPServerResponse\"},{\"kind\":1024,\"name\":\"expiresInSeconds\",\"url\":\"interfaces/IdPServerResponse.html#expiresInSeconds\",\"classes\":\"\",\"parent\":\"IdPServerResponse\"},{\"kind\":1024,\"name\":\"refreshToken\",\"url\":\"interfaces/IdPServerResponse.html#refreshToken\",\"classes\":\"\",\"parent\":\"IdPServerResponse\"},{\"kind\":256,\"name\":\"OIDCCallbackContext\",\"url\":\"interfaces/OIDCCallbackContext.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"refreshToken\",\"url\":\"interfaces/OIDCCallbackContext.html#refreshToken\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":1024,\"name\":\"timeoutSeconds\",\"url\":\"interfaces/OIDCCallbackContext.html#timeoutSeconds\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":1024,\"name\":\"timeoutContext\",\"url\":\"interfaces/OIDCCallbackContext.html#timeoutContext\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/OIDCCallbackContext.html#version\",\"classes\":\"\",\"parent\":\"OIDCCallbackContext\"},{\"kind\":4194304,\"name\":\"OIDCRefreshFunction\",\"url\":\"types/OIDCRefreshFunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/OIDCRefreshFunction.html#__type\",\"classes\":\"\",\"parent\":\"OIDCRefreshFunction\"},{\"kind\":4194304,\"name\":\"OIDCRequestFunction\",\"url\":\"types/OIDCRequestFunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/OIDCRequestFunction.html#__type\",\"classes\":\"\",\"parent\":\"OIDCRequestFunction\"},{\"kind\":32,\"name\":\"LEGAL_TCP_SOCKET_OPTIONS\",\"url\":\"variables/LEGAL_TCP_SOCKET_OPTIONS.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"LEGAL_TLS_SOCKET_OPTIONS\",\"url\":\"variables/LEGAL_TLS_SOCKET_OPTIONS.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Stream\",\"url\":\"types/Stream.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ConnectionEvents\",\"url\":\"types/ConnectionEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ConnectionEvents.html#__type\",\"classes\":\"\",\"parent\":\"ConnectionEvents\"},{\"kind\":2048,\"name\":\"commandStarted\",\"url\":\"types/ConnectionEvents.html#__type.commandStarted\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"commandSucceeded\",\"url\":\"types/ConnectionEvents.html#__type.commandSucceeded\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"commandFailed\",\"url\":\"types/ConnectionEvents.html#__type.commandFailed\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"clusterTimeReceived\",\"url\":\"types/ConnectionEvents.html#__type.clusterTimeReceived\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"types/ConnectionEvents.html#__type.close\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"message\",\"url\":\"types/ConnectionEvents.html#__type.message\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"pinned\",\"url\":\"types/ConnectionEvents.html#__type.pinned\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":2048,\"name\":\"unpinned\",\"url\":\"types/ConnectionEvents.html#__type.unpinned\",\"classes\":\"\",\"parent\":\"ConnectionEvents.__type\"},{\"kind\":256,\"name\":\"ConnectionOptions\",\"url\":\"interfaces/ConnectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ConnectionOptions.html#id\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"generation\",\"url\":\"interfaces/ConnectionOptions.html#generation\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"hostAddress\",\"url\":\"interfaces/ConnectionOptions.html#hostAddress\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/ConnectionOptions.html#serverApi\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/ConnectionOptions.html#monitorCommands\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/ConnectionOptions.html#credentials\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/ConnectionOptions.html#connectTimeoutMS\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/ConnectionOptions.html#tls\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/ConnectionOptions.html#noDelay\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/ConnectionOptions.html#socketTimeoutMS\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"cancellationToken\",\"url\":\"interfaces/ConnectionOptions.html#cancellationToken\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/ConnectionOptions.html#metadata\",\"classes\":\"\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/ConnectionOptions.html#compressors\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/ConnectionOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/ConnectionOptions.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/ConnectionOptions.html#proxyHost\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/ConnectionOptions.html#proxyPort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/ConnectionOptions.html#proxyUsername\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/ConnectionOptions.html#proxyPassword\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionOptions\"},{\"kind\":256,\"name\":\"ProxyOptions\",\"url\":\"interfaces/ProxyOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/ProxyOptions.html#proxyHost\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/ProxyOptions.html#proxyPort\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/ProxyOptions.html#proxyUsername\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/ProxyOptions.html#proxyPassword\",\"classes\":\"\",\"parent\":\"ProxyOptions\"},{\"kind\":256,\"name\":\"CloseOptions\",\"url\":\"interfaces/CloseOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"interfaces/CloseOptions.html#force\",\"classes\":\"\",\"parent\":\"CloseOptions\"},{\"kind\":4194304,\"name\":\"ConnectionPoolEvents\",\"url\":\"types/ConnectionPoolEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ConnectionPoolOptions\",\"url\":\"interfaces/ConnectionPoolOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"maxPoolSize\",\"url\":\"interfaces/ConnectionPoolOptions.html#maxPoolSize\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"minPoolSize\",\"url\":\"interfaces/ConnectionPoolOptions.html#minPoolSize\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"maxConnecting\",\"url\":\"interfaces/ConnectionPoolOptions.html#maxConnecting\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"maxIdleTimeMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#maxIdleTimeMS\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"waitQueueTimeoutMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#waitQueueTimeoutMS\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/ConnectionPoolOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/ConnectionPoolOptions.html#credentials\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"hostAddress\",\"url\":\"interfaces/ConnectionPoolOptions.html#hostAddress\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyHost\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyPort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyUsername\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/ConnectionPoolOptions.html#proxyPassword\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/ConnectionPoolOptions.html#tls\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#connectTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/ConnectionPoolOptions.html#socketTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/ConnectionPoolOptions.html#compressors\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/ConnectionPoolOptions.html#noDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/ConnectionPoolOptions.html#monitorCommands\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/ConnectionPoolOptions.html#serverApi\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"cancellationToken\",\"url\":\"interfaces/ConnectionPoolOptions.html#cancellationToken\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/ConnectionPoolOptions.html#metadata\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/ConnectionPoolOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ConnectionPoolOptions\"},{\"kind\":256,\"name\":\"ClientMetadata\",\"url\":\"interfaces/ClientMetadata.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"driver\",\"url\":\"interfaces/ClientMetadata.html#driver\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#driver.__type-1\",\"classes\":\"\",\"parent\":\"ClientMetadata.driver\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#driver.__type-1.name-1\",\"classes\":\"\",\"parent\":\"ClientMetadata.driver.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ClientMetadata.html#driver.__type-1.version\",\"classes\":\"\",\"parent\":\"ClientMetadata.driver.__type\"},{\"kind\":1024,\"name\":\"os\",\"url\":\"interfaces/ClientMetadata.html#os\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3\",\"classes\":\"\",\"parent\":\"ClientMetadata.os\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.type\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.name-3\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"architecture\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.architecture\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ClientMetadata.html#os.__type-3.version-1\",\"classes\":\"\",\"parent\":\"ClientMetadata.os.__type\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"interfaces/ClientMetadata.html#platform\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":1024,\"name\":\"application\",\"url\":\"interfaces/ClientMetadata.html#application\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#application.__type\",\"classes\":\"\",\"parent\":\"ClientMetadata.application\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#application.__type.name\",\"classes\":\"\",\"parent\":\"ClientMetadata.application.__type\"},{\"kind\":1024,\"name\":\"env\",\"url\":\"interfaces/ClientMetadata.html#env\",\"classes\":\"\",\"parent\":\"ClientMetadata\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2\",\"classes\":\"\",\"parent\":\"ClientMetadata.env\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.name-2\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"timeout_sec\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.timeout_sec\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"memory_mb\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.memory_mb\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"region\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.region\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/ClientMetadata.html#env.__type-2.url\",\"classes\":\"\",\"parent\":\"ClientMetadata.env.__type\"},{\"kind\":256,\"name\":\"ClientMetadataOptions\",\"url\":\"interfaces/ClientMetadataOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"driverInfo\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type.name\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type.version\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo.__type\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"interfaces/ClientMetadataOptions.html#driverInfo.__type.platform\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions.driverInfo.__type\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/ClientMetadataOptions.html#appName\",\"classes\":\"\",\"parent\":\"ClientMetadataOptions\"},{\"kind\":128,\"name\":\"StreamDescription\",\"url\":\"classes/StreamDescription.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StreamDescription.html#constructor\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/StreamDescription.html#address\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/StreamDescription.html#type\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/StreamDescription.html#minWireVersion\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxWireVersion\",\"url\":\"classes/StreamDescription.html#maxWireVersion\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxBsonObjectSize\",\"url\":\"classes/StreamDescription.html#maxBsonObjectSize\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxMessageSizeBytes\",\"url\":\"classes/StreamDescription.html#maxMessageSizeBytes\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"maxWriteBatchSize\",\"url\":\"classes/StreamDescription.html#maxWriteBatchSize\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"classes/StreamDescription.html#compressors\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"compressor\",\"url\":\"classes/StreamDescription.html#compressor\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"classes/StreamDescription.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"classes/StreamDescription.html#loadBalanced\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"__nodejs_mock_server__\",\"url\":\"classes/StreamDescription.html#__nodejs_mock_server__\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":1024,\"name\":\"zlibCompressionLevel\",\"url\":\"classes/StreamDescription.html#zlibCompressionLevel\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":2048,\"name\":\"receiveResponse\",\"url\":\"classes/StreamDescription.html#receiveResponse\",\"classes\":\"\",\"parent\":\"StreamDescription\"},{\"kind\":256,\"name\":\"StreamDescriptionOptions\",\"url\":\"interfaces/StreamDescriptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/StreamDescriptionOptions.html#compressors\",\"classes\":\"\",\"parent\":\"StreamDescriptionOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/StreamDescriptionOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"StreamDescriptionOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/StreamDescriptionOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"StreamDescriptionOptions\"},{\"kind\":4194304,\"name\":\"CompressorName\",\"url\":\"types/CompressorName.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CollectionOptions\",\"url\":\"interfaces/CollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CollectionOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CollectionOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CollectionOptions\"},{\"kind\":256,\"name\":\"ModifyResult\",\"url\":\"interfaces/ModifyResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ModifyResult.html#value\",\"classes\":\"\",\"parent\":\"ModifyResult\"},{\"kind\":1024,\"name\":\"lastErrorObject\",\"url\":\"interfaces/ModifyResult.html#lastErrorObject\",\"classes\":\"\",\"parent\":\"ModifyResult\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"interfaces/ModifyResult.html#ok\",\"classes\":\"\",\"parent\":\"ModifyResult\"},{\"kind\":32,\"name\":\"MONGO_CLIENT_EVENTS\",\"url\":\"variables/MONGO_CLIENT_EVENTS.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AbstractCursorEvents\",\"url\":\"types/AbstractCursorEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AbstractCursorEvents.html#__type\",\"classes\":\"\",\"parent\":\"AbstractCursorEvents\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"types/AbstractCursorEvents.html#__type.close\",\"classes\":\"\",\"parent\":\"AbstractCursorEvents.__type\"},{\"kind\":256,\"name\":\"AbstractCursorOptions\",\"url\":\"interfaces/AbstractCursorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AbstractCursorOptions.html#session\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AbstractCursorOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AbstractCursorOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AbstractCursorOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AbstractCursorOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/AbstractCursorOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AbstractCursorOptions.html#comment\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"tailable\",\"url\":\"interfaces/AbstractCursorOptions.html#tailable\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"awaitData\",\"url\":\"interfaces/AbstractCursorOptions.html#awaitData\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"noCursorTimeout\",\"url\":\"interfaces/AbstractCursorOptions.html#noCursorTimeout\",\"classes\":\"\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AbstractCursorOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AbstractCursorOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AbstractCursorOptions\"},{\"kind\":4194304,\"name\":\"CursorFlag\",\"url\":\"types/CursorFlag.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CursorStreamOptions\",\"url\":\"interfaces/CursorStreamOptions.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"transform\",\"url\":\"interfaces/CursorStreamOptions.html#transform\",\"classes\":\"\",\"parent\":\"CursorStreamOptions\"},{\"kind\":256,\"name\":\"AggregationCursorOptions\",\"url\":\"interfaces/AggregationCursorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AggregationCursorOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AggregationCursorOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AggregationCursorOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AggregationCursorOptions.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AggregationCursorOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/AggregationCursorOptions.html#maxAwaitTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AggregationCursorOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"tailable\",\"url\":\"interfaces/AggregationCursorOptions.html#tailable\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"awaitData\",\"url\":\"interfaces/AggregationCursorOptions.html#awaitData\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"noCursorTimeout\",\"url\":\"interfaces/AggregationCursorOptions.html#noCursorTimeout\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AggregationCursorOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AggregationCursorOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/AggregationCursorOptions.html#allowDiskUse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/AggregationCursorOptions.html#bypassDocumentValidation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/AggregationCursorOptions.html#cursor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/AggregationCursorOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/AggregationCursorOptions.html#hint\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/AggregationCursorOptions.html#let\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/AggregationCursorOptions.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/AggregationCursorOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/AggregationCursorOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/AggregationCursorOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/AggregationCursorOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/AggregationCursorOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/AggregationCursorOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/AggregationCursorOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/AggregationCursorOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregationCursorOptions\"},{\"kind\":128,\"name\":\"ListSearchIndexesCursor\",\"url\":\"classes/ListSearchIndexesCursor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"CLOSE\",\"url\":\"classes/ListSearchIndexesCursor.html#CLOSE\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"pipeline\",\"url\":\"classes/ListSearchIndexesCursor.html#pipeline\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ListSearchIndexesCursor.html#clone\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/ListSearchIndexesCursor.html#map\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/ListSearchIndexesCursor.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"group\",\"url\":\"classes/ListSearchIndexesCursor.html#group\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"limit\",\"url\":\"classes/ListSearchIndexesCursor.html#limit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"match\",\"url\":\"classes/ListSearchIndexesCursor.html#match\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"out\",\"url\":\"classes/ListSearchIndexesCursor.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"project\",\"url\":\"classes/ListSearchIndexesCursor.html#project\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"lookup\",\"url\":\"classes/ListSearchIndexesCursor.html#lookup\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"redact\",\"url\":\"classes/ListSearchIndexesCursor.html#redact\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"skip\",\"url\":\"classes/ListSearchIndexesCursor.html#skip\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"sort\",\"url\":\"classes/ListSearchIndexesCursor.html#sort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"unwind\",\"url\":\"classes/ListSearchIndexesCursor.html#unwind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"geoNear\",\"url\":\"classes/ListSearchIndexesCursor.html#geoNear\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/ListSearchIndexesCursor.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"namespace\",\"url\":\"classes/ListSearchIndexesCursor.html#namespace\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"readPreference\",\"url\":\"classes/ListSearchIndexesCursor.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"readConcern\",\"url\":\"classes/ListSearchIndexesCursor.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"session\",\"url\":\"classes/ListSearchIndexesCursor.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"closed\",\"url\":\"classes/ListSearchIndexesCursor.html#closed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"killed\",\"url\":\"classes/ListSearchIndexesCursor.html#killed\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":262144,\"name\":\"loadBalanced\",\"url\":\"classes/ListSearchIndexesCursor.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"bufferedCount\",\"url\":\"classes/ListSearchIndexesCursor.html#bufferedCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"readBufferedDocuments\",\"url\":\"classes/ListSearchIndexesCursor.html#readBufferedDocuments\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"stream\",\"url\":\"classes/ListSearchIndexesCursor.html#stream\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"hasNext\",\"url\":\"classes/ListSearchIndexesCursor.html#hasNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/ListSearchIndexesCursor.html#next\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"tryNext\",\"url\":\"classes/ListSearchIndexesCursor.html#tryNext\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/ListSearchIndexesCursor.html#forEach\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/ListSearchIndexesCursor.html#close-1\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"toArray\",\"url\":\"classes/ListSearchIndexesCursor.html#toArray\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"addCursorFlag\",\"url\":\"classes/ListSearchIndexesCursor.html#addCursorFlag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadPreference\",\"url\":\"classes/ListSearchIndexesCursor.html#withReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"withReadConcern\",\"url\":\"classes/ListSearchIndexesCursor.html#withReadConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"maxTimeMS\",\"url\":\"classes/ListSearchIndexesCursor.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"batchSize\",\"url\":\"classes/ListSearchIndexesCursor.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"rewind\",\"url\":\"classes/ListSearchIndexesCursor.html#rewind\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/ListSearchIndexesCursor.html#_asyncIterator_\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/ListSearchIndexesCursor.html#addListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/ListSearchIndexesCursor.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/ListSearchIndexesCursor.html#once\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/ListSearchIndexesCursor.html#removeListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/ListSearchIndexesCursor.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#removeAllListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/ListSearchIndexesCursor.html#listeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#rawListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/ListSearchIndexesCursor.html#emit\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/ListSearchIndexesCursor.html#listenerCount\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/ListSearchIndexesCursor.html#prependListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/ListSearchIndexesCursor.html#prependOnceListener\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/ListSearchIndexesCursor.html#eventNames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#getMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/ListSearchIndexesCursor.html#setMaxListeners\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListSearchIndexesCursor\"},{\"kind\":4194304,\"name\":\"ListSearchIndexesOptions\",\"url\":\"types/ListSearchIndexesOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RunCursorCommandOptions\",\"url\":\"types/RunCursorCommandOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"DbOptions\",\"url\":\"interfaces/DbOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"authSource\",\"url\":\"interfaces/DbOptions.html#authSource\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/DbOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DbOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/DbOptions.html#pkFactory\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DbOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DbOptions.html#retryWrites\",\"classes\":\"\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DbOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DbOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DbOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbOptions\"},{\"kind\":4194304,\"name\":\"AnyError\",\"url\":\"types/AnyError.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ErrorDescription\",\"url\":\"interfaces/ErrorDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/ErrorDescription.html#message\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"errmsg\",\"url\":\"interfaces/ErrorDescription.html#errmsg\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"$err\",\"url\":\"interfaces/ErrorDescription.html#_err\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"errorLabels\",\"url\":\"interfaces/ErrorDescription.html#errorLabels\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":1024,\"name\":\"errInfo\",\"url\":\"interfaces/ErrorDescription.html#errInfo\",\"classes\":\"\",\"parent\":\"ErrorDescription\"},{\"kind\":256,\"name\":\"MongoNetworkErrorOptions\",\"url\":\"interfaces/MongoNetworkErrorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"beforeHandshake\",\"url\":\"interfaces/MongoNetworkErrorOptions.html#beforeHandshake\",\"classes\":\"\",\"parent\":\"MongoNetworkErrorOptions\"},{\"kind\":256,\"name\":\"ExplainOptions\",\"url\":\"interfaces/ExplainOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ExplainOptions.html#explain\",\"classes\":\"\",\"parent\":\"ExplainOptions\"},{\"kind\":4194304,\"name\":\"ExplainVerbosityLike\",\"url\":\"types/ExplainVerbosityLike.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"GridFSBucketReadStreamOptions\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#sort\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#skip\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#start\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":1024,\"name\":\"end\",\"url\":\"interfaces/GridFSBucketReadStreamOptions.html#end\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptions\"},{\"kind\":256,\"name\":\"GridFSBucketReadStreamOptionsWithRevision\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"revision\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#revision\",\"classes\":\"\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#sort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#skip\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#start\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":1024,\"name\":\"end\",\"url\":\"interfaces/GridFSBucketReadStreamOptionsWithRevision.html#end\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketReadStreamOptionsWithRevision\"},{\"kind\":256,\"name\":\"GridFSFile\",\"url\":\"interfaces/GridFSFile.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/GridFSFile.html#_id\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/GridFSFile.html#length\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"chunkSize\",\"url\":\"interfaces/GridFSFile.html#chunkSize\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"filename\",\"url\":\"interfaces/GridFSFile.html#filename\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"contentType\",\"url\":\"interfaces/GridFSFile.html#contentType\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"aliases\",\"url\":\"interfaces/GridFSFile.html#aliases\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/GridFSFile.html#metadata\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":1024,\"name\":\"uploadDate\",\"url\":\"interfaces/GridFSFile.html#uploadDate\",\"classes\":\"\",\"parent\":\"GridFSFile\"},{\"kind\":4194304,\"name\":\"GridFSBucketEvents\",\"url\":\"types/GridFSBucketEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/GridFSBucketEvents.html#__type\",\"classes\":\"\",\"parent\":\"GridFSBucketEvents\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"types/GridFSBucketEvents.html#__type.index\",\"classes\":\"\",\"parent\":\"GridFSBucketEvents.__type\"},{\"kind\":256,\"name\":\"GridFSBucketOptions\",\"url\":\"interfaces/GridFSBucketOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bucketName\",\"url\":\"interfaces/GridFSBucketOptions.html#bucketName\",\"classes\":\"\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":1024,\"name\":\"chunkSizeBytes\",\"url\":\"interfaces/GridFSBucketOptions.html#chunkSizeBytes\",\"classes\":\"\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/GridFSBucketOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/GridFSBucketOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketOptions\"},{\"kind\":256,\"name\":\"GridFSBucketWriteStreamOptions\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"chunkSizeBytes\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#chunkSizeBytes\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#id\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#metadata\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"contentType\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#contentType\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"aliases\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#aliases\",\"classes\":\"\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/GridFSBucketWriteStreamOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"GridFSBucketWriteStreamOptions\"},{\"kind\":256,\"name\":\"GridFSChunk\",\"url\":\"interfaces/GridFSChunk.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"interfaces/GridFSChunk.html#_id\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":1024,\"name\":\"files_id\",\"url\":\"interfaces/GridFSChunk.html#files_id\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":1024,\"name\":\"n\",\"url\":\"interfaces/GridFSChunk.html#n\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/GridFSChunk.html#data\",\"classes\":\"\",\"parent\":\"GridFSChunk\"},{\"kind\":256,\"name\":\"Auth\",\"url\":\"interfaces/Auth.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/Auth.html#username\",\"classes\":\"\",\"parent\":\"Auth\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/Auth.html#password\",\"classes\":\"\",\"parent\":\"Auth\"},{\"kind\":256,\"name\":\"DriverInfo\",\"url\":\"interfaces/DriverInfo.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/DriverInfo.html#name\",\"classes\":\"\",\"parent\":\"DriverInfo\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/DriverInfo.html#version\",\"classes\":\"\",\"parent\":\"DriverInfo\"},{\"kind\":1024,\"name\":\"platform\",\"url\":\"interfaces/DriverInfo.html#platform\",\"classes\":\"\",\"parent\":\"DriverInfo\"},{\"kind\":4194304,\"name\":\"MongoClientEvents\",\"url\":\"types/MongoClientEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"MongoClientOptions\",\"url\":\"interfaces/MongoClientOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"replicaSet\",\"url\":\"interfaces/MongoClientOptions.html#replicaSet\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/MongoClientOptions.html#tls\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"ssl\",\"url\":\"interfaces/MongoClientOptions.html#ssl\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFile\",\"url\":\"interfaces/MongoClientOptions.html#tlsCertificateKeyFile\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFilePassword\",\"url\":\"interfaces/MongoClientOptions.html#tlsCertificateKeyFilePassword\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsCAFile\",\"url\":\"interfaces/MongoClientOptions.html#tlsCAFile\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidCertificates\",\"url\":\"interfaces/MongoClientOptions.html#tlsAllowInvalidCertificates\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidHostnames\",\"url\":\"interfaces/MongoClientOptions.html#tlsAllowInvalidHostnames\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"tlsInsecure\",\"url\":\"interfaces/MongoClientOptions.html#tlsInsecure\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#connectTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#socketTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/MongoClientOptions.html#compressors\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"zlibCompressionLevel\",\"url\":\"interfaces/MongoClientOptions.html#zlibCompressionLevel\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"srvMaxHosts\",\"url\":\"interfaces/MongoClientOptions.html#srvMaxHosts\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"srvServiceName\",\"url\":\"interfaces/MongoClientOptions.html#srvServiceName\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxPoolSize\",\"url\":\"interfaces/MongoClientOptions.html#maxPoolSize\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"minPoolSize\",\"url\":\"interfaces/MongoClientOptions.html#minPoolSize\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxConnecting\",\"url\":\"interfaces/MongoClientOptions.html#maxConnecting\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxIdleTimeMS\",\"url\":\"interfaces/MongoClientOptions.html#maxIdleTimeMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"waitQueueTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#waitQueueTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/MongoClientOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readConcernLevel\",\"url\":\"interfaces/MongoClientOptions.html#readConcernLevel\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/MongoClientOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/MongoClientOptions.html#maxStalenessSeconds\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"readPreferenceTags\",\"url\":\"interfaces/MongoClientOptions.html#readPreferenceTags\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"interfaces/MongoClientOptions.html#auth\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"authSource\",\"url\":\"interfaces/MongoClientOptions.html#authSource\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"authMechanism\",\"url\":\"interfaces/MongoClientOptions.html#authMechanism\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"authMechanismProperties\",\"url\":\"interfaces/MongoClientOptions.html#authMechanismProperties\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"interfaces/MongoClientOptions.html#localThresholdMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"serverSelectionTimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#serverSelectionTimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/MongoClientOptions.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"minHeartbeatFrequencyMS\",\"url\":\"interfaces/MongoClientOptions.html#minHeartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/MongoClientOptions.html#appName\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"retryReads\",\"url\":\"interfaces/MongoClientOptions.html#retryReads\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/MongoClientOptions.html#retryWrites\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"directConnection\",\"url\":\"interfaces/MongoClientOptions.html#directConnection\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/MongoClientOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"w\",\"url\":\"interfaces/MongoClientOptions.html#w\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"wtimeoutMS\",\"url\":\"interfaces/MongoClientOptions.html#wtimeoutMS\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"journal\",\"url\":\"interfaces/MongoClientOptions.html#journal\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/MongoClientOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/MongoClientOptions.html#noDelay\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/MongoClientOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/MongoClientOptions.html#pkFactory\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/MongoClientOptions.html#monitorCommands\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/MongoClientOptions.html#serverApi\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"autoEncryption\",\"url\":\"interfaces/MongoClientOptions.html#autoEncryption\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"driverInfo\",\"url\":\"interfaces/MongoClientOptions.html#driverInfo\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/MongoClientOptions.html#proxyHost\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/MongoClientOptions.html#proxyPort\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/MongoClientOptions.html#proxyUsername\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/MongoClientOptions.html#proxyPassword\",\"classes\":\"\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/MongoClientOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClientOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/MongoClientOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoClientOptions\"},{\"kind\":256,\"name\":\"MongoOptions\",\"url\":\"interfaces/MongoOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/MongoOptions.html#appName\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"hosts\",\"url\":\"interfaces/MongoOptions.html#hosts\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"srvHost\",\"url\":\"interfaces/MongoOptions.html#srvHost\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/MongoOptions.html#credentials\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/MongoOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/MongoOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/MongoOptions.html#loadBalanced\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/MongoOptions.html#serverApi\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/MongoOptions.html#compressors\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/MongoOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/MongoOptions.html#dbName\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/MongoOptions.html#metadata\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/MongoOptions.html#proxyHost\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/MongoOptions.html#proxyPort\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/MongoOptions.html#proxyUsername\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/MongoOptions.html#proxyPassword\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/MongoOptions.html#tls\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsCAFile\",\"url\":\"interfaces/MongoOptions.html#tlsCAFile\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsCertificateKeyFile\",\"url\":\"interfaces/MongoOptions.html#tlsCertificateKeyFile\",\"classes\":\"\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/MongoOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"autoEncryption\",\"url\":\"interfaces/MongoOptions.html#autoEncryption\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"minPoolSize\",\"url\":\"interfaces/MongoOptions.html#minPoolSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"replicaSet\",\"url\":\"interfaces/MongoOptions.html#replicaSet\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidCertificates\",\"url\":\"interfaces/MongoOptions.html#tlsAllowInvalidCertificates\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsAllowInvalidHostnames\",\"url\":\"interfaces/MongoOptions.html#tlsAllowInvalidHostnames\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"tlsInsecure\",\"url\":\"interfaces/MongoOptions.html#tlsInsecure\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#connectTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#socketTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"zlibCompressionLevel\",\"url\":\"interfaces/MongoOptions.html#zlibCompressionLevel\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"srvMaxHosts\",\"url\":\"interfaces/MongoOptions.html#srvMaxHosts\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"srvServiceName\",\"url\":\"interfaces/MongoOptions.html#srvServiceName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"maxPoolSize\",\"url\":\"interfaces/MongoOptions.html#maxPoolSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"maxConnecting\",\"url\":\"interfaces/MongoOptions.html#maxConnecting\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"maxIdleTimeMS\",\"url\":\"interfaces/MongoOptions.html#maxIdleTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"waitQueueTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#waitQueueTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"interfaces/MongoOptions.html#localThresholdMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"serverSelectionTimeoutMS\",\"url\":\"interfaces/MongoOptions.html#serverSelectionTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/MongoOptions.html#heartbeatFrequencyMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"minHeartbeatFrequencyMS\",\"url\":\"interfaces/MongoOptions.html#minHeartbeatFrequencyMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"retryReads\",\"url\":\"interfaces/MongoOptions.html#retryReads\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/MongoOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"directConnection\",\"url\":\"interfaces/MongoOptions.html#directConnection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/MongoOptions.html#noDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/MongoOptions.html#forceServerObjectId\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/MongoOptions.html#pkFactory\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/MongoOptions.html#monitorCommands\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":1024,\"name\":\"driverInfo\",\"url\":\"interfaces/MongoOptions.html#driverInfo\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoOptions\"},{\"kind\":256,\"name\":\"PkFactory\",\"url\":\"interfaces/PkFactory.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"createPk\",\"url\":\"interfaces/PkFactory.html#createPk\",\"classes\":\"\",\"parent\":\"PkFactory\"},{\"kind\":256,\"name\":\"ServerApi\",\"url\":\"interfaces/ServerApi.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/ServerApi.html#version\",\"classes\":\"\",\"parent\":\"ServerApi\"},{\"kind\":1024,\"name\":\"strict\",\"url\":\"interfaces/ServerApi.html#strict\",\"classes\":\"\",\"parent\":\"ServerApi\"},{\"kind\":1024,\"name\":\"deprecationErrors\",\"url\":\"interfaces/ServerApi.html#deprecationErrors\",\"classes\":\"\",\"parent\":\"ServerApi\"},{\"kind\":4194304,\"name\":\"SupportedNodeConnectionOptions\",\"url\":\"types/SupportedNodeConnectionOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SupportedSocketOptions\",\"url\":\"types/SupportedSocketOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SupportedTLSConnectionOptions\",\"url\":\"types/SupportedTLSConnectionOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SupportedTLSSocketOptions\",\"url\":\"types/SupportedTLSSocketOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"WithSessionCallback\",\"url\":\"types/WithSessionCallback.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/WithSessionCallback.html#__type\",\"classes\":\"\",\"parent\":\"WithSessionCallback\"},{\"kind\":4194304,\"name\":\"CommonEvents\",\"url\":\"types/CommonEvents.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EventsDescription\",\"url\":\"types/EventsDescription.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"GenericListener\",\"url\":\"types/GenericListener.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/GenericListener.html#__type\",\"classes\":\"\",\"parent\":\"GenericListener\"},{\"kind\":128,\"name\":\"TypedEventEmitter\",\"url\":\"classes/TypedEventEmitter.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"addListener\",\"url\":\"classes/TypedEventEmitter.html#addListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/TypedEventEmitter.html#on\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"once\",\"url\":\"classes/TypedEventEmitter.html#once\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"removeListener\",\"url\":\"classes/TypedEventEmitter.html#removeListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/TypedEventEmitter.html#off\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/TypedEventEmitter.html#removeAllListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/TypedEventEmitter.html#listeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"rawListeners\",\"url\":\"classes/TypedEventEmitter.html#rawListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/TypedEventEmitter.html#emit\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/TypedEventEmitter.html#listenerCount\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"prependListener\",\"url\":\"classes/TypedEventEmitter.html#prependListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"prependOnceListener\",\"url\":\"classes/TypedEventEmitter.html#prependOnceListener\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"eventNames\",\"url\":\"classes/TypedEventEmitter.html#eventNames\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"getMaxListeners\",\"url\":\"classes/TypedEventEmitter.html#getMaxListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":2048,\"name\":\"setMaxListeners\",\"url\":\"classes/TypedEventEmitter.html#setMaxListeners\",\"classes\":\"\",\"parent\":\"TypedEventEmitter\"},{\"kind\":4194304,\"name\":\"AcceptedFields\",\"url\":\"types/AcceptedFields.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AddToSetOperators\",\"url\":\"types/AddToSetOperators.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AddToSetOperators.html#__type\",\"classes\":\"\",\"parent\":\"AddToSetOperators\"},{\"kind\":1024,\"name\":\"$each\",\"url\":\"types/AddToSetOperators.html#__type._each\",\"classes\":\"\",\"parent\":\"AddToSetOperators.__type\"},{\"kind\":4194304,\"name\":\"AlternativeType\",\"url\":\"types/AlternativeType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ArrayElement\",\"url\":\"types/ArrayElement.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"ArrayOperator\",\"url\":\"types/ArrayOperator.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayOperator.html#__type\",\"classes\":\"\",\"parent\":\"ArrayOperator\"},{\"kind\":1024,\"name\":\"$each\",\"url\":\"types/ArrayOperator.html#__type._each\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":1024,\"name\":\"$slice\",\"url\":\"types/ArrayOperator.html#__type._slice\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":1024,\"name\":\"$position\",\"url\":\"types/ArrayOperator.html#__type._position\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":1024,\"name\":\"$sort\",\"url\":\"types/ArrayOperator.html#__type._sort\",\"classes\":\"\",\"parent\":\"ArrayOperator.__type\"},{\"kind\":4194304,\"name\":\"BitwiseFilter\",\"url\":\"types/BitwiseFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BSONTypeAlias\",\"url\":\"types/BSONTypeAlias.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Condition\",\"url\":\"types/Condition.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EnhancedOmit\",\"url\":\"types/EnhancedOmit.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Filter\",\"url\":\"types/Filter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"FilterOperations\",\"url\":\"types/FilterOperations.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"FilterOperators\",\"url\":\"interfaces/FilterOperators.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"$eq\",\"url\":\"interfaces/FilterOperators.html#_eq\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$gt\",\"url\":\"interfaces/FilterOperators.html#_gt\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$gte\",\"url\":\"interfaces/FilterOperators.html#_gte\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$in\",\"url\":\"interfaces/FilterOperators.html#_in\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$lt\",\"url\":\"interfaces/FilterOperators.html#_lt\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$lte\",\"url\":\"interfaces/FilterOperators.html#_lte\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$ne\",\"url\":\"interfaces/FilterOperators.html#_ne\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$nin\",\"url\":\"interfaces/FilterOperators.html#_nin\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$not\",\"url\":\"interfaces/FilterOperators.html#_not\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$exists\",\"url\":\"interfaces/FilterOperators.html#_exists\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$type\",\"url\":\"interfaces/FilterOperators.html#_type\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$expr\",\"url\":\"interfaces/FilterOperators.html#_expr\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$jsonSchema\",\"url\":\"interfaces/FilterOperators.html#_jsonSchema\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$mod\",\"url\":\"interfaces/FilterOperators.html#_mod\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$regex\",\"url\":\"interfaces/FilterOperators.html#_regex\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$options\",\"url\":\"interfaces/FilterOperators.html#_options\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$geoIntersects\",\"url\":\"interfaces/FilterOperators.html#_geoIntersects\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/FilterOperators.html#_geoIntersects.__type\",\"classes\":\"\",\"parent\":\"FilterOperators.$geoIntersects\"},{\"kind\":1024,\"name\":\"$geometry\",\"url\":\"interfaces/FilterOperators.html#_geoIntersects.__type._geometry\",\"classes\":\"\",\"parent\":\"FilterOperators.$geoIntersects.__type\"},{\"kind\":1024,\"name\":\"$geoWithin\",\"url\":\"interfaces/FilterOperators.html#_geoWithin\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$near\",\"url\":\"interfaces/FilterOperators.html#_near\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$nearSphere\",\"url\":\"interfaces/FilterOperators.html#_nearSphere\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$maxDistance\",\"url\":\"interfaces/FilterOperators.html#_maxDistance\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$all\",\"url\":\"interfaces/FilterOperators.html#_all\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$elemMatch\",\"url\":\"interfaces/FilterOperators.html#_elemMatch\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$size\",\"url\":\"interfaces/FilterOperators.html#_size\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAllClear\",\"url\":\"interfaces/FilterOperators.html#_bitsAllClear\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAllSet\",\"url\":\"interfaces/FilterOperators.html#_bitsAllSet\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAnyClear\",\"url\":\"interfaces/FilterOperators.html#_bitsAnyClear\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$bitsAnySet\",\"url\":\"interfaces/FilterOperators.html#_bitsAnySet\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":1024,\"name\":\"$rand\",\"url\":\"interfaces/FilterOperators.html#_rand\",\"classes\":\"\",\"parent\":\"FilterOperators\"},{\"kind\":4194304,\"name\":\"Flatten\",\"url\":\"types/Flatten.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"InferIdType\",\"url\":\"types/InferIdType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"IntegerType\",\"url\":\"types/IntegerType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"IsAny\",\"url\":\"types/IsAny.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Join\",\"url\":\"types/Join.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"KeysOfAType\",\"url\":\"types/KeysOfAType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"KeysOfOtherType\",\"url\":\"types/KeysOfOtherType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"MatchKeysAndValues\",\"url\":\"types/MatchKeysAndValues.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NestedPaths\",\"url\":\"types/NestedPaths.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NestedPathsOfType\",\"url\":\"types/NestedPathsOfType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NonObjectIdLikeDocument\",\"url\":\"types/NonObjectIdLikeDocument.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NotAcceptedFields\",\"url\":\"types/NotAcceptedFields.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"NumericType\",\"url\":\"types/NumericType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OneOrMore\",\"url\":\"types/OneOrMore.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OnlyFieldsOfType\",\"url\":\"types/OnlyFieldsOfType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OptionalId\",\"url\":\"types/OptionalId.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"OptionalUnlessRequiredId\",\"url\":\"types/OptionalUnlessRequiredId.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PropertyType\",\"url\":\"types/PropertyType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PullAllOperator\",\"url\":\"types/PullAllOperator.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PullOperator\",\"url\":\"types/PullOperator.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PushOperator\",\"url\":\"types/PushOperator.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RegExpOrString\",\"url\":\"types/RegExpOrString.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"RootFilterOperators\",\"url\":\"interfaces/RootFilterOperators.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"$and\",\"url\":\"interfaces/RootFilterOperators.html#_and\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$nor\",\"url\":\"interfaces/RootFilterOperators.html#_nor\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$or\",\"url\":\"interfaces/RootFilterOperators.html#_or\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$text\",\"url\":\"interfaces/RootFilterOperators.html#_text\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text\"},{\"kind\":1024,\"name\":\"$search\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._search\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$language\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._language\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$caseSensitive\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._caseSensitive\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$diacriticSensitive\",\"url\":\"interfaces/RootFilterOperators.html#_text.__type._diacriticSensitive\",\"classes\":\"\",\"parent\":\"RootFilterOperators.$text.__type\"},{\"kind\":1024,\"name\":\"$where\",\"url\":\"interfaces/RootFilterOperators.html#_where\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":1024,\"name\":\"$comment\",\"url\":\"interfaces/RootFilterOperators.html#_comment\",\"classes\":\"\",\"parent\":\"RootFilterOperators\"},{\"kind\":4194304,\"name\":\"SchemaMember\",\"url\":\"types/SchemaMember.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SetFields\",\"url\":\"types/SetFields.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"StrictFilter\",\"url\":\"types/StrictFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"StrictMatchKeysAndValues\",\"url\":\"types/StrictMatchKeysAndValues.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"StrictUpdateFilter\",\"url\":\"types/StrictUpdateFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"UpdateFilter\",\"url\":\"types/UpdateFilter.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"WithId\",\"url\":\"types/WithId.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"WithoutId\",\"url\":\"types/WithoutId.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"AggregateOptions\",\"url\":\"interfaces/AggregateOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/AggregateOptions.html#allowDiskUse\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/AggregateOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/AggregateOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/AggregateOptions.html#cursor\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/AggregateOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/AggregateOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/AggregateOptions.html#collation\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/AggregateOptions.html#hint\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/AggregateOptions.html#let\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/AggregateOptions.html#out\",\"classes\":\"\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/AggregateOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/AggregateOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/AggregateOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/AggregateOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/AggregateOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/AggregateOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/AggregateOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/AggregateOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/AggregateOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/AggregateOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/AggregateOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/AggregateOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/AggregateOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/AggregateOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"AggregateOptions\"},{\"kind\":256,\"name\":\"CollationOptions\",\"url\":\"interfaces/CollationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"interfaces/CollationOptions.html#locale\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"caseLevel\",\"url\":\"interfaces/CollationOptions.html#caseLevel\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"caseFirst\",\"url\":\"interfaces/CollationOptions.html#caseFirst\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"strength\",\"url\":\"interfaces/CollationOptions.html#strength\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"numericOrdering\",\"url\":\"interfaces/CollationOptions.html#numericOrdering\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"alternate\",\"url\":\"interfaces/CollationOptions.html#alternate\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"maxVariable\",\"url\":\"interfaces/CollationOptions.html#maxVariable\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"backwards\",\"url\":\"interfaces/CollationOptions.html#backwards\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":1024,\"name\":\"normalization\",\"url\":\"interfaces/CollationOptions.html#normalization\",\"classes\":\"\",\"parent\":\"CollationOptions\"},{\"kind\":256,\"name\":\"CommandOperationOptions\",\"url\":\"interfaces/CommandOperationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CommandOperationOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CommandOperationOptions.html#collation\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CommandOperationOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CommandOperationOptions.html#comment\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CommandOperationOptions.html#retryWrites\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CommandOperationOptions.html#dbName\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CommandOperationOptions.html#authdb\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CommandOperationOptions.html#noResponse\",\"classes\":\"\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CommandOperationOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CommandOperationOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CommandOperationOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CommandOperationOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CommandOperationOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CommandOperationOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CommandOperationOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CommandOperationOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CommandOperationOptions\"},{\"kind\":256,\"name\":\"IndexInformationOptions\",\"url\":\"interfaces/IndexInformationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"full\",\"url\":\"interfaces/IndexInformationOptions.html#full\",\"classes\":\"\",\"parent\":\"IndexInformationOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/IndexInformationOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"IndexInformationOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/IndexInformationOptions.html#session\",\"classes\":\"\",\"parent\":\"IndexInformationOptions\"},{\"kind\":256,\"name\":\"CountOptions\",\"url\":\"interfaces/CountOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/CountOptions.html#skip\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/CountOptions.html#limit\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CountOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/CountOptions.html#hint\",\"classes\":\"\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CountOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CountOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CountOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CountOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CountOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CountOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CountOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CountOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CountOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CountOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CountOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CountOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CountOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CountOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CountOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountOptions\"},{\"kind\":256,\"name\":\"CountDocumentsOptions\",\"url\":\"interfaces/CountDocumentsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/CountDocumentsOptions.html#skip\",\"classes\":\"\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/CountDocumentsOptions.html#limit\",\"classes\":\"\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/CountDocumentsOptions.html#allowDiskUse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/CountDocumentsOptions.html#batchSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/CountDocumentsOptions.html#bypassDocumentValidation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"cursor\",\"url\":\"interfaces/CountDocumentsOptions.html#cursor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CountDocumentsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/CountDocumentsOptions.html#maxAwaitTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CountDocumentsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/CountDocumentsOptions.html#hint\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/CountDocumentsOptions.html#let\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"out\",\"url\":\"interfaces/CountDocumentsOptions.html#out\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CountDocumentsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CountDocumentsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CountDocumentsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CountDocumentsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CountDocumentsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CountDocumentsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CountDocumentsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CountDocumentsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CountDocumentsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CountDocumentsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CountDocumentsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CountDocumentsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CountDocumentsOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CountDocumentsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CountDocumentsOptions\"},{\"kind\":256,\"name\":\"ClusteredCollectionOptions\",\"url\":\"interfaces/ClusteredCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ClusteredCollectionOptions.html#name\",\"classes\":\"\",\"parent\":\"ClusteredCollectionOptions\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/ClusteredCollectionOptions.html#key\",\"classes\":\"\",\"parent\":\"ClusteredCollectionOptions\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/ClusteredCollectionOptions.html#unique\",\"classes\":\"\",\"parent\":\"ClusteredCollectionOptions\"},{\"kind\":256,\"name\":\"CreateCollectionOptions\",\"url\":\"interfaces/CreateCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"capped\",\"url\":\"interfaces/CreateCollectionOptions.html#capped\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"autoIndexId\",\"url\":\"interfaces/CreateCollectionOptions.html#autoIndexId\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/CreateCollectionOptions.html#size\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/CreateCollectionOptions.html#max\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"flags\",\"url\":\"interfaces/CreateCollectionOptions.html#flags\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"storageEngine\",\"url\":\"interfaces/CreateCollectionOptions.html#storageEngine\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"validator\",\"url\":\"interfaces/CreateCollectionOptions.html#validator\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"validationLevel\",\"url\":\"interfaces/CreateCollectionOptions.html#validationLevel\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"validationAction\",\"url\":\"interfaces/CreateCollectionOptions.html#validationAction\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"indexOptionDefaults\",\"url\":\"interfaces/CreateCollectionOptions.html#indexOptionDefaults\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"viewOn\",\"url\":\"interfaces/CreateCollectionOptions.html#viewOn\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"pipeline\",\"url\":\"interfaces/CreateCollectionOptions.html#pipeline\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"pkFactory\",\"url\":\"interfaces/CreateCollectionOptions.html#pkFactory\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"timeseries\",\"url\":\"interfaces/CreateCollectionOptions.html#timeseries\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"clusteredIndex\",\"url\":\"interfaces/CreateCollectionOptions.html#clusteredIndex\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"expireAfterSeconds\",\"url\":\"interfaces/CreateCollectionOptions.html#expireAfterSeconds\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"encryptedFields\",\"url\":\"interfaces/CreateCollectionOptions.html#encryptedFields\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"changeStreamPreAndPostImages\",\"url\":\"interfaces/CreateCollectionOptions.html#changeStreamPreAndPostImages\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/CreateCollectionOptions.html#changeStreamPreAndPostImages.__type\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions.changeStreamPreAndPostImages\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/CreateCollectionOptions.html#changeStreamPreAndPostImages.__type.enabled\",\"classes\":\"\",\"parent\":\"CreateCollectionOptions.changeStreamPreAndPostImages.__type\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CreateCollectionOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CreateCollectionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CreateCollectionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CreateCollectionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CreateCollectionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CreateCollectionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CreateCollectionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CreateCollectionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CreateCollectionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CreateCollectionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CreateCollectionOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CreateCollectionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CreateCollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CreateCollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/CreateCollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CreateCollectionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateCollectionOptions\"},{\"kind\":256,\"name\":\"TimeSeriesCollectionOptions\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"timeField\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#timeField\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"metaField\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#metaField\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"granularity\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#granularity\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"bucketMaxSpanSeconds\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#bucketMaxSpanSeconds\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":1024,\"name\":\"bucketRoundingSeconds\",\"url\":\"interfaces/TimeSeriesCollectionOptions.html#bucketRoundingSeconds\",\"classes\":\"\",\"parent\":\"TimeSeriesCollectionOptions\"},{\"kind\":256,\"name\":\"DeleteOptions\",\"url\":\"interfaces/DeleteOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"ordered\",\"url\":\"interfaces/DeleteOptions.html#ordered\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteOptions.html#collation\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteOptions.html#hint\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/DeleteOptions.html#let\",\"classes\":\"\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DeleteOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/DeleteOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/DeleteOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DeleteOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/DeleteOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/DeleteOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/DeleteOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/DeleteOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/DeleteOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DeleteOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/DeleteOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DeleteOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DeleteOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DeleteOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/DeleteOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DeleteOptions\"},{\"kind\":256,\"name\":\"DeleteResult\",\"url\":\"interfaces/DeleteResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/DeleteResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"DeleteResult\"},{\"kind\":1024,\"name\":\"deletedCount\",\"url\":\"interfaces/DeleteResult.html#deletedCount\",\"classes\":\"\",\"parent\":\"DeleteResult\"},{\"kind\":256,\"name\":\"DeleteStatement\",\"url\":\"interfaces/DeleteStatement.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"q\",\"url\":\"interfaces/DeleteStatement.html#q\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/DeleteStatement.html#limit\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DeleteStatement.html#collation\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/DeleteStatement.html#hint\",\"classes\":\"\",\"parent\":\"DeleteStatement\"},{\"kind\":4194304,\"name\":\"DistinctOptions\",\"url\":\"types/DistinctOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"DropCollectionOptions\",\"url\":\"interfaces/DropCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"encryptedFields\",\"url\":\"interfaces/DropCollectionOptions.html#encryptedFields\",\"classes\":\"\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DropCollectionOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DropCollectionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/DropCollectionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/DropCollectionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DropCollectionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/DropCollectionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/DropCollectionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/DropCollectionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/DropCollectionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/DropCollectionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DropCollectionOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/DropCollectionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DropCollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DropCollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DropCollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/DropCollectionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DropCollectionOptions\"},{\"kind\":4194304,\"name\":\"DropDatabaseOptions\",\"url\":\"types/DropDatabaseOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"EstimatedDocumentCountOptions\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/EstimatedDocumentCountOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"EstimatedDocumentCountOptions\"},{\"kind\":256,\"name\":\"FindOptions\",\"url\":\"interfaces/FindOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/FindOptions.html#limit\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"interfaces/FindOptions.html#skip\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"interfaces/FindOptions.html#timeout\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"tailable\",\"url\":\"interfaces/FindOptions.html#tailable\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"awaitData\",\"url\":\"interfaces/FindOptions.html#awaitData\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/FindOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"returnKey\",\"url\":\"interfaces/FindOptions.html#returnKey\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/FindOptions.html#min\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/FindOptions.html#max\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOptions.html#maxTimeMS\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"maxAwaitTimeMS\",\"url\":\"interfaces/FindOptions.html#maxAwaitTimeMS\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"noCursorTimeout\",\"url\":\"interfaces/FindOptions.html#noCursorTimeout\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOptions.html#collation\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"allowDiskUse\",\"url\":\"interfaces/FindOptions.html#allowDiskUse\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"singleBatch\",\"url\":\"interfaces/FindOptions.html#singleBatch\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"allowPartialResults\",\"url\":\"interfaces/FindOptions.html#allowPartialResults\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"showRecordId\",\"url\":\"interfaces/FindOptions.html#showRecordId\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"oplogReplay\",\"url\":\"interfaces/FindOptions.html#oplogReplay\",\"classes\":\"\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOptions\"},{\"kind\":256,\"name\":\"FindOneAndDeleteOptions\",\"url\":\"interfaces/FindOneAndDeleteOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"includeResultMetadata\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#includeResultMetadata\",\"classes\":\"\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOneAndDeleteOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndDeleteOptions\"},{\"kind\":256,\"name\":\"FindOneAndReplaceOptions\",\"url\":\"interfaces/FindOneAndReplaceOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"returnDocument\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#returnDocument\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#upsert\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"includeResultMetadata\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#includeResultMetadata\",\"classes\":\"\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOneAndReplaceOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndReplaceOptions\"},{\"kind\":256,\"name\":\"FindOneAndUpdateOptions\",\"url\":\"interfaces/FindOneAndUpdateOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#arrayFilters\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#hint\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"projection\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#projection\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"returnDocument\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#returnDocument\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#sort\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#upsert\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#let\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"includeResultMetadata\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#includeResultMetadata\",\"classes\":\"\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/FindOneAndUpdateOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"FindOneAndUpdateOptions\"},{\"kind\":256,\"name\":\"CreateIndexesOptions\",\"url\":\"interfaces/CreateIndexesOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"background\",\"url\":\"interfaces/CreateIndexesOptions.html#background\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/CreateIndexesOptions.html#unique\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/CreateIndexesOptions.html#name\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"partialFilterExpression\",\"url\":\"interfaces/CreateIndexesOptions.html#partialFilterExpression\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"interfaces/CreateIndexesOptions.html#sparse\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"expireAfterSeconds\",\"url\":\"interfaces/CreateIndexesOptions.html#expireAfterSeconds\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"storageEngine\",\"url\":\"interfaces/CreateIndexesOptions.html#storageEngine\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"commitQuorum\",\"url\":\"interfaces/CreateIndexesOptions.html#commitQuorum\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/CreateIndexesOptions.html#version\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"weights\",\"url\":\"interfaces/CreateIndexesOptions.html#weights\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"default_language\",\"url\":\"interfaces/CreateIndexesOptions.html#default_language\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"language_override\",\"url\":\"interfaces/CreateIndexesOptions.html#language_override\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"textIndexVersion\",\"url\":\"interfaces/CreateIndexesOptions.html#textIndexVersion\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"2dsphereIndexVersion\",\"url\":\"interfaces/CreateIndexesOptions.html#2dsphereIndexVersion\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"bits\",\"url\":\"interfaces/CreateIndexesOptions.html#bits\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/CreateIndexesOptions.html#min\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/CreateIndexesOptions.html#max\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"bucketSize\",\"url\":\"interfaces/CreateIndexesOptions.html#bucketSize\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"wildcardProjection\",\"url\":\"interfaces/CreateIndexesOptions.html#wildcardProjection\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"interfaces/CreateIndexesOptions.html#hidden\",\"classes\":\"\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/CreateIndexesOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/CreateIndexesOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/CreateIndexesOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/CreateIndexesOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/CreateIndexesOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/CreateIndexesOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/CreateIndexesOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/CreateIndexesOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/CreateIndexesOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/CreateIndexesOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/CreateIndexesOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/CreateIndexesOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/CreateIndexesOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/CreateIndexesOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/CreateIndexesOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"CreateIndexesOptions\"},{\"kind\":4194304,\"name\":\"DropIndexesOptions\",\"url\":\"types/DropIndexesOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"IndexDescription\",\"url\":\"interfaces/IndexDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/IndexDescription.html#collation\",\"classes\":\"\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IndexDescription.html#name\",\"classes\":\"\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/IndexDescription.html#key\",\"classes\":\"\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/IndexDescription.html#max\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/IndexDescription.html#min\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/IndexDescription.html#version\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"background\",\"url\":\"interfaces/IndexDescription.html#background\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/IndexDescription.html#unique\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"partialFilterExpression\",\"url\":\"interfaces/IndexDescription.html#partialFilterExpression\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"interfaces/IndexDescription.html#sparse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"interfaces/IndexDescription.html#hidden\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"expireAfterSeconds\",\"url\":\"interfaces/IndexDescription.html#expireAfterSeconds\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"storageEngine\",\"url\":\"interfaces/IndexDescription.html#storageEngine\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"weights\",\"url\":\"interfaces/IndexDescription.html#weights\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"default_language\",\"url\":\"interfaces/IndexDescription.html#default_language\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"language_override\",\"url\":\"interfaces/IndexDescription.html#language_override\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"textIndexVersion\",\"url\":\"interfaces/IndexDescription.html#textIndexVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"2dsphereIndexVersion\",\"url\":\"interfaces/IndexDescription.html#2dsphereIndexVersion\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"bits\",\"url\":\"interfaces/IndexDescription.html#bits\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"bucketSize\",\"url\":\"interfaces/IndexDescription.html#bucketSize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":1024,\"name\":\"wildcardProjection\",\"url\":\"interfaces/IndexDescription.html#wildcardProjection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"IndexDescription\"},{\"kind\":4194304,\"name\":\"IndexDirection\",\"url\":\"types/IndexDirection.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"IndexSpecification\",\"url\":\"types/IndexSpecification.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ListIndexesOptions\",\"url\":\"interfaces/ListIndexesOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ListIndexesOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ListIndexesOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ListIndexesOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ListIndexesOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ListIndexesOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ListIndexesOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ListIndexesOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ListIndexesOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ListIndexesOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ListIndexesOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ListIndexesOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ListIndexesOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ListIndexesOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ListIndexesOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ListIndexesOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ListIndexesOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListIndexesOptions\"},{\"kind\":256,\"name\":\"InsertManyResult\",\"url\":\"interfaces/InsertManyResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/InsertManyResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"InsertManyResult\"},{\"kind\":1024,\"name\":\"insertedCount\",\"url\":\"interfaces/InsertManyResult.html#insertedCount\",\"classes\":\"\",\"parent\":\"InsertManyResult\"},{\"kind\":1024,\"name\":\"insertedIds\",\"url\":\"interfaces/InsertManyResult.html#insertedIds\",\"classes\":\"\",\"parent\":\"InsertManyResult\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/InsertManyResult.html#insertedIds.__type\",\"classes\":\"\",\"parent\":\"InsertManyResult.insertedIds\"},{\"kind\":256,\"name\":\"InsertOneOptions\",\"url\":\"interfaces/InsertOneOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/InsertOneOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"forceServerObjectId\",\"url\":\"interfaces/InsertOneOptions.html#forceServerObjectId\",\"classes\":\"\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/InsertOneOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/InsertOneOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/InsertOneOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/InsertOneOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/InsertOneOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/InsertOneOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/InsertOneOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/InsertOneOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/InsertOneOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/InsertOneOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/InsertOneOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/InsertOneOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/InsertOneOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/InsertOneOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/InsertOneOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/InsertOneOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"InsertOneOptions\"},{\"kind\":256,\"name\":\"InsertOneResult\",\"url\":\"interfaces/InsertOneResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/InsertOneResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"InsertOneResult\"},{\"kind\":1024,\"name\":\"insertedId\",\"url\":\"interfaces/InsertOneResult.html#insertedId\",\"classes\":\"\",\"parent\":\"InsertOneResult\"},{\"kind\":256,\"name\":\"CollectionInfo\",\"url\":\"interfaces/CollectionInfo.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/CollectionInfo.html#name\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CollectionInfo.html#type\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/CollectionInfo.html#options\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"interfaces/CollectionInfo.html#info\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/CollectionInfo.html#info.__type\",\"classes\":\"\",\"parent\":\"CollectionInfo.info\"},{\"kind\":1024,\"name\":\"readOnly\",\"url\":\"interfaces/CollectionInfo.html#info.__type.readOnly\",\"classes\":\"\",\"parent\":\"CollectionInfo.info.__type\"},{\"kind\":1024,\"name\":\"uuid\",\"url\":\"interfaces/CollectionInfo.html#info.__type.uuid\",\"classes\":\"\",\"parent\":\"CollectionInfo.info.__type\"},{\"kind\":1024,\"name\":\"idIndex\",\"url\":\"interfaces/CollectionInfo.html#idIndex\",\"classes\":\"\",\"parent\":\"CollectionInfo\"},{\"kind\":256,\"name\":\"ListCollectionsOptions\",\"url\":\"interfaces/ListCollectionsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"nameOnly\",\"url\":\"interfaces/ListCollectionsOptions.html#nameOnly\",\"classes\":\"\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"authorizedCollections\",\"url\":\"interfaces/ListCollectionsOptions.html#authorizedCollections\",\"classes\":\"\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"interfaces/ListCollectionsOptions.html#batchSize\",\"classes\":\"\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ListCollectionsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ListCollectionsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ListCollectionsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ListCollectionsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ListCollectionsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ListCollectionsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ListCollectionsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ListCollectionsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ListCollectionsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ListCollectionsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ListCollectionsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ListCollectionsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ListCollectionsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ListCollectionsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ListCollectionsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListCollectionsOptions\"},{\"kind\":256,\"name\":\"ListDatabasesOptions\",\"url\":\"interfaces/ListDatabasesOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/ListDatabasesOptions.html#filter\",\"classes\":\"\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"nameOnly\",\"url\":\"interfaces/ListDatabasesOptions.html#nameOnly\",\"classes\":\"\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"authorizedDatabases\",\"url\":\"interfaces/ListDatabasesOptions.html#authorizedDatabases\",\"classes\":\"\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ListDatabasesOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ListDatabasesOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ListDatabasesOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ListDatabasesOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ListDatabasesOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ListDatabasesOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ListDatabasesOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ListDatabasesOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ListDatabasesOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ListDatabasesOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ListDatabasesOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ListDatabasesOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ListDatabasesOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ListDatabasesOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/ListDatabasesOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ListDatabasesOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ListDatabasesOptions\"},{\"kind\":256,\"name\":\"ListDatabasesResult\",\"url\":\"interfaces/ListDatabasesResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"databases\",\"url\":\"interfaces/ListDatabasesResult.html#databases\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":1024,\"name\":\"totalSize\",\"url\":\"interfaces/ListDatabasesResult.html#totalSize\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":1024,\"name\":\"totalSizeMb\",\"url\":\"interfaces/ListDatabasesResult.html#totalSizeMb\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":1024,\"name\":\"ok\",\"url\":\"interfaces/ListDatabasesResult.html#ok\",\"classes\":\"\",\"parent\":\"ListDatabasesResult\"},{\"kind\":4194304,\"name\":\"Hint\",\"url\":\"types/Hint.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"OperationOptions\",\"url\":\"interfaces/OperationOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/OperationOptions.html#session\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/OperationOptions.html#willRetryWrite\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/OperationOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/OperationOptions.html#omitReadPreference\",\"classes\":\"\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/OperationOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OperationOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/OperationOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OperationOptions\"},{\"kind\":4194304,\"name\":\"ProfilingLevelOptions\",\"url\":\"types/ProfilingLevelOptions.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RemoveUserOptions\",\"url\":\"types/RemoveUserOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"RenameOptions\",\"url\":\"interfaces/RenameOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dropTarget\",\"url\":\"interfaces/RenameOptions.html#dropTarget\",\"classes\":\"\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"new_collection\",\"url\":\"interfaces/RenameOptions.html#new_collection\",\"classes\":\"\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/RenameOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/RenameOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/RenameOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/RenameOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/RenameOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/RenameOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/RenameOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/RenameOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/RenameOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/RenameOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/RenameOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/RenameOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/RenameOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/RenameOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/RenameOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/RenameOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"RenameOptions\"},{\"kind\":4194304,\"name\":\"RunCommandOptions\",\"url\":\"types/RunCommandOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"SearchIndexDescription\",\"url\":\"interfaces/SearchIndexDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/SearchIndexDescription.html#name\",\"classes\":\"\",\"parent\":\"SearchIndexDescription\"},{\"kind\":1024,\"name\":\"definition\",\"url\":\"interfaces/SearchIndexDescription.html#definition\",\"classes\":\"\",\"parent\":\"SearchIndexDescription\"},{\"kind\":4194304,\"name\":\"SetProfilingLevelOptions\",\"url\":\"types/SetProfilingLevelOptions.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"DbStatsOptions\",\"url\":\"interfaces/DbStatsOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"scale\",\"url\":\"interfaces/DbStatsOptions.html#scale\",\"classes\":\"\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/DbStatsOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/DbStatsOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/DbStatsOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/DbStatsOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/DbStatsOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/DbStatsOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/DbStatsOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/DbStatsOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/DbStatsOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/DbStatsOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/DbStatsOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/DbStatsOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/DbStatsOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/DbStatsOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/DbStatsOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/DbStatsOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"DbStatsOptions\"},{\"kind\":256,\"name\":\"ReplaceOptions\",\"url\":\"interfaces/ReplaceOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/ReplaceOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ReplaceOptions.html#collation\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/ReplaceOptions.html#hint\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/ReplaceOptions.html#upsert\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/ReplaceOptions.html#let\",\"classes\":\"\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ReplaceOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ReplaceOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ReplaceOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ReplaceOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ReplaceOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ReplaceOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ReplaceOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ReplaceOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ReplaceOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ReplaceOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ReplaceOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ReplaceOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ReplaceOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/ReplaceOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ReplaceOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReplaceOptions\"},{\"kind\":256,\"name\":\"UpdateOptions\",\"url\":\"interfaces/UpdateOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateOptions.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"bypassDocumentValidation\",\"url\":\"interfaces/UpdateOptions.html#bypassDocumentValidation\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateOptions.html#collation\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateOptions.html#hint\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateOptions.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"let\",\"url\":\"interfaces/UpdateOptions.html#let\",\"classes\":\"\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/UpdateOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/UpdateOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/UpdateOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/UpdateOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/UpdateOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/UpdateOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/UpdateOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/UpdateOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/UpdateOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/UpdateOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/UpdateOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/UpdateOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/UpdateOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/UpdateOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/UpdateOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"UpdateOptions\"},{\"kind\":256,\"name\":\"UpdateResult\",\"url\":\"interfaces/UpdateResult.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"acknowledged\",\"url\":\"interfaces/UpdateResult.html#acknowledged\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"matchedCount\",\"url\":\"interfaces/UpdateResult.html#matchedCount\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"modifiedCount\",\"url\":\"interfaces/UpdateResult.html#modifiedCount\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"upsertedCount\",\"url\":\"interfaces/UpdateResult.html#upsertedCount\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":1024,\"name\":\"upsertedId\",\"url\":\"interfaces/UpdateResult.html#upsertedId\",\"classes\":\"\",\"parent\":\"UpdateResult\"},{\"kind\":256,\"name\":\"UpdateStatement\",\"url\":\"interfaces/UpdateStatement.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"q\",\"url\":\"interfaces/UpdateStatement.html#q\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"u\",\"url\":\"interfaces/UpdateStatement.html#u\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"upsert\",\"url\":\"interfaces/UpdateStatement.html#upsert\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"multi\",\"url\":\"interfaces/UpdateStatement.html#multi\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/UpdateStatement.html#collation\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"arrayFilters\",\"url\":\"interfaces/UpdateStatement.html#arrayFilters\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"interfaces/UpdateStatement.html#hint\",\"classes\":\"\",\"parent\":\"UpdateStatement\"},{\"kind\":256,\"name\":\"ValidateCollectionOptions\",\"url\":\"interfaces/ValidateCollectionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"background\",\"url\":\"interfaces/ValidateCollectionOptions.html#background\",\"classes\":\"\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/ValidateCollectionOptions.html#readConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/ValidateCollectionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/ValidateCollectionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/ValidateCollectionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/ValidateCollectionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/ValidateCollectionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/ValidateCollectionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/ValidateCollectionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ValidateCollectionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/ValidateCollectionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ValidateCollectionOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/ValidateCollectionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/ValidateCollectionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/ValidateCollectionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/ValidateCollectionOptions.html#writeConcern\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/ValidateCollectionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ValidateCollectionOptions\"},{\"kind\":4194304,\"name\":\"ReadConcernLike\",\"url\":\"types/ReadConcernLike.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"HedgeOptions\",\"url\":\"interfaces/HedgeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/HedgeOptions.html#enabled\",\"classes\":\"\",\"parent\":\"HedgeOptions\"},{\"kind\":256,\"name\":\"ReadPreferenceFromOptions\",\"url\":\"interfaces/ReadPreferenceFromOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#session\",\"classes\":\"\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"readPreferenceTags\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#readPreferenceTags\",\"classes\":\"\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#hedge\",\"classes\":\"\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#readPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/ReadPreferenceFromOptions.html#maxStalenessSeconds\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceFromOptions\"},{\"kind\":4194304,\"name\":\"ReadPreferenceLike\",\"url\":\"types/ReadPreferenceLike.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"ReadPreferenceLikeOptions\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"ReadPreferenceLikeOptions\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html#maxStalenessSeconds\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceLikeOptions\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"interfaces/ReadPreferenceLikeOptions.html#hedge\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReadPreferenceLikeOptions\"},{\"kind\":256,\"name\":\"ReadPreferenceOptions\",\"url\":\"interfaces/ReadPreferenceOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"maxStalenessSeconds\",\"url\":\"interfaces/ReadPreferenceOptions.html#maxStalenessSeconds\",\"classes\":\"\",\"parent\":\"ReadPreferenceOptions\"},{\"kind\":1024,\"name\":\"hedge\",\"url\":\"interfaces/ReadPreferenceOptions.html#hedge\",\"classes\":\"\",\"parent\":\"ReadPreferenceOptions\"},{\"kind\":256,\"name\":\"ClusterTime\",\"url\":\"interfaces/ClusterTime.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"clusterTime\",\"url\":\"interfaces/ClusterTime.html#clusterTime\",\"classes\":\"\",\"parent\":\"ClusterTime\"},{\"kind\":1024,\"name\":\"signature\",\"url\":\"interfaces/ClusterTime.html#signature\",\"classes\":\"\",\"parent\":\"ClusterTime\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ClusterTime.html#signature.__type\",\"classes\":\"\",\"parent\":\"ClusterTime.signature\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/ClusterTime.html#signature.__type.hash\",\"classes\":\"\",\"parent\":\"ClusterTime.signature.__type\"},{\"kind\":1024,\"name\":\"keyId\",\"url\":\"interfaces/ClusterTime.html#signature.__type.keyId\",\"classes\":\"\",\"parent\":\"ClusterTime.signature.__type\"},{\"kind\":4194304,\"name\":\"MonitorEvents\",\"url\":\"types/MonitorEvents.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"MonitorOptions\",\"url\":\"interfaces/MonitorOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"connectTimeoutMS\",\"url\":\"interfaces/MonitorOptions.html#connectTimeoutMS\",\"classes\":\"\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/MonitorOptions.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"minHeartbeatFrequencyMS\",\"url\":\"interfaces/MonitorOptions.html#minHeartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"interfaces/MonitorOptions.html#credentials\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"loadBalanced\",\"url\":\"interfaces/MonitorOptions.html#loadBalanced\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyHost\",\"url\":\"interfaces/MonitorOptions.html#proxyHost\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyPort\",\"url\":\"interfaces/MonitorOptions.html#proxyPort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyUsername\",\"url\":\"interfaces/MonitorOptions.html#proxyUsername\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"proxyPassword\",\"url\":\"interfaces/MonitorOptions.html#proxyPassword\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"tls\",\"url\":\"interfaces/MonitorOptions.html#tls\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"socketTimeoutMS\",\"url\":\"interfaces/MonitorOptions.html#socketTimeoutMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"compressors\",\"url\":\"interfaces/MonitorOptions.html#compressors\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"noDelay\",\"url\":\"interfaces/MonitorOptions.html#noDelay\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"monitorCommands\",\"url\":\"interfaces/MonitorOptions.html#monitorCommands\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"serverApi\",\"url\":\"interfaces/MonitorOptions.html#serverApi\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"cancellationToken\",\"url\":\"interfaces/MonitorOptions.html#cancellationToken\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/MonitorOptions.html#metadata\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"interfaces/MonitorOptions.html#logicalSessionTimeoutMinutes\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MonitorOptions\"},{\"kind\":4194304,\"name\":\"ServerEvents\",\"url\":\"types/ServerEvents.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ServerDescription\",\"url\":\"classes/ServerDescription.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"classes/ServerDescription.html#address\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/ServerDescription.html#type\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"hosts\",\"url\":\"classes/ServerDescription.html#hosts\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"passives\",\"url\":\"classes/ServerDescription.html#passives\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"arbiters\",\"url\":\"classes/ServerDescription.html#arbiters\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/ServerDescription.html#tags\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/ServerDescription.html#error\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"topologyVersion\",\"url\":\"classes/ServerDescription.html#topologyVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/ServerDescription.html#minWireVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"maxWireVersion\",\"url\":\"classes/ServerDescription.html#maxWireVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"roundTripTime\",\"url\":\"classes/ServerDescription.html#roundTripTime\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"lastUpdateTime\",\"url\":\"classes/ServerDescription.html#lastUpdateTime\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"lastWriteDate\",\"url\":\"classes/ServerDescription.html#lastWriteDate\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"me\",\"url\":\"classes/ServerDescription.html#me\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"primary\",\"url\":\"classes/ServerDescription.html#primary\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"setName\",\"url\":\"classes/ServerDescription.html#setName\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"setVersion\",\"url\":\"classes/ServerDescription.html#setVersion\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"electionId\",\"url\":\"classes/ServerDescription.html#electionId\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"classes/ServerDescription.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":1024,\"name\":\"$clusterTime\",\"url\":\"classes/ServerDescription.html#_clusterTime\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"hostAddress\",\"url\":\"classes/ServerDescription.html#hostAddress\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"allHosts\",\"url\":\"classes/ServerDescription.html#allHosts\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"isReadable\",\"url\":\"classes/ServerDescription.html#isReadable\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"isDataBearing\",\"url\":\"classes/ServerDescription.html#isDataBearing\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"isWritable\",\"url\":\"classes/ServerDescription.html#isWritable\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"host\",\"url\":\"classes/ServerDescription.html#host\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":262144,\"name\":\"port\",\"url\":\"classes/ServerDescription.html#port\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ServerDescription.html#equals\",\"classes\":\"\",\"parent\":\"ServerDescription\"},{\"kind\":4194304,\"name\":\"TagSet\",\"url\":\"types/TagSet.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/TagSet.html#__type\",\"classes\":\"\",\"parent\":\"TagSet\"},{\"kind\":256,\"name\":\"TopologyVersion\",\"url\":\"interfaces/TopologyVersion.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"processId\",\"url\":\"interfaces/TopologyVersion.html#processId\",\"classes\":\"\",\"parent\":\"TopologyVersion\"},{\"kind\":1024,\"name\":\"counter\",\"url\":\"interfaces/TopologyVersion.html#counter\",\"classes\":\"\",\"parent\":\"TopologyVersion\"},{\"kind\":256,\"name\":\"ConnectOptions\",\"url\":\"interfaces/ConnectOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/ConnectOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"ConnectOptions\"},{\"kind\":256,\"name\":\"SelectServerOptions\",\"url\":\"interfaces/SelectServerOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/SelectServerOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"SelectServerOptions\"},{\"kind\":1024,\"name\":\"serverSelectionTimeoutMS\",\"url\":\"interfaces/SelectServerOptions.html#serverSelectionTimeoutMS\",\"classes\":\"\",\"parent\":\"SelectServerOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/SelectServerOptions.html#session\",\"classes\":\"\",\"parent\":\"SelectServerOptions\"},{\"kind\":128,\"name\":\"ServerCapabilities\",\"url\":\"classes/ServerCapabilities.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ServerCapabilities.html#constructor\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":1024,\"name\":\"maxWireVersion\",\"url\":\"classes/ServerCapabilities.html#maxWireVersion\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":1024,\"name\":\"minWireVersion\",\"url\":\"classes/ServerCapabilities.html#minWireVersion\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasAggregationCursor\",\"url\":\"classes/ServerCapabilities.html#hasAggregationCursor\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasWriteCommands\",\"url\":\"classes/ServerCapabilities.html#hasWriteCommands\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasTextSearch\",\"url\":\"classes/ServerCapabilities.html#hasTextSearch\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasAuthCommands\",\"url\":\"classes/ServerCapabilities.html#hasAuthCommands\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasListCollectionsCommand\",\"url\":\"classes/ServerCapabilities.html#hasListCollectionsCommand\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"hasListIndexesCommand\",\"url\":\"classes/ServerCapabilities.html#hasListIndexesCommand\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"supportsSnapshotReads\",\"url\":\"classes/ServerCapabilities.html#supportsSnapshotReads\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"commandsTakeWriteConcern\",\"url\":\"classes/ServerCapabilities.html#commandsTakeWriteConcern\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":262144,\"name\":\"commandsTakeCollation\",\"url\":\"classes/ServerCapabilities.html#commandsTakeCollation\",\"classes\":\"\",\"parent\":\"ServerCapabilities\"},{\"kind\":4194304,\"name\":\"TopologyEvents\",\"url\":\"types/TopologyEvents.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"TopologyDescription\",\"url\":\"classes/TopologyDescription.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/TopologyDescription.html#constructor\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"classes/TopologyDescription.html#type\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"setName\",\"url\":\"classes/TopologyDescription.html#setName\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"maxSetVersion\",\"url\":\"classes/TopologyDescription.html#maxSetVersion\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"maxElectionId\",\"url\":\"classes/TopologyDescription.html#maxElectionId\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"servers\",\"url\":\"classes/TopologyDescription.html#servers\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"stale\",\"url\":\"classes/TopologyDescription.html#stale\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"compatible\",\"url\":\"classes/TopologyDescription.html#compatible\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"compatibilityError\",\"url\":\"classes/TopologyDescription.html#compatibilityError\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"logicalSessionTimeoutMinutes\",\"url\":\"classes/TopologyDescription.html#logicalSessionTimeoutMinutes\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"classes/TopologyDescription.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"classes/TopologyDescription.html#localThresholdMS\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":1024,\"name\":\"commonWireVersion\",\"url\":\"classes/TopologyDescription.html#commonWireVersion\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":262144,\"name\":\"error\",\"url\":\"classes/TopologyDescription.html#error\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":262144,\"name\":\"hasKnownServers\",\"url\":\"classes/TopologyDescription.html#hasKnownServers\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":262144,\"name\":\"hasDataBearingServers\",\"url\":\"classes/TopologyDescription.html#hasDataBearingServers\",\"classes\":\"\",\"parent\":\"TopologyDescription\"},{\"kind\":256,\"name\":\"TopologyDescriptionOptions\",\"url\":\"interfaces/TopologyDescriptionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"heartbeatFrequencyMS\",\"url\":\"interfaces/TopologyDescriptionOptions.html#heartbeatFrequencyMS\",\"classes\":\"\",\"parent\":\"TopologyDescriptionOptions\"},{\"kind\":1024,\"name\":\"localThresholdMS\",\"url\":\"interfaces/TopologyDescriptionOptions.html#localThresholdMS\",\"classes\":\"\",\"parent\":\"TopologyDescriptionOptions\"},{\"kind\":4194304,\"name\":\"ClientSessionEvents\",\"url\":\"types/ClientSessionEvents.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ClientSessionEvents.html#__type\",\"classes\":\"\",\"parent\":\"ClientSessionEvents\"},{\"kind\":2048,\"name\":\"ended\",\"url\":\"types/ClientSessionEvents.html#__type.ended\",\"classes\":\"\",\"parent\":\"ClientSessionEvents.__type\"},{\"kind\":256,\"name\":\"ClientSessionOptions\",\"url\":\"interfaces/ClientSessionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"causalConsistency\",\"url\":\"interfaces/ClientSessionOptions.html#causalConsistency\",\"classes\":\"\",\"parent\":\"ClientSessionOptions\"},{\"kind\":1024,\"name\":\"snapshot\",\"url\":\"interfaces/ClientSessionOptions.html#snapshot\",\"classes\":\"\",\"parent\":\"ClientSessionOptions\"},{\"kind\":1024,\"name\":\"defaultTransactionOptions\",\"url\":\"interfaces/ClientSessionOptions.html#defaultTransactionOptions\",\"classes\":\"\",\"parent\":\"ClientSessionOptions\"},{\"kind\":256,\"name\":\"EndSessionOptions\",\"url\":\"interfaces/EndSessionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"interfaces/EndSessionOptions.html#force\",\"classes\":\"\",\"parent\":\"EndSessionOptions\"},{\"kind\":1024,\"name\":\"forceClear\",\"url\":\"interfaces/EndSessionOptions.html#forceClear\",\"classes\":\"\",\"parent\":\"EndSessionOptions\"},{\"kind\":128,\"name\":\"ServerSession\",\"url\":\"classes/ServerSession.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/ServerSession.html#id\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":1024,\"name\":\"lastUse\",\"url\":\"classes/ServerSession.html#lastUse\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":1024,\"name\":\"txnNumber\",\"url\":\"classes/ServerSession.html#txnNumber\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":1024,\"name\":\"isDirty\",\"url\":\"classes/ServerSession.html#isDirty\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":2048,\"name\":\"hasTimedOut\",\"url\":\"classes/ServerSession.html#hasTimedOut\",\"classes\":\"\",\"parent\":\"ServerSession\"},{\"kind\":4194304,\"name\":\"ServerSessionId\",\"url\":\"types/ServerSessionId.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ServerSessionId.html#__type\",\"classes\":\"\",\"parent\":\"ServerSessionId\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/ServerSessionId.html#__type.id\",\"classes\":\"\",\"parent\":\"ServerSessionId.__type\"},{\"kind\":4194304,\"name\":\"WithTransactionCallback\",\"url\":\"types/WithTransactionCallback.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/WithTransactionCallback.html#__type\",\"classes\":\"\",\"parent\":\"WithTransactionCallback\"},{\"kind\":4194304,\"name\":\"Sort\",\"url\":\"types/Sort.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SortDirection\",\"url\":\"types/SortDirection.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Transaction\",\"url\":\"classes/Transaction.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"classes/Transaction.html#options\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"recoveryToken\",\"url\":\"classes/Transaction.html#recoveryToken\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isPinned\",\"url\":\"classes/Transaction.html#isPinned\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isStarting\",\"url\":\"classes/Transaction.html#isStarting\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isActive\",\"url\":\"classes/Transaction.html#isActive\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":262144,\"name\":\"isCommitted\",\"url\":\"classes/Transaction.html#isCommitted\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":256,\"name\":\"TransactionOptions\",\"url\":\"interfaces/TransactionOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"readConcern\",\"url\":\"interfaces/TransactionOptions.html#readConcern\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/TransactionOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"readPreference\",\"url\":\"interfaces/TransactionOptions.html#readPreference\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"maxCommitTimeMS\",\"url\":\"interfaces/TransactionOptions.html#maxCommitTimeMS\",\"classes\":\"\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"collation\",\"url\":\"interfaces/TransactionOptions.html#collation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"maxTimeMS\",\"url\":\"interfaces/TransactionOptions.html#maxTimeMS\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"comment\",\"url\":\"interfaces/TransactionOptions.html#comment\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"retryWrites\",\"url\":\"interfaces/TransactionOptions.html#retryWrites\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"dbName\",\"url\":\"interfaces/TransactionOptions.html#dbName\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"authdb\",\"url\":\"interfaces/TransactionOptions.html#authdb\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"noResponse\",\"url\":\"interfaces/TransactionOptions.html#noResponse\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/TransactionOptions.html#session\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"willRetryWrite\",\"url\":\"interfaces/TransactionOptions.html#willRetryWrite\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"omitReadPreference\",\"url\":\"interfaces/TransactionOptions.html#omitReadPreference\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/TransactionOptions.html#raw\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"enableUtf8Validation\",\"url\":\"interfaces/TransactionOptions.html#enableUtf8Validation\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":1024,\"name\":\"explain\",\"url\":\"interfaces/TransactionOptions.html#explain\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TransactionOptions\"},{\"kind\":4194304,\"name\":\"Callback\",\"url\":\"types/Callback.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Callback.html#__type\",\"classes\":\"\",\"parent\":\"Callback\"},{\"kind\":4194304,\"name\":\"EventEmitterWithState\",\"url\":\"types/EventEmitterWithState.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/EventEmitterWithState.html#__type\",\"classes\":\"\",\"parent\":\"EventEmitterWithState\"},{\"kind\":128,\"name\":\"HostAddress\",\"url\":\"classes/HostAddress.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/HostAddress.html#fromString\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"fromHostPort\",\"url\":\"classes/HostAddress.html#fromHostPort\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"fromSrvRecord\",\"url\":\"classes/HostAddress.html#fromSrvRecord\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HostAddress.html#constructor\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"classes/HostAddress.html#host\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"classes/HostAddress.html#port\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"socketPath\",\"url\":\"classes/HostAddress.html#socketPath\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":1024,\"name\":\"isIPv6\",\"url\":\"classes/HostAddress.html#isIPv6\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"inspect\",\"url\":\"classes/HostAddress.html#inspect\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/HostAddress.html#toString\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":2048,\"name\":\"toHostPort\",\"url\":\"classes/HostAddress.html#toHostPort\",\"classes\":\"\",\"parent\":\"HostAddress\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/HostAddress.html#toHostPort.toHostPort-1.__type\",\"classes\":\"\",\"parent\":\"HostAddress.toHostPort.toHostPort\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"classes/HostAddress.html#toHostPort.toHostPort-1.__type.host-1\",\"classes\":\"\",\"parent\":\"HostAddress.toHostPort.toHostPort.__type\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"classes/HostAddress.html#toHostPort.toHostPort-1.__type.port-1\",\"classes\":\"\",\"parent\":\"HostAddress.toHostPort.toHostPort.__type\"},{\"kind\":128,\"name\":\"MongoDBCollectionNamespace\",\"url\":\"classes/MongoDBCollectionNamespace.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/MongoDBCollectionNamespace.html#fromString\",\"classes\":\"\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDBCollectionNamespace.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"classes/MongoDBCollectionNamespace.html#collection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"classes/MongoDBCollectionNamespace.html#db\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/MongoDBCollectionNamespace.html#toString\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":2048,\"name\":\"withCollection\",\"url\":\"classes/MongoDBCollectionNamespace.html#withCollection\",\"classes\":\"tsd-is-inherited\",\"parent\":\"MongoDBCollectionNamespace\"},{\"kind\":128,\"name\":\"MongoDBNamespace\",\"url\":\"classes/MongoDBNamespace.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"fromString\",\"url\":\"classes/MongoDBNamespace.html#fromString\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MongoDBNamespace.html#constructor\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":1024,\"name\":\"db\",\"url\":\"classes/MongoDBNamespace.html#db\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"classes/MongoDBNamespace.html#collection\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/MongoDBNamespace.html#toString\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":2048,\"name\":\"withCollection\",\"url\":\"classes/MongoDBNamespace.html#withCollection\",\"classes\":\"\",\"parent\":\"MongoDBNamespace\"},{\"kind\":4194304,\"name\":\"W\",\"url\":\"types/W.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"WriteConcernOptions\",\"url\":\"interfaces/WriteConcernOptions.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"interfaces/WriteConcernOptions.html#writeConcern\",\"classes\":\"\",\"parent\":\"WriteConcernOptions\"},{\"kind\":256,\"name\":\"WriteConcernSettings\",\"url\":\"interfaces/WriteConcernSettings.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"w\",\"url\":\"interfaces/WriteConcernSettings.html#w\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"wtimeoutMS\",\"url\":\"interfaces/WriteConcernSettings.html#wtimeoutMS\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"journal\",\"url\":\"interfaces/WriteConcernSettings.html#journal\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"j\",\"url\":\"interfaces/WriteConcernSettings.html#j\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"wtimeout\",\"url\":\"interfaces/WriteConcernSettings.html#wtimeout\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"},{\"kind\":1024,\"name\":\"fsync\",\"url\":\"interfaces/WriteConcernSettings.html#fsync\",\"classes\":\"\",\"parent\":\"WriteConcernSettings\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,76.246]],[\"comment/0\",[]],[\"name/1\",[1,76.246]],[\"comment/1\",[]],[\"name/2\",[2,76.246]],[\"comment/2\",[]],[\"name/3\",[3,76.246]],[\"comment/3\",[]],[\"name/4\",[4,43.538]],[\"comment/4\",[]],[\"name/5\",[5,76.246]],[\"comment/5\",[]],[\"name/6\",[6,76.246]],[\"comment/6\",[]],[\"name/7\",[7,76.246]],[\"comment/7\",[]],[\"name/8\",[8,76.246]],[\"comment/8\",[]],[\"name/9\",[9,76.246]],[\"comment/9\",[]],[\"name/10\",[10,76.246]],[\"comment/10\",[]],[\"name/11\",[11,76.246]],[\"comment/11\",[]],[\"name/12\",[12,76.246]],[\"comment/12\",[]],[\"name/13\",[13,76.246]],[\"comment/13\",[]],[\"name/14\",[14,71.138]],[\"comment/14\",[]],[\"name/15\",[15,76.246]],[\"comment/15\",[]],[\"name/16\",[16,76.246]],[\"comment/16\",[]],[\"name/17\",[17,56.787]],[\"comment/17\",[]],[\"name/18\",[18,71.138]],[\"comment/18\",[]],[\"name/19\",[19,63.253]],[\"comment/19\",[]],[\"name/20\",[20,55.044]],[\"comment/20\",[]],[\"name/21\",[21,42.806]],[\"comment/21\",[]],[\"name/22\",[22,44.057]],[\"comment/22\",[]],[\"name/23\",[23,44.891]],[\"comment/23\",[]],[\"name/24\",[24,46.124]],[\"comment/24\",[]],[\"name/25\",[25,46.457]],[\"comment/25\",[]],[\"name/26\",[26,46.802]],[\"comment/26\",[]],[\"name/27\",[27,47.529]],[\"comment/27\",[]],[\"name/28\",[28,47.529]],[\"comment/28\",[]],[\"name/29\",[29,43.794]],[\"comment/29\",[]],[\"name/30\",[30,47.159]],[\"comment/30\",[]],[\"name/31\",[31,41.081]],[\"comment/31\",[]],[\"name/32\",[32,47.159]],[\"comment/32\",[]],[\"name/33\",[33,44.328]],[\"comment/33\",[]],[\"name/34\",[34,45.488]],[\"comment/34\",[]],[\"name/35\",[35,44.328]],[\"comment/35\",[]],[\"name/36\",[36,46.124]],[\"comment/36\",[]],[\"name/37\",[37,76.246]],[\"comment/37\",[]],[\"name/38\",[38,40.693]],[\"comment/38\",[]],[\"name/39\",[39,67.773]],[\"comment/39\",[]],[\"name/40\",[40,76.246]],[\"comment/40\",[]],[\"name/41\",[41,67.773]],[\"comment/41\",[]],[\"name/42\",[42,41.081]],[\"comment/42\",[]],[\"name/43\",[43,67.773]],[\"comment/43\",[]],[\"name/44\",[44,67.773]],[\"comment/44\",[]],[\"name/45\",[45,67.773]],[\"comment/45\",[]],[\"name/46\",[46,67.773]],[\"comment/46\",[]],[\"name/47\",[47,67.773]],[\"comment/47\",[]],[\"name/48\",[48,67.773]],[\"comment/48\",[]],[\"name/49\",[49,40.693]],[\"comment/49\",[]],[\"name/50\",[50,71.138]],[\"comment/50\",[]],[\"name/51\",[49,40.693]],[\"comment/51\",[]],[\"name/52\",[51,67.773]],[\"comment/52\",[]],[\"name/53\",[52,65.26]],[\"comment/53\",[]],[\"name/54\",[53,58.9]],[\"comment/54\",[]],[\"name/55\",[54,61.583]],[\"comment/55\",[]],[\"name/56\",[4,43.538]],[\"comment/56\",[]],[\"name/57\",[55,44.606]],[\"comment/57\",[]],[\"name/58\",[56,45.185]],[\"comment/58\",[]],[\"name/59\",[57,45.185]],[\"comment/59\",[]],[\"name/60\",[58,43.538]],[\"comment/60\",[]],[\"name/61\",[59,45.185]],[\"comment/61\",[]],[\"name/62\",[60,45.185]],[\"comment/62\",[]],[\"name/63\",[61,44.891]],[\"comment/63\",[]],[\"name/64\",[62,76.246]],[\"comment/64\",[]],[\"name/65\",[63,76.246]],[\"comment/65\",[]],[\"name/66\",[38,40.693]],[\"comment/66\",[]],[\"name/67\",[64,76.246]],[\"comment/67\",[]],[\"name/68\",[65,76.246]],[\"comment/68\",[]],[\"name/69\",[66,76.246]],[\"comment/69\",[]],[\"name/70\",[67,76.246]],[\"comment/70\",[]],[\"name/71\",[68,76.246]],[\"comment/71\",[]],[\"name/72\",[69,76.246]],[\"comment/72\",[]],[\"name/73\",[70,76.246]],[\"comment/73\",[]],[\"name/74\",[71,76.246]],[\"comment/74\",[]],[\"name/75\",[72,76.246]],[\"comment/75\",[]],[\"name/76\",[73,76.246]],[\"comment/76\",[]],[\"name/77\",[74,76.246]],[\"comment/77\",[]],[\"name/78\",[75,76.246]],[\"comment/78\",[]],[\"name/79\",[76,76.246]],[\"comment/79\",[]],[\"name/80\",[38,40.693]],[\"comment/80\",[]],[\"name/81\",[42,41.081]],[\"comment/81\",[]],[\"name/82\",[4,43.538]],[\"comment/82\",[]],[\"name/83\",[55,44.606]],[\"comment/83\",[]],[\"name/84\",[56,45.185]],[\"comment/84\",[]],[\"name/85\",[57,45.185]],[\"comment/85\",[]],[\"name/86\",[58,43.538]],[\"comment/86\",[]],[\"name/87\",[59,45.185]],[\"comment/87\",[]],[\"name/88\",[60,45.185]],[\"comment/88\",[]],[\"name/89\",[61,44.891]],[\"comment/89\",[]],[\"name/90\",[77,76.246]],[\"comment/90\",[]],[\"name/91\",[38,40.693]],[\"comment/91\",[]],[\"name/92\",[42,41.081]],[\"comment/92\",[]],[\"name/93\",[4,43.538]],[\"comment/93\",[]],[\"name/94\",[55,44.606]],[\"comment/94\",[]],[\"name/95\",[56,45.185]],[\"comment/95\",[]],[\"name/96\",[57,45.185]],[\"comment/96\",[]],[\"name/97\",[58,43.538]],[\"comment/97\",[]],[\"name/98\",[59,45.185]],[\"comment/98\",[]],[\"name/99\",[60,45.185]],[\"comment/99\",[]],[\"name/100\",[61,44.891]],[\"comment/100\",[]],[\"name/101\",[78,76.246]],[\"comment/101\",[]],[\"name/102\",[38,40.693]],[\"comment/102\",[]],[\"name/103\",[42,41.081]],[\"comment/103\",[]],[\"name/104\",[4,43.538]],[\"comment/104\",[]],[\"name/105\",[55,44.606]],[\"comment/105\",[]],[\"name/106\",[56,45.185]],[\"comment/106\",[]],[\"name/107\",[57,45.185]],[\"comment/107\",[]],[\"name/108\",[58,43.538]],[\"comment/108\",[]],[\"name/109\",[59,45.185]],[\"comment/109\",[]],[\"name/110\",[60,45.185]],[\"comment/110\",[]],[\"name/111\",[61,44.891]],[\"comment/111\",[]],[\"name/112\",[79,76.246]],[\"comment/112\",[]],[\"name/113\",[38,40.693]],[\"comment/113\",[]],[\"name/114\",[42,41.081]],[\"comment/114\",[]],[\"name/115\",[4,43.538]],[\"comment/115\",[]],[\"name/116\",[55,44.606]],[\"comment/116\",[]],[\"name/117\",[56,45.185]],[\"comment/117\",[]],[\"name/118\",[57,45.185]],[\"comment/118\",[]],[\"name/119\",[58,43.538]],[\"comment/119\",[]],[\"name/120\",[59,45.185]],[\"comment/120\",[]],[\"name/121\",[60,45.185]],[\"comment/121\",[]],[\"name/122\",[61,44.891]],[\"comment/122\",[]],[\"name/123\",[80,76.246]],[\"comment/123\",[]],[\"name/124\",[38,40.693]],[\"comment/124\",[]],[\"name/125\",[42,41.081]],[\"comment/125\",[]],[\"name/126\",[4,43.538]],[\"comment/126\",[]],[\"name/127\",[55,44.606]],[\"comment/127\",[]],[\"name/128\",[56,45.185]],[\"comment/128\",[]],[\"name/129\",[57,45.185]],[\"comment/129\",[]],[\"name/130\",[58,43.538]],[\"comment/130\",[]],[\"name/131\",[59,45.185]],[\"comment/131\",[]],[\"name/132\",[60,45.185]],[\"comment/132\",[]],[\"name/133\",[61,44.891]],[\"comment/133\",[]],[\"name/134\",[81,76.246]],[\"comment/134\",[]],[\"name/135\",[38,40.693]],[\"comment/135\",[]],[\"name/136\",[42,41.081]],[\"comment/136\",[]],[\"name/137\",[4,43.538]],[\"comment/137\",[]],[\"name/138\",[55,44.606]],[\"comment/138\",[]],[\"name/139\",[56,45.185]],[\"comment/139\",[]],[\"name/140\",[57,45.185]],[\"comment/140\",[]],[\"name/141\",[58,43.538]],[\"comment/141\",[]],[\"name/142\",[59,45.185]],[\"comment/142\",[]],[\"name/143\",[60,45.185]],[\"comment/143\",[]],[\"name/144\",[61,44.891]],[\"comment/144\",[]],[\"name/145\",[82,76.246]],[\"comment/145\",[]],[\"name/146\",[38,40.693]],[\"comment/146\",[]],[\"name/147\",[42,41.081]],[\"comment/147\",[]],[\"name/148\",[4,43.538]],[\"comment/148\",[]],[\"name/149\",[55,44.606]],[\"comment/149\",[]],[\"name/150\",[56,45.185]],[\"comment/150\",[]],[\"name/151\",[57,45.185]],[\"comment/151\",[]],[\"name/152\",[58,43.538]],[\"comment/152\",[]],[\"name/153\",[59,45.185]],[\"comment/153\",[]],[\"name/154\",[60,45.185]],[\"comment/154\",[]],[\"name/155\",[61,44.891]],[\"comment/155\",[]],[\"name/156\",[83,76.246]],[\"comment/156\",[]],[\"name/157\",[38,40.693]],[\"comment/157\",[]],[\"name/158\",[42,41.081]],[\"comment/158\",[]],[\"name/159\",[4,43.538]],[\"comment/159\",[]],[\"name/160\",[55,44.606]],[\"comment/160\",[]],[\"name/161\",[56,45.185]],[\"comment/161\",[]],[\"name/162\",[57,45.185]],[\"comment/162\",[]],[\"name/163\",[58,43.538]],[\"comment/163\",[]],[\"name/164\",[59,45.185]],[\"comment/164\",[]],[\"name/165\",[60,45.185]],[\"comment/165\",[]],[\"name/166\",[61,44.891]],[\"comment/166\",[]],[\"name/167\",[84,76.246]],[\"comment/167\",[]],[\"name/168\",[38,40.693]],[\"comment/168\",[]],[\"name/169\",[42,41.081]],[\"comment/169\",[]],[\"name/170\",[4,43.538]],[\"comment/170\",[]],[\"name/171\",[55,44.606]],[\"comment/171\",[]],[\"name/172\",[56,45.185]],[\"comment/172\",[]],[\"name/173\",[57,45.185]],[\"comment/173\",[]],[\"name/174\",[58,43.538]],[\"comment/174\",[]],[\"name/175\",[59,45.185]],[\"comment/175\",[]],[\"name/176\",[60,45.185]],[\"comment/176\",[]],[\"name/177\",[61,44.891]],[\"comment/177\",[]],[\"name/178\",[85,76.246]],[\"comment/178\",[]],[\"name/179\",[38,40.693]],[\"comment/179\",[]],[\"name/180\",[42,41.081]],[\"comment/180\",[]],[\"name/181\",[4,43.538]],[\"comment/181\",[]],[\"name/182\",[55,44.606]],[\"comment/182\",[]],[\"name/183\",[56,45.185]],[\"comment/183\",[]],[\"name/184\",[57,45.185]],[\"comment/184\",[]],[\"name/185\",[58,43.538]],[\"comment/185\",[]],[\"name/186\",[59,45.185]],[\"comment/186\",[]],[\"name/187\",[60,45.185]],[\"comment/187\",[]],[\"name/188\",[61,44.891]],[\"comment/188\",[]],[\"name/189\",[86,76.246]],[\"comment/189\",[]],[\"name/190\",[38,40.693]],[\"comment/190\",[]],[\"name/191\",[4,43.538]],[\"comment/191\",[]],[\"name/192\",[55,44.606]],[\"comment/192\",[]],[\"name/193\",[56,45.185]],[\"comment/193\",[]],[\"name/194\",[57,45.185]],[\"comment/194\",[]],[\"name/195\",[42,41.081]],[\"comment/195\",[]],[\"name/196\",[58,43.538]],[\"comment/196\",[]],[\"name/197\",[59,45.185]],[\"comment/197\",[]],[\"name/198\",[60,45.185]],[\"comment/198\",[]],[\"name/199\",[61,44.891]],[\"comment/199\",[]],[\"name/200\",[87,76.246]],[\"comment/200\",[]],[\"name/201\",[38,40.693]],[\"comment/201\",[]],[\"name/202\",[42,41.081]],[\"comment/202\",[]],[\"name/203\",[4,43.538]],[\"comment/203\",[]],[\"name/204\",[55,44.606]],[\"comment/204\",[]],[\"name/205\",[56,45.185]],[\"comment/205\",[]],[\"name/206\",[57,45.185]],[\"comment/206\",[]],[\"name/207\",[58,43.538]],[\"comment/207\",[]],[\"name/208\",[59,45.185]],[\"comment/208\",[]],[\"name/209\",[60,45.185]],[\"comment/209\",[]],[\"name/210\",[61,44.891]],[\"comment/210\",[]],[\"name/211\",[88,76.246]],[\"comment/211\",[]],[\"name/212\",[38,40.693]],[\"comment/212\",[]],[\"name/213\",[42,41.081]],[\"comment/213\",[]],[\"name/214\",[4,43.538]],[\"comment/214\",[]],[\"name/215\",[55,44.606]],[\"comment/215\",[]],[\"name/216\",[56,45.185]],[\"comment/216\",[]],[\"name/217\",[57,45.185]],[\"comment/217\",[]],[\"name/218\",[58,43.538]],[\"comment/218\",[]],[\"name/219\",[59,45.185]],[\"comment/219\",[]],[\"name/220\",[60,45.185]],[\"comment/220\",[]],[\"name/221\",[61,44.891]],[\"comment/221\",[]],[\"name/222\",[89,76.246]],[\"comment/222\",[]],[\"name/223\",[38,40.693]],[\"comment/223\",[]],[\"name/224\",[42,41.081]],[\"comment/224\",[]],[\"name/225\",[4,43.538]],[\"comment/225\",[]],[\"name/226\",[55,44.606]],[\"comment/226\",[]],[\"name/227\",[56,45.185]],[\"comment/227\",[]],[\"name/228\",[57,45.185]],[\"comment/228\",[]],[\"name/229\",[58,43.538]],[\"comment/229\",[]],[\"name/230\",[59,45.185]],[\"comment/230\",[]],[\"name/231\",[60,45.185]],[\"comment/231\",[]],[\"name/232\",[61,44.891]],[\"comment/232\",[]],[\"name/233\",[90,76.246]],[\"comment/233\",[]],[\"name/234\",[38,40.693]],[\"comment/234\",[]],[\"name/235\",[42,41.081]],[\"comment/235\",[]],[\"name/236\",[4,43.538]],[\"comment/236\",[]],[\"name/237\",[55,44.606]],[\"comment/237\",[]],[\"name/238\",[56,45.185]],[\"comment/238\",[]],[\"name/239\",[57,45.185]],[\"comment/239\",[]],[\"name/240\",[58,43.538]],[\"comment/240\",[]],[\"name/241\",[59,45.185]],[\"comment/241\",[]],[\"name/242\",[60,45.185]],[\"comment/242\",[]],[\"name/243\",[61,44.891]],[\"comment/243\",[]],[\"name/244\",[91,76.246]],[\"comment/244\",[]],[\"name/245\",[38,40.693]],[\"comment/245\",[]],[\"name/246\",[42,41.081]],[\"comment/246\",[]],[\"name/247\",[4,43.538]],[\"comment/247\",[]],[\"name/248\",[55,44.606]],[\"comment/248\",[]],[\"name/249\",[56,45.185]],[\"comment/249\",[]],[\"name/250\",[57,45.185]],[\"comment/250\",[]],[\"name/251\",[58,43.538]],[\"comment/251\",[]],[\"name/252\",[59,45.185]],[\"comment/252\",[]],[\"name/253\",[60,45.185]],[\"comment/253\",[]],[\"name/254\",[61,44.891]],[\"comment/254\",[]],[\"name/255\",[92,76.246]],[\"comment/255\",[]],[\"name/256\",[38,40.693]],[\"comment/256\",[]],[\"name/257\",[42,41.081]],[\"comment/257\",[]],[\"name/258\",[4,43.538]],[\"comment/258\",[]],[\"name/259\",[55,44.606]],[\"comment/259\",[]],[\"name/260\",[56,45.185]],[\"comment/260\",[]],[\"name/261\",[57,45.185]],[\"comment/261\",[]],[\"name/262\",[58,43.538]],[\"comment/262\",[]],[\"name/263\",[59,45.185]],[\"comment/263\",[]],[\"name/264\",[60,45.185]],[\"comment/264\",[]],[\"name/265\",[61,44.891]],[\"comment/265\",[]],[\"name/266\",[93,76.246]],[\"comment/266\",[]],[\"name/267\",[38,40.693]],[\"comment/267\",[]],[\"name/268\",[42,41.081]],[\"comment/268\",[]],[\"name/269\",[4,43.538]],[\"comment/269\",[]],[\"name/270\",[55,44.606]],[\"comment/270\",[]],[\"name/271\",[56,45.185]],[\"comment/271\",[]],[\"name/272\",[57,45.185]],[\"comment/272\",[]],[\"name/273\",[58,43.538]],[\"comment/273\",[]],[\"name/274\",[59,45.185]],[\"comment/274\",[]],[\"name/275\",[60,45.185]],[\"comment/275\",[]],[\"name/276\",[61,44.891]],[\"comment/276\",[]],[\"name/277\",[94,76.246]],[\"comment/277\",[]],[\"name/278\",[38,40.693]],[\"comment/278\",[]],[\"name/279\",[42,41.081]],[\"comment/279\",[]],[\"name/280\",[4,43.538]],[\"comment/280\",[]],[\"name/281\",[55,44.606]],[\"comment/281\",[]],[\"name/282\",[56,45.185]],[\"comment/282\",[]],[\"name/283\",[57,45.185]],[\"comment/283\",[]],[\"name/284\",[58,43.538]],[\"comment/284\",[]],[\"name/285\",[59,45.185]],[\"comment/285\",[]],[\"name/286\",[60,45.185]],[\"comment/286\",[]],[\"name/287\",[61,44.891]],[\"comment/287\",[]],[\"name/288\",[95,76.246]],[\"comment/288\",[]],[\"name/289\",[38,40.693]],[\"comment/289\",[]],[\"name/290\",[42,41.081]],[\"comment/290\",[]],[\"name/291\",[4,43.538]],[\"comment/291\",[]],[\"name/292\",[55,44.606]],[\"comment/292\",[]],[\"name/293\",[56,45.185]],[\"comment/293\",[]],[\"name/294\",[57,45.185]],[\"comment/294\",[]],[\"name/295\",[58,43.538]],[\"comment/295\",[]],[\"name/296\",[59,45.185]],[\"comment/296\",[]],[\"name/297\",[60,45.185]],[\"comment/297\",[]],[\"name/298\",[61,44.891]],[\"comment/298\",[]],[\"name/299\",[96,76.246]],[\"comment/299\",[]],[\"name/300\",[38,40.693]],[\"comment/300\",[]],[\"name/301\",[42,41.081]],[\"comment/301\",[]],[\"name/302\",[4,43.538]],[\"comment/302\",[]],[\"name/303\",[55,44.606]],[\"comment/303\",[]],[\"name/304\",[56,45.185]],[\"comment/304\",[]],[\"name/305\",[57,45.185]],[\"comment/305\",[]],[\"name/306\",[58,43.538]],[\"comment/306\",[]],[\"name/307\",[59,45.185]],[\"comment/307\",[]],[\"name/308\",[60,45.185]],[\"comment/308\",[]],[\"name/309\",[61,44.891]],[\"comment/309\",[]],[\"name/310\",[97,76.246]],[\"comment/310\",[]],[\"name/311\",[38,40.693]],[\"comment/311\",[]],[\"name/312\",[42,41.081]],[\"comment/312\",[]],[\"name/313\",[4,43.538]],[\"comment/313\",[]],[\"name/314\",[55,44.606]],[\"comment/314\",[]],[\"name/315\",[56,45.185]],[\"comment/315\",[]],[\"name/316\",[57,45.185]],[\"comment/316\",[]],[\"name/317\",[58,43.538]],[\"comment/317\",[]],[\"name/318\",[59,45.185]],[\"comment/318\",[]],[\"name/319\",[60,45.185]],[\"comment/319\",[]],[\"name/320\",[61,44.891]],[\"comment/320\",[]],[\"name/321\",[98,76.246]],[\"comment/321\",[]],[\"name/322\",[38,40.693]],[\"comment/322\",[]],[\"name/323\",[42,41.081]],[\"comment/323\",[]],[\"name/324\",[4,43.538]],[\"comment/324\",[]],[\"name/325\",[55,44.606]],[\"comment/325\",[]],[\"name/326\",[56,45.185]],[\"comment/326\",[]],[\"name/327\",[57,45.185]],[\"comment/327\",[]],[\"name/328\",[58,43.538]],[\"comment/328\",[]],[\"name/329\",[59,45.185]],[\"comment/329\",[]],[\"name/330\",[60,45.185]],[\"comment/330\",[]],[\"name/331\",[61,44.891]],[\"comment/331\",[]],[\"name/332\",[99,76.246]],[\"comment/332\",[]],[\"name/333\",[38,40.693]],[\"comment/333\",[]],[\"name/334\",[42,41.081]],[\"comment/334\",[]],[\"name/335\",[4,43.538]],[\"comment/335\",[]],[\"name/336\",[55,44.606]],[\"comment/336\",[]],[\"name/337\",[56,45.185]],[\"comment/337\",[]],[\"name/338\",[57,45.185]],[\"comment/338\",[]],[\"name/339\",[58,43.538]],[\"comment/339\",[]],[\"name/340\",[59,45.185]],[\"comment/340\",[]],[\"name/341\",[60,45.185]],[\"comment/341\",[]],[\"name/342\",[61,44.891]],[\"comment/342\",[]],[\"name/343\",[100,76.246]],[\"comment/343\",[]],[\"name/344\",[38,40.693]],[\"comment/344\",[]],[\"name/345\",[51,67.773]],[\"comment/345\",[]],[\"name/346\",[52,65.26]],[\"comment/346\",[]],[\"name/347\",[53,58.9]],[\"comment/347\",[]],[\"name/348\",[54,61.583]],[\"comment/348\",[]],[\"name/349\",[42,41.081]],[\"comment/349\",[]],[\"name/350\",[4,43.538]],[\"comment/350\",[]],[\"name/351\",[55,44.606]],[\"comment/351\",[]],[\"name/352\",[56,45.185]],[\"comment/352\",[]],[\"name/353\",[57,45.185]],[\"comment/353\",[]],[\"name/354\",[58,43.538]],[\"comment/354\",[]],[\"name/355\",[59,45.185]],[\"comment/355\",[]],[\"name/356\",[60,45.185]],[\"comment/356\",[]],[\"name/357\",[61,44.891]],[\"comment/357\",[]],[\"name/358\",[101,76.246]],[\"comment/358\",[]],[\"name/359\",[38,40.693]],[\"comment/359\",[]],[\"name/360\",[42,41.081]],[\"comment/360\",[]],[\"name/361\",[102,65.26]],[\"comment/361\",[]],[\"name/362\",[4,43.538]],[\"comment/362\",[]],[\"name/363\",[55,44.606]],[\"comment/363\",[]],[\"name/364\",[56,45.185]],[\"comment/364\",[]],[\"name/365\",[57,45.185]],[\"comment/365\",[]],[\"name/366\",[58,43.538]],[\"comment/366\",[]],[\"name/367\",[59,45.185]],[\"comment/367\",[]],[\"name/368\",[60,45.185]],[\"comment/368\",[]],[\"name/369\",[61,44.891]],[\"comment/369\",[]],[\"name/370\",[103,76.246]],[\"comment/370\",[]],[\"name/371\",[38,40.693]],[\"comment/371\",[]],[\"name/372\",[102,65.26]],[\"comment/372\",[]],[\"name/373\",[42,41.081]],[\"comment/373\",[]],[\"name/374\",[4,43.538]],[\"comment/374\",[]],[\"name/375\",[55,44.606]],[\"comment/375\",[]],[\"name/376\",[56,45.185]],[\"comment/376\",[]],[\"name/377\",[57,45.185]],[\"comment/377\",[]],[\"name/378\",[58,43.538]],[\"comment/378\",[]],[\"name/379\",[59,45.185]],[\"comment/379\",[]],[\"name/380\",[60,45.185]],[\"comment/380\",[]],[\"name/381\",[61,44.891]],[\"comment/381\",[]],[\"name/382\",[104,76.246]],[\"comment/382\",[]],[\"name/383\",[38,40.693]],[\"comment/383\",[]],[\"name/384\",[42,41.081]],[\"comment/384\",[]],[\"name/385\",[4,43.538]],[\"comment/385\",[]],[\"name/386\",[55,44.606]],[\"comment/386\",[]],[\"name/387\",[56,45.185]],[\"comment/387\",[]],[\"name/388\",[57,45.185]],[\"comment/388\",[]],[\"name/389\",[58,43.538]],[\"comment/389\",[]],[\"name/390\",[59,45.185]],[\"comment/390\",[]],[\"name/391\",[60,45.185]],[\"comment/391\",[]],[\"name/392\",[61,44.891]],[\"comment/392\",[]],[\"name/393\",[105,76.246]],[\"comment/393\",[]],[\"name/394\",[38,40.693]],[\"comment/394\",[]],[\"name/395\",[42,41.081]],[\"comment/395\",[]],[\"name/396\",[4,43.538]],[\"comment/396\",[]],[\"name/397\",[55,44.606]],[\"comment/397\",[]],[\"name/398\",[56,45.185]],[\"comment/398\",[]],[\"name/399\",[57,45.185]],[\"comment/399\",[]],[\"name/400\",[58,43.538]],[\"comment/400\",[]],[\"name/401\",[59,45.185]],[\"comment/401\",[]],[\"name/402\",[60,45.185]],[\"comment/402\",[]],[\"name/403\",[61,44.891]],[\"comment/403\",[]],[\"name/404\",[106,76.246]],[\"comment/404\",[]],[\"name/405\",[38,40.693]],[\"comment/405\",[]],[\"name/406\",[42,41.081]],[\"comment/406\",[]],[\"name/407\",[4,43.538]],[\"comment/407\",[]],[\"name/408\",[55,44.606]],[\"comment/408\",[]],[\"name/409\",[56,45.185]],[\"comment/409\",[]],[\"name/410\",[57,45.185]],[\"comment/410\",[]],[\"name/411\",[58,43.538]],[\"comment/411\",[]],[\"name/412\",[59,45.185]],[\"comment/412\",[]],[\"name/413\",[60,45.185]],[\"comment/413\",[]],[\"name/414\",[61,44.891]],[\"comment/414\",[]],[\"name/415\",[107,76.246]],[\"comment/415\",[]],[\"name/416\",[38,40.693]],[\"comment/416\",[]],[\"name/417\",[42,41.081]],[\"comment/417\",[]],[\"name/418\",[4,43.538]],[\"comment/418\",[]],[\"name/419\",[55,44.606]],[\"comment/419\",[]],[\"name/420\",[56,45.185]],[\"comment/420\",[]],[\"name/421\",[57,45.185]],[\"comment/421\",[]],[\"name/422\",[58,43.538]],[\"comment/422\",[]],[\"name/423\",[59,45.185]],[\"comment/423\",[]],[\"name/424\",[60,45.185]],[\"comment/424\",[]],[\"name/425\",[61,44.891]],[\"comment/425\",[]],[\"name/426\",[108,76.246]],[\"comment/426\",[]],[\"name/427\",[38,40.693]],[\"comment/427\",[]],[\"name/428\",[39,67.773]],[\"comment/428\",[]],[\"name/429\",[42,41.081]],[\"comment/429\",[]],[\"name/430\",[51,67.773]],[\"comment/430\",[]],[\"name/431\",[52,65.26]],[\"comment/431\",[]],[\"name/432\",[53,58.9]],[\"comment/432\",[]],[\"name/433\",[54,61.583]],[\"comment/433\",[]],[\"name/434\",[4,43.538]],[\"comment/434\",[]],[\"name/435\",[55,44.606]],[\"comment/435\",[]],[\"name/436\",[56,45.185]],[\"comment/436\",[]],[\"name/437\",[57,45.185]],[\"comment/437\",[]],[\"name/438\",[58,43.538]],[\"comment/438\",[]],[\"name/439\",[59,45.185]],[\"comment/439\",[]],[\"name/440\",[60,45.185]],[\"comment/440\",[]],[\"name/441\",[61,44.891]],[\"comment/441\",[]],[\"name/442\",[109,76.246]],[\"comment/442\",[]],[\"name/443\",[110,50.597]],[\"comment/443\",[]],[\"name/444\",[111,54.274]],[\"comment/444\",[]],[\"name/445\",[112,56.787]],[\"comment/445\",[]],[\"name/446\",[31,41.081]],[\"comment/446\",[]],[\"name/447\",[21,42.806]],[\"comment/447\",[]],[\"name/448\",[29,43.794]],[\"comment/448\",[]],[\"name/449\",[113,58.9]],[\"comment/449\",[]],[\"name/450\",[114,60.152]],[\"comment/450\",[]],[\"name/451\",[115,52.892]],[\"comment/451\",[]],[\"name/452\",[116,60.152]],[\"comment/452\",[]],[\"name/453\",[117,60.152]],[\"comment/453\",[]],[\"name/454\",[118,57.788]],[\"comment/454\",[]],[\"name/455\",[119,58.9]],[\"comment/455\",[]],[\"name/456\",[120,58.9]],[\"comment/456\",[]],[\"name/457\",[121,58.9]],[\"comment/457\",[]],[\"name/458\",[122,60.152]],[\"comment/458\",[]],[\"name/459\",[110,50.597]],[\"comment/459\",[]],[\"name/460\",[123,60.152]],[\"comment/460\",[]],[\"name/461\",[124,60.152]],[\"comment/461\",[]],[\"name/462\",[125,60.152]],[\"comment/462\",[]],[\"name/463\",[126,60.152]],[\"comment/463\",[]],[\"name/464\",[127,60.152]],[\"comment/464\",[]],[\"name/465\",[23,44.891]],[\"comment/465\",[]],[\"name/466\",[128,51.679]],[\"comment/466\",[]],[\"name/467\",[129,60.152]],[\"comment/467\",[]],[\"name/468\",[130,60.152]],[\"comment/468\",[]],[\"name/469\",[131,58.9]],[\"comment/469\",[]],[\"name/470\",[132,54.274]],[\"comment/470\",[]],[\"name/471\",[133,54.274]],[\"comment/471\",[]],[\"name/472\",[134,54.274]],[\"comment/472\",[]],[\"name/473\",[135,54.274]],[\"comment/473\",[]],[\"name/474\",[136,54.274]],[\"comment/474\",[]],[\"name/475\",[137,54.274]],[\"comment/475\",[]],[\"name/476\",[138,54.274]],[\"comment/476\",[]],[\"name/477\",[139,54.274]],[\"comment/477\",[]],[\"name/478\",[140,54.274]],[\"comment/478\",[]],[\"name/479\",[141,54.274]],[\"comment/479\",[]],[\"name/480\",[142,54.274]],[\"comment/480\",[]],[\"name/481\",[143,54.274]],[\"comment/481\",[]],[\"name/482\",[144,54.274]],[\"comment/482\",[]],[\"name/483\",[145,54.274]],[\"comment/483\",[]],[\"name/484\",[146,54.274]],[\"comment/484\",[]],[\"name/485\",[147,71.138]],[\"comment/485\",[]],[\"name/486\",[148,65.26]],[\"comment/486\",[]],[\"name/487\",[149,76.246]],[\"comment/487\",[]],[\"name/488\",[150,76.246]],[\"comment/488\",[]],[\"name/489\",[151,76.246]],[\"comment/489\",[]],[\"name/490\",[152,76.246]],[\"comment/490\",[]],[\"name/491\",[153,71.138]],[\"comment/491\",[]],[\"name/492\",[154,76.246]],[\"comment/492\",[]],[\"name/493\",[155,76.246]],[\"comment/493\",[]],[\"name/494\",[156,76.246]],[\"comment/494\",[]],[\"name/495\",[157,76.246]],[\"comment/495\",[]],[\"name/496\",[110,50.597]],[\"comment/496\",[]],[\"name/497\",[158,65.26]],[\"comment/497\",[]],[\"name/498\",[130,60.152]],[\"comment/498\",[]],[\"name/499\",[125,60.152]],[\"comment/499\",[]],[\"name/500\",[36,46.124]],[\"comment/500\",[]],[\"name/501\",[159,71.138]],[\"comment/501\",[]],[\"name/502\",[160,60.152]],[\"comment/502\",[]],[\"name/503\",[161,71.138]],[\"comment/503\",[]],[\"name/504\",[162,61.583]],[\"comment/504\",[]],[\"name/505\",[163,67.773]],[\"comment/505\",[]],[\"name/506\",[164,71.138]],[\"comment/506\",[]],[\"name/507\",[165,71.138]],[\"comment/507\",[]],[\"name/508\",[166,58.9]],[\"comment/508\",[]],[\"name/509\",[167,55.877]],[\"comment/509\",[]],[\"name/510\",[168,71.138]],[\"comment/510\",[]],[\"name/511\",[169,71.138]],[\"comment/511\",[]],[\"name/512\",[111,54.274]],[\"comment/512\",[]],[\"name/513\",[112,56.787]],[\"comment/513\",[]],[\"name/514\",[31,41.081]],[\"comment/514\",[]],[\"name/515\",[21,42.806]],[\"comment/515\",[]],[\"name/516\",[29,43.794]],[\"comment/516\",[]],[\"name/517\",[113,58.9]],[\"comment/517\",[]],[\"name/518\",[114,60.152]],[\"comment/518\",[]],[\"name/519\",[115,52.892]],[\"comment/519\",[]],[\"name/520\",[116,60.152]],[\"comment/520\",[]],[\"name/521\",[117,60.152]],[\"comment/521\",[]],[\"name/522\",[118,57.788]],[\"comment/522\",[]],[\"name/523\",[119,58.9]],[\"comment/523\",[]],[\"name/524\",[120,58.9]],[\"comment/524\",[]],[\"name/525\",[121,58.9]],[\"comment/525\",[]],[\"name/526\",[122,60.152]],[\"comment/526\",[]],[\"name/527\",[110,50.597]],[\"comment/527\",[]],[\"name/528\",[123,60.152]],[\"comment/528\",[]],[\"name/529\",[124,60.152]],[\"comment/529\",[]],[\"name/530\",[126,60.152]],[\"comment/530\",[]],[\"name/531\",[127,60.152]],[\"comment/531\",[]],[\"name/532\",[23,44.891]],[\"comment/532\",[]],[\"name/533\",[128,51.679]],[\"comment/533\",[]],[\"name/534\",[129,60.152]],[\"comment/534\",[]],[\"name/535\",[131,58.9]],[\"comment/535\",[]],[\"name/536\",[132,54.274]],[\"comment/536\",[]],[\"name/537\",[133,54.274]],[\"comment/537\",[]],[\"name/538\",[134,54.274]],[\"comment/538\",[]],[\"name/539\",[135,54.274]],[\"comment/539\",[]],[\"name/540\",[136,54.274]],[\"comment/540\",[]],[\"name/541\",[137,54.274]],[\"comment/541\",[]],[\"name/542\",[138,54.274]],[\"comment/542\",[]],[\"name/543\",[139,54.274]],[\"comment/543\",[]],[\"name/544\",[140,54.274]],[\"comment/544\",[]],[\"name/545\",[141,54.274]],[\"comment/545\",[]],[\"name/546\",[142,54.274]],[\"comment/546\",[]],[\"name/547\",[143,54.274]],[\"comment/547\",[]],[\"name/548\",[144,54.274]],[\"comment/548\",[]],[\"name/549\",[145,54.274]],[\"comment/549\",[]],[\"name/550\",[146,54.274]],[\"comment/550\",[]],[\"name/551\",[170,65.26]],[\"comment/551\",[]],[\"name/552\",[132,54.274]],[\"comment/552\",[]],[\"name/553\",[133,54.274]],[\"comment/553\",[]],[\"name/554\",[134,54.274]],[\"comment/554\",[]],[\"name/555\",[135,54.274]],[\"comment/555\",[]],[\"name/556\",[136,54.274]],[\"comment/556\",[]],[\"name/557\",[137,54.274]],[\"comment/557\",[]],[\"name/558\",[138,54.274]],[\"comment/558\",[]],[\"name/559\",[139,54.274]],[\"comment/559\",[]],[\"name/560\",[140,54.274]],[\"comment/560\",[]],[\"name/561\",[141,54.274]],[\"comment/561\",[]],[\"name/562\",[142,54.274]],[\"comment/562\",[]],[\"name/563\",[143,54.274]],[\"comment/563\",[]],[\"name/564\",[144,54.274]],[\"comment/564\",[]],[\"name/565\",[145,54.274]],[\"comment/565\",[]],[\"name/566\",[146,54.274]],[\"comment/566\",[]],[\"name/567\",[171,76.246]],[\"comment/567\",[]],[\"name/568\",[172,76.246]],[\"comment/568\",[]],[\"name/569\",[173,76.246]],[\"comment/569\",[]],[\"name/570\",[174,76.246]],[\"comment/570\",[]],[\"name/571\",[110,50.597]],[\"comment/571\",[]],[\"name/572\",[175,76.246]],[\"comment/572\",[]],[\"name/573\",[176,65.26]],[\"comment/573\",[]],[\"name/574\",[177,67.773]],[\"comment/574\",[]],[\"name/575\",[178,76.246]],[\"comment/575\",[]],[\"name/576\",[158,65.26]],[\"comment/576\",[]],[\"name/577\",[179,55.044]],[\"comment/577\",[]],[\"name/578\",[180,67.773]],[\"comment/578\",[]],[\"name/579\",[112,56.787]],[\"comment/579\",[]],[\"name/580\",[181,60.152]],[\"comment/580\",[]],[\"name/581\",[182,76.246]],[\"comment/581\",[]],[\"name/582\",[183,71.138]],[\"comment/582\",[]],[\"name/583\",[119,58.9]],[\"comment/583\",[]],[\"name/584\",[120,58.9]],[\"comment/584\",[]],[\"name/585\",[121,58.9]],[\"comment/585\",[]],[\"name/586\",[113,58.9]],[\"comment/586\",[]],[\"name/587\",[110,50.597]],[\"comment/587\",[]],[\"name/588\",[118,57.788]],[\"comment/588\",[]],[\"name/589\",[131,58.9]],[\"comment/589\",[]],[\"name/590\",[132,54.274]],[\"comment/590\",[]],[\"name/591\",[133,54.274]],[\"comment/591\",[]],[\"name/592\",[134,54.274]],[\"comment/592\",[]],[\"name/593\",[135,54.274]],[\"comment/593\",[]],[\"name/594\",[136,54.274]],[\"comment/594\",[]],[\"name/595\",[137,54.274]],[\"comment/595\",[]],[\"name/596\",[138,54.274]],[\"comment/596\",[]],[\"name/597\",[139,54.274]],[\"comment/597\",[]],[\"name/598\",[140,54.274]],[\"comment/598\",[]],[\"name/599\",[141,54.274]],[\"comment/599\",[]],[\"name/600\",[142,54.274]],[\"comment/600\",[]],[\"name/601\",[143,54.274]],[\"comment/601\",[]],[\"name/602\",[144,54.274]],[\"comment/602\",[]],[\"name/603\",[145,54.274]],[\"comment/603\",[]],[\"name/604\",[146,54.274]],[\"comment/604\",[]],[\"name/605\",[184,76.246]],[\"comment/605\",[]],[\"name/606\",[185,76.246]],[\"comment/606\",[]],[\"name/607\",[186,76.246]],[\"comment/607\",[]],[\"name/608\",[187,76.246]],[\"comment/608\",[]],[\"name/609\",[49,40.693]],[\"comment/609\",[]],[\"name/610\",[188,71.138]],[\"comment/610\",[]],[\"name/611\",[189,50.097]],[\"comment/611\",[]],[\"name/612\",[190,71.138]],[\"comment/612\",[]],[\"name/613\",[191,76.246]],[\"comment/613\",[]],[\"name/614\",[192,71.138]],[\"comment/614\",[]],[\"name/615\",[193,71.138]],[\"comment/615\",[]],[\"name/616\",[111,54.274]],[\"comment/616\",[]],[\"name/617\",[194,71.138]],[\"comment/617\",[]],[\"name/618\",[195,76.246]],[\"comment/618\",[]],[\"name/619\",[115,52.892]],[\"comment/619\",[]],[\"name/620\",[196,71.138]],[\"comment/620\",[]],[\"name/621\",[197,76.246]],[\"comment/621\",[]],[\"name/622\",[198,76.246]],[\"comment/622\",[]],[\"name/623\",[199,76.246]],[\"comment/623\",[]],[\"name/624\",[200,65.26]],[\"comment/624\",[]],[\"name/625\",[201,76.246]],[\"comment/625\",[]],[\"name/626\",[202,76.246]],[\"comment/626\",[]],[\"name/627\",[203,76.246]],[\"comment/627\",[]],[\"name/628\",[204,76.246]],[\"comment/628\",[]],[\"name/629\",[205,76.246]],[\"comment/629\",[]],[\"name/630\",[206,76.246]],[\"comment/630\",[]],[\"name/631\",[207,76.246]],[\"comment/631\",[]],[\"name/632\",[132,54.274]],[\"comment/632\",[]],[\"name/633\",[133,54.274]],[\"comment/633\",[]],[\"name/634\",[134,54.274]],[\"comment/634\",[]],[\"name/635\",[135,54.274]],[\"comment/635\",[]],[\"name/636\",[136,54.274]],[\"comment/636\",[]],[\"name/637\",[137,54.274]],[\"comment/637\",[]],[\"name/638\",[138,54.274]],[\"comment/638\",[]],[\"name/639\",[139,54.274]],[\"comment/639\",[]],[\"name/640\",[140,54.274]],[\"comment/640\",[]],[\"name/641\",[141,54.274]],[\"comment/641\",[]],[\"name/642\",[142,54.274]],[\"comment/642\",[]],[\"name/643\",[143,54.274]],[\"comment/643\",[]],[\"name/644\",[144,54.274]],[\"comment/644\",[]],[\"name/645\",[145,54.274]],[\"comment/645\",[]],[\"name/646\",[146,54.274]],[\"comment/646\",[]],[\"name/647\",[208,65.26]],[\"comment/647\",[]],[\"name/648\",[26,46.802]],[\"comment/648\",[]],[\"name/649\",[209,76.246]],[\"comment/649\",[]],[\"name/650\",[112,56.787]],[\"comment/650\",[]],[\"name/651\",[21,42.806]],[\"comment/651\",[]],[\"name/652\",[31,41.081]],[\"comment/652\",[]],[\"name/653\",[210,61.583]],[\"comment/653\",[]],[\"name/654\",[35,44.328]],[\"comment/654\",[]],[\"name/655\",[211,48.731]],[\"comment/655\",[]],[\"name/656\",[212,76.246]],[\"comment/656\",[]],[\"name/657\",[213,76.246]],[\"comment/657\",[]],[\"name/658\",[214,76.246]],[\"comment/658\",[]],[\"name/659\",[215,71.138]],[\"comment/659\",[]],[\"name/660\",[216,71.138]],[\"comment/660\",[]],[\"name/661\",[217,76.246]],[\"comment/661\",[]],[\"name/662\",[218,71.138]],[\"comment/662\",[]],[\"name/663\",[219,76.246]],[\"comment/663\",[]],[\"name/664\",[220,71.138]],[\"comment/664\",[]],[\"name/665\",[221,71.138]],[\"comment/665\",[]],[\"name/666\",[222,76.246]],[\"comment/666\",[]],[\"name/667\",[223,63.253]],[\"comment/667\",[]],[\"name/668\",[179,55.044]],[\"comment/668\",[]],[\"name/669\",[224,76.246]],[\"comment/669\",[]],[\"name/670\",[225,71.138]],[\"comment/670\",[]],[\"name/671\",[226,76.246]],[\"comment/671\",[]],[\"name/672\",[227,76.246]],[\"comment/672\",[]],[\"name/673\",[228,76.246]],[\"comment/673\",[]],[\"name/674\",[229,76.246]],[\"comment/674\",[]],[\"name/675\",[230,76.246]],[\"comment/675\",[]],[\"name/676\",[231,71.138]],[\"comment/676\",[]],[\"name/677\",[232,76.246]],[\"comment/677\",[]],[\"name/678\",[233,76.246]],[\"comment/678\",[]],[\"name/679\",[234,76.246]],[\"comment/679\",[]],[\"name/680\",[235,76.246]],[\"comment/680\",[]],[\"name/681\",[236,76.246]],[\"comment/681\",[]],[\"name/682\",[237,76.246]],[\"comment/682\",[]],[\"name/683\",[238,76.246]],[\"comment/683\",[]],[\"name/684\",[239,71.138]],[\"comment/684\",[]],[\"name/685\",[240,67.773]],[\"comment/685\",[]],[\"name/686\",[241,76.246]],[\"comment/686\",[]],[\"name/687\",[242,76.246]],[\"comment/687\",[]],[\"name/688\",[243,71.138]],[\"comment/688\",[]],[\"name/689\",[244,76.246]],[\"comment/689\",[]],[\"name/690\",[245,76.246]],[\"comment/690\",[]],[\"name/691\",[246,76.246]],[\"comment/691\",[]],[\"name/692\",[247,76.246]],[\"comment/692\",[]],[\"name/693\",[248,76.246]],[\"comment/693\",[]],[\"name/694\",[249,58.9]],[\"comment/694\",[]],[\"name/695\",[250,76.246]],[\"comment/695\",[]],[\"name/696\",[251,76.246]],[\"comment/696\",[]],[\"name/697\",[252,76.246]],[\"comment/697\",[]],[\"name/698\",[253,76.246]],[\"comment/698\",[]],[\"name/699\",[254,76.246]],[\"comment/699\",[]],[\"name/700\",[255,76.246]],[\"comment/700\",[]],[\"name/701\",[38,40.693]],[\"comment/701\",[]],[\"name/702\",[256,71.138]],[\"comment/702\",[]],[\"name/703\",[179,55.044]],[\"comment/703\",[]],[\"name/704\",[257,71.138]],[\"comment/704\",[]],[\"name/705\",[21,42.806]],[\"comment/705\",[]],[\"name/706\",[31,41.081]],[\"comment/706\",[]],[\"name/707\",[210,61.583]],[\"comment/707\",[]],[\"name/708\",[35,44.328]],[\"comment/708\",[]],[\"name/709\",[112,56.787]],[\"comment/709\",[]],[\"name/710\",[258,76.246]],[\"comment/710\",[]],[\"name/711\",[148,65.26]],[\"comment/711\",[]],[\"name/712\",[239,71.138]],[\"comment/712\",[]],[\"name/713\",[147,71.138]],[\"comment/713\",[]],[\"name/714\",[208,65.26]],[\"comment/714\",[]],[\"name/715\",[259,76.246]],[\"comment/715\",[]],[\"name/716\",[260,76.246]],[\"comment/716\",[]],[\"name/717\",[261,76.246]],[\"comment/717\",[]],[\"name/718\",[262,76.246]],[\"comment/718\",[]],[\"name/719\",[263,76.246]],[\"comment/719\",[]],[\"name/720\",[264,76.246]],[\"comment/720\",[]],[\"name/721\",[225,71.138]],[\"comment/721\",[]],[\"name/722\",[153,71.138]],[\"comment/722\",[]],[\"name/723\",[265,76.246]],[\"comment/723\",[]],[\"name/724\",[266,67.773]],[\"comment/724\",[]],[\"name/725\",[231,71.138]],[\"comment/725\",[]],[\"name/726\",[240,67.773]],[\"comment/726\",[]],[\"name/727\",[267,76.246]],[\"comment/727\",[]],[\"name/728\",[268,76.246]],[\"comment/728\",[]],[\"name/729\",[110,50.597]],[\"comment/729\",[]],[\"name/730\",[130,60.152]],[\"comment/730\",[]],[\"name/731\",[125,60.152]],[\"comment/731\",[]],[\"name/732\",[243,71.138]],[\"comment/732\",[]],[\"name/733\",[36,46.124]],[\"comment/733\",[]],[\"name/734\",[269,57.788]],[\"comment/734\",[]],[\"name/735\",[211,48.731]],[\"comment/735\",[]],[\"name/736\",[270,63.253]],[\"comment/736\",[]],[\"name/737\",[271,61.583]],[\"comment/737\",[]],[\"name/738\",[272,71.138]],[\"comment/738\",[]],[\"name/739\",[273,71.138]],[\"comment/739\",[]],[\"name/740\",[274,76.246]],[\"comment/740\",[]],[\"name/741\",[24,46.124]],[\"comment/741\",[]],[\"name/742\",[275,57.788]],[\"comment/742\",[]],[\"name/743\",[23,44.891]],[\"comment/743\",[]],[\"name/744\",[163,67.773]],[\"comment/744\",[]],[\"name/745\",[167,55.877]],[\"comment/745\",[]],[\"name/746\",[276,61.583]],[\"comment/746\",[]],[\"name/747\",[22,44.057]],[\"comment/747\",[]],[\"name/748\",[160,60.152]],[\"comment/748\",[]],[\"name/749\",[166,58.9]],[\"comment/749\",[]],[\"name/750\",[111,54.274]],[\"comment/750\",[]],[\"name/751\",[112,56.787]],[\"comment/751\",[]],[\"name/752\",[31,41.081]],[\"comment/752\",[]],[\"name/753\",[21,42.806]],[\"comment/753\",[]],[\"name/754\",[29,43.794]],[\"comment/754\",[]],[\"name/755\",[113,58.9]],[\"comment/755\",[]],[\"name/756\",[114,60.152]],[\"comment/756\",[]],[\"name/757\",[115,52.892]],[\"comment/757\",[]],[\"name/758\",[116,60.152]],[\"comment/758\",[]],[\"name/759\",[117,60.152]],[\"comment/759\",[]],[\"name/760\",[118,57.788]],[\"comment/760\",[]],[\"name/761\",[119,58.9]],[\"comment/761\",[]],[\"name/762\",[120,58.9]],[\"comment/762\",[]],[\"name/763\",[121,58.9]],[\"comment/763\",[]],[\"name/764\",[122,60.152]],[\"comment/764\",[]],[\"name/765\",[110,50.597]],[\"comment/765\",[]],[\"name/766\",[123,60.152]],[\"comment/766\",[]],[\"name/767\",[124,60.152]],[\"comment/767\",[]],[\"name/768\",[126,60.152]],[\"comment/768\",[]],[\"name/769\",[127,60.152]],[\"comment/769\",[]],[\"name/770\",[128,51.679]],[\"comment/770\",[]],[\"name/771\",[129,60.152]],[\"comment/771\",[]],[\"name/772\",[131,58.9]],[\"comment/772\",[]],[\"name/773\",[132,54.274]],[\"comment/773\",[]],[\"name/774\",[133,54.274]],[\"comment/774\",[]],[\"name/775\",[134,54.274]],[\"comment/775\",[]],[\"name/776\",[135,54.274]],[\"comment/776\",[]],[\"name/777\",[136,54.274]],[\"comment/777\",[]],[\"name/778\",[137,54.274]],[\"comment/778\",[]],[\"name/779\",[138,54.274]],[\"comment/779\",[]],[\"name/780\",[139,54.274]],[\"comment/780\",[]],[\"name/781\",[140,54.274]],[\"comment/781\",[]],[\"name/782\",[141,54.274]],[\"comment/782\",[]],[\"name/783\",[142,54.274]],[\"comment/783\",[]],[\"name/784\",[143,54.274]],[\"comment/784\",[]],[\"name/785\",[144,54.274]],[\"comment/785\",[]],[\"name/786\",[145,54.274]],[\"comment/786\",[]],[\"name/787\",[146,54.274]],[\"comment/787\",[]],[\"name/788\",[277,76.246]],[\"comment/788\",[]],[\"name/789\",[278,63.253]],[\"comment/789\",[]],[\"name/790\",[38,40.693]],[\"comment/790\",[]],[\"name/791\",[279,76.246]],[\"comment/791\",[]],[\"name/792\",[280,76.246]],[\"comment/792\",[]],[\"name/793\",[281,76.246]],[\"comment/793\",[]],[\"name/794\",[282,71.138]],[\"comment/794\",[]],[\"name/795\",[223,63.253]],[\"comment/795\",[]],[\"name/796\",[283,76.246]],[\"comment/796\",[]],[\"name/797\",[220,71.138]],[\"comment/797\",[]],[\"name/798\",[221,71.138]],[\"comment/798\",[]],[\"name/799\",[132,54.274]],[\"comment/799\",[]],[\"name/800\",[133,54.274]],[\"comment/800\",[]],[\"name/801\",[134,54.274]],[\"comment/801\",[]],[\"name/802\",[135,54.274]],[\"comment/802\",[]],[\"name/803\",[136,54.274]],[\"comment/803\",[]],[\"name/804\",[137,54.274]],[\"comment/804\",[]],[\"name/805\",[138,54.274]],[\"comment/805\",[]],[\"name/806\",[139,54.274]],[\"comment/806\",[]],[\"name/807\",[140,54.274]],[\"comment/807\",[]],[\"name/808\",[141,54.274]],[\"comment/808\",[]],[\"name/809\",[142,54.274]],[\"comment/809\",[]],[\"name/810\",[143,54.274]],[\"comment/810\",[]],[\"name/811\",[144,54.274]],[\"comment/811\",[]],[\"name/812\",[145,54.274]],[\"comment/812\",[]],[\"name/813\",[146,54.274]],[\"comment/813\",[]],[\"name/814\",[284,76.246]],[\"comment/814\",[]],[\"name/815\",[285,76.246]],[\"comment/815\",[]],[\"name/816\",[286,67.773]],[\"comment/816\",[]],[\"name/817\",[176,65.26]],[\"comment/817\",[]],[\"name/818\",[287,71.138]],[\"comment/818\",[]],[\"name/819\",[288,76.246]],[\"comment/819\",[]],[\"name/820\",[289,76.246]],[\"comment/820\",[]],[\"name/821\",[290,76.246]],[\"comment/821\",[]],[\"name/822\",[291,76.246]],[\"comment/822\",[]],[\"name/823\",[292,71.138]],[\"comment/823\",[]],[\"name/824\",[179,55.044]],[\"comment/824\",[]],[\"name/825\",[293,76.246]],[\"comment/825\",[]],[\"name/826\",[111,54.274]],[\"comment/826\",[]],[\"name/827\",[294,67.773]],[\"comment/827\",[]],[\"name/828\",[295,76.246]],[\"comment/828\",[]],[\"name/829\",[296,71.138]],[\"comment/829\",[]],[\"name/830\",[297,71.138]],[\"comment/830\",[]],[\"name/831\",[298,76.246]],[\"comment/831\",[]],[\"name/832\",[299,76.246]],[\"comment/832\",[]],[\"name/833\",[49,40.693]],[\"comment/833\",[]],[\"name/834\",[300,76.246]],[\"comment/834\",[]],[\"name/835\",[301,76.246]],[\"comment/835\",[]],[\"name/836\",[302,76.246]],[\"comment/836\",[]],[\"name/837\",[303,76.246]],[\"comment/837\",[]],[\"name/838\",[35,44.328]],[\"comment/838\",[]],[\"name/839\",[304,71.138]],[\"comment/839\",[]],[\"name/840\",[287,71.138]],[\"comment/840\",[]],[\"name/841\",[305,76.246]],[\"comment/841\",[]],[\"name/842\",[110,50.597]],[\"comment/842\",[]],[\"name/843\",[38,40.693]],[\"comment/843\",[]],[\"name/844\",[180,67.773]],[\"comment/844\",[]],[\"name/845\",[269,57.788]],[\"comment/845\",[]],[\"name/846\",[179,55.044]],[\"comment/846\",[]],[\"name/847\",[130,60.152]],[\"comment/847\",[]],[\"name/848\",[111,54.274]],[\"comment/848\",[]],[\"name/849\",[112,56.787]],[\"comment/849\",[]],[\"name/850\",[31,41.081]],[\"comment/850\",[]],[\"name/851\",[21,42.806]],[\"comment/851\",[]],[\"name/852\",[29,43.794]],[\"comment/852\",[]],[\"name/853\",[113,58.9]],[\"comment/853\",[]],[\"name/854\",[114,60.152]],[\"comment/854\",[]],[\"name/855\",[115,52.892]],[\"comment/855\",[]],[\"name/856\",[116,60.152]],[\"comment/856\",[]],[\"name/857\",[117,60.152]],[\"comment/857\",[]],[\"name/858\",[118,57.788]],[\"comment/858\",[]],[\"name/859\",[119,58.9]],[\"comment/859\",[]],[\"name/860\",[120,58.9]],[\"comment/860\",[]],[\"name/861\",[121,58.9]],[\"comment/861\",[]],[\"name/862\",[122,60.152]],[\"comment/862\",[]],[\"name/863\",[110,50.597]],[\"comment/863\",[]],[\"name/864\",[123,60.152]],[\"comment/864\",[]],[\"name/865\",[124,60.152]],[\"comment/865\",[]],[\"name/866\",[125,60.152]],[\"comment/866\",[]],[\"name/867\",[126,60.152]],[\"comment/867\",[]],[\"name/868\",[127,60.152]],[\"comment/868\",[]],[\"name/869\",[23,44.891]],[\"comment/869\",[]],[\"name/870\",[128,51.679]],[\"comment/870\",[]],[\"name/871\",[129,60.152]],[\"comment/871\",[]],[\"name/872\",[131,58.9]],[\"comment/872\",[]],[\"name/873\",[132,54.274]],[\"comment/873\",[]],[\"name/874\",[133,54.274]],[\"comment/874\",[]],[\"name/875\",[134,54.274]],[\"comment/875\",[]],[\"name/876\",[135,54.274]],[\"comment/876\",[]],[\"name/877\",[136,54.274]],[\"comment/877\",[]],[\"name/878\",[137,54.274]],[\"comment/878\",[]],[\"name/879\",[138,54.274]],[\"comment/879\",[]],[\"name/880\",[139,54.274]],[\"comment/880\",[]],[\"name/881\",[140,54.274]],[\"comment/881\",[]],[\"name/882\",[141,54.274]],[\"comment/882\",[]],[\"name/883\",[142,54.274]],[\"comment/883\",[]],[\"name/884\",[143,54.274]],[\"comment/884\",[]],[\"name/885\",[144,54.274]],[\"comment/885\",[]],[\"name/886\",[145,54.274]],[\"comment/886\",[]],[\"name/887\",[146,54.274]],[\"comment/887\",[]],[\"name/888\",[306,76.246]],[\"comment/888\",[]],[\"name/889\",[110,50.597]],[\"comment/889\",[]],[\"name/890\",[38,40.693]],[\"comment/890\",[]],[\"name/891\",[180,67.773]],[\"comment/891\",[]],[\"name/892\",[179,55.044]],[\"comment/892\",[]],[\"name/893\",[130,60.152]],[\"comment/893\",[]],[\"name/894\",[111,54.274]],[\"comment/894\",[]],[\"name/895\",[112,56.787]],[\"comment/895\",[]],[\"name/896\",[31,41.081]],[\"comment/896\",[]],[\"name/897\",[21,42.806]],[\"comment/897\",[]],[\"name/898\",[29,43.794]],[\"comment/898\",[]],[\"name/899\",[113,58.9]],[\"comment/899\",[]],[\"name/900\",[114,60.152]],[\"comment/900\",[]],[\"name/901\",[115,52.892]],[\"comment/901\",[]],[\"name/902\",[116,60.152]],[\"comment/902\",[]],[\"name/903\",[117,60.152]],[\"comment/903\",[]],[\"name/904\",[118,57.788]],[\"comment/904\",[]],[\"name/905\",[119,58.9]],[\"comment/905\",[]],[\"name/906\",[120,58.9]],[\"comment/906\",[]],[\"name/907\",[121,58.9]],[\"comment/907\",[]],[\"name/908\",[122,60.152]],[\"comment/908\",[]],[\"name/909\",[110,50.597]],[\"comment/909\",[]],[\"name/910\",[123,60.152]],[\"comment/910\",[]],[\"name/911\",[124,60.152]],[\"comment/911\",[]],[\"name/912\",[125,60.152]],[\"comment/912\",[]],[\"name/913\",[126,60.152]],[\"comment/913\",[]],[\"name/914\",[127,60.152]],[\"comment/914\",[]],[\"name/915\",[23,44.891]],[\"comment/915\",[]],[\"name/916\",[128,51.679]],[\"comment/916\",[]],[\"name/917\",[129,60.152]],[\"comment/917\",[]],[\"name/918\",[131,58.9]],[\"comment/918\",[]],[\"name/919\",[132,54.274]],[\"comment/919\",[]],[\"name/920\",[133,54.274]],[\"comment/920\",[]],[\"name/921\",[134,54.274]],[\"comment/921\",[]],[\"name/922\",[135,54.274]],[\"comment/922\",[]],[\"name/923\",[136,54.274]],[\"comment/923\",[]],[\"name/924\",[137,54.274]],[\"comment/924\",[]],[\"name/925\",[138,54.274]],[\"comment/925\",[]],[\"name/926\",[139,54.274]],[\"comment/926\",[]],[\"name/927\",[140,54.274]],[\"comment/927\",[]],[\"name/928\",[141,54.274]],[\"comment/928\",[]],[\"name/929\",[142,54.274]],[\"comment/929\",[]],[\"name/930\",[143,54.274]],[\"comment/930\",[]],[\"name/931\",[144,54.274]],[\"comment/931\",[]],[\"name/932\",[145,54.274]],[\"comment/932\",[]],[\"name/933\",[146,54.274]],[\"comment/933\",[]],[\"name/934\",[307,76.246]],[\"comment/934\",[]],[\"name/935\",[308,71.138]],[\"comment/935\",[]],[\"name/936\",[38,40.693]],[\"comment/936\",[]],[\"name/937\",[179,55.044]],[\"comment/937\",[]],[\"name/938\",[309,60.152]],[\"comment/938\",[]],[\"name/939\",[310,61.583]],[\"comment/939\",[]],[\"name/940\",[21,42.806]],[\"comment/940\",[]],[\"name/941\",[35,44.328]],[\"comment/941\",[]],[\"name/942\",[31,41.081]],[\"comment/942\",[]],[\"name/943\",[210,61.583]],[\"comment/943\",[]],[\"name/944\",[308,71.138]],[\"comment/944\",[]],[\"name/945\",[110,50.597]],[\"comment/945\",[]],[\"name/946\",[249,58.9]],[\"comment/946\",[]],[\"name/947\",[311,76.246]],[\"comment/947\",[]],[\"name/948\",[312,76.246]],[\"comment/948\",[]],[\"name/949\",[240,67.773]],[\"comment/949\",[]],[\"name/950\",[132,54.274]],[\"comment/950\",[]],[\"name/951\",[133,54.274]],[\"comment/951\",[]],[\"name/952\",[134,54.274]],[\"comment/952\",[]],[\"name/953\",[135,54.274]],[\"comment/953\",[]],[\"name/954\",[136,54.274]],[\"comment/954\",[]],[\"name/955\",[137,54.274]],[\"comment/955\",[]],[\"name/956\",[138,54.274]],[\"comment/956\",[]],[\"name/957\",[139,54.274]],[\"comment/957\",[]],[\"name/958\",[140,54.274]],[\"comment/958\",[]],[\"name/959\",[141,54.274]],[\"comment/959\",[]],[\"name/960\",[142,54.274]],[\"comment/960\",[]],[\"name/961\",[143,54.274]],[\"comment/961\",[]],[\"name/962\",[144,54.274]],[\"comment/962\",[]],[\"name/963\",[145,54.274]],[\"comment/963\",[]],[\"name/964\",[146,54.274]],[\"comment/964\",[]],[\"name/965\",[313,76.246]],[\"comment/965\",[]],[\"name/966\",[314,67.773]],[\"comment/966\",[]],[\"name/967\",[315,67.773]],[\"comment/967\",[]],[\"name/968\",[316,67.773]],[\"comment/968\",[]],[\"name/969\",[317,67.773]],[\"comment/969\",[]],[\"name/970\",[223,63.253]],[\"comment/970\",[]],[\"name/971\",[33,44.328]],[\"comment/971\",[]],[\"name/972\",[210,61.583]],[\"comment/972\",[]],[\"name/973\",[35,44.328]],[\"comment/973\",[]],[\"name/974\",[318,67.773]],[\"comment/974\",[]],[\"name/975\",[319,67.773]],[\"comment/975\",[]],[\"name/976\",[320,76.246]],[\"comment/976\",[]],[\"name/977\",[110,50.597]],[\"comment/977\",[]],[\"name/978\",[148,65.26]],[\"comment/978\",[]],[\"name/979\",[321,76.246]],[\"comment/979\",[]],[\"name/980\",[49,40.693]],[\"comment/980\",[]],[\"name/981\",[24,46.124]],[\"comment/981\",[]],[\"name/982\",[275,57.788]],[\"comment/982\",[]],[\"name/983\",[128,51.679]],[\"comment/983\",[]],[\"name/984\",[322,76.246]],[\"comment/984\",[]],[\"name/985\",[323,76.246]],[\"comment/985\",[]],[\"name/986\",[324,76.246]],[\"comment/986\",[]],[\"name/987\",[130,60.152]],[\"comment/987\",[]],[\"name/988\",[127,60.152]],[\"comment/988\",[]],[\"name/989\",[124,60.152]],[\"comment/989\",[]],[\"name/990\",[23,44.891]],[\"comment/990\",[]],[\"name/991\",[128,51.679]],[\"comment/991\",[]],[\"name/992\",[111,54.274]],[\"comment/992\",[]],[\"name/993\",[112,56.787]],[\"comment/993\",[]],[\"name/994\",[31,41.081]],[\"comment/994\",[]],[\"name/995\",[21,42.806]],[\"comment/995\",[]],[\"name/996\",[29,43.794]],[\"comment/996\",[]],[\"name/997\",[113,58.9]],[\"comment/997\",[]],[\"name/998\",[114,60.152]],[\"comment/998\",[]],[\"name/999\",[115,52.892]],[\"comment/999\",[]],[\"name/1000\",[116,60.152]],[\"comment/1000\",[]],[\"name/1001\",[117,60.152]],[\"comment/1001\",[]],[\"name/1002\",[118,57.788]],[\"comment/1002\",[]],[\"name/1003\",[119,58.9]],[\"comment/1003\",[]],[\"name/1004\",[120,58.9]],[\"comment/1004\",[]],[\"name/1005\",[121,58.9]],[\"comment/1005\",[]],[\"name/1006\",[122,60.152]],[\"comment/1006\",[]],[\"name/1007\",[110,50.597]],[\"comment/1007\",[]],[\"name/1008\",[123,60.152]],[\"comment/1008\",[]],[\"name/1009\",[125,60.152]],[\"comment/1009\",[]],[\"name/1010\",[126,60.152]],[\"comment/1010\",[]],[\"name/1011\",[129,60.152]],[\"comment/1011\",[]],[\"name/1012\",[131,58.9]],[\"comment/1012\",[]],[\"name/1013\",[132,54.274]],[\"comment/1013\",[]],[\"name/1014\",[133,54.274]],[\"comment/1014\",[]],[\"name/1015\",[134,54.274]],[\"comment/1015\",[]],[\"name/1016\",[135,54.274]],[\"comment/1016\",[]],[\"name/1017\",[136,54.274]],[\"comment/1017\",[]],[\"name/1018\",[137,54.274]],[\"comment/1018\",[]],[\"name/1019\",[138,54.274]],[\"comment/1019\",[]],[\"name/1020\",[139,54.274]],[\"comment/1020\",[]],[\"name/1021\",[140,54.274]],[\"comment/1021\",[]],[\"name/1022\",[141,54.274]],[\"comment/1022\",[]],[\"name/1023\",[142,54.274]],[\"comment/1023\",[]],[\"name/1024\",[143,54.274]],[\"comment/1024\",[]],[\"name/1025\",[144,54.274]],[\"comment/1025\",[]],[\"name/1026\",[145,54.274]],[\"comment/1026\",[]],[\"name/1027\",[146,54.274]],[\"comment/1027\",[]],[\"name/1028\",[325,76.246]],[\"comment/1028\",[]],[\"name/1029\",[326,76.246]],[\"comment/1029\",[]],[\"name/1030\",[314,67.773]],[\"comment/1030\",[]],[\"name/1031\",[315,67.773]],[\"comment/1031\",[]],[\"name/1032\",[316,67.773]],[\"comment/1032\",[]],[\"name/1033\",[317,67.773]],[\"comment/1033\",[]],[\"name/1034\",[223,63.253]],[\"comment/1034\",[]],[\"name/1035\",[33,44.328]],[\"comment/1035\",[]],[\"name/1036\",[210,61.583]],[\"comment/1036\",[]],[\"name/1037\",[35,44.328]],[\"comment/1037\",[]],[\"name/1038\",[318,67.773]],[\"comment/1038\",[]],[\"name/1039\",[319,67.773]],[\"comment/1039\",[]],[\"name/1040\",[327,67.773]],[\"comment/1040\",[]],[\"name/1041\",[327,67.773]],[\"comment/1041\",[]],[\"name/1042\",[328,71.138]],[\"comment/1042\",[]],[\"name/1043\",[328,71.138]],[\"comment/1043\",[]],[\"name/1044\",[329,71.138]],[\"comment/1044\",[]],[\"name/1045\",[329,71.138]],[\"comment/1045\",[]],[\"name/1046\",[330,67.773]],[\"comment/1046\",[]],[\"name/1047\",[330,67.773]],[\"comment/1047\",[]],[\"name/1048\",[331,67.773]],[\"comment/1048\",[]],[\"name/1049\",[331,67.773]],[\"comment/1049\",[]],[\"name/1050\",[332,76.246]],[\"comment/1050\",[]],[\"name/1051\",[333,71.138]],[\"comment/1051\",[]],[\"name/1052\",[333,71.138]],[\"comment/1052\",[]],[\"name/1053\",[334,71.138]],[\"comment/1053\",[]],[\"name/1054\",[334,71.138]],[\"comment/1054\",[]],[\"name/1055\",[335,71.138]],[\"comment/1055\",[]],[\"name/1056\",[335,71.138]],[\"comment/1056\",[]],[\"name/1057\",[336,65.26]],[\"comment/1057\",[]],[\"name/1058\",[336,65.26]],[\"comment/1058\",[]],[\"name/1059\",[266,67.773]],[\"comment/1059\",[]],[\"name/1060\",[266,67.773]],[\"comment/1060\",[]],[\"name/1061\",[337,67.773]],[\"comment/1061\",[]],[\"name/1062\",[337,67.773]],[\"comment/1062\",[]],[\"name/1063\",[338,71.138]],[\"comment/1063\",[]],[\"name/1064\",[338,71.138]],[\"comment/1064\",[]],[\"name/1065\",[339,71.138]],[\"comment/1065\",[]],[\"name/1066\",[339,71.138]],[\"comment/1066\",[]],[\"name/1067\",[340,71.138]],[\"comment/1067\",[]],[\"name/1068\",[340,71.138]],[\"comment/1068\",[]],[\"name/1069\",[21,42.806]],[\"comment/1069\",[]],[\"name/1070\",[341,67.773]],[\"comment/1070\",[]],[\"name/1071\",[342,76.246]],[\"comment/1071\",[]],[\"name/1072\",[343,76.246]],[\"comment/1072\",[]],[\"name/1073\",[344,76.246]],[\"comment/1073\",[]],[\"name/1074\",[345,71.138]],[\"comment/1074\",[]],[\"name/1075\",[38,40.693]],[\"comment/1075\",[]],[\"name/1076\",[346,76.246]],[\"comment/1076\",[]],[\"name/1077\",[347,65.26]],[\"comment/1077\",[]],[\"name/1078\",[31,41.081]],[\"comment/1078\",[]],[\"name/1079\",[348,67.773]],[\"comment/1079\",[]],[\"name/1080\",[349,76.246]],[\"comment/1080\",[]],[\"name/1081\",[350,71.138]],[\"comment/1081\",[]],[\"name/1082\",[351,76.246]],[\"comment/1082\",[]],[\"name/1083\",[352,71.138]],[\"comment/1083\",[]],[\"name/1084\",[348,67.773]],[\"comment/1084\",[]],[\"name/1085\",[353,76.246]],[\"comment/1085\",[]],[\"name/1086\",[350,71.138]],[\"comment/1086\",[]],[\"name/1087\",[354,76.246]],[\"comment/1087\",[]],[\"name/1088\",[352,71.138]],[\"comment/1088\",[]],[\"name/1089\",[355,65.26]],[\"comment/1089\",[]],[\"name/1090\",[341,67.773]],[\"comment/1090\",[]],[\"name/1091\",[356,76.246]],[\"comment/1091\",[]],[\"name/1092\",[357,71.138]],[\"comment/1092\",[]],[\"name/1093\",[38,40.693]],[\"comment/1093\",[]],[\"name/1094\",[358,76.246]],[\"comment/1094\",[]],[\"name/1095\",[359,71.138]],[\"comment/1095\",[]],[\"name/1096\",[360,65.26]],[\"comment/1096\",[]],[\"name/1097\",[361,63.253]],[\"comment/1097\",[]],[\"name/1098\",[362,65.26]],[\"comment/1098\",[]],[\"name/1099\",[363,76.246]],[\"comment/1099\",[]],[\"name/1100\",[357,71.138]],[\"comment/1100\",[]],[\"name/1101\",[257,71.138]],[\"comment/1101\",[]],[\"name/1102\",[200,65.26]],[\"comment/1102\",[]],[\"name/1103\",[347,65.26]],[\"comment/1103\",[]],[\"name/1104\",[35,44.328]],[\"comment/1104\",[]],[\"name/1105\",[364,76.246]],[\"comment/1105\",[]],[\"name/1106\",[341,67.773]],[\"comment/1106\",[]],[\"name/1107\",[38,40.693]],[\"comment/1107\",[]],[\"name/1108\",[365,65.26]],[\"comment/1108\",[]],[\"name/1109\",[366,67.773]],[\"comment/1109\",[]],[\"name/1110\",[367,67.773]],[\"comment/1110\",[]],[\"name/1111\",[368,71.138]],[\"comment/1111\",[]],[\"name/1112\",[369,71.138]],[\"comment/1112\",[]],[\"name/1113\",[370,71.138]],[\"comment/1113\",[]],[\"name/1114\",[371,76.246]],[\"comment/1114\",[]],[\"name/1115\",[372,50.097]],[\"comment/1115\",[]],[\"name/1116\",[373,55.877]],[\"comment/1116\",[]],[\"name/1117\",[374,67.773]],[\"comment/1117\",[]],[\"name/1118\",[375,65.26]],[\"comment/1118\",[]],[\"name/1119\",[376,67.773]],[\"comment/1119\",[]],[\"name/1120\",[377,71.138]],[\"comment/1120\",[]],[\"name/1121\",[378,65.26]],[\"comment/1121\",[]],[\"name/1122\",[379,67.773]],[\"comment/1122\",[]],[\"name/1123\",[380,76.246]],[\"comment/1123\",[]],[\"name/1124\",[381,76.246]],[\"comment/1124\",[]],[\"name/1125\",[374,67.773]],[\"comment/1125\",[]],[\"name/1126\",[256,71.138]],[\"comment/1126\",[]],[\"name/1127\",[376,67.773]],[\"comment/1127\",[]],[\"name/1128\",[148,65.26]],[\"comment/1128\",[]],[\"name/1129\",[372,50.097]],[\"comment/1129\",[]],[\"name/1130\",[373,55.877]],[\"comment/1130\",[]],[\"name/1131\",[378,65.26]],[\"comment/1131\",[]],[\"name/1132\",[379,67.773]],[\"comment/1132\",[]],[\"name/1133\",[382,76.246]],[\"comment/1133\",[]],[\"name/1134\",[372,50.097]],[\"comment/1134\",[]],[\"name/1135\",[373,55.877]],[\"comment/1135\",[]],[\"name/1136\",[374,67.773]],[\"comment/1136\",[]],[\"name/1137\",[375,65.26]],[\"comment/1137\",[]],[\"name/1138\",[376,67.773]],[\"comment/1138\",[]],[\"name/1139\",[383,71.138]],[\"comment/1139\",[]],[\"name/1140\",[378,65.26]],[\"comment/1140\",[]],[\"name/1141\",[379,67.773]],[\"comment/1141\",[]],[\"name/1142\",[384,76.246]],[\"comment/1142\",[]],[\"name/1143\",[373,55.877]],[\"comment/1143\",[]],[\"name/1144\",[385,55.044]],[\"comment/1144\",[]],[\"name/1145\",[372,50.097]],[\"comment/1145\",[]],[\"name/1146\",[386,76.246]],[\"comment/1146\",[]],[\"name/1147\",[373,55.877]],[\"comment/1147\",[]],[\"name/1148\",[385,55.044]],[\"comment/1148\",[]],[\"name/1149\",[372,50.097]],[\"comment/1149\",[]],[\"name/1150\",[387,76.246]],[\"comment/1150\",[]],[\"name/1151\",[102,65.26]],[\"comment/1151\",[]],[\"name/1152\",[385,55.044]],[\"comment/1152\",[]],[\"name/1153\",[372,50.097]],[\"comment/1153\",[]],[\"name/1154\",[388,76.246]],[\"comment/1154\",[]],[\"name/1155\",[385,55.044]],[\"comment/1155\",[]],[\"name/1156\",[372,50.097]],[\"comment/1156\",[]],[\"name/1157\",[389,76.246]],[\"comment/1157\",[]],[\"name/1158\",[373,55.877]],[\"comment/1158\",[]],[\"name/1159\",[102,65.26]],[\"comment/1159\",[]],[\"name/1160\",[378,65.26]],[\"comment/1160\",[]],[\"name/1161\",[385,55.044]],[\"comment/1161\",[]],[\"name/1162\",[372,50.097]],[\"comment/1162\",[]],[\"name/1163\",[390,76.246]],[\"comment/1163\",[]],[\"name/1164\",[373,55.877]],[\"comment/1164\",[]],[\"name/1165\",[385,55.044]],[\"comment/1165\",[]],[\"name/1166\",[372,50.097]],[\"comment/1166\",[]],[\"name/1167\",[391,76.246]],[\"comment/1167\",[]],[\"name/1168\",[392,76.246]],[\"comment/1168\",[]],[\"name/1169\",[385,55.044]],[\"comment/1169\",[]],[\"name/1170\",[372,50.097]],[\"comment/1170\",[]],[\"name/1171\",[393,76.246]],[\"comment/1171\",[]],[\"name/1172\",[385,55.044]],[\"comment/1172\",[]],[\"name/1173\",[372,50.097]],[\"comment/1173\",[]],[\"name/1174\",[394,76.246]],[\"comment/1174\",[]],[\"name/1175\",[179,55.044]],[\"comment/1175\",[]],[\"name/1176\",[385,55.044]],[\"comment/1176\",[]],[\"name/1177\",[372,50.097]],[\"comment/1177\",[]],[\"name/1178\",[395,76.246]],[\"comment/1178\",[]],[\"name/1179\",[385,55.044]],[\"comment/1179\",[]],[\"name/1180\",[372,50.097]],[\"comment/1180\",[]],[\"name/1181\",[396,76.246]],[\"comment/1181\",[]],[\"name/1182\",[385,55.044]],[\"comment/1182\",[]],[\"name/1183\",[372,50.097]],[\"comment/1183\",[]],[\"name/1184\",[397,76.246]],[\"comment/1184\",[]],[\"name/1185\",[373,55.877]],[\"comment/1185\",[]],[\"name/1186\",[385,55.044]],[\"comment/1186\",[]],[\"name/1187\",[372,50.097]],[\"comment/1187\",[]],[\"name/1188\",[398,76.246]],[\"comment/1188\",[]],[\"name/1189\",[399,61.583]],[\"comment/1189\",[]],[\"name/1190\",[372,50.097]],[\"comment/1190\",[]],[\"name/1191\",[400,76.246]],[\"comment/1191\",[]],[\"name/1192\",[399,61.583]],[\"comment/1192\",[]],[\"name/1193\",[372,50.097]],[\"comment/1193\",[]],[\"name/1194\",[401,71.138]],[\"comment/1194\",[]],[\"name/1195\",[402,71.138]],[\"comment/1195\",[]],[\"name/1196\",[403,76.246]],[\"comment/1196\",[]],[\"name/1197\",[373,55.877]],[\"comment/1197\",[]],[\"name/1198\",[375,65.26]],[\"comment/1198\",[]],[\"name/1199\",[377,71.138]],[\"comment/1199\",[]],[\"name/1200\",[404,76.246]],[\"comment/1200\",[]],[\"name/1201\",[373,55.877]],[\"comment/1201\",[]],[\"name/1202\",[405,76.246]],[\"comment/1202\",[]],[\"name/1203\",[373,55.877]],[\"comment/1203\",[]],[\"name/1204\",[375,65.26]],[\"comment/1204\",[]],[\"name/1205\",[383,71.138]],[\"comment/1205\",[]],[\"name/1206\",[406,76.246]],[\"comment/1206\",[]],[\"name/1207\",[399,61.583]],[\"comment/1207\",[]],[\"name/1208\",[372,50.097]],[\"comment/1208\",[]],[\"name/1209\",[407,76.246]],[\"comment/1209\",[]],[\"name/1210\",[399,61.583]],[\"comment/1210\",[]],[\"name/1211\",[408,76.246]],[\"comment/1211\",[]],[\"name/1212\",[399,61.583]],[\"comment/1212\",[]],[\"name/1213\",[401,71.138]],[\"comment/1213\",[]],[\"name/1214\",[402,71.138]],[\"comment/1214\",[]],[\"name/1215\",[409,76.246]],[\"comment/1215\",[]],[\"name/1216\",[399,61.583]],[\"comment/1216\",[]],[\"name/1217\",[410,76.246]],[\"comment/1217\",[]],[\"name/1218\",[33,44.328]],[\"comment/1218\",[]],[\"name/1219\",[34,45.488]],[\"comment/1219\",[]],[\"name/1220\",[411,71.138]],[\"comment/1220\",[]],[\"name/1221\",[412,76.246]],[\"comment/1221\",[]],[\"name/1222\",[413,76.246]],[\"comment/1222\",[]],[\"name/1223\",[414,76.246]],[\"comment/1223\",[]],[\"name/1224\",[278,63.253]],[\"comment/1224\",[]],[\"name/1225\",[4,43.538]],[\"comment/1225\",[]],[\"name/1226\",[58,43.538]],[\"comment/1226\",[]],[\"name/1227\",[53,58.9]],[\"comment/1227\",[]],[\"name/1228\",[415,71.138]],[\"comment/1228\",[]],[\"name/1229\",[416,71.138]],[\"comment/1229\",[]],[\"name/1230\",[417,76.246]],[\"comment/1230\",[]],[\"name/1231\",[49,40.693]],[\"comment/1231\",[]],[\"name/1232\",[39,67.773]],[\"comment/1232\",[]],[\"name/1233\",[43,67.773]],[\"comment/1233\",[]],[\"name/1234\",[44,67.773]],[\"comment/1234\",[]],[\"name/1235\",[45,67.773]],[\"comment/1235\",[]],[\"name/1236\",[46,67.773]],[\"comment/1236\",[]],[\"name/1237\",[47,67.773]],[\"comment/1237\",[]],[\"name/1238\",[50,71.138]],[\"comment/1238\",[]],[\"name/1239\",[49,40.693]],[\"comment/1239\",[]],[\"name/1240\",[48,67.773]],[\"comment/1240\",[]],[\"name/1241\",[49,40.693]],[\"comment/1241\",[]],[\"name/1242\",[54,61.583]],[\"comment/1242\",[]],[\"name/1243\",[418,76.246]],[\"comment/1243\",[]],[\"name/1244\",[419,76.246]],[\"comment/1244\",[]],[\"name/1245\",[420,76.246]],[\"comment/1245\",[]],[\"name/1246\",[421,76.246]],[\"comment/1246\",[]],[\"name/1247\",[422,76.246]],[\"comment/1247\",[]],[\"name/1248\",[423,76.246]],[\"comment/1248\",[]],[\"name/1249\",[424,76.246]],[\"comment/1249\",[]],[\"name/1250\",[425,61.583]],[\"comment/1250\",[]],[\"name/1251\",[426,76.246]],[\"comment/1251\",[]],[\"name/1252\",[427,76.246]],[\"comment/1252\",[]],[\"name/1253\",[269,57.788]],[\"comment/1253\",[]],[\"name/1254\",[22,44.057]],[\"comment/1254\",[]],[\"name/1255\",[211,48.731]],[\"comment/1255\",[]],[\"name/1256\",[428,76.246]],[\"comment/1256\",[]],[\"name/1257\",[269,57.788]],[\"comment/1257\",[]],[\"name/1258\",[22,44.057]],[\"comment/1258\",[]],[\"name/1259\",[211,48.731]],[\"comment/1259\",[]],[\"name/1260\",[429,76.246]],[\"comment/1260\",[]],[\"name/1261\",[411,71.138]],[\"comment/1261\",[]],[\"name/1262\",[430,76.246]],[\"comment/1262\",[]],[\"name/1263\",[269,57.788]],[\"comment/1263\",[]],[\"name/1264\",[431,76.246]],[\"comment/1264\",[]],[\"name/1265\",[22,44.057]],[\"comment/1265\",[]],[\"name/1266\",[211,48.731]],[\"comment/1266\",[]],[\"name/1267\",[432,57.788]],[\"comment/1267\",[]],[\"name/1268\",[433,76.246]],[\"comment/1268\",[]],[\"name/1269\",[269,57.788]],[\"comment/1269\",[]],[\"name/1270\",[434,67.773]],[\"comment/1270\",[]],[\"name/1271\",[435,61.583]],[\"comment/1271\",[]],[\"name/1272\",[22,44.057]],[\"comment/1272\",[]],[\"name/1273\",[211,48.731]],[\"comment/1273\",[]],[\"name/1274\",[432,57.788]],[\"comment/1274\",[]],[\"name/1275\",[436,76.246]],[\"comment/1275\",[]],[\"name/1276\",[269,57.788]],[\"comment/1276\",[]],[\"name/1277\",[434,67.773]],[\"comment/1277\",[]],[\"name/1278\",[435,61.583]],[\"comment/1278\",[]],[\"name/1279\",[22,44.057]],[\"comment/1279\",[]],[\"name/1280\",[211,48.731]],[\"comment/1280\",[]],[\"name/1281\",[432,57.788]],[\"comment/1281\",[]],[\"name/1282\",[52,65.26]],[\"comment/1282\",[]],[\"name/1283\",[38,40.693]],[\"comment/1283\",[]],[\"name/1284\",[4,43.538]],[\"comment/1284\",[]],[\"name/1285\",[58,43.538]],[\"comment/1285\",[]],[\"name/1286\",[53,58.9]],[\"comment/1286\",[]],[\"name/1287\",[347,65.26]],[\"comment/1287\",[]],[\"name/1288\",[425,61.583]],[\"comment/1288\",[]],[\"name/1289\",[437,76.246]],[\"comment/1289\",[]],[\"name/1290\",[38,40.693]],[\"comment/1290\",[]],[\"name/1291\",[41,67.773]],[\"comment/1291\",[]],[\"name/1292\",[4,43.538]],[\"comment/1292\",[]],[\"name/1293\",[278,63.253]],[\"comment/1293\",[]],[\"name/1294\",[58,43.538]],[\"comment/1294\",[]],[\"name/1295\",[53,58.9]],[\"comment/1295\",[]],[\"name/1296\",[438,76.246]],[\"comment/1296\",[]],[\"name/1297\",[347,65.26]],[\"comment/1297\",[]],[\"name/1298\",[49,40.693]],[\"comment/1298\",[]],[\"name/1299\",[4,43.538]],[\"comment/1299\",[]],[\"name/1300\",[278,63.253]],[\"comment/1300\",[]],[\"name/1301\",[58,43.538]],[\"comment/1301\",[]],[\"name/1302\",[415,71.138]],[\"comment/1302\",[]],[\"name/1303\",[425,61.583]],[\"comment/1303\",[]],[\"name/1304\",[439,76.246]],[\"comment/1304\",[]],[\"name/1305\",[38,40.693]],[\"comment/1305\",[]],[\"name/1306\",[440,76.246]],[\"comment/1306\",[]],[\"name/1307\",[441,76.246]],[\"comment/1307\",[]],[\"name/1308\",[442,76.246]],[\"comment/1308\",[]],[\"name/1309\",[327,67.773]],[\"comment/1309\",[]],[\"name/1310\",[443,76.246]],[\"comment/1310\",[]],[\"name/1311\",[444,67.773]],[\"comment/1311\",[]],[\"name/1312\",[445,76.246]],[\"comment/1312\",[]],[\"name/1313\",[446,76.246]],[\"comment/1313\",[]],[\"name/1314\",[315,67.773]],[\"comment/1314\",[]],[\"name/1315\",[316,67.773]],[\"comment/1315\",[]],[\"name/1316\",[317,67.773]],[\"comment/1316\",[]],[\"name/1317\",[223,63.253]],[\"comment/1317\",[]],[\"name/1318\",[33,44.328]],[\"comment/1318\",[]],[\"name/1319\",[210,61.583]],[\"comment/1319\",[]],[\"name/1320\",[35,44.328]],[\"comment/1320\",[]],[\"name/1321\",[318,67.773]],[\"comment/1321\",[]],[\"name/1322\",[319,67.773]],[\"comment/1322\",[]],[\"name/1323\",[314,67.773]],[\"comment/1323\",[]],[\"name/1324\",[447,76.246]],[\"comment/1324\",[]],[\"name/1325\",[448,76.246]],[\"comment/1325\",[]],[\"name/1326\",[434,67.773]],[\"comment/1326\",[]],[\"name/1327\",[215,71.138]],[\"comment/1327\",[]],[\"name/1328\",[216,71.138]],[\"comment/1328\",[]],[\"name/1329\",[218,71.138]],[\"comment/1329\",[]],[\"name/1330\",[282,71.138]],[\"comment/1330\",[]],[\"name/1331\",[432,57.788]],[\"comment/1331\",[]],[\"name/1332\",[22,44.057]],[\"comment/1332\",[]],[\"name/1333\",[435,61.583]],[\"comment/1333\",[]],[\"name/1334\",[211,48.731]],[\"comment/1334\",[]],[\"name/1335\",[449,76.246]],[\"comment/1335\",[]],[\"name/1336\",[4,43.538]],[\"comment/1336\",[]],[\"name/1337\",[58,43.538]],[\"comment/1337\",[]],[\"name/1338\",[53,58.9]],[\"comment/1338\",[]],[\"name/1339\",[450,76.246]],[\"comment/1339\",[]],[\"name/1340\",[451,52.892]],[\"comment/1340\",[]],[\"name/1341\",[452,48.314]],[\"comment/1341\",[]],[\"name/1342\",[189,50.097]],[\"comment/1342\",[]],[\"name/1343\",[453,51.679]],[\"comment/1343\",[]],[\"name/1344\",[454,52.267]],[\"comment/1344\",[]],[\"name/1345\",[455,52.267]],[\"comment/1345\",[]],[\"name/1346\",[456,54.274]],[\"comment/1346\",[]],[\"name/1347\",[457,76.246]],[\"comment/1347\",[]],[\"name/1348\",[451,52.892]],[\"comment/1348\",[]],[\"name/1349\",[452,48.314]],[\"comment/1349\",[]],[\"name/1350\",[189,50.097]],[\"comment/1350\",[]],[\"name/1351\",[453,51.679]],[\"comment/1351\",[]],[\"name/1352\",[454,52.267]],[\"comment/1352\",[]],[\"name/1353\",[455,52.267]],[\"comment/1353\",[]],[\"name/1354\",[456,54.274]],[\"comment/1354\",[]],[\"name/1355\",[458,76.246]],[\"comment/1355\",[]],[\"name/1356\",[451,52.892]],[\"comment/1356\",[]],[\"name/1357\",[452,48.314]],[\"comment/1357\",[]],[\"name/1358\",[189,50.097]],[\"comment/1358\",[]],[\"name/1359\",[453,51.679]],[\"comment/1359\",[]],[\"name/1360\",[454,52.267]],[\"comment/1360\",[]],[\"name/1361\",[455,52.267]],[\"comment/1361\",[]],[\"name/1362\",[456,54.274]],[\"comment/1362\",[]],[\"name/1363\",[459,61.583]],[\"comment/1363\",[]],[\"name/1364\",[460,76.246]],[\"comment/1364\",[]],[\"name/1365\",[451,52.892]],[\"comment/1365\",[]],[\"name/1366\",[461,60.152]],[\"comment/1366\",[]],[\"name/1367\",[462,65.26]],[\"comment/1367\",[]],[\"name/1368\",[452,48.314]],[\"comment/1368\",[]],[\"name/1369\",[189,50.097]],[\"comment/1369\",[]],[\"name/1370\",[453,51.679]],[\"comment/1370\",[]],[\"name/1371\",[454,52.267]],[\"comment/1371\",[]],[\"name/1372\",[455,52.267]],[\"comment/1372\",[]],[\"name/1373\",[463,63.253]],[\"comment/1373\",[]],[\"name/1374\",[49,40.693]],[\"comment/1374\",[]],[\"name/1375\",[452,48.314]],[\"comment/1375\",[]],[\"name/1376\",[456,54.274]],[\"comment/1376\",[]],[\"name/1377\",[464,76.246]],[\"comment/1377\",[]],[\"name/1378\",[465,76.246]],[\"comment/1378\",[]],[\"name/1379\",[456,54.274]],[\"comment/1379\",[]],[\"name/1380\",[466,76.246]],[\"comment/1380\",[]],[\"name/1381\",[452,48.314]],[\"comment/1381\",[]],[\"name/1382\",[189,50.097]],[\"comment/1382\",[]],[\"name/1383\",[453,51.679]],[\"comment/1383\",[]],[\"name/1384\",[454,52.267]],[\"comment/1384\",[]],[\"name/1385\",[455,52.267]],[\"comment/1385\",[]],[\"name/1386\",[467,76.246]],[\"comment/1386\",[]],[\"name/1387\",[463,63.253]],[\"comment/1387\",[]],[\"name/1388\",[49,40.693]],[\"comment/1388\",[]],[\"name/1389\",[452,48.314]],[\"comment/1389\",[]],[\"name/1390\",[468,76.246]],[\"comment/1390\",[]],[\"name/1391\",[459,61.583]],[\"comment/1391\",[]],[\"name/1392\",[469,76.246]],[\"comment/1392\",[]],[\"name/1393\",[451,52.892]],[\"comment/1393\",[]],[\"name/1394\",[461,60.152]],[\"comment/1394\",[]],[\"name/1395\",[49,40.693]],[\"comment/1395\",[]],[\"name/1396\",[249,58.9]],[\"comment/1396\",[]],[\"name/1397\",[452,48.314]],[\"comment/1397\",[]],[\"name/1398\",[189,50.097]],[\"comment/1398\",[]],[\"name/1399\",[453,51.679]],[\"comment/1399\",[]],[\"name/1400\",[454,52.267]],[\"comment/1400\",[]],[\"name/1401\",[455,52.267]],[\"comment/1401\",[]],[\"name/1402\",[470,76.246]],[\"comment/1402\",[]],[\"name/1403\",[451,52.892]],[\"comment/1403\",[]],[\"name/1404\",[461,60.152]],[\"comment/1404\",[]],[\"name/1405\",[452,48.314]],[\"comment/1405\",[]],[\"name/1406\",[189,50.097]],[\"comment/1406\",[]],[\"name/1407\",[453,51.679]],[\"comment/1407\",[]],[\"name/1408\",[454,52.267]],[\"comment/1408\",[]],[\"name/1409\",[455,52.267]],[\"comment/1409\",[]],[\"name/1410\",[456,54.274]],[\"comment/1410\",[]],[\"name/1411\",[471,76.246]],[\"comment/1411\",[]],[\"name/1412\",[451,52.892]],[\"comment/1412\",[]],[\"name/1413\",[452,48.314]],[\"comment/1413\",[]],[\"name/1414\",[189,50.097]],[\"comment/1414\",[]],[\"name/1415\",[453,51.679]],[\"comment/1415\",[]],[\"name/1416\",[454,52.267]],[\"comment/1416\",[]],[\"name/1417\",[455,52.267]],[\"comment/1417\",[]],[\"name/1418\",[456,54.274]],[\"comment/1418\",[]],[\"name/1419\",[459,61.583]],[\"comment/1419\",[]],[\"name/1420\",[472,76.246]],[\"comment/1420\",[]],[\"name/1421\",[473,76.246]],[\"comment/1421\",[]],[\"name/1422\",[451,52.892]],[\"comment/1422\",[]],[\"name/1423\",[474,63.253]],[\"comment/1423\",[]],[\"name/1424\",[461,60.152]],[\"comment/1424\",[]],[\"name/1425\",[452,48.314]],[\"comment/1425\",[]],[\"name/1426\",[189,50.097]],[\"comment/1426\",[]],[\"name/1427\",[453,51.679]],[\"comment/1427\",[]],[\"name/1428\",[454,52.267]],[\"comment/1428\",[]],[\"name/1429\",[455,52.267]],[\"comment/1429\",[]],[\"name/1430\",[463,63.253]],[\"comment/1430\",[]],[\"name/1431\",[49,40.693]],[\"comment/1431\",[]],[\"name/1432\",[452,48.314]],[\"comment/1432\",[]],[\"name/1433\",[456,54.274]],[\"comment/1433\",[]],[\"name/1434\",[475,76.246]],[\"comment/1434\",[]],[\"name/1435\",[451,52.892]],[\"comment/1435\",[]],[\"name/1436\",[452,48.314]],[\"comment/1436\",[]],[\"name/1437\",[189,50.097]],[\"comment/1437\",[]],[\"name/1438\",[453,51.679]],[\"comment/1438\",[]],[\"name/1439\",[454,52.267]],[\"comment/1439\",[]],[\"name/1440\",[455,52.267]],[\"comment/1440\",[]],[\"name/1441\",[476,76.246]],[\"comment/1441\",[]],[\"name/1442\",[249,58.9]],[\"comment/1442\",[]],[\"name/1443\",[477,71.138]],[\"comment/1443\",[]],[\"name/1444\",[478,76.246]],[\"comment/1444\",[]],[\"name/1445\",[474,63.253]],[\"comment/1445\",[]],[\"name/1446\",[462,65.26]],[\"comment/1446\",[]],[\"name/1447\",[275,57.788]],[\"comment/1447\",[]],[\"name/1448\",[479,71.138]],[\"comment/1448\",[]],[\"name/1449\",[480,71.138]],[\"comment/1449\",[]],[\"name/1450\",[481,71.138]],[\"comment/1450\",[]],[\"name/1451\",[128,51.679]],[\"comment/1451\",[]],[\"name/1452\",[482,76.246]],[\"comment/1452\",[]],[\"name/1453\",[33,44.328]],[\"comment/1453\",[]],[\"name/1454\",[34,45.488]],[\"comment/1454\",[]],[\"name/1455\",[29,43.794]],[\"comment/1455\",[]],[\"name/1456\",[26,46.802]],[\"comment/1456\",[]],[\"name/1457\",[21,42.806]],[\"comment/1457\",[]],[\"name/1458\",[31,41.081]],[\"comment/1458\",[]],[\"name/1459\",[25,46.457]],[\"comment/1459\",[]],[\"name/1460\",[483,65.26]],[\"comment/1460\",[]],[\"name/1461\",[30,47.159]],[\"comment/1461\",[]],[\"name/1462\",[32,47.159]],[\"comment/1462\",[]],[\"name/1463\",[24,46.124]],[\"comment/1463\",[]],[\"name/1464\",[23,44.891]],[\"comment/1464\",[]],[\"name/1465\",[36,46.124]],[\"comment/1465\",[]],[\"name/1466\",[22,44.057]],[\"comment/1466\",[]],[\"name/1467\",[27,47.529]],[\"comment/1467\",[]],[\"name/1468\",[28,47.529]],[\"comment/1468\",[]],[\"name/1469\",[211,48.731]],[\"comment/1469\",[]],[\"name/1470\",[276,61.583]],[\"comment/1470\",[]],[\"name/1471\",[17,56.787]],[\"comment/1471\",[]],[\"name/1472\",[20,55.044]],[\"comment/1472\",[]],[\"name/1473\",[162,61.583]],[\"comment/1473\",[]],[\"name/1474\",[484,76.246]],[\"comment/1474\",[]],[\"name/1475\",[451,52.892]],[\"comment/1475\",[]],[\"name/1476\",[452,48.314]],[\"comment/1476\",[]],[\"name/1477\",[189,50.097]],[\"comment/1477\",[]],[\"name/1478\",[453,51.679]],[\"comment/1478\",[]],[\"name/1479\",[454,52.267]],[\"comment/1479\",[]],[\"name/1480\",[455,52.267]],[\"comment/1480\",[]],[\"name/1481\",[456,54.274]],[\"comment/1481\",[]],[\"name/1482\",[459,61.583]],[\"comment/1482\",[]],[\"name/1483\",[485,76.246]],[\"comment/1483\",[]],[\"name/1484\",[451,52.892]],[\"comment/1484\",[]],[\"name/1485\",[486,76.246]],[\"comment/1485\",[]],[\"name/1486\",[49,40.693]],[\"comment/1486\",[]],[\"name/1487\",[249,58.9]],[\"comment/1487\",[]],[\"name/1488\",[477,71.138]],[\"comment/1488\",[]],[\"name/1489\",[461,60.152]],[\"comment/1489\",[]],[\"name/1490\",[452,48.314]],[\"comment/1490\",[]],[\"name/1491\",[189,50.097]],[\"comment/1491\",[]],[\"name/1492\",[453,51.679]],[\"comment/1492\",[]],[\"name/1493\",[454,52.267]],[\"comment/1493\",[]],[\"name/1494\",[455,52.267]],[\"comment/1494\",[]],[\"name/1495\",[456,54.274]],[\"comment/1495\",[]],[\"name/1496\",[487,76.246]],[\"comment/1496\",[]],[\"name/1497\",[451,52.892]],[\"comment/1497\",[]],[\"name/1498\",[474,63.253]],[\"comment/1498\",[]],[\"name/1499\",[461,60.152]],[\"comment/1499\",[]],[\"name/1500\",[462,65.26]],[\"comment/1500\",[]],[\"name/1501\",[452,48.314]],[\"comment/1501\",[]],[\"name/1502\",[189,50.097]],[\"comment/1502\",[]],[\"name/1503\",[453,51.679]],[\"comment/1503\",[]],[\"name/1504\",[454,52.267]],[\"comment/1504\",[]],[\"name/1505\",[455,52.267]],[\"comment/1505\",[]],[\"name/1506\",[463,63.253]],[\"comment/1506\",[]],[\"name/1507\",[49,40.693]],[\"comment/1507\",[]],[\"name/1508\",[452,48.314]],[\"comment/1508\",[]],[\"name/1509\",[488,76.246]],[\"comment/1509\",[]],[\"name/1510\",[451,52.892]],[\"comment/1510\",[]],[\"name/1511\",[452,48.314]],[\"comment/1511\",[]],[\"name/1512\",[189,50.097]],[\"comment/1512\",[]],[\"name/1513\",[453,51.679]],[\"comment/1513\",[]],[\"name/1514\",[454,52.267]],[\"comment/1514\",[]],[\"name/1515\",[455,52.267]],[\"comment/1515\",[]],[\"name/1516\",[456,54.274]],[\"comment/1516\",[]],[\"name/1517\",[459,61.583]],[\"comment/1517\",[]],[\"name/1518\",[489,76.246]],[\"comment/1518\",[]],[\"name/1519\",[451,52.892]],[\"comment/1519\",[]],[\"name/1520\",[452,48.314]],[\"comment/1520\",[]],[\"name/1521\",[189,50.097]],[\"comment/1521\",[]],[\"name/1522\",[453,51.679]],[\"comment/1522\",[]],[\"name/1523\",[454,52.267]],[\"comment/1523\",[]],[\"name/1524\",[455,52.267]],[\"comment/1524\",[]],[\"name/1525\",[456,54.274]],[\"comment/1525\",[]],[\"name/1526\",[459,61.583]],[\"comment/1526\",[]],[\"name/1527\",[490,76.246]],[\"comment/1527\",[]],[\"name/1528\",[491,76.246]],[\"comment/1528\",[]],[\"name/1529\",[492,76.246]],[\"comment/1529\",[]],[\"name/1530\",[493,76.246]],[\"comment/1530\",[]],[\"name/1531\",[451,52.892]],[\"comment/1531\",[]],[\"name/1532\",[474,63.253]],[\"comment/1532\",[]],[\"name/1533\",[494,71.138]],[\"comment/1533\",[]],[\"name/1534\",[461,60.152]],[\"comment/1534\",[]],[\"name/1535\",[462,65.26]],[\"comment/1535\",[]],[\"name/1536\",[452,48.314]],[\"comment/1536\",[]],[\"name/1537\",[189,50.097]],[\"comment/1537\",[]],[\"name/1538\",[453,51.679]],[\"comment/1538\",[]],[\"name/1539\",[454,52.267]],[\"comment/1539\",[]],[\"name/1540\",[455,52.267]],[\"comment/1540\",[]],[\"name/1541\",[463,63.253]],[\"comment/1541\",[]],[\"name/1542\",[49,40.693]],[\"comment/1542\",[]],[\"name/1543\",[452,48.314]],[\"comment/1543\",[]],[\"name/1544\",[456,54.274]],[\"comment/1544\",[]],[\"name/1545\",[190,71.138]],[\"comment/1545\",[]],[\"name/1546\",[495,76.246]],[\"comment/1546\",[]],[\"name/1547\",[481,71.138]],[\"comment/1547\",[]],[\"name/1548\",[128,51.679]],[\"comment/1548\",[]],[\"name/1549\",[275,57.788]],[\"comment/1549\",[]],[\"name/1550\",[22,44.057]],[\"comment/1550\",[]],[\"name/1551\",[31,41.081]],[\"comment/1551\",[]],[\"name/1552\",[479,71.138]],[\"comment/1552\",[]],[\"name/1553\",[480,71.138]],[\"comment/1553\",[]],[\"name/1554\",[474,63.253]],[\"comment/1554\",[]],[\"name/1555\",[183,71.138]],[\"comment/1555\",[]],[\"name/1556\",[494,71.138]],[\"comment/1556\",[]],[\"name/1557\",[496,76.246]],[\"comment/1557\",[]],[\"name/1558\",[497,76.246]],[\"comment/1558\",[]],[\"name/1559\",[498,76.246]],[\"comment/1559\",[]],[\"name/1560\",[499,76.246]],[\"comment/1560\",[]],[\"name/1561\",[500,76.246]],[\"comment/1561\",[]],[\"name/1562\",[501,71.138]],[\"comment/1562\",[]],[\"name/1563\",[502,71.138]],[\"comment/1563\",[]],[\"name/1564\",[503,67.773]],[\"comment/1564\",[]],[\"name/1565\",[49,40.693]],[\"comment/1565\",[]],[\"name/1566\",[504,67.773]],[\"comment/1566\",[]],[\"name/1567\",[505,67.773]],[\"comment/1567\",[]],[\"name/1568\",[49,40.693]],[\"comment/1568\",[]],[\"name/1569\",[506,63.253]],[\"comment/1569\",[]],[\"name/1570\",[507,67.773]],[\"comment/1570\",[]],[\"name/1571\",[508,67.773]],[\"comment/1571\",[]],[\"name/1572\",[509,67.773]],[\"comment/1572\",[]],[\"name/1573\",[49,40.693]],[\"comment/1573\",[]],[\"name/1574\",[510,65.26]],[\"comment/1574\",[]],[\"name/1575\",[511,76.246]],[\"comment/1575\",[]],[\"name/1576\",[512,76.246]],[\"comment/1576\",[]],[\"name/1577\",[513,76.246]],[\"comment/1577\",[]],[\"name/1578\",[514,76.246]],[\"comment/1578\",[]],[\"name/1579\",[179,55.044]],[\"comment/1579\",[]],[\"name/1580\",[49,40.693]],[\"comment/1580\",[]],[\"name/1581\",[515,76.246]],[\"comment/1581\",[]],[\"name/1582\",[49,40.693]],[\"comment/1582\",[]],[\"name/1583\",[516,76.246]],[\"comment/1583\",[]],[\"name/1584\",[49,40.693]],[\"comment/1584\",[]],[\"name/1585\",[517,76.246]],[\"comment/1585\",[]],[\"name/1586\",[518,76.246]],[\"comment/1586\",[]],[\"name/1587\",[519,76.246]],[\"comment/1587\",[]],[\"name/1588\",[520,76.246]],[\"comment/1588\",[]],[\"name/1589\",[521,76.246]],[\"comment/1589\",[]],[\"name/1590\",[522,76.246]],[\"comment/1590\",[]],[\"name/1591\",[523,67.773]],[\"comment/1591\",[]],[\"name/1592\",[524,71.138]],[\"comment/1592\",[]],[\"name/1593\",[525,76.246]],[\"comment/1593\",[]],[\"name/1594\",[526,76.246]],[\"comment/1594\",[]],[\"name/1595\",[527,71.138]],[\"comment/1595\",[]],[\"name/1596\",[506,63.253]],[\"comment/1596\",[]],[\"name/1597\",[510,65.26]],[\"comment/1597\",[]],[\"name/1598\",[528,76.246]],[\"comment/1598\",[]],[\"name/1599\",[529,71.138]],[\"comment/1599\",[]],[\"name/1600\",[530,76.246]],[\"comment/1600\",[]],[\"name/1601\",[531,71.138]],[\"comment/1601\",[]],[\"name/1602\",[532,76.246]],[\"comment/1602\",[]],[\"name/1603\",[533,67.773]],[\"comment/1603\",[]],[\"name/1604\",[534,71.138]],[\"comment/1604\",[]],[\"name/1605\",[535,71.138]],[\"comment/1605\",[]],[\"name/1606\",[536,76.246]],[\"comment/1606\",[]],[\"name/1607\",[537,76.246]],[\"comment/1607\",[]],[\"name/1608\",[538,71.138]],[\"comment/1608\",[]],[\"name/1609\",[539,76.246]],[\"comment/1609\",[]],[\"name/1610\",[540,76.246]],[\"comment/1610\",[]],[\"name/1611\",[541,76.246]],[\"comment/1611\",[]],[\"name/1612\",[542,71.138]],[\"comment/1612\",[]],[\"name/1613\",[543,76.246]],[\"comment/1613\",[]],[\"name/1614\",[502,71.138]],[\"comment/1614\",[]],[\"name/1615\",[501,71.138]],[\"comment/1615\",[]],[\"name/1616\",[503,67.773]],[\"comment/1616\",[]],[\"name/1617\",[523,67.773]],[\"comment/1617\",[]],[\"name/1618\",[524,71.138]],[\"comment/1618\",[]],[\"name/1619\",[544,76.246]],[\"comment/1619\",[]],[\"name/1620\",[545,76.246]],[\"comment/1620\",[]],[\"name/1621\",[533,67.773]],[\"comment/1621\",[]],[\"name/1622\",[546,76.246]],[\"comment/1622\",[]],[\"name/1623\",[416,71.138]],[\"comment/1623\",[]],[\"name/1624\",[547,76.246]],[\"comment/1624\",[]],[\"name/1625\",[452,48.314]],[\"comment/1625\",[]],[\"name/1626\",[548,57.788]],[\"comment/1626\",[]],[\"name/1627\",[534,71.138]],[\"comment/1627\",[]],[\"name/1628\",[535,71.138]],[\"comment/1628\",[]],[\"name/1629\",[549,76.246]],[\"comment/1629\",[]],[\"name/1630\",[550,76.246]],[\"comment/1630\",[]],[\"name/1631\",[551,76.246]],[\"comment/1631\",[]],[\"name/1632\",[533,67.773]],[\"comment/1632\",[]],[\"name/1633\",[552,76.246]],[\"comment/1633\",[]],[\"name/1634\",[553,76.246]],[\"comment/1634\",[]],[\"name/1635\",[554,76.246]],[\"comment/1635\",[]],[\"name/1636\",[555,76.246]],[\"comment/1636\",[]],[\"name/1637\",[529,71.138]],[\"comment/1637\",[]],[\"name/1638\",[531,71.138]],[\"comment/1638\",[]],[\"name/1639\",[510,65.26]],[\"comment/1639\",[]],[\"name/1640\",[542,71.138]],[\"comment/1640\",[]],[\"name/1641\",[270,63.253]],[\"comment/1641\",[]],[\"name/1642\",[271,61.583]],[\"comment/1642\",[]],[\"name/1643\",[556,76.246]],[\"comment/1643\",[]],[\"name/1644\",[557,76.246]],[\"comment/1644\",[]],[\"name/1645\",[558,76.246]],[\"comment/1645\",[]],[\"name/1646\",[559,76.246]],[\"comment/1646\",[]],[\"name/1647\",[42,41.081]],[\"comment/1647\",[]],[\"name/1648\",[560,76.246]],[\"comment/1648\",[]],[\"name/1649\",[561,65.26]],[\"comment/1649\",[]],[\"name/1650\",[42,41.081]],[\"comment/1650\",[]],[\"name/1651\",[562,76.246]],[\"comment/1651\",[]],[\"name/1652\",[561,65.26]],[\"comment/1652\",[]],[\"name/1653\",[42,41.081]],[\"comment/1653\",[]],[\"name/1654\",[563,76.246]],[\"comment/1654\",[]],[\"name/1655\",[42,41.081]],[\"comment/1655\",[]],[\"name/1656\",[564,76.246]],[\"comment/1656\",[]],[\"name/1657\",[42,41.081]],[\"comment/1657\",[]],[\"name/1658\",[565,76.246]],[\"comment/1658\",[]],[\"name/1659\",[42,41.081]],[\"comment/1659\",[]],[\"name/1660\",[566,76.246]],[\"comment/1660\",[]],[\"name/1661\",[503,67.773]],[\"comment/1661\",[]],[\"name/1662\",[504,67.773]],[\"comment/1662\",[]],[\"name/1663\",[505,67.773]],[\"comment/1663\",[]],[\"name/1664\",[49,40.693]],[\"comment/1664\",[]],[\"name/1665\",[506,63.253]],[\"comment/1665\",[]],[\"name/1666\",[509,67.773]],[\"comment/1666\",[]],[\"name/1667\",[49,40.693]],[\"comment/1667\",[]],[\"name/1668\",[510,65.26]],[\"comment/1668\",[]],[\"name/1669\",[507,67.773]],[\"comment/1669\",[]],[\"name/1670\",[508,67.773]],[\"comment/1670\",[]],[\"name/1671\",[567,76.246]],[\"comment/1671\",[]],[\"name/1672\",[568,76.246]],[\"comment/1672\",[]],[\"name/1673\",[49,40.693]],[\"comment/1673\",[]],[\"name/1674\",[504,67.773]],[\"comment/1674\",[]],[\"name/1675\",[508,67.773]],[\"comment/1675\",[]],[\"name/1676\",[509,67.773]],[\"comment/1676\",[]],[\"name/1677\",[505,67.773]],[\"comment/1677\",[]],[\"name/1678\",[507,67.773]],[\"comment/1678\",[]],[\"name/1679\",[569,71.138]],[\"comment/1679\",[]],[\"name/1680\",[570,76.246]],[\"comment/1680\",[]],[\"name/1681\",[571,76.246]],[\"comment/1681\",[]],[\"name/1682\",[572,76.246]],[\"comment/1682\",[]],[\"name/1683\",[573,76.246]],[\"comment/1683\",[]],[\"name/1684\",[574,76.246]],[\"comment/1684\",[]],[\"name/1685\",[575,76.246]],[\"comment/1685\",[]],[\"name/1686\",[576,76.246]],[\"comment/1686\",[]],[\"name/1687\",[577,76.246]],[\"comment/1687\",[]],[\"name/1688\",[578,76.246]],[\"comment/1688\",[]],[\"name/1689\",[579,76.246]],[\"comment/1689\",[]],[\"name/1690\",[580,76.246]],[\"comment/1690\",[]],[\"name/1691\",[581,76.246]],[\"comment/1691\",[]],[\"name/1692\",[38,40.693]],[\"comment/1692\",[]],[\"name/1693\",[582,67.773]],[\"comment/1693\",[]],[\"name/1694\",[583,67.773]],[\"comment/1694\",[]],[\"name/1695\",[584,71.138]],[\"comment/1695\",[]],[\"name/1696\",[585,71.138]],[\"comment/1696\",[]],[\"name/1697\",[586,71.138]],[\"comment/1697\",[]],[\"name/1698\",[200,65.26]],[\"comment/1698\",[]],[\"name/1699\",[587,76.246]],[\"comment/1699\",[]],[\"name/1700\",[588,76.246]],[\"comment/1700\",[]],[\"name/1701\",[589,76.246]],[\"comment/1701\",[]],[\"name/1702\",[582,67.773]],[\"comment/1702\",[]],[\"name/1703\",[583,67.773]],[\"comment/1703\",[]],[\"name/1704\",[584,71.138]],[\"comment/1704\",[]],[\"name/1705\",[249,58.9]],[\"comment/1705\",[]],[\"name/1706\",[585,71.138]],[\"comment/1706\",[]],[\"name/1707\",[586,71.138]],[\"comment/1707\",[]],[\"name/1708\",[590,76.246]],[\"comment/1708\",[]],[\"name/1709\",[591,76.246]],[\"comment/1709\",[]],[\"name/1710\",[592,76.246]],[\"comment/1710\",[]],[\"name/1711\",[593,76.246]],[\"comment/1711\",[]],[\"name/1712\",[594,76.246]],[\"comment/1712\",[]],[\"name/1713\",[595,76.246]],[\"comment/1713\",[]],[\"name/1714\",[596,76.246]],[\"comment/1714\",[]],[\"name/1715\",[597,71.138]],[\"comment/1715\",[]],[\"name/1716\",[598,76.246]],[\"comment/1716\",[]],[\"name/1717\",[597,71.138]],[\"comment/1717\",[]],[\"name/1718\",[599,76.246]],[\"comment/1718\",[]],[\"name/1719\",[600,76.246]],[\"comment/1719\",[]],[\"name/1720\",[548,57.788]],[\"comment/1720\",[]],[\"name/1721\",[601,76.246]],[\"comment/1721\",[]],[\"name/1722\",[49,40.693]],[\"comment/1722\",[]],[\"name/1723\",[602,76.246]],[\"comment/1723\",[]],[\"name/1724\",[49,40.693]],[\"comment/1724\",[]],[\"name/1725\",[603,76.246]],[\"comment/1725\",[]],[\"name/1726\",[604,76.246]],[\"comment/1726\",[]],[\"name/1727\",[118,57.788]],[\"comment/1727\",[]],[\"name/1728\",[605,76.246]],[\"comment/1728\",[]],[\"name/1729\",[49,40.693]],[\"comment/1729\",[]],[\"name/1730\",[606,76.246]],[\"comment/1730\",[]],[\"name/1731\",[607,76.246]],[\"comment/1731\",[]],[\"name/1732\",[608,76.246]],[\"comment/1732\",[]],[\"name/1733\",[609,76.246]],[\"comment/1733\",[]],[\"name/1734\",[110,50.597]],[\"comment/1734\",[]],[\"name/1735\",[610,71.138]],[\"comment/1735\",[]],[\"name/1736\",[611,76.246]],[\"comment/1736\",[]],[\"name/1737\",[612,76.246]],[\"comment/1737\",[]],[\"name/1738\",[613,76.246]],[\"comment/1738\",[]],[\"name/1739\",[111,54.274]],[\"comment/1739\",[]],[\"name/1740\",[614,76.246]],[\"comment/1740\",[]],[\"name/1741\",[615,65.26]],[\"comment/1741\",[]],[\"name/1742\",[309,60.152]],[\"comment/1742\",[]],[\"name/1743\",[310,61.583]],[\"comment/1743\",[]],[\"name/1744\",[616,65.26]],[\"comment/1744\",[]],[\"name/1745\",[617,63.253]],[\"comment/1745\",[]],[\"name/1746\",[618,63.253]],[\"comment/1746\",[]],[\"name/1747\",[619,63.253]],[\"comment/1747\",[]],[\"name/1748\",[620,63.253]],[\"comment/1748\",[]],[\"name/1749\",[170,65.26]],[\"comment/1749\",[]],[\"name/1750\",[621,61.583]],[\"comment/1750\",[]],[\"name/1751\",[622,60.152]],[\"comment/1751\",[]],[\"name/1752\",[623,60.152]],[\"comment/1752\",[]],[\"name/1753\",[115,52.892]],[\"comment/1753\",[]],[\"name/1754\",[624,61.583]],[\"comment/1754\",[]],[\"name/1755\",[625,61.583]],[\"comment/1755\",[]],[\"name/1756\",[626,61.583]],[\"comment/1756\",[]],[\"name/1757\",[627,61.583]],[\"comment/1757\",[]],[\"name/1758\",[523,67.773]],[\"comment/1758\",[]],[\"name/1759\",[624,61.583]],[\"comment/1759\",[]],[\"name/1760\",[625,61.583]],[\"comment/1760\",[]],[\"name/1761\",[626,61.583]],[\"comment/1761\",[]],[\"name/1762\",[627,61.583]],[\"comment/1762\",[]],[\"name/1763\",[628,76.246]],[\"comment/1763\",[]],[\"name/1764\",[629,71.138]],[\"comment/1764\",[]],[\"name/1765\",[630,76.246]],[\"comment/1765\",[]],[\"name/1766\",[631,76.246]],[\"comment/1766\",[]],[\"name/1767\",[632,67.773]],[\"comment/1767\",[]],[\"name/1768\",[633,67.773]],[\"comment/1768\",[]],[\"name/1769\",[634,67.773]],[\"comment/1769\",[]],[\"name/1770\",[635,67.773]],[\"comment/1770\",[]],[\"name/1771\",[636,67.773]],[\"comment/1771\",[]],[\"name/1772\",[115,52.892]],[\"comment/1772\",[]],[\"name/1773\",[616,65.26]],[\"comment/1773\",[]],[\"name/1774\",[615,65.26]],[\"comment/1774\",[]],[\"name/1775\",[624,61.583]],[\"comment/1775\",[]],[\"name/1776\",[625,61.583]],[\"comment/1776\",[]],[\"name/1777\",[626,61.583]],[\"comment/1777\",[]],[\"name/1778\",[627,61.583]],[\"comment/1778\",[]],[\"name/1779\",[618,63.253]],[\"comment/1779\",[]],[\"name/1780\",[617,63.253]],[\"comment/1780\",[]],[\"name/1781\",[620,63.253]],[\"comment/1781\",[]],[\"name/1782\",[622,60.152]],[\"comment/1782\",[]],[\"name/1783\",[619,63.253]],[\"comment/1783\",[]],[\"name/1784\",[310,61.583]],[\"comment/1784\",[]],[\"name/1785\",[309,60.152]],[\"comment/1785\",[]],[\"name/1786\",[170,65.26]],[\"comment/1786\",[]],[\"name/1787\",[621,61.583]],[\"comment/1787\",[]],[\"name/1788\",[623,60.152]],[\"comment/1788\",[]],[\"name/1789\",[637,76.246]],[\"comment/1789\",[]],[\"name/1790\",[638,76.246]],[\"comment/1790\",[]],[\"name/1791\",[49,40.693]],[\"comment/1791\",[]],[\"name/1792\",[42,41.081]],[\"comment/1792\",[]],[\"name/1793\",[548,57.788]],[\"comment/1793\",[]],[\"name/1794\",[639,76.246]],[\"comment/1794\",[]],[\"name/1795\",[49,40.693]],[\"comment/1795\",[]],[\"name/1796\",[181,60.152]],[\"comment/1796\",[]],[\"name/1797\",[42,41.081]],[\"comment/1797\",[]],[\"name/1798\",[640,76.246]],[\"comment/1798\",[]],[\"name/1799\",[548,57.788]],[\"comment/1799\",[]],[\"name/1800\",[641,67.773]],[\"comment/1800\",[]],[\"name/1801\",[642,76.246]],[\"comment/1801\",[]],[\"name/1802\",[49,40.693]],[\"comment/1802\",[]],[\"name/1803\",[42,41.081]],[\"comment/1803\",[]],[\"name/1804\",[643,76.246]],[\"comment/1804\",[]],[\"name/1805\",[49,40.693]],[\"comment/1805\",[]],[\"name/1806\",[42,41.081]],[\"comment/1806\",[]],[\"name/1807\",[644,76.246]],[\"comment/1807\",[]],[\"name/1808\",[645,76.246]],[\"comment/1808\",[]],[\"name/1809\",[527,71.138]],[\"comment/1809\",[]],[\"name/1810\",[646,76.246]],[\"comment/1810\",[]],[\"name/1811\",[647,76.246]],[\"comment/1811\",[]],[\"name/1812\",[648,65.26]],[\"comment/1812\",[]],[\"name/1813\",[49,40.693]],[\"comment/1813\",[]],[\"name/1814\",[42,41.081]],[\"comment/1814\",[]],[\"name/1815\",[548,57.788]],[\"comment/1815\",[]],[\"name/1816\",[641,67.773]],[\"comment/1816\",[]],[\"name/1817\",[649,67.773]],[\"comment/1817\",[]],[\"name/1818\",[650,76.246]],[\"comment/1818\",[]],[\"name/1819\",[38,40.693]],[\"comment/1819\",[]],[\"name/1820\",[372,50.097]],[\"comment/1820\",[]],[\"name/1821\",[181,60.152]],[\"comment/1821\",[]],[\"name/1822\",[362,65.26]],[\"comment/1822\",[]],[\"name/1823\",[651,67.773]],[\"comment/1823\",[]],[\"name/1824\",[652,76.246]],[\"comment/1824\",[]],[\"name/1825\",[653,76.246]],[\"comment/1825\",[]],[\"name/1826\",[654,76.246]],[\"comment/1826\",[]],[\"name/1827\",[622,60.152]],[\"comment/1827\",[]],[\"name/1828\",[331,67.773]],[\"comment/1828\",[]],[\"name/1829\",[623,60.152]],[\"comment/1829\",[]],[\"name/1830\",[115,52.892]],[\"comment/1830\",[]],[\"name/1831\",[655,76.246]],[\"comment/1831\",[]],[\"name/1832\",[656,67.773]],[\"comment/1832\",[]],[\"name/1833\",[657,76.246]],[\"comment/1833\",[]],[\"name/1834\",[658,76.246]],[\"comment/1834\",[]],[\"name/1835\",[622,60.152]],[\"comment/1835\",[]],[\"name/1836\",[623,60.152]],[\"comment/1836\",[]],[\"name/1837\",[115,52.892]],[\"comment/1837\",[]],[\"name/1838\",[659,76.246]],[\"comment/1838\",[]],[\"name/1839\",[660,76.246]],[\"comment/1839\",[]],[\"name/1840\",[21,42.806]],[\"comment/1840\",[]],[\"name/1841\",[31,41.081]],[\"comment/1841\",[]],[\"name/1842\",[33,44.328]],[\"comment/1842\",[]],[\"name/1843\",[34,45.488]],[\"comment/1843\",[]],[\"name/1844\",[35,44.328]],[\"comment/1844\",[]],[\"name/1845\",[661,76.246]],[\"comment/1845\",[]],[\"name/1846\",[662,76.246]],[\"comment/1846\",[]],[\"name/1847\",[663,76.246]],[\"comment/1847\",[]],[\"name/1848\",[54,61.583]],[\"comment/1848\",[]],[\"name/1849\",[664,76.246]],[\"comment/1849\",[]],[\"name/1850\",[665,76.246]],[\"comment/1850\",[]],[\"name/1851\",[49,40.693]],[\"comment/1851\",[]],[\"name/1852\",[110,50.597]],[\"comment/1852\",[]],[\"name/1853\",[666,76.246]],[\"comment/1853\",[]],[\"name/1854\",[29,43.794]],[\"comment/1854\",[]],[\"name/1855\",[31,41.081]],[\"comment/1855\",[]],[\"name/1856\",[21,42.806]],[\"comment/1856\",[]],[\"name/1857\",[128,51.679]],[\"comment/1857\",[]],[\"name/1858\",[23,44.891]],[\"comment/1858\",[]],[\"name/1859\",[275,57.788]],[\"comment/1859\",[]],[\"name/1860\",[24,46.124]],[\"comment/1860\",[]],[\"name/1861\",[667,67.773]],[\"comment/1861\",[]],[\"name/1862\",[668,67.773]],[\"comment/1862\",[]],[\"name/1863\",[669,67.773]],[\"comment/1863\",[]],[\"name/1864\",[33,44.328]],[\"comment/1864\",[]],[\"name/1865\",[34,45.488]],[\"comment/1865\",[]],[\"name/1866\",[670,76.246]],[\"comment/1866\",[]],[\"name/1867\",[671,76.246]],[\"comment/1867\",[]],[\"name/1868\",[672,76.246]],[\"comment/1868\",[]],[\"name/1869\",[673,76.246]],[\"comment/1869\",[]],[\"name/1870\",[29,43.794]],[\"comment/1870\",[]],[\"name/1871\",[31,41.081]],[\"comment/1871\",[]],[\"name/1872\",[21,42.806]],[\"comment/1872\",[]],[\"name/1873\",[128,51.679]],[\"comment/1873\",[]],[\"name/1874\",[23,44.891]],[\"comment/1874\",[]],[\"name/1875\",[275,57.788]],[\"comment/1875\",[]],[\"name/1876\",[24,46.124]],[\"comment/1876\",[]],[\"name/1877\",[667,67.773]],[\"comment/1877\",[]],[\"name/1878\",[668,67.773]],[\"comment/1878\",[]],[\"name/1879\",[669,67.773]],[\"comment/1879\",[]],[\"name/1880\",[33,44.328]],[\"comment/1880\",[]],[\"name/1881\",[34,45.488]],[\"comment/1881\",[]],[\"name/1882\",[276,61.583]],[\"comment/1882\",[]],[\"name/1883\",[17,56.787]],[\"comment/1883\",[]],[\"name/1884\",[483,65.26]],[\"comment/1884\",[]],[\"name/1885\",[22,44.057]],[\"comment/1885\",[]],[\"name/1886\",[211,48.731]],[\"comment/1886\",[]],[\"name/1887\",[20,55.044]],[\"comment/1887\",[]],[\"name/1888\",[162,61.583]],[\"comment/1888\",[]],[\"name/1889\",[25,46.457]],[\"comment/1889\",[]],[\"name/1890\",[26,46.802]],[\"comment/1890\",[]],[\"name/1891\",[27,47.529]],[\"comment/1891\",[]],[\"name/1892\",[28,47.529]],[\"comment/1892\",[]],[\"name/1893\",[30,47.159]],[\"comment/1893\",[]],[\"name/1894\",[32,47.159]],[\"comment/1894\",[]],[\"name/1895\",[35,44.328]],[\"comment/1895\",[]],[\"name/1896\",[36,46.124]],[\"comment/1896\",[]],[\"name/1897\",[674,76.246]],[\"comment/1897\",[]],[\"name/1898\",[110,50.597]],[\"comment/1898\",[]],[\"name/1899\",[158,65.26]],[\"comment/1899\",[]],[\"name/1900\",[130,60.152]],[\"comment/1900\",[]],[\"name/1901\",[125,60.152]],[\"comment/1901\",[]],[\"name/1902\",[36,46.124]],[\"comment/1902\",[]],[\"name/1903\",[159,71.138]],[\"comment/1903\",[]],[\"name/1904\",[160,60.152]],[\"comment/1904\",[]],[\"name/1905\",[161,71.138]],[\"comment/1905\",[]],[\"name/1906\",[162,61.583]],[\"comment/1906\",[]],[\"name/1907\",[163,67.773]],[\"comment/1907\",[]],[\"name/1908\",[164,71.138]],[\"comment/1908\",[]],[\"name/1909\",[165,71.138]],[\"comment/1909\",[]],[\"name/1910\",[166,58.9]],[\"comment/1910\",[]],[\"name/1911\",[167,55.877]],[\"comment/1911\",[]],[\"name/1912\",[168,71.138]],[\"comment/1912\",[]],[\"name/1913\",[169,71.138]],[\"comment/1913\",[]],[\"name/1914\",[111,54.274]],[\"comment/1914\",[]],[\"name/1915\",[112,56.787]],[\"comment/1915\",[]],[\"name/1916\",[31,41.081]],[\"comment/1916\",[]],[\"name/1917\",[21,42.806]],[\"comment/1917\",[]],[\"name/1918\",[29,43.794]],[\"comment/1918\",[]],[\"name/1919\",[113,58.9]],[\"comment/1919\",[]],[\"name/1920\",[114,60.152]],[\"comment/1920\",[]],[\"name/1921\",[115,52.892]],[\"comment/1921\",[]],[\"name/1922\",[116,60.152]],[\"comment/1922\",[]],[\"name/1923\",[117,60.152]],[\"comment/1923\",[]],[\"name/1924\",[118,57.788]],[\"comment/1924\",[]],[\"name/1925\",[119,58.9]],[\"comment/1925\",[]],[\"name/1926\",[120,58.9]],[\"comment/1926\",[]],[\"name/1927\",[121,58.9]],[\"comment/1927\",[]],[\"name/1928\",[122,60.152]],[\"comment/1928\",[]],[\"name/1929\",[110,50.597]],[\"comment/1929\",[]],[\"name/1930\",[123,60.152]],[\"comment/1930\",[]],[\"name/1931\",[124,60.152]],[\"comment/1931\",[]],[\"name/1932\",[126,60.152]],[\"comment/1932\",[]],[\"name/1933\",[127,60.152]],[\"comment/1933\",[]],[\"name/1934\",[23,44.891]],[\"comment/1934\",[]],[\"name/1935\",[128,51.679]],[\"comment/1935\",[]],[\"name/1936\",[129,60.152]],[\"comment/1936\",[]],[\"name/1937\",[131,58.9]],[\"comment/1937\",[]],[\"name/1938\",[132,54.274]],[\"comment/1938\",[]],[\"name/1939\",[133,54.274]],[\"comment/1939\",[]],[\"name/1940\",[134,54.274]],[\"comment/1940\",[]],[\"name/1941\",[135,54.274]],[\"comment/1941\",[]],[\"name/1942\",[136,54.274]],[\"comment/1942\",[]],[\"name/1943\",[137,54.274]],[\"comment/1943\",[]],[\"name/1944\",[138,54.274]],[\"comment/1944\",[]],[\"name/1945\",[139,54.274]],[\"comment/1945\",[]],[\"name/1946\",[140,54.274]],[\"comment/1946\",[]],[\"name/1947\",[141,54.274]],[\"comment/1947\",[]],[\"name/1948\",[142,54.274]],[\"comment/1948\",[]],[\"name/1949\",[143,54.274]],[\"comment/1949\",[]],[\"name/1950\",[144,54.274]],[\"comment/1950\",[]],[\"name/1951\",[145,54.274]],[\"comment/1951\",[]],[\"name/1952\",[146,54.274]],[\"comment/1952\",[]],[\"name/1953\",[675,76.246]],[\"comment/1953\",[]],[\"name/1954\",[676,76.246]],[\"comment/1954\",[]],[\"name/1955\",[677,76.246]],[\"comment/1955\",[]],[\"name/1956\",[678,71.138]],[\"comment/1956\",[]],[\"name/1957\",[19,63.253]],[\"comment/1957\",[]],[\"name/1958\",[31,41.081]],[\"comment/1958\",[]],[\"name/1959\",[679,63.253]],[\"comment/1959\",[]],[\"name/1960\",[21,42.806]],[\"comment/1960\",[]],[\"name/1961\",[25,46.457]],[\"comment/1961\",[]],[\"name/1962\",[33,44.328]],[\"comment/1962\",[]],[\"name/1963\",[34,45.488]],[\"comment/1963\",[]],[\"name/1964\",[35,44.328]],[\"comment/1964\",[]],[\"name/1965\",[680,76.246]],[\"comment/1965\",[]],[\"name/1966\",[681,76.246]],[\"comment/1966\",[]],[\"name/1967\",[610,71.138]],[\"comment/1967\",[]],[\"name/1968\",[58,43.538]],[\"comment/1968\",[]],[\"name/1969\",[41,67.773]],[\"comment/1969\",[]],[\"name/1970\",[61,44.891]],[\"comment/1970\",[]],[\"name/1971\",[53,58.9]],[\"comment/1971\",[]],[\"name/1972\",[682,76.246]],[\"comment/1972\",[]],[\"name/1973\",[683,76.246]],[\"comment/1973\",[]],[\"name/1974\",[684,76.246]],[\"comment/1974\",[]],[\"name/1975\",[36,46.124]],[\"comment/1975\",[]],[\"name/1976\",[685,76.246]],[\"comment/1976\",[]],[\"name/1977\",[686,76.246]],[\"comment/1977\",[]],[\"name/1978\",[167,55.877]],[\"comment/1978\",[]],[\"name/1979\",[166,58.9]],[\"comment/1979\",[]],[\"name/1980\",[286,67.773]],[\"comment/1980\",[]],[\"name/1981\",[176,65.26]],[\"comment/1981\",[]],[\"name/1982\",[687,76.246]],[\"comment/1982\",[]],[\"name/1983\",[688,76.246]],[\"comment/1983\",[]],[\"name/1984\",[167,55.877]],[\"comment/1984\",[]],[\"name/1985\",[166,58.9]],[\"comment/1985\",[]],[\"name/1986\",[286,67.773]],[\"comment/1986\",[]],[\"name/1987\",[176,65.26]],[\"comment/1987\",[]],[\"name/1988\",[304,71.138]],[\"comment/1988\",[]],[\"name/1989\",[452,48.314]],[\"comment/1989\",[]],[\"name/1990\",[296,71.138]],[\"comment/1990\",[]],[\"name/1991\",[689,76.246]],[\"comment/1991\",[]],[\"name/1992\",[292,71.138]],[\"comment/1992\",[]],[\"name/1993\",[690,71.138]],[\"comment/1993\",[]],[\"name/1994\",[691,71.138]],[\"comment/1994\",[]],[\"name/1995\",[621,61.583]],[\"comment/1995\",[]],[\"name/1996\",[692,76.246]],[\"comment/1996\",[]],[\"name/1997\",[693,76.246]],[\"comment/1997\",[]],[\"name/1998\",[49,40.693]],[\"comment/1998\",[]],[\"name/1999\",[278,63.253]],[\"comment/1999\",[]],[\"name/2000\",[694,76.246]],[\"comment/2000\",[]],[\"name/2001\",[695,76.246]],[\"comment/2001\",[]],[\"name/2002\",[294,67.773]],[\"comment/2002\",[]],[\"name/2003\",[31,41.081]],[\"comment/2003\",[]],[\"name/2004\",[35,44.328]],[\"comment/2004\",[]],[\"name/2005\",[696,76.246]],[\"comment/2005\",[]],[\"name/2006\",[294,67.773]],[\"comment/2006\",[]],[\"name/2007\",[111,54.274]],[\"comment/2007\",[]],[\"name/2008\",[621,61.583]],[\"comment/2008\",[]],[\"name/2009\",[690,71.138]],[\"comment/2009\",[]],[\"name/2010\",[691,71.138]],[\"comment/2010\",[]],[\"name/2011\",[35,44.328]],[\"comment/2011\",[]],[\"name/2012\",[697,76.246]],[\"comment/2012\",[]],[\"name/2013\",[452,48.314]],[\"comment/2013\",[]],[\"name/2014\",[698,76.246]],[\"comment/2014\",[]],[\"name/2015\",[297,71.138]],[\"comment/2015\",[]],[\"name/2016\",[699,76.246]],[\"comment/2016\",[]],[\"name/2017\",[700,71.138]],[\"comment/2017\",[]],[\"name/2018\",[582,67.773]],[\"comment/2018\",[]],[\"name/2019\",[583,67.773]],[\"comment/2019\",[]],[\"name/2020\",[648,65.26]],[\"comment/2020\",[]],[\"name/2021\",[42,41.081]],[\"comment/2021\",[]],[\"name/2022\",[548,57.788]],[\"comment/2022\",[]],[\"name/2023\",[641,67.773]],[\"comment/2023\",[]],[\"name/2024\",[701,76.246]],[\"comment/2024\",[]],[\"name/2025\",[702,76.246]],[\"comment/2025\",[]],[\"name/2026\",[703,71.138]],[\"comment/2026\",[]],[\"name/2027\",[618,63.253]],[\"comment/2027\",[]],[\"name/2028\",[704,76.246]],[\"comment/2028\",[]],[\"name/2029\",[705,71.138]],[\"comment/2029\",[]],[\"name/2030\",[706,76.246]],[\"comment/2030\",[]],[\"name/2031\",[707,71.138]],[\"comment/2031\",[]],[\"name/2032\",[708,71.138]],[\"comment/2032\",[]],[\"name/2033\",[709,71.138]],[\"comment/2033\",[]],[\"name/2034\",[710,71.138]],[\"comment/2034\",[]],[\"name/2035\",[617,63.253]],[\"comment/2035\",[]],[\"name/2036\",[620,63.253]],[\"comment/2036\",[]],[\"name/2037\",[622,60.152]],[\"comment/2037\",[]],[\"name/2038\",[656,67.773]],[\"comment/2038\",[]],[\"name/2039\",[711,71.138]],[\"comment/2039\",[]],[\"name/2040\",[712,71.138]],[\"comment/2040\",[]],[\"name/2041\",[632,67.773]],[\"comment/2041\",[]],[\"name/2042\",[633,67.773]],[\"comment/2042\",[]],[\"name/2043\",[634,67.773]],[\"comment/2043\",[]],[\"name/2044\",[635,67.773]],[\"comment/2044\",[]],[\"name/2045\",[636,67.773]],[\"comment/2045\",[]],[\"name/2046\",[21,42.806]],[\"comment/2046\",[]],[\"name/2047\",[337,67.773]],[\"comment/2047\",[]],[\"name/2048\",[31,41.081]],[\"comment/2048\",[]],[\"name/2049\",[361,63.253]],[\"comment/2049\",[]],[\"name/2050\",[713,71.138]],[\"comment/2050\",[]],[\"name/2051\",[700,71.138]],[\"comment/2051\",[]],[\"name/2052\",[678,71.138]],[\"comment/2052\",[]],[\"name/2053\",[330,67.773]],[\"comment/2053\",[]],[\"name/2054\",[569,71.138]],[\"comment/2054\",[]],[\"name/2055\",[714,65.26]],[\"comment/2055\",[]],[\"name/2056\",[715,67.773]],[\"comment/2056\",[]],[\"name/2057\",[716,63.253]],[\"comment/2057\",[]],[\"name/2058\",[717,67.773]],[\"comment/2058\",[]],[\"name/2059\",[649,67.773]],[\"comment/2059\",[]],[\"name/2060\",[718,71.138]],[\"comment/2060\",[]],[\"name/2061\",[25,46.457]],[\"comment/2061\",[]],[\"name/2062\",[719,71.138]],[\"comment/2062\",[]],[\"name/2063\",[115,52.892]],[\"comment/2063\",[]],[\"name/2064\",[365,65.26]],[\"comment/2064\",[]],[\"name/2065\",[367,67.773]],[\"comment/2065\",[]],[\"name/2066\",[366,67.773]],[\"comment/2066\",[]],[\"name/2067\",[35,44.328]],[\"comment/2067\",[]],[\"name/2068\",[619,63.253]],[\"comment/2068\",[]],[\"name/2069\",[19,63.253]],[\"comment/2069\",[]],[\"name/2070\",[679,63.253]],[\"comment/2070\",[]],[\"name/2071\",[310,61.583]],[\"comment/2071\",[]],[\"name/2072\",[309,60.152]],[\"comment/2072\",[]],[\"name/2073\",[720,71.138]],[\"comment/2073\",[]],[\"name/2074\",[648,65.26]],[\"comment/2074\",[]],[\"name/2075\",[624,61.583]],[\"comment/2075\",[]],[\"name/2076\",[625,61.583]],[\"comment/2076\",[]],[\"name/2077\",[626,61.583]],[\"comment/2077\",[]],[\"name/2078\",[627,61.583]],[\"comment/2078\",[]],[\"name/2079\",[33,44.328]],[\"comment/2079\",[]],[\"name/2080\",[34,45.488]],[\"comment/2080\",[]],[\"name/2081\",[721,76.246]],[\"comment/2081\",[]],[\"name/2082\",[649,67.773]],[\"comment/2082\",[]],[\"name/2083\",[722,71.138]],[\"comment/2083\",[]],[\"name/2084\",[723,76.246]],[\"comment/2084\",[]],[\"name/2085\",[616,65.26]],[\"comment/2085\",[]],[\"name/2086\",[31,41.081]],[\"comment/2086\",[]],[\"name/2087\",[21,42.806]],[\"comment/2087\",[]],[\"name/2088\",[115,52.892]],[\"comment/2088\",[]],[\"name/2089\",[309,60.152]],[\"comment/2089\",[]],[\"name/2090\",[622,60.152]],[\"comment/2090\",[]],[\"name/2091\",[35,44.328]],[\"comment/2091\",[]],[\"name/2092\",[26,46.802]],[\"comment/2092\",[]],[\"name/2093\",[621,61.583]],[\"comment/2093\",[]],[\"name/2094\",[624,61.583]],[\"comment/2094\",[]],[\"name/2095\",[625,61.583]],[\"comment/2095\",[]],[\"name/2096\",[626,61.583]],[\"comment/2096\",[]],[\"name/2097\",[627,61.583]],[\"comment/2097\",[]],[\"name/2098\",[618,63.253]],[\"comment/2098\",[]],[\"name/2099\",[707,71.138]],[\"comment/2099\",[]],[\"name/2100\",[705,71.138]],[\"comment/2100\",[]],[\"name/2101\",[33,44.328]],[\"comment/2101\",[]],[\"name/2102\",[720,71.138]],[\"comment/2102\",[]],[\"name/2103\",[633,67.773]],[\"comment/2103\",[]],[\"name/2104\",[703,71.138]],[\"comment/2104\",[]],[\"name/2105\",[708,71.138]],[\"comment/2105\",[]],[\"name/2106\",[709,71.138]],[\"comment/2106\",[]],[\"name/2107\",[710,71.138]],[\"comment/2107\",[]],[\"name/2108\",[617,63.253]],[\"comment/2108\",[]],[\"name/2109\",[620,63.253]],[\"comment/2109\",[]],[\"name/2110\",[656,67.773]],[\"comment/2110\",[]],[\"name/2111\",[711,71.138]],[\"comment/2111\",[]],[\"name/2112\",[712,71.138]],[\"comment/2112\",[]],[\"name/2113\",[632,67.773]],[\"comment/2113\",[]],[\"name/2114\",[634,67.773]],[\"comment/2114\",[]],[\"name/2115\",[635,67.773]],[\"comment/2115\",[]],[\"name/2116\",[636,67.773]],[\"comment/2116\",[]],[\"name/2117\",[714,65.26]],[\"comment/2117\",[]],[\"name/2118\",[715,67.773]],[\"comment/2118\",[]],[\"name/2119\",[716,63.253]],[\"comment/2119\",[]],[\"name/2120\",[717,67.773]],[\"comment/2120\",[]],[\"name/2121\",[718,71.138]],[\"comment/2121\",[]],[\"name/2122\",[25,46.457]],[\"comment/2122\",[]],[\"name/2123\",[719,71.138]],[\"comment/2123\",[]],[\"name/2124\",[619,63.253]],[\"comment/2124\",[]],[\"name/2125\",[19,63.253]],[\"comment/2125\",[]],[\"name/2126\",[679,63.253]],[\"comment/2126\",[]],[\"name/2127\",[310,61.583]],[\"comment/2127\",[]],[\"name/2128\",[648,65.26]],[\"comment/2128\",[]],[\"name/2129\",[679,63.253]],[\"comment/2129\",[]],[\"name/2130\",[724,76.246]],[\"comment/2130\",[]],[\"name/2131\",[309,60.152]],[\"comment/2131\",[]],[\"name/2132\",[548,57.788]],[\"comment/2132\",[]],[\"name/2133\",[725,76.246]],[\"comment/2133\",[]],[\"name/2134\",[726,76.246]],[\"comment/2134\",[]],[\"name/2135\",[727,76.246]],[\"comment/2135\",[]],[\"name/2136\",[728,76.246]],[\"comment/2136\",[]],[\"name/2137\",[729,76.246]],[\"comment/2137\",[]],[\"name/2138\",[730,76.246]],[\"comment/2138\",[]],[\"name/2139\",[731,76.246]],[\"comment/2139\",[]],[\"name/2140\",[49,40.693]],[\"comment/2140\",[]],[\"name/2141\",[732,76.246]],[\"comment/2141\",[]],[\"name/2142\",[733,76.246]],[\"comment/2142\",[]],[\"name/2143\",[734,76.246]],[\"comment/2143\",[]],[\"name/2144\",[49,40.693]],[\"comment/2144\",[]],[\"name/2145\",[735,76.246]],[\"comment/2145\",[]],[\"name/2146\",[132,54.274]],[\"comment/2146\",[]],[\"name/2147\",[133,54.274]],[\"comment/2147\",[]],[\"name/2148\",[134,54.274]],[\"comment/2148\",[]],[\"name/2149\",[135,54.274]],[\"comment/2149\",[]],[\"name/2150\",[136,54.274]],[\"comment/2150\",[]],[\"name/2151\",[137,54.274]],[\"comment/2151\",[]],[\"name/2152\",[138,54.274]],[\"comment/2152\",[]],[\"name/2153\",[139,54.274]],[\"comment/2153\",[]],[\"name/2154\",[140,54.274]],[\"comment/2154\",[]],[\"name/2155\",[141,54.274]],[\"comment/2155\",[]],[\"name/2156\",[142,54.274]],[\"comment/2156\",[]],[\"name/2157\",[143,54.274]],[\"comment/2157\",[]],[\"name/2158\",[144,54.274]],[\"comment/2158\",[]],[\"name/2159\",[145,54.274]],[\"comment/2159\",[]],[\"name/2160\",[146,54.274]],[\"comment/2160\",[]],[\"name/2161\",[736,76.246]],[\"comment/2161\",[]],[\"name/2162\",[737,76.246]],[\"comment/2162\",[]],[\"name/2163\",[49,40.693]],[\"comment/2163\",[]],[\"name/2164\",[738,71.138]],[\"comment/2164\",[]],[\"name/2165\",[739,76.246]],[\"comment/2165\",[]],[\"name/2166\",[740,76.246]],[\"comment/2166\",[]],[\"name/2167\",[741,76.246]],[\"comment/2167\",[]],[\"name/2168\",[49,40.693]],[\"comment/2168\",[]],[\"name/2169\",[738,71.138]],[\"comment/2169\",[]],[\"name/2170\",[742,76.246]],[\"comment/2170\",[]],[\"name/2171\",[743,76.246]],[\"comment/2171\",[]],[\"name/2172\",[167,55.877]],[\"comment/2172\",[]],[\"name/2173\",[744,76.246]],[\"comment/2173\",[]],[\"name/2174\",[745,76.246]],[\"comment/2174\",[]],[\"name/2175\",[746,76.246]],[\"comment/2175\",[]],[\"name/2176\",[747,76.246]],[\"comment/2176\",[]],[\"name/2177\",[269,57.788]],[\"comment/2177\",[]],[\"name/2178\",[748,76.246]],[\"comment/2178\",[]],[\"name/2179\",[749,76.246]],[\"comment/2179\",[]],[\"name/2180\",[750,76.246]],[\"comment/2180\",[]],[\"name/2181\",[751,76.246]],[\"comment/2181\",[]],[\"name/2182\",[752,76.246]],[\"comment/2182\",[]],[\"name/2183\",[753,76.246]],[\"comment/2183\",[]],[\"name/2184\",[754,76.246]],[\"comment/2184\",[]],[\"name/2185\",[755,76.246]],[\"comment/2185\",[]],[\"name/2186\",[756,76.246]],[\"comment/2186\",[]],[\"name/2187\",[757,76.246]],[\"comment/2187\",[]],[\"name/2188\",[758,76.246]],[\"comment/2188\",[]],[\"name/2189\",[759,76.246]],[\"comment/2189\",[]],[\"name/2190\",[181,60.152]],[\"comment/2190\",[]],[\"name/2191\",[760,76.246]],[\"comment/2191\",[]],[\"name/2192\",[761,76.246]],[\"comment/2192\",[]],[\"name/2193\",[762,76.246]],[\"comment/2193\",[]],[\"name/2194\",[763,76.246]],[\"comment/2194\",[]],[\"name/2195\",[179,55.044]],[\"comment/2195\",[]],[\"name/2196\",[764,76.246]],[\"comment/2196\",[]],[\"name/2197\",[49,40.693]],[\"comment/2197\",[]],[\"name/2198\",[765,76.246]],[\"comment/2198\",[]],[\"name/2199\",[766,76.246]],[\"comment/2199\",[]],[\"name/2200\",[767,76.246]],[\"comment/2200\",[]],[\"name/2201\",[768,76.246]],[\"comment/2201\",[]],[\"name/2202\",[769,76.246]],[\"comment/2202\",[]],[\"name/2203\",[770,76.246]],[\"comment/2203\",[]],[\"name/2204\",[771,76.246]],[\"comment/2204\",[]],[\"name/2205\",[444,67.773]],[\"comment/2205\",[]],[\"name/2206\",[772,76.246]],[\"comment/2206\",[]],[\"name/2207\",[773,76.246]],[\"comment/2207\",[]],[\"name/2208\",[774,76.246]],[\"comment/2208\",[]],[\"name/2209\",[775,76.246]],[\"comment/2209\",[]],[\"name/2210\",[776,76.246]],[\"comment/2210\",[]],[\"name/2211\",[777,76.246]],[\"comment/2211\",[]],[\"name/2212\",[778,76.246]],[\"comment/2212\",[]],[\"name/2213\",[779,76.246]],[\"comment/2213\",[]],[\"name/2214\",[780,76.246]],[\"comment/2214\",[]],[\"name/2215\",[781,76.246]],[\"comment/2215\",[]],[\"name/2216\",[782,76.246]],[\"comment/2216\",[]],[\"name/2217\",[783,76.246]],[\"comment/2217\",[]],[\"name/2218\",[784,76.246]],[\"comment/2218\",[]],[\"name/2219\",[785,76.246]],[\"comment/2219\",[]],[\"name/2220\",[786,76.246]],[\"comment/2220\",[]],[\"name/2221\",[787,76.246]],[\"comment/2221\",[]],[\"name/2222\",[788,76.246]],[\"comment/2222\",[]],[\"name/2223\",[789,76.246]],[\"comment/2223\",[]],[\"name/2224\",[790,76.246]],[\"comment/2224\",[]],[\"name/2225\",[791,76.246]],[\"comment/2225\",[]],[\"name/2226\",[792,76.246]],[\"comment/2226\",[]],[\"name/2227\",[793,76.246]],[\"comment/2227\",[]],[\"name/2228\",[794,76.246]],[\"comment/2228\",[]],[\"name/2229\",[795,76.246]],[\"comment/2229\",[]],[\"name/2230\",[796,76.246]],[\"comment/2230\",[]],[\"name/2231\",[797,76.246]],[\"comment/2231\",[]],[\"name/2232\",[798,76.246]],[\"comment/2232\",[]],[\"name/2233\",[799,76.246]],[\"comment/2233\",[]],[\"name/2234\",[800,76.246]],[\"comment/2234\",[]],[\"name/2235\",[801,76.246]],[\"comment/2235\",[]],[\"name/2236\",[802,76.246]],[\"comment/2236\",[]],[\"name/2237\",[803,76.246]],[\"comment/2237\",[]],[\"name/2238\",[49,40.693]],[\"comment/2238\",[]],[\"name/2239\",[804,76.246]],[\"comment/2239\",[]],[\"name/2240\",[805,76.246]],[\"comment/2240\",[]],[\"name/2241\",[806,76.246]],[\"comment/2241\",[]],[\"name/2242\",[807,76.246]],[\"comment/2242\",[]],[\"name/2243\",[808,76.246]],[\"comment/2243\",[]],[\"name/2244\",[24,46.124]],[\"comment/2244\",[]],[\"name/2245\",[809,76.246]],[\"comment/2245\",[]],[\"name/2246\",[810,76.246]],[\"comment/2246\",[]],[\"name/2247\",[811,76.246]],[\"comment/2247\",[]],[\"name/2248\",[812,76.246]],[\"comment/2248\",[]],[\"name/2249\",[813,76.246]],[\"comment/2249\",[]],[\"name/2250\",[814,76.246]],[\"comment/2250\",[]],[\"name/2251\",[815,76.246]],[\"comment/2251\",[]],[\"name/2252\",[816,76.246]],[\"comment/2252\",[]],[\"name/2253\",[817,76.246]],[\"comment/2253\",[]],[\"name/2254\",[276,61.583]],[\"comment/2254\",[]],[\"name/2255\",[128,51.679]],[\"comment/2255\",[]],[\"name/2256\",[17,56.787]],[\"comment/2256\",[]],[\"name/2257\",[483,65.26]],[\"comment/2257\",[]],[\"name/2258\",[23,44.891]],[\"comment/2258\",[]],[\"name/2259\",[275,57.788]],[\"comment/2259\",[]],[\"name/2260\",[22,44.057]],[\"comment/2260\",[]],[\"name/2261\",[211,48.731]],[\"comment/2261\",[]],[\"name/2262\",[20,55.044]],[\"comment/2262\",[]],[\"name/2263\",[162,61.583]],[\"comment/2263\",[]],[\"name/2264\",[21,42.806]],[\"comment/2264\",[]],[\"name/2265\",[24,46.124]],[\"comment/2265\",[]],[\"name/2266\",[25,46.457]],[\"comment/2266\",[]],[\"name/2267\",[26,46.802]],[\"comment/2267\",[]],[\"name/2268\",[27,47.529]],[\"comment/2268\",[]],[\"name/2269\",[28,47.529]],[\"comment/2269\",[]],[\"name/2270\",[29,43.794]],[\"comment/2270\",[]],[\"name/2271\",[30,47.159]],[\"comment/2271\",[]],[\"name/2272\",[31,41.081]],[\"comment/2272\",[]],[\"name/2273\",[32,47.159]],[\"comment/2273\",[]],[\"name/2274\",[33,44.328]],[\"comment/2274\",[]],[\"name/2275\",[34,45.488]],[\"comment/2275\",[]],[\"name/2276\",[35,44.328]],[\"comment/2276\",[]],[\"name/2277\",[36,46.124]],[\"comment/2277\",[]],[\"name/2278\",[818,76.246]],[\"comment/2278\",[]],[\"name/2279\",[819,76.246]],[\"comment/2279\",[]],[\"name/2280\",[820,76.246]],[\"comment/2280\",[]],[\"name/2281\",[821,76.246]],[\"comment/2281\",[]],[\"name/2282\",[822,76.246]],[\"comment/2282\",[]],[\"name/2283\",[823,76.246]],[\"comment/2283\",[]],[\"name/2284\",[824,76.246]],[\"comment/2284\",[]],[\"name/2285\",[825,76.246]],[\"comment/2285\",[]],[\"name/2286\",[826,76.246]],[\"comment/2286\",[]],[\"name/2287\",[827,76.246]],[\"comment/2287\",[]],[\"name/2288\",[828,76.246]],[\"comment/2288\",[]],[\"name/2289\",[21,42.806]],[\"comment/2289\",[]],[\"name/2290\",[22,44.057]],[\"comment/2290\",[]],[\"name/2291\",[23,44.891]],[\"comment/2291\",[]],[\"name/2292\",[24,46.124]],[\"comment/2292\",[]],[\"name/2293\",[25,46.457]],[\"comment/2293\",[]],[\"name/2294\",[26,46.802]],[\"comment/2294\",[]],[\"name/2295\",[27,47.529]],[\"comment/2295\",[]],[\"name/2296\",[28,47.529]],[\"comment/2296\",[]],[\"name/2297\",[29,43.794]],[\"comment/2297\",[]],[\"name/2298\",[30,47.159]],[\"comment/2298\",[]],[\"name/2299\",[31,41.081]],[\"comment/2299\",[]],[\"name/2300\",[32,47.159]],[\"comment/2300\",[]],[\"name/2301\",[33,44.328]],[\"comment/2301\",[]],[\"name/2302\",[34,45.488]],[\"comment/2302\",[]],[\"name/2303\",[35,44.328]],[\"comment/2303\",[]],[\"name/2304\",[36,46.124]],[\"comment/2304\",[]],[\"name/2305\",[829,76.246]],[\"comment/2305\",[]],[\"name/2306\",[830,76.246]],[\"comment/2306\",[]],[\"name/2307\",[31,41.081]],[\"comment/2307\",[]],[\"name/2308\",[29,43.794]],[\"comment/2308\",[]],[\"name/2309\",[831,76.246]],[\"comment/2309\",[]],[\"name/2310\",[166,58.9]],[\"comment/2310\",[]],[\"name/2311\",[160,60.152]],[\"comment/2311\",[]],[\"name/2312\",[23,44.891]],[\"comment/2312\",[]],[\"name/2313\",[211,48.731]],[\"comment/2313\",[]],[\"name/2314\",[21,42.806]],[\"comment/2314\",[]],[\"name/2315\",[22,44.057]],[\"comment/2315\",[]],[\"name/2316\",[24,46.124]],[\"comment/2316\",[]],[\"name/2317\",[25,46.457]],[\"comment/2317\",[]],[\"name/2318\",[26,46.802]],[\"comment/2318\",[]],[\"name/2319\",[27,47.529]],[\"comment/2319\",[]],[\"name/2320\",[28,47.529]],[\"comment/2320\",[]],[\"name/2321\",[29,43.794]],[\"comment/2321\",[]],[\"name/2322\",[30,47.159]],[\"comment/2322\",[]],[\"name/2323\",[31,41.081]],[\"comment/2323\",[]],[\"name/2324\",[32,47.159]],[\"comment/2324\",[]],[\"name/2325\",[33,44.328]],[\"comment/2325\",[]],[\"name/2326\",[34,45.488]],[\"comment/2326\",[]],[\"name/2327\",[35,44.328]],[\"comment/2327\",[]],[\"name/2328\",[36,46.124]],[\"comment/2328\",[]],[\"name/2329\",[832,76.246]],[\"comment/2329\",[]],[\"name/2330\",[166,58.9]],[\"comment/2330\",[]],[\"name/2331\",[160,60.152]],[\"comment/2331\",[]],[\"name/2332\",[276,61.583]],[\"comment/2332\",[]],[\"name/2333\",[128,51.679]],[\"comment/2333\",[]],[\"name/2334\",[17,56.787]],[\"comment/2334\",[]],[\"name/2335\",[483,65.26]],[\"comment/2335\",[]],[\"name/2336\",[23,44.891]],[\"comment/2336\",[]],[\"name/2337\",[275,57.788]],[\"comment/2337\",[]],[\"name/2338\",[22,44.057]],[\"comment/2338\",[]],[\"name/2339\",[211,48.731]],[\"comment/2339\",[]],[\"name/2340\",[20,55.044]],[\"comment/2340\",[]],[\"name/2341\",[162,61.583]],[\"comment/2341\",[]],[\"name/2342\",[21,42.806]],[\"comment/2342\",[]],[\"name/2343\",[24,46.124]],[\"comment/2343\",[]],[\"name/2344\",[25,46.457]],[\"comment/2344\",[]],[\"name/2345\",[26,46.802]],[\"comment/2345\",[]],[\"name/2346\",[27,47.529]],[\"comment/2346\",[]],[\"name/2347\",[28,47.529]],[\"comment/2347\",[]],[\"name/2348\",[29,43.794]],[\"comment/2348\",[]],[\"name/2349\",[30,47.159]],[\"comment/2349\",[]],[\"name/2350\",[31,41.081]],[\"comment/2350\",[]],[\"name/2351\",[32,47.159]],[\"comment/2351\",[]],[\"name/2352\",[33,44.328]],[\"comment/2352\",[]],[\"name/2353\",[34,45.488]],[\"comment/2353\",[]],[\"name/2354\",[35,44.328]],[\"comment/2354\",[]],[\"name/2355\",[36,46.124]],[\"comment/2355\",[]],[\"name/2356\",[833,76.246]],[\"comment/2356\",[]],[\"name/2357\",[42,41.081]],[\"comment/2357\",[]],[\"name/2358\",[506,63.253]],[\"comment/2358\",[]],[\"name/2359\",[834,67.773]],[\"comment/2359\",[]],[\"name/2360\",[835,76.246]],[\"comment/2360\",[]],[\"name/2361\",[836,76.246]],[\"comment/2361\",[]],[\"name/2362\",[837,76.246]],[\"comment/2362\",[]],[\"name/2363\",[444,67.773]],[\"comment/2363\",[]],[\"name/2364\",[271,61.583]],[\"comment/2364\",[]],[\"name/2365\",[838,76.246]],[\"comment/2365\",[]],[\"name/2366\",[839,67.773]],[\"comment/2366\",[]],[\"name/2367\",[840,76.246]],[\"comment/2367\",[]],[\"name/2368\",[841,76.246]],[\"comment/2368\",[]],[\"name/2369\",[842,76.246]],[\"comment/2369\",[]],[\"name/2370\",[843,76.246]],[\"comment/2370\",[]],[\"name/2371\",[844,76.246]],[\"comment/2371\",[]],[\"name/2372\",[158,65.26]],[\"comment/2372\",[]],[\"name/2373\",[679,63.253]],[\"comment/2373\",[]],[\"name/2374\",[845,76.246]],[\"comment/2374\",[]],[\"name/2375\",[846,76.246]],[\"comment/2375\",[]],[\"name/2376\",[847,67.773]],[\"comment/2376\",[]],[\"name/2377\",[561,65.26]],[\"comment/2377\",[]],[\"name/2378\",[848,76.246]],[\"comment/2378\",[]],[\"name/2379\",[49,40.693]],[\"comment/2379\",[]],[\"name/2380\",[849,71.138]],[\"comment/2380\",[]],[\"name/2381\",[21,42.806]],[\"comment/2381\",[]],[\"name/2382\",[22,44.057]],[\"comment/2382\",[]],[\"name/2383\",[23,44.891]],[\"comment/2383\",[]],[\"name/2384\",[24,46.124]],[\"comment/2384\",[]],[\"name/2385\",[25,46.457]],[\"comment/2385\",[]],[\"name/2386\",[26,46.802]],[\"comment/2386\",[]],[\"name/2387\",[27,47.529]],[\"comment/2387\",[]],[\"name/2388\",[28,47.529]],[\"comment/2388\",[]],[\"name/2389\",[29,43.794]],[\"comment/2389\",[]],[\"name/2390\",[30,47.159]],[\"comment/2390\",[]],[\"name/2391\",[31,41.081]],[\"comment/2391\",[]],[\"name/2392\",[32,47.159]],[\"comment/2392\",[]],[\"name/2393\",[33,44.328]],[\"comment/2393\",[]],[\"name/2394\",[34,45.488]],[\"comment/2394\",[]],[\"name/2395\",[35,44.328]],[\"comment/2395\",[]],[\"name/2396\",[36,46.124]],[\"comment/2396\",[]],[\"name/2397\",[850,76.246]],[\"comment/2397\",[]],[\"name/2398\",[851,76.246]],[\"comment/2398\",[]],[\"name/2399\",[852,76.246]],[\"comment/2399\",[]],[\"name/2400\",[853,76.246]],[\"comment/2400\",[]],[\"name/2401\",[854,76.246]],[\"comment/2401\",[]],[\"name/2402\",[855,76.246]],[\"comment/2402\",[]],[\"name/2403\",[856,76.246]],[\"comment/2403\",[]],[\"name/2404\",[18,71.138]],[\"comment/2404\",[]],[\"name/2405\",[22,44.057]],[\"comment/2405\",[]],[\"name/2406\",[211,48.731]],[\"comment/2406\",[]],[\"name/2407\",[20,55.044]],[\"comment/2407\",[]],[\"name/2408\",[21,42.806]],[\"comment/2408\",[]],[\"name/2409\",[23,44.891]],[\"comment/2409\",[]],[\"name/2410\",[24,46.124]],[\"comment/2410\",[]],[\"name/2411\",[25,46.457]],[\"comment/2411\",[]],[\"name/2412\",[26,46.802]],[\"comment/2412\",[]],[\"name/2413\",[27,47.529]],[\"comment/2413\",[]],[\"name/2414\",[28,47.529]],[\"comment/2414\",[]],[\"name/2415\",[29,43.794]],[\"comment/2415\",[]],[\"name/2416\",[30,47.159]],[\"comment/2416\",[]],[\"name/2417\",[31,41.081]],[\"comment/2417\",[]],[\"name/2418\",[32,47.159]],[\"comment/2418\",[]],[\"name/2419\",[33,44.328]],[\"comment/2419\",[]],[\"name/2420\",[34,45.488]],[\"comment/2420\",[]],[\"name/2421\",[35,44.328]],[\"comment/2421\",[]],[\"name/2422\",[36,46.124]],[\"comment/2422\",[]],[\"name/2423\",[857,76.246]],[\"comment/2423\",[]],[\"name/2424\",[858,65.26]],[\"comment/2424\",[]],[\"name/2425\",[46,67.773]],[\"comment/2425\",[]],[\"name/2426\",[859,76.246]],[\"comment/2426\",[]],[\"name/2427\",[860,71.138]],[\"comment/2427\",[]],[\"name/2428\",[160,60.152]],[\"comment/2428\",[]],[\"name/2429\",[22,44.057]],[\"comment/2429\",[]],[\"name/2430\",[211,48.731]],[\"comment/2430\",[]],[\"name/2431\",[861,76.246]],[\"comment/2431\",[]],[\"name/2432\",[862,76.246]],[\"comment/2432\",[]],[\"name/2433\",[561,65.26]],[\"comment/2433\",[]],[\"name/2434\",[21,42.806]],[\"comment/2434\",[]],[\"name/2435\",[22,44.057]],[\"comment/2435\",[]],[\"name/2436\",[23,44.891]],[\"comment/2436\",[]],[\"name/2437\",[24,46.124]],[\"comment/2437\",[]],[\"name/2438\",[25,46.457]],[\"comment/2438\",[]],[\"name/2439\",[26,46.802]],[\"comment/2439\",[]],[\"name/2440\",[27,47.529]],[\"comment/2440\",[]],[\"name/2441\",[28,47.529]],[\"comment/2441\",[]],[\"name/2442\",[29,43.794]],[\"comment/2442\",[]],[\"name/2443\",[30,47.159]],[\"comment/2443\",[]],[\"name/2444\",[31,41.081]],[\"comment/2444\",[]],[\"name/2445\",[32,47.159]],[\"comment/2445\",[]],[\"name/2446\",[33,44.328]],[\"comment/2446\",[]],[\"name/2447\",[34,45.488]],[\"comment/2447\",[]],[\"name/2448\",[35,44.328]],[\"comment/2448\",[]],[\"name/2449\",[36,46.124]],[\"comment/2449\",[]],[\"name/2450\",[863,76.246]],[\"comment/2450\",[]],[\"name/2451\",[864,76.246]],[\"comment/2451\",[]],[\"name/2452\",[23,44.891]],[\"comment/2452\",[]],[\"name/2453\",[21,42.806]],[\"comment/2453\",[]],[\"name/2454\",[22,44.057]],[\"comment/2454\",[]],[\"name/2455\",[24,46.124]],[\"comment/2455\",[]],[\"name/2456\",[25,46.457]],[\"comment/2456\",[]],[\"name/2457\",[26,46.802]],[\"comment/2457\",[]],[\"name/2458\",[27,47.529]],[\"comment/2458\",[]],[\"name/2459\",[28,47.529]],[\"comment/2459\",[]],[\"name/2460\",[29,43.794]],[\"comment/2460\",[]],[\"name/2461\",[30,47.159]],[\"comment/2461\",[]],[\"name/2462\",[31,41.081]],[\"comment/2462\",[]],[\"name/2463\",[32,47.159]],[\"comment/2463\",[]],[\"name/2464\",[33,44.328]],[\"comment/2464\",[]],[\"name/2465\",[34,45.488]],[\"comment/2465\",[]],[\"name/2466\",[35,44.328]],[\"comment/2466\",[]],[\"name/2467\",[36,46.124]],[\"comment/2467\",[]],[\"name/2468\",[865,76.246]],[\"comment/2468\",[]],[\"name/2469\",[160,60.152]],[\"comment/2469\",[]],[\"name/2470\",[167,55.877]],[\"comment/2470\",[]],[\"name/2471\",[866,65.26]],[\"comment/2471\",[]],[\"name/2472\",[166,58.9]],[\"comment/2472\",[]],[\"name/2473\",[211,48.731]],[\"comment/2473\",[]],[\"name/2474\",[867,76.246]],[\"comment/2474\",[]],[\"name/2475\",[667,67.773]],[\"comment/2475\",[]],[\"name/2476\",[668,67.773]],[\"comment/2476\",[]],[\"name/2477\",[128,51.679]],[\"comment/2477\",[]],[\"name/2478\",[272,71.138]],[\"comment/2478\",[]],[\"name/2479\",[270,63.253]],[\"comment/2479\",[]],[\"name/2480\",[271,61.583]],[\"comment/2480\",[]],[\"name/2481\",[23,44.891]],[\"comment/2481\",[]],[\"name/2482\",[275,57.788]],[\"comment/2482\",[]],[\"name/2483\",[669,67.773]],[\"comment/2483\",[]],[\"name/2484\",[22,44.057]],[\"comment/2484\",[]],[\"name/2485\",[276,61.583]],[\"comment/2485\",[]],[\"name/2486\",[868,76.246]],[\"comment/2486\",[]],[\"name/2487\",[869,76.246]],[\"comment/2487\",[]],[\"name/2488\",[273,71.138]],[\"comment/2488\",[]],[\"name/2489\",[20,55.044]],[\"comment/2489\",[]],[\"name/2490\",[870,76.246]],[\"comment/2490\",[]],[\"name/2491\",[33,44.328]],[\"comment/2491\",[]],[\"name/2492\",[34,45.488]],[\"comment/2492\",[]],[\"name/2493\",[29,43.794]],[\"comment/2493\",[]],[\"name/2494\",[26,46.802]],[\"comment/2494\",[]],[\"name/2495\",[21,42.806]],[\"comment/2495\",[]],[\"name/2496\",[31,41.081]],[\"comment/2496\",[]],[\"name/2497\",[25,46.457]],[\"comment/2497\",[]],[\"name/2498\",[30,47.159]],[\"comment/2498\",[]],[\"name/2499\",[32,47.159]],[\"comment/2499\",[]],[\"name/2500\",[24,46.124]],[\"comment/2500\",[]],[\"name/2501\",[36,46.124]],[\"comment/2501\",[]],[\"name/2502\",[27,47.529]],[\"comment/2502\",[]],[\"name/2503\",[28,47.529]],[\"comment/2503\",[]],[\"name/2504\",[871,76.246]],[\"comment/2504\",[]],[\"name/2505\",[211,48.731]],[\"comment/2505\",[]],[\"name/2506\",[866,65.26]],[\"comment/2506\",[]],[\"name/2507\",[167,55.877]],[\"comment/2507\",[]],[\"name/2508\",[20,55.044]],[\"comment/2508\",[]],[\"name/2509\",[872,67.773]],[\"comment/2509\",[]],[\"name/2510\",[21,42.806]],[\"comment/2510\",[]],[\"name/2511\",[22,44.057]],[\"comment/2511\",[]],[\"name/2512\",[23,44.891]],[\"comment/2512\",[]],[\"name/2513\",[24,46.124]],[\"comment/2513\",[]],[\"name/2514\",[25,46.457]],[\"comment/2514\",[]],[\"name/2515\",[26,46.802]],[\"comment/2515\",[]],[\"name/2516\",[27,47.529]],[\"comment/2516\",[]],[\"name/2517\",[28,47.529]],[\"comment/2517\",[]],[\"name/2518\",[29,43.794]],[\"comment/2518\",[]],[\"name/2519\",[30,47.159]],[\"comment/2519\",[]],[\"name/2520\",[31,41.081]],[\"comment/2520\",[]],[\"name/2521\",[32,47.159]],[\"comment/2521\",[]],[\"name/2522\",[33,44.328]],[\"comment/2522\",[]],[\"name/2523\",[34,45.488]],[\"comment/2523\",[]],[\"name/2524\",[35,44.328]],[\"comment/2524\",[]],[\"name/2525\",[36,46.124]],[\"comment/2525\",[]],[\"name/2526\",[873,76.246]],[\"comment/2526\",[]],[\"name/2527\",[17,56.787]],[\"comment/2527\",[]],[\"name/2528\",[211,48.731]],[\"comment/2528\",[]],[\"name/2529\",[866,65.26]],[\"comment/2529\",[]],[\"name/2530\",[336,65.26]],[\"comment/2530\",[]],[\"name/2531\",[167,55.877]],[\"comment/2531\",[]],[\"name/2532\",[432,57.788]],[\"comment/2532\",[]],[\"name/2533\",[20,55.044]],[\"comment/2533\",[]],[\"name/2534\",[872,67.773]],[\"comment/2534\",[]],[\"name/2535\",[21,42.806]],[\"comment/2535\",[]],[\"name/2536\",[22,44.057]],[\"comment/2536\",[]],[\"name/2537\",[23,44.891]],[\"comment/2537\",[]],[\"name/2538\",[24,46.124]],[\"comment/2538\",[]],[\"name/2539\",[25,46.457]],[\"comment/2539\",[]],[\"name/2540\",[26,46.802]],[\"comment/2540\",[]],[\"name/2541\",[27,47.529]],[\"comment/2541\",[]],[\"name/2542\",[28,47.529]],[\"comment/2542\",[]],[\"name/2543\",[29,43.794]],[\"comment/2543\",[]],[\"name/2544\",[30,47.159]],[\"comment/2544\",[]],[\"name/2545\",[31,41.081]],[\"comment/2545\",[]],[\"name/2546\",[32,47.159]],[\"comment/2546\",[]],[\"name/2547\",[33,44.328]],[\"comment/2547\",[]],[\"name/2548\",[34,45.488]],[\"comment/2548\",[]],[\"name/2549\",[35,44.328]],[\"comment/2549\",[]],[\"name/2550\",[36,46.124]],[\"comment/2550\",[]],[\"name/2551\",[874,76.246]],[\"comment/2551\",[]],[\"name/2552\",[435,61.583]],[\"comment/2552\",[]],[\"name/2553\",[17,56.787]],[\"comment/2553\",[]],[\"name/2554\",[211,48.731]],[\"comment/2554\",[]],[\"name/2555\",[866,65.26]],[\"comment/2555\",[]],[\"name/2556\",[336,65.26]],[\"comment/2556\",[]],[\"name/2557\",[167,55.877]],[\"comment/2557\",[]],[\"name/2558\",[432,57.788]],[\"comment/2558\",[]],[\"name/2559\",[20,55.044]],[\"comment/2559\",[]],[\"name/2560\",[872,67.773]],[\"comment/2560\",[]],[\"name/2561\",[21,42.806]],[\"comment/2561\",[]],[\"name/2562\",[22,44.057]],[\"comment/2562\",[]],[\"name/2563\",[23,44.891]],[\"comment/2563\",[]],[\"name/2564\",[24,46.124]],[\"comment/2564\",[]],[\"name/2565\",[25,46.457]],[\"comment/2565\",[]],[\"name/2566\",[26,46.802]],[\"comment/2566\",[]],[\"name/2567\",[27,47.529]],[\"comment/2567\",[]],[\"name/2568\",[28,47.529]],[\"comment/2568\",[]],[\"name/2569\",[29,43.794]],[\"comment/2569\",[]],[\"name/2570\",[30,47.159]],[\"comment/2570\",[]],[\"name/2571\",[31,41.081]],[\"comment/2571\",[]],[\"name/2572\",[32,47.159]],[\"comment/2572\",[]],[\"name/2573\",[33,44.328]],[\"comment/2573\",[]],[\"name/2574\",[34,45.488]],[\"comment/2574\",[]],[\"name/2575\",[35,44.328]],[\"comment/2575\",[]],[\"name/2576\",[36,46.124]],[\"comment/2576\",[]],[\"name/2577\",[875,76.246]],[\"comment/2577\",[]],[\"name/2578\",[876,67.773]],[\"comment/2578\",[]],[\"name/2579\",[834,67.773]],[\"comment/2579\",[]],[\"name/2580\",[42,41.081]],[\"comment/2580\",[]],[\"name/2581\",[877,71.138]],[\"comment/2581\",[]],[\"name/2582\",[878,71.138]],[\"comment/2582\",[]],[\"name/2583\",[847,67.773]],[\"comment/2583\",[]],[\"name/2584\",[839,67.773]],[\"comment/2584\",[]],[\"name/2585\",[879,76.246]],[\"comment/2585\",[]],[\"name/2586\",[548,57.788]],[\"comment/2586\",[]],[\"name/2587\",[880,71.138]],[\"comment/2587\",[]],[\"name/2588\",[881,71.138]],[\"comment/2588\",[]],[\"name/2589\",[882,71.138]],[\"comment/2589\",[]],[\"name/2590\",[883,71.138]],[\"comment/2590\",[]],[\"name/2591\",[884,71.138]],[\"comment/2591\",[]],[\"name/2592\",[885,71.138]],[\"comment/2592\",[]],[\"name/2593\",[270,63.253]],[\"comment/2593\",[]],[\"name/2594\",[271,61.583]],[\"comment/2594\",[]],[\"name/2595\",[886,71.138]],[\"comment/2595\",[]],[\"name/2596\",[887,71.138]],[\"comment/2596\",[]],[\"name/2597\",[888,71.138]],[\"comment/2597\",[]],[\"name/2598\",[33,44.328]],[\"comment/2598\",[]],[\"name/2599\",[34,45.488]],[\"comment/2599\",[]],[\"name/2600\",[29,43.794]],[\"comment/2600\",[]],[\"name/2601\",[26,46.802]],[\"comment/2601\",[]],[\"name/2602\",[21,42.806]],[\"comment/2602\",[]],[\"name/2603\",[31,41.081]],[\"comment/2603\",[]],[\"name/2604\",[25,46.457]],[\"comment/2604\",[]],[\"name/2605\",[30,47.159]],[\"comment/2605\",[]],[\"name/2606\",[32,47.159]],[\"comment/2606\",[]],[\"name/2607\",[24,46.124]],[\"comment/2607\",[]],[\"name/2608\",[23,44.891]],[\"comment/2608\",[]],[\"name/2609\",[36,46.124]],[\"comment/2609\",[]],[\"name/2610\",[22,44.057]],[\"comment/2610\",[]],[\"name/2611\",[27,47.529]],[\"comment/2611\",[]],[\"name/2612\",[28,47.529]],[\"comment/2612\",[]],[\"name/2613\",[889,76.246]],[\"comment/2613\",[]],[\"name/2614\",[890,76.246]],[\"comment/2614\",[]],[\"name/2615\",[22,44.057]],[\"comment/2615\",[]],[\"name/2616\",[42,41.081]],[\"comment/2616\",[]],[\"name/2617\",[506,63.253]],[\"comment/2617\",[]],[\"name/2618\",[271,61.583]],[\"comment/2618\",[]],[\"name/2619\",[270,63.253]],[\"comment/2619\",[]],[\"name/2620\",[548,57.788]],[\"comment/2620\",[]],[\"name/2621\",[876,67.773]],[\"comment/2621\",[]],[\"name/2622\",[834,67.773]],[\"comment/2622\",[]],[\"name/2623\",[877,71.138]],[\"comment/2623\",[]],[\"name/2624\",[878,71.138]],[\"comment/2624\",[]],[\"name/2625\",[888,71.138]],[\"comment/2625\",[]],[\"name/2626\",[847,67.773]],[\"comment/2626\",[]],[\"name/2627\",[839,67.773]],[\"comment/2627\",[]],[\"name/2628\",[880,71.138]],[\"comment/2628\",[]],[\"name/2629\",[881,71.138]],[\"comment/2629\",[]],[\"name/2630\",[882,71.138]],[\"comment/2630\",[]],[\"name/2631\",[883,71.138]],[\"comment/2631\",[]],[\"name/2632\",[884,71.138]],[\"comment/2632\",[]],[\"name/2633\",[885,71.138]],[\"comment/2633\",[]],[\"name/2634\",[886,71.138]],[\"comment/2634\",[]],[\"name/2635\",[887,71.138]],[\"comment/2635\",[]],[\"name/2636\",[891,76.246]],[\"comment/2636\",[]],[\"name/2637\",[892,76.246]],[\"comment/2637\",[]],[\"name/2638\",[893,76.246]],[\"comment/2638\",[]],[\"name/2639\",[128,51.679]],[\"comment/2639\",[]],[\"name/2640\",[33,44.328]],[\"comment/2640\",[]],[\"name/2641\",[34,45.488]],[\"comment/2641\",[]],[\"name/2642\",[29,43.794]],[\"comment/2642\",[]],[\"name/2643\",[26,46.802]],[\"comment/2643\",[]],[\"name/2644\",[21,42.806]],[\"comment/2644\",[]],[\"name/2645\",[31,41.081]],[\"comment/2645\",[]],[\"name/2646\",[25,46.457]],[\"comment/2646\",[]],[\"name/2647\",[30,47.159]],[\"comment/2647\",[]],[\"name/2648\",[32,47.159]],[\"comment/2648\",[]],[\"name/2649\",[24,46.124]],[\"comment/2649\",[]],[\"name/2650\",[23,44.891]],[\"comment/2650\",[]],[\"name/2651\",[36,46.124]],[\"comment/2651\",[]],[\"name/2652\",[22,44.057]],[\"comment/2652\",[]],[\"name/2653\",[27,47.529]],[\"comment/2653\",[]],[\"name/2654\",[28,47.529]],[\"comment/2654\",[]],[\"name/2655\",[894,76.246]],[\"comment/2655\",[]],[\"name/2656\",[858,65.26]],[\"comment/2656\",[]],[\"name/2657\",[43,67.773]],[\"comment/2657\",[]],[\"name/2658\",[48,67.773]],[\"comment/2658\",[]],[\"name/2659\",[49,40.693]],[\"comment/2659\",[]],[\"name/2660\",[895,76.246]],[\"comment/2660\",[]],[\"name/2661\",[17,56.787]],[\"comment/2661\",[]],[\"name/2662\",[19,63.253]],[\"comment/2662\",[]],[\"name/2663\",[21,42.806]],[\"comment/2663\",[]],[\"name/2664\",[22,44.057]],[\"comment/2664\",[]],[\"name/2665\",[23,44.891]],[\"comment/2665\",[]],[\"name/2666\",[24,46.124]],[\"comment/2666\",[]],[\"name/2667\",[25,46.457]],[\"comment/2667\",[]],[\"name/2668\",[26,46.802]],[\"comment/2668\",[]],[\"name/2669\",[27,47.529]],[\"comment/2669\",[]],[\"name/2670\",[28,47.529]],[\"comment/2670\",[]],[\"name/2671\",[29,43.794]],[\"comment/2671\",[]],[\"name/2672\",[30,47.159]],[\"comment/2672\",[]],[\"name/2673\",[31,41.081]],[\"comment/2673\",[]],[\"name/2674\",[32,47.159]],[\"comment/2674\",[]],[\"name/2675\",[33,44.328]],[\"comment/2675\",[]],[\"name/2676\",[34,45.488]],[\"comment/2676\",[]],[\"name/2677\",[35,44.328]],[\"comment/2677\",[]],[\"name/2678\",[36,46.124]],[\"comment/2678\",[]],[\"name/2679\",[896,76.246]],[\"comment/2679\",[]],[\"name/2680\",[858,65.26]],[\"comment/2680\",[]],[\"name/2681\",[897,76.246]],[\"comment/2681\",[]],[\"name/2682\",[898,76.246]],[\"comment/2682\",[]],[\"name/2683\",[42,41.081]],[\"comment/2683\",[]],[\"name/2684\",[181,60.152]],[\"comment/2684\",[]],[\"name/2685\",[179,55.044]],[\"comment/2685\",[]],[\"name/2686\",[899,76.246]],[\"comment/2686\",[]],[\"name/2687\",[49,40.693]],[\"comment/2687\",[]],[\"name/2688\",[900,76.246]],[\"comment/2688\",[]],[\"name/2689\",[14,71.138]],[\"comment/2689\",[]],[\"name/2690\",[901,76.246]],[\"comment/2690\",[]],[\"name/2691\",[902,76.246]],[\"comment/2691\",[]],[\"name/2692\",[903,71.138]],[\"comment/2692\",[]],[\"name/2693\",[904,76.246]],[\"comment/2693\",[]],[\"name/2694\",[128,51.679]],[\"comment/2694\",[]],[\"name/2695\",[33,44.328]],[\"comment/2695\",[]],[\"name/2696\",[34,45.488]],[\"comment/2696\",[]],[\"name/2697\",[29,43.794]],[\"comment/2697\",[]],[\"name/2698\",[26,46.802]],[\"comment/2698\",[]],[\"name/2699\",[21,42.806]],[\"comment/2699\",[]],[\"name/2700\",[31,41.081]],[\"comment/2700\",[]],[\"name/2701\",[25,46.457]],[\"comment/2701\",[]],[\"name/2702\",[30,47.159]],[\"comment/2702\",[]],[\"name/2703\",[32,47.159]],[\"comment/2703\",[]],[\"name/2704\",[24,46.124]],[\"comment/2704\",[]],[\"name/2705\",[23,44.891]],[\"comment/2705\",[]],[\"name/2706\",[36,46.124]],[\"comment/2706\",[]],[\"name/2707\",[22,44.057]],[\"comment/2707\",[]],[\"name/2708\",[27,47.529]],[\"comment/2708\",[]],[\"name/2709\",[28,47.529]],[\"comment/2709\",[]],[\"name/2710\",[905,76.246]],[\"comment/2710\",[]],[\"name/2711\",[269,57.788]],[\"comment/2711\",[]],[\"name/2712\",[903,71.138]],[\"comment/2712\",[]],[\"name/2713\",[906,76.246]],[\"comment/2713\",[]],[\"name/2714\",[21,42.806]],[\"comment/2714\",[]],[\"name/2715\",[22,44.057]],[\"comment/2715\",[]],[\"name/2716\",[23,44.891]],[\"comment/2716\",[]],[\"name/2717\",[24,46.124]],[\"comment/2717\",[]],[\"name/2718\",[25,46.457]],[\"comment/2718\",[]],[\"name/2719\",[26,46.802]],[\"comment/2719\",[]],[\"name/2720\",[27,47.529]],[\"comment/2720\",[]],[\"name/2721\",[28,47.529]],[\"comment/2721\",[]],[\"name/2722\",[29,43.794]],[\"comment/2722\",[]],[\"name/2723\",[30,47.159]],[\"comment/2723\",[]],[\"name/2724\",[31,41.081]],[\"comment/2724\",[]],[\"name/2725\",[32,47.159]],[\"comment/2725\",[]],[\"name/2726\",[33,44.328]],[\"comment/2726\",[]],[\"name/2727\",[34,45.488]],[\"comment/2727\",[]],[\"name/2728\",[35,44.328]],[\"comment/2728\",[]],[\"name/2729\",[36,46.124]],[\"comment/2729\",[]],[\"name/2730\",[907,76.246]],[\"comment/2730\",[]],[\"name/2731\",[908,76.246]],[\"comment/2731\",[]],[\"name/2732\",[909,76.246]],[\"comment/2732\",[]],[\"name/2733\",[910,76.246]],[\"comment/2733\",[]],[\"name/2734\",[54,61.583]],[\"comment/2734\",[]],[\"name/2735\",[211,48.731]],[\"comment/2735\",[]],[\"name/2736\",[911,76.246]],[\"comment/2736\",[]],[\"name/2737\",[29,43.794]],[\"comment/2737\",[]],[\"name/2738\",[30,47.159]],[\"comment/2738\",[]],[\"name/2739\",[31,41.081]],[\"comment/2739\",[]],[\"name/2740\",[32,47.159]],[\"comment/2740\",[]],[\"name/2741\",[33,44.328]],[\"comment/2741\",[]],[\"name/2742\",[34,45.488]],[\"comment/2742\",[]],[\"name/2743\",[912,76.246]],[\"comment/2743\",[]],[\"name/2744\",[913,76.246]],[\"comment/2744\",[]],[\"name/2745\",[914,76.246]],[\"comment/2745\",[]],[\"name/2746\",[915,76.246]],[\"comment/2746\",[]],[\"name/2747\",[916,76.246]],[\"comment/2747\",[]],[\"name/2748\",[21,42.806]],[\"comment/2748\",[]],[\"name/2749\",[22,44.057]],[\"comment/2749\",[]],[\"name/2750\",[23,44.891]],[\"comment/2750\",[]],[\"name/2751\",[24,46.124]],[\"comment/2751\",[]],[\"name/2752\",[25,46.457]],[\"comment/2752\",[]],[\"name/2753\",[26,46.802]],[\"comment/2753\",[]],[\"name/2754\",[27,47.529]],[\"comment/2754\",[]],[\"name/2755\",[28,47.529]],[\"comment/2755\",[]],[\"name/2756\",[29,43.794]],[\"comment/2756\",[]],[\"name/2757\",[30,47.159]],[\"comment/2757\",[]],[\"name/2758\",[31,41.081]],[\"comment/2758\",[]],[\"name/2759\",[32,47.159]],[\"comment/2759\",[]],[\"name/2760\",[33,44.328]],[\"comment/2760\",[]],[\"name/2761\",[34,45.488]],[\"comment/2761\",[]],[\"name/2762\",[35,44.328]],[\"comment/2762\",[]],[\"name/2763\",[36,46.124]],[\"comment/2763\",[]],[\"name/2764\",[917,76.246]],[\"comment/2764\",[]],[\"name/2765\",[918,76.246]],[\"comment/2765\",[]],[\"name/2766\",[42,41.081]],[\"comment/2766\",[]],[\"name/2767\",[919,76.246]],[\"comment/2767\",[]],[\"name/2768\",[920,76.246]],[\"comment/2768\",[]],[\"name/2769\",[921,76.246]],[\"comment/2769\",[]],[\"name/2770\",[922,76.246]],[\"comment/2770\",[]],[\"name/2771\",[21,42.806]],[\"comment/2771\",[]],[\"name/2772\",[22,44.057]],[\"comment/2772\",[]],[\"name/2773\",[23,44.891]],[\"comment/2773\",[]],[\"name/2774\",[24,46.124]],[\"comment/2774\",[]],[\"name/2775\",[25,46.457]],[\"comment/2775\",[]],[\"name/2776\",[26,46.802]],[\"comment/2776\",[]],[\"name/2777\",[27,47.529]],[\"comment/2777\",[]],[\"name/2778\",[28,47.529]],[\"comment/2778\",[]],[\"name/2779\",[29,43.794]],[\"comment/2779\",[]],[\"name/2780\",[30,47.159]],[\"comment/2780\",[]],[\"name/2781\",[31,41.081]],[\"comment/2781\",[]],[\"name/2782\",[32,47.159]],[\"comment/2782\",[]],[\"name/2783\",[33,44.328]],[\"comment/2783\",[]],[\"name/2784\",[34,45.488]],[\"comment/2784\",[]],[\"name/2785\",[35,44.328]],[\"comment/2785\",[]],[\"name/2786\",[36,46.124]],[\"comment/2786\",[]],[\"name/2787\",[923,76.246]],[\"comment/2787\",[]],[\"name/2788\",[17,56.787]],[\"comment/2788\",[]],[\"name/2789\",[22,44.057]],[\"comment/2789\",[]],[\"name/2790\",[211,48.731]],[\"comment/2790\",[]],[\"name/2791\",[432,57.788]],[\"comment/2791\",[]],[\"name/2792\",[20,55.044]],[\"comment/2792\",[]],[\"name/2793\",[21,42.806]],[\"comment/2793\",[]],[\"name/2794\",[23,44.891]],[\"comment/2794\",[]],[\"name/2795\",[24,46.124]],[\"comment/2795\",[]],[\"name/2796\",[25,46.457]],[\"comment/2796\",[]],[\"name/2797\",[26,46.802]],[\"comment/2797\",[]],[\"name/2798\",[27,47.529]],[\"comment/2798\",[]],[\"name/2799\",[28,47.529]],[\"comment/2799\",[]],[\"name/2800\",[29,43.794]],[\"comment/2800\",[]],[\"name/2801\",[30,47.159]],[\"comment/2801\",[]],[\"name/2802\",[31,41.081]],[\"comment/2802\",[]],[\"name/2803\",[32,47.159]],[\"comment/2803\",[]],[\"name/2804\",[33,44.328]],[\"comment/2804\",[]],[\"name/2805\",[34,45.488]],[\"comment/2805\",[]],[\"name/2806\",[35,44.328]],[\"comment/2806\",[]],[\"name/2807\",[36,46.124]],[\"comment/2807\",[]],[\"name/2808\",[924,76.246]],[\"comment/2808\",[]],[\"name/2809\",[435,61.583]],[\"comment/2809\",[]],[\"name/2810\",[17,56.787]],[\"comment/2810\",[]],[\"name/2811\",[22,44.057]],[\"comment/2811\",[]],[\"name/2812\",[211,48.731]],[\"comment/2812\",[]],[\"name/2813\",[432,57.788]],[\"comment/2813\",[]],[\"name/2814\",[20,55.044]],[\"comment/2814\",[]],[\"name/2815\",[21,42.806]],[\"comment/2815\",[]],[\"name/2816\",[23,44.891]],[\"comment/2816\",[]],[\"name/2817\",[24,46.124]],[\"comment/2817\",[]],[\"name/2818\",[25,46.457]],[\"comment/2818\",[]],[\"name/2819\",[26,46.802]],[\"comment/2819\",[]],[\"name/2820\",[27,47.529]],[\"comment/2820\",[]],[\"name/2821\",[28,47.529]],[\"comment/2821\",[]],[\"name/2822\",[29,43.794]],[\"comment/2822\",[]],[\"name/2823\",[30,47.159]],[\"comment/2823\",[]],[\"name/2824\",[31,41.081]],[\"comment/2824\",[]],[\"name/2825\",[32,47.159]],[\"comment/2825\",[]],[\"name/2826\",[33,44.328]],[\"comment/2826\",[]],[\"name/2827\",[34,45.488]],[\"comment/2827\",[]],[\"name/2828\",[35,44.328]],[\"comment/2828\",[]],[\"name/2829\",[36,46.124]],[\"comment/2829\",[]],[\"name/2830\",[925,76.246]],[\"comment/2830\",[]],[\"name/2831\",[858,65.26]],[\"comment/2831\",[]],[\"name/2832\",[44,67.773]],[\"comment/2832\",[]],[\"name/2833\",[45,67.773]],[\"comment/2833\",[]],[\"name/2834\",[47,67.773]],[\"comment/2834\",[]],[\"name/2835\",[926,76.246]],[\"comment/2835\",[]],[\"name/2836\",[927,76.246]],[\"comment/2836\",[]],[\"name/2837\",[860,71.138]],[\"comment/2837\",[]],[\"name/2838\",[928,76.246]],[\"comment/2838\",[]],[\"name/2839\",[432,57.788]],[\"comment/2839\",[]],[\"name/2840\",[929,76.246]],[\"comment/2840\",[]],[\"name/2841\",[22,44.057]],[\"comment/2841\",[]],[\"name/2842\",[435,61.583]],[\"comment/2842\",[]],[\"name/2843\",[211,48.731]],[\"comment/2843\",[]],[\"name/2844\",[930,76.246]],[\"comment/2844\",[]],[\"name/2845\",[876,67.773]],[\"comment/2845\",[]],[\"name/2846\",[21,42.806]],[\"comment/2846\",[]],[\"name/2847\",[22,44.057]],[\"comment/2847\",[]],[\"name/2848\",[23,44.891]],[\"comment/2848\",[]],[\"name/2849\",[24,46.124]],[\"comment/2849\",[]],[\"name/2850\",[25,46.457]],[\"comment/2850\",[]],[\"name/2851\",[26,46.802]],[\"comment/2851\",[]],[\"name/2852\",[27,47.529]],[\"comment/2852\",[]],[\"name/2853\",[28,47.529]],[\"comment/2853\",[]],[\"name/2854\",[29,43.794]],[\"comment/2854\",[]],[\"name/2855\",[30,47.159]],[\"comment/2855\",[]],[\"name/2856\",[31,41.081]],[\"comment/2856\",[]],[\"name/2857\",[32,47.159]],[\"comment/2857\",[]],[\"name/2858\",[33,44.328]],[\"comment/2858\",[]],[\"name/2859\",[34,45.488]],[\"comment/2859\",[]],[\"name/2860\",[35,44.328]],[\"comment/2860\",[]],[\"name/2861\",[36,46.124]],[\"comment/2861\",[]],[\"name/2862\",[931,76.246]],[\"comment/2862\",[]],[\"name/2863\",[932,76.246]],[\"comment/2863\",[]],[\"name/2864\",[849,71.138]],[\"comment/2864\",[]],[\"name/2865\",[933,76.246]],[\"comment/2865\",[]],[\"name/2866\",[29,43.794]],[\"comment/2866\",[]],[\"name/2867\",[713,71.138]],[\"comment/2867\",[]],[\"name/2868\",[360,65.26]],[\"comment/2868\",[]],[\"name/2869\",[31,41.081]],[\"comment/2869\",[]],[\"name/2870\",[361,63.253]],[\"comment/2870\",[]],[\"name/2871\",[934,76.246]],[\"comment/2871\",[]],[\"name/2872\",[935,76.246]],[\"comment/2872\",[]],[\"name/2873\",[31,41.081]],[\"comment/2873\",[]],[\"name/2874\",[361,63.253]],[\"comment/2874\",[]],[\"name/2875\",[360,65.26]],[\"comment/2875\",[]],[\"name/2876\",[936,76.246]],[\"comment/2876\",[]],[\"name/2877\",[361,63.253]],[\"comment/2877\",[]],[\"name/2878\",[360,65.26]],[\"comment/2878\",[]],[\"name/2879\",[189,50.097]],[\"comment/2879\",[]],[\"name/2880\",[189,50.097]],[\"comment/2880\",[]],[\"name/2881\",[937,76.246]],[\"comment/2881\",[]],[\"name/2882\",[49,40.693]],[\"comment/2882\",[]],[\"name/2883\",[938,76.246]],[\"comment/2883\",[]],[\"name/2884\",[538,71.138]],[\"comment/2884\",[]],[\"name/2885\",[939,76.246]],[\"comment/2885\",[]],[\"name/2886\",[940,76.246]],[\"comment/2886\",[]],[\"name/2887\",[617,63.253]],[\"comment/2887\",[]],[\"name/2888\",[716,63.253]],[\"comment/2888\",[]],[\"name/2889\",[717,67.773]],[\"comment/2889\",[]],[\"name/2890\",[616,65.26]],[\"comment/2890\",[]],[\"name/2891\",[115,52.892]],[\"comment/2891\",[]],[\"name/2892\",[624,61.583]],[\"comment/2892\",[]],[\"name/2893\",[625,61.583]],[\"comment/2893\",[]],[\"name/2894\",[626,61.583]],[\"comment/2894\",[]],[\"name/2895\",[627,61.583]],[\"comment/2895\",[]],[\"name/2896\",[618,63.253]],[\"comment/2896\",[]],[\"name/2897\",[620,63.253]],[\"comment/2897\",[]],[\"name/2898\",[622,60.152]],[\"comment/2898\",[]],[\"name/2899\",[619,63.253]],[\"comment/2899\",[]],[\"name/2900\",[310,61.583]],[\"comment/2900\",[]],[\"name/2901\",[309,60.152]],[\"comment/2901\",[]],[\"name/2902\",[170,65.26]],[\"comment/2902\",[]],[\"name/2903\",[621,61.583]],[\"comment/2903\",[]],[\"name/2904\",[623,60.152]],[\"comment/2904\",[]],[\"name/2905\",[941,76.246]],[\"comment/2905\",[]],[\"name/2906\",[942,76.246]],[\"comment/2906\",[]],[\"name/2907\",[372,50.097]],[\"comment/2907\",[]],[\"name/2908\",[181,60.152]],[\"comment/2908\",[]],[\"name/2909\",[722,71.138]],[\"comment/2909\",[]],[\"name/2910\",[943,76.246]],[\"comment/2910\",[]],[\"name/2911\",[944,76.246]],[\"comment/2911\",[]],[\"name/2912\",[359,71.138]],[\"comment/2912\",[]],[\"name/2913\",[177,67.773]],[\"comment/2913\",[]],[\"name/2914\",[55,44.606]],[\"comment/2914\",[]],[\"name/2915\",[362,65.26]],[\"comment/2915\",[]],[\"name/2916\",[651,67.773]],[\"comment/2916\",[]],[\"name/2917\",[945,76.246]],[\"comment/2917\",[]],[\"name/2918\",[946,76.246]],[\"comment/2918\",[]],[\"name/2919\",[947,76.246]],[\"comment/2919\",[]],[\"name/2920\",[948,76.246]],[\"comment/2920\",[]],[\"name/2921\",[348,67.773]],[\"comment/2921\",[]],[\"name/2922\",[949,71.138]],[\"comment/2922\",[]],[\"name/2923\",[950,76.246]],[\"comment/2923\",[]],[\"name/2924\",[951,76.246]],[\"comment/2924\",[]],[\"name/2925\",[623,60.152]],[\"comment/2925\",[]],[\"name/2926\",[189,50.097]],[\"comment/2926\",[]],[\"name/2927\",[615,65.26]],[\"comment/2927\",[]],[\"name/2928\",[952,76.246]],[\"comment/2928\",[]],[\"name/2929\",[953,76.246]],[\"comment/2929\",[]],[\"name/2930\",[954,76.246]],[\"comment/2930\",[]],[\"name/2931\",[955,76.246]],[\"comment/2931\",[]],[\"name/2932\",[956,67.773]],[\"comment/2932\",[]],[\"name/2933\",[957,67.773]],[\"comment/2933\",[]],[\"name/2934\",[200,65.26]],[\"comment/2934\",[]],[\"name/2935\",[958,76.246]],[\"comment/2935\",[]],[\"name/2936\",[49,40.693]],[\"comment/2936\",[]],[\"name/2937\",[55,44.606]],[\"comment/2937\",[]],[\"name/2938\",[959,76.246]],[\"comment/2938\",[]],[\"name/2939\",[960,76.246]],[\"comment/2939\",[]],[\"name/2940\",[961,76.246]],[\"comment/2940\",[]],[\"name/2941\",[31,41.081]],[\"comment/2941\",[]],[\"name/2942\",[962,76.246]],[\"comment/2942\",[]],[\"name/2943\",[31,41.081]],[\"comment/2943\",[]],[\"name/2944\",[715,67.773]],[\"comment/2944\",[]],[\"name/2945\",[29,43.794]],[\"comment/2945\",[]],[\"name/2946\",[963,76.246]],[\"comment/2946\",[]],[\"name/2947\",[38,40.693]],[\"comment/2947\",[]],[\"name/2948\",[651,67.773]],[\"comment/2948\",[]],[\"name/2949\",[362,65.26]],[\"comment/2949\",[]],[\"name/2950\",[964,76.246]],[\"comment/2950\",[]],[\"name/2951\",[965,76.246]],[\"comment/2951\",[]],[\"name/2952\",[966,76.246]],[\"comment/2952\",[]],[\"name/2953\",[967,76.246]],[\"comment/2953\",[]],[\"name/2954\",[968,76.246]],[\"comment/2954\",[]],[\"name/2955\",[969,76.246]],[\"comment/2955\",[]],[\"name/2956\",[970,76.246]],[\"comment/2956\",[]],[\"name/2957\",[971,76.246]],[\"comment/2957\",[]],[\"name/2958\",[972,76.246]],[\"comment/2958\",[]],[\"name/2959\",[973,76.246]],[\"comment/2959\",[]],[\"name/2960\",[974,76.246]],[\"comment/2960\",[]],[\"name/2961\",[38,40.693]],[\"comment/2961\",[]],[\"name/2962\",[181,60.152]],[\"comment/2962\",[]],[\"name/2963\",[949,71.138]],[\"comment/2963\",[]],[\"name/2964\",[975,76.246]],[\"comment/2964\",[]],[\"name/2965\",[976,76.246]],[\"comment/2965\",[]],[\"name/2966\",[977,76.246]],[\"comment/2966\",[]],[\"name/2967\",[978,76.246]],[\"comment/2967\",[]],[\"name/2968\",[979,76.246]],[\"comment/2968\",[]],[\"name/2969\",[980,76.246]],[\"comment/2969\",[]],[\"name/2970\",[623,60.152]],[\"comment/2970\",[]],[\"name/2971\",[716,63.253]],[\"comment/2971\",[]],[\"name/2972\",[714,65.26]],[\"comment/2972\",[]],[\"name/2973\",[981,76.246]],[\"comment/2973\",[]],[\"name/2974\",[177,67.773]],[\"comment/2974\",[]],[\"name/2975\",[982,76.246]],[\"comment/2975\",[]],[\"name/2976\",[983,76.246]],[\"comment/2976\",[]],[\"name/2977\",[984,76.246]],[\"comment/2977\",[]],[\"name/2978\",[716,63.253]],[\"comment/2978\",[]],[\"name/2979\",[714,65.26]],[\"comment/2979\",[]],[\"name/2980\",[985,76.246]],[\"comment/2980\",[]],[\"name/2981\",[49,40.693]],[\"comment/2981\",[]],[\"name/2982\",[986,76.246]],[\"comment/2982\",[]],[\"name/2983\",[987,76.246]],[\"comment/2983\",[]],[\"name/2984\",[188,71.138]],[\"comment/2984\",[]],[\"name/2985\",[345,71.138]],[\"comment/2985\",[]],[\"name/2986\",[192,71.138]],[\"comment/2986\",[]],[\"name/2987\",[988,76.246]],[\"comment/2987\",[]],[\"name/2988\",[629,71.138]],[\"comment/2988\",[]],[\"name/2989\",[989,76.246]],[\"comment/2989\",[]],[\"name/2990\",[194,71.138]],[\"comment/2990\",[]],[\"name/2991\",[111,54.274]],[\"comment/2991\",[]],[\"name/2992\",[990,76.246]],[\"comment/2992\",[]],[\"name/2993\",[453,51.679]],[\"comment/2993\",[]],[\"name/2994\",[991,76.246]],[\"comment/2994\",[]],[\"name/2995\",[992,76.246]],[\"comment/2995\",[]],[\"name/2996\",[993,76.246]],[\"comment/2996\",[]],[\"name/2997\",[49,40.693]],[\"comment/2997\",[]],[\"name/2998\",[111,54.274]],[\"comment/2998\",[]],[\"name/2999\",[994,76.246]],[\"comment/2999\",[]],[\"name/3000\",[49,40.693]],[\"comment/3000\",[]],[\"name/3001\",[167,55.877]],[\"comment/3001\",[]],[\"name/3002\",[995,76.246]],[\"comment/3002\",[]],[\"name/3003\",[193,71.138]],[\"comment/3003\",[]],[\"name/3004\",[179,55.044]],[\"comment/3004\",[]],[\"name/3005\",[996,76.246]],[\"comment/3005\",[]],[\"name/3006\",[196,71.138]],[\"comment/3006\",[]],[\"name/3007\",[997,76.246]],[\"comment/3007\",[]],[\"name/3008\",[998,76.246]],[\"comment/3008\",[]],[\"name/3009\",[999,76.246]],[\"comment/3009\",[]],[\"name/3010\",[1000,76.246]],[\"comment/3010\",[]],[\"name/3011\",[21,42.806]],[\"comment/3011\",[]],[\"name/3012\",[35,44.328]],[\"comment/3012\",[]],[\"name/3013\",[31,41.081]],[\"comment/3013\",[]],[\"name/3014\",[1001,76.246]],[\"comment/3014\",[]],[\"name/3015\",[22,44.057]],[\"comment/3015\",[]],[\"name/3016\",[23,44.891]],[\"comment/3016\",[]],[\"name/3017\",[24,46.124]],[\"comment/3017\",[]],[\"name/3018\",[25,46.457]],[\"comment/3018\",[]],[\"name/3019\",[26,46.802]],[\"comment/3019\",[]],[\"name/3020\",[27,47.529]],[\"comment/3020\",[]],[\"name/3021\",[28,47.529]],[\"comment/3021\",[]],[\"name/3022\",[29,43.794]],[\"comment/3022\",[]],[\"name/3023\",[30,47.159]],[\"comment/3023\",[]],[\"name/3024\",[32,47.159]],[\"comment/3024\",[]],[\"name/3025\",[33,44.328]],[\"comment/3025\",[]],[\"name/3026\",[34,45.488]],[\"comment/3026\",[]],[\"name/3027\",[36,46.124]],[\"comment/3027\",[]],[\"name/3028\",[1002,76.246]],[\"comment/3028\",[]],[\"name/3029\",[49,40.693]],[\"comment/3029\",[]],[\"name/3030\",[1003,76.246]],[\"comment/3030\",[]],[\"name/3031\",[49,40.693]],[\"comment/3031\",[]],[\"name/3032\",[615,65.26]],[\"comment/3032\",[]],[\"name/3033\",[355,65.26]],[\"comment/3033\",[]],[\"name/3034\",[1004,76.246]],[\"comment/3034\",[]],[\"name/3035\",[1005,76.246]],[\"comment/3035\",[]],[\"name/3036\",[38,40.693]],[\"comment/3036\",[]],[\"name/3037\",[956,67.773]],[\"comment/3037\",[]],[\"name/3038\",[957,67.773]],[\"comment/3038\",[]],[\"name/3039\",[1006,76.246]],[\"comment/3039\",[]],[\"name/3040\",[1007,76.246]],[\"comment/3040\",[]],[\"name/3041\",[1008,76.246]],[\"comment/3041\",[]],[\"name/3042\",[425,61.583]],[\"comment/3042\",[]],[\"name/3043\",[1009,76.246]],[\"comment/3043\",[]],[\"name/3044\",[49,40.693]],[\"comment/3044\",[]],[\"name/3045\",[956,67.773]],[\"comment/3045\",[]],[\"name/3046\",[957,67.773]],[\"comment/3046\",[]],[\"name/3047\",[1010,76.246]],[\"comment/3047\",[]],[\"name/3048\",[355,65.26]],[\"comment/3048\",[]],[\"name/3049\",[38,40.693]],[\"comment/3049\",[]],[\"name/3050\",[208,65.26]],[\"comment/3050\",[]],[\"name/3051\",[249,58.9]],[\"comment/3051\",[]],[\"name/3052\",[425,61.583]],[\"comment/3052\",[]],[\"name/3053\",[1011,71.138]],[\"comment/3053\",[]],[\"name/3054\",[1012,76.246]],[\"comment/3054\",[]],[\"name/3055\",[355,65.26]],[\"comment/3055\",[]],[\"name/3056\",[38,40.693]],[\"comment/3056\",[]],[\"name/3057\",[249,58.9]],[\"comment/3057\",[]],[\"name/3058\",[208,65.26]],[\"comment/3058\",[]],[\"name/3059\",[425,61.583]],[\"comment/3059\",[]],[\"name/3060\",[1011,71.138]],[\"comment/3060\",[]],[\"name/3061\",[365,65.26]],[\"comment/3061\",[]],[\"name/3062\",[1013,76.246]],[\"comment/3062\",[]],[\"name/3063\",[35,44.328]],[\"comment/3063\",[]],[\"name/3064\",[1014,76.246]],[\"comment/3064\",[]],[\"name/3065\",[365,65.26]],[\"comment/3065\",[]],[\"name/3066\",[367,67.773]],[\"comment/3066\",[]],[\"name/3067\",[366,67.773]],[\"comment/3067\",[]],[\"name/3068\",[369,71.138]],[\"comment/3068\",[]],[\"name/3069\",[368,71.138]],[\"comment/3069\",[]],[\"name/3070\",[370,71.138]],[\"comment/3070\",[]]],\"invertedIndex\":[[\"2dsphereindexversion\",{\"_index\":884,\"name\":{\"2591\":{},\"2632\":{}},\"comment\":{}}],[\"__nodejs_mock_server__\",{\"_index\":655,\"name\":{\"1831\":{}},\"comment\":{}}],[\"__type\",{\"_index\":49,\"name\":{\"49\":{},\"51\":{},\"609\":{},\"833\":{},\"980\":{},\"1231\":{},\"1239\":{},\"1241\":{},\"1298\":{},\"1374\":{},\"1388\":{},\"1395\":{},\"1431\":{},\"1486\":{},\"1507\":{},\"1542\":{},\"1565\":{},\"1568\":{},\"1573\":{},\"1580\":{},\"1582\":{},\"1584\":{},\"1664\":{},\"1667\":{},\"1673\":{},\"1722\":{},\"1724\":{},\"1729\":{},\"1791\":{},\"1795\":{},\"1802\":{},\"1805\":{},\"1813\":{},\"1851\":{},\"1998\":{},\"2140\":{},\"2144\":{},\"2163\":{},\"2168\":{},\"2197\":{},\"2238\":{},\"2379\":{},\"2659\":{},\"2687\":{},\"2882\":{},\"2936\":{},\"2981\":{},\"2997\":{},\"3000\":{},\"3029\":{},\"3031\":{},\"3044\":{}},\"comment\":{}}],[\"_id\",{\"_index\":452,\"name\":{\"1341\":{},\"1349\":{},\"1357\":{},\"1368\":{},\"1375\":{},\"1381\":{},\"1389\":{},\"1397\":{},\"1405\":{},\"1413\":{},\"1425\":{},\"1432\":{},\"1436\":{},\"1476\":{},\"1490\":{},\"1501\":{},\"1508\":{},\"1511\":{},\"1520\":{},\"1536\":{},\"1543\":{},\"1625\":{},\"1989\":{},\"2013\":{}},\"comment\":{}}],[\"abort\",{\"_index\":287,\"name\":{\"818\":{},\"840\":{}},\"comment\":{}}],[\"aborted\",{\"_index\":303,\"name\":{\"837\":{}},\"comment\":{}}],[\"aborttransaction\",{\"_index\":205,\"name\":{\"629\":{}},\"comment\":{}}],[\"abstractcursor\",{\"_index\":109,\"name\":{\"442\":{}},\"comment\":{}}],[\"abstractcursorevents\",{\"_index\":665,\"name\":{\"1850\":{}},\"comment\":{}}],[\"abstractcursoroptions\",{\"_index\":666,\"name\":{\"1853\":{}},\"comment\":{}}],[\"acceptedfields\",{\"_index\":736,\"name\":{\"2161\":{}},\"comment\":{}}],[\"accesstoken\",{\"_index\":595,\"name\":{\"1713\":{}},\"comment\":{}}],[\"acknowledged\",{\"_index\":858,\"name\":{\"2424\":{},\"2656\":{},\"2680\":{},\"2831\":{}},\"comment\":{}}],[\"addcursorflag\",{\"_index\":124,\"name\":{\"461\":{},\"529\":{},\"767\":{},\"865\":{},\"911\":{},\"989\":{},\"1931\":{}},\"comment\":{}}],[\"adderrorlabel\",{\"_index\":60,\"name\":{\"62\":{},\"88\":{},\"99\":{},\"110\":{},\"121\":{},\"132\":{},\"143\":{},\"154\":{},\"165\":{},\"176\":{},\"187\":{},\"198\":{},\"209\":{},\"220\":{},\"231\":{},\"242\":{},\"253\":{},\"264\":{},\"275\":{},\"286\":{},\"297\":{},\"308\":{},\"319\":{},\"330\":{},\"341\":{},\"356\":{},\"368\":{},\"380\":{},\"391\":{},\"402\":{},\"413\":{},\"424\":{},\"440\":{}},\"comment\":{}}],[\"addkeyaltname\",{\"_index\":70,\"name\":{\"73\":{}},\"comment\":{}}],[\"addlistener\",{\"_index\":132,\"name\":{\"470\":{},\"536\":{},\"552\":{},\"590\":{},\"632\":{},\"773\":{},\"799\":{},\"873\":{},\"919\":{},\"950\":{},\"1013\":{},\"1938\":{},\"2146\":{}},\"comment\":{}}],[\"addquerymodifier\",{\"_index\":274,\"name\":{\"740\":{}},\"comment\":{}}],[\"address\",{\"_index\":372,\"name\":{\"1115\":{},\"1129\":{},\"1134\":{},\"1145\":{},\"1149\":{},\"1153\":{},\"1156\":{},\"1162\":{},\"1166\":{},\"1170\":{},\"1173\":{},\"1177\":{},\"1180\":{},\"1183\":{},\"1187\":{},\"1190\":{},\"1193\":{},\"1208\":{},\"1820\":{},\"2907\":{}},\"comment\":{}}],[\"addtooperationslist\",{\"_index\":314,\"name\":{\"966\":{},\"1030\":{},\"1323\":{}},\"comment\":{}}],[\"addtosetoperators\",{\"_index\":737,\"name\":{\"2162\":{}},\"comment\":{}}],[\"admin\",{\"_index\":147,\"name\":{\"485\":{},\"713\":{}},\"comment\":{}}],[\"advanceclustertime\",{\"_index\":199,\"name\":{\"623\":{}},\"comment\":{}}],[\"advanceoperationtime\",{\"_index\":198,\"name\":{\"622\":{}},\"comment\":{}}],[\"aggregate\",{\"_index\":239,\"name\":{\"684\":{},\"712\":{}},\"comment\":{}}],[\"aggregateoptions\",{\"_index\":817,\"name\":{\"2253\":{}},\"comment\":{}}],[\"aggregationcursor\",{\"_index\":157,\"name\":{\"495\":{}},\"comment\":{}}],[\"aggregationcursoroptions\",{\"_index\":673,\"name\":{\"1869\":{}},\"comment\":{}}],[\"algorithm\",{\"_index\":537,\"name\":{\"1607\":{}},\"comment\":{}}],[\"aliases\",{\"_index\":691,\"name\":{\"1994\":{},\"2010\":{}},\"comment\":{}}],[\"all\",{\"_index\":770,\"name\":{\"2203\":{}},\"comment\":{}}],[\"allhosts\",{\"_index\":952,\"name\":{\"2928\":{}},\"comment\":{}}],[\"allowdiskuse\",{\"_index\":276,\"name\":{\"746\":{},\"1470\":{},\"1882\":{},\"2254\":{},\"2332\":{},\"2485\":{}},\"comment\":{}}],[\"allowed_hosts\",{\"_index\":578,\"name\":{\"1688\":{}},\"comment\":{}}],[\"allowpartialresults\",{\"_index\":869,\"name\":{\"2487\":{}},\"comment\":{}}],[\"alternate\",{\"_index\":824,\"name\":{\"2284\":{}},\"comment\":{}}],[\"alternativetype\",{\"_index\":739,\"name\":{\"2165\":{}},\"comment\":{}}],[\"and\",{\"_index\":800,\"name\":{\"2234\":{}},\"comment\":{}}],[\"anybulkwriteoperation\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"anyerror\",{\"_index\":680,\"name\":{\"1965\":{}},\"comment\":{}}],[\"application\",{\"_index\":642,\"name\":{\"1801\":{}},\"comment\":{}}],[\"apply\",{\"_index\":364,\"name\":{\"1105\":{}},\"comment\":{}}],[\"appname\",{\"_index\":649,\"name\":{\"1817\":{},\"2059\":{},\"2082\":{}},\"comment\":{}}],[\"arbiters\",{\"_index\":944,\"name\":{\"2911\":{}},\"comment\":{}}],[\"architecture\",{\"_index\":640,\"name\":{\"1798\":{}},\"comment\":{}}],[\"arrayelement\",{\"_index\":740,\"name\":{\"2166\":{}},\"comment\":{}}],[\"arrayfilters\",{\"_index\":435,\"name\":{\"1271\":{},\"1278\":{},\"1333\":{},\"2552\":{},\"2809\":{},\"2842\":{}},\"comment\":{}}],[\"arrayoperator\",{\"_index\":741,\"name\":{\"2167\":{}},\"comment\":{}}],[\"asynciterator\",{\"_index\":131,\"name\":{\"469\":{},\"535\":{},\"589\":{},\"772\":{},\"872\":{},\"918\":{},\"1012\":{},\"1937\":{}},\"comment\":{}}],[\"auth\",{\"_index\":700,\"name\":{\"2017\":{},\"2051\":{}},\"comment\":{}}],[\"authdb\",{\"_index\":27,\"name\":{\"27\":{},\"1467\":{},\"1891\":{},\"2268\":{},\"2295\":{},\"2319\":{},\"2346\":{},\"2387\":{},\"2413\":{},\"2440\":{},\"2458\":{},\"2502\":{},\"2516\":{},\"2541\":{},\"2567\":{},\"2611\":{},\"2653\":{},\"2669\":{},\"2708\":{},\"2720\":{},\"2754\":{},\"2777\":{},\"2798\":{},\"2820\":{},\"2852\":{},\"3020\":{}},\"comment\":{}}],[\"authmechanism\",{\"_index\":330,\"name\":{\"1046\":{},\"1047\":{},\"2053\":{}},\"comment\":{}}],[\"authmechanismproperties\",{\"_index\":569,\"name\":{\"1679\":{},\"2054\":{}},\"comment\":{}}],[\"authorizedcollections\",{\"_index\":904,\"name\":{\"2693\":{}},\"comment\":{}}],[\"authorizeddatabases\",{\"_index\":906,\"name\":{\"2713\":{}},\"comment\":{}}],[\"authsource\",{\"_index\":678,\"name\":{\"1956\":{},\"2052\":{}},\"comment\":{}}],[\"autoencryption\",{\"_index\":720,\"name\":{\"2073\":{},\"2102\":{}},\"comment\":{}}],[\"autoencryptionextraoptions\",{\"_index\":525,\"name\":{\"1593\":{}},\"comment\":{}}],[\"autoencryptionloggerlevel\",{\"_index\":328,\"name\":{\"1042\":{},\"1043\":{}},\"comment\":{}}],[\"autoencryptionoptions\",{\"_index\":500,\"name\":{\"1561\":{}},\"comment\":{}}],[\"autoindexid\",{\"_index\":837,\"name\":{\"2362\":{}},\"comment\":{}}],[\"available\",{\"_index\":343,\"name\":{\"1072\":{}},\"comment\":{}}],[\"awaitdata\",{\"_index\":668,\"name\":{\"1862\":{},\"1878\":{},\"2476\":{}},\"comment\":{}}],[\"aws\",{\"_index\":504,\"name\":{\"1566\":{},\"1662\":{},\"1674\":{}},\"comment\":{}}],[\"aws_session_token\",{\"_index\":574,\"name\":{\"1684\":{}},\"comment\":{}}],[\"awsencryptionkeyoptions\",{\"_index\":526,\"name\":{\"1594\":{}},\"comment\":{}}],[\"azure\",{\"_index\":507,\"name\":{\"1570\":{},\"1669\":{},\"1678\":{}},\"comment\":{}}],[\"azureencryptionkeyoptions\",{\"_index\":528,\"name\":{\"1598\":{}},\"comment\":{}}],[\"background\",{\"_index\":876,\"name\":{\"2578\":{},\"2621\":{},\"2845\":{}},\"comment\":{}}],[\"backwards\",{\"_index\":826,\"name\":{\"2286\":{}},\"comment\":{}}],[\"batch\",{\"_index\":439,\"name\":{\"1304\":{}},\"comment\":{}}],[\"batches\",{\"_index\":318,\"name\":{\"974\":{},\"1038\":{},\"1321\":{}},\"comment\":{}}],[\"batchsize\",{\"_index\":128,\"name\":{\"466\":{},\"533\":{},\"770\":{},\"870\":{},\"916\":{},\"983\":{},\"991\":{},\"1451\":{},\"1548\":{},\"1857\":{},\"1873\":{},\"1935\":{},\"2255\":{},\"2333\":{},\"2477\":{},\"2639\":{},\"2694\":{}},\"comment\":{}}],[\"batchtype\",{\"_index\":327,\"name\":{\"1040\":{},\"1041\":{},\"1309\":{}},\"comment\":{}}],[\"beforehandshake\",{\"_index\":683,\"name\":{\"1973\":{}},\"comment\":{}}],[\"binary\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"bits\",{\"_index\":885,\"name\":{\"2592\":{},\"2633\":{}},\"comment\":{}}],[\"bitsallclear\",{\"_index\":772,\"name\":{\"2206\":{}},\"comment\":{}}],[\"bitsallset\",{\"_index\":773,\"name\":{\"2207\":{}},\"comment\":{}}],[\"bitsanyclear\",{\"_index\":774,\"name\":{\"2208\":{}},\"comment\":{}}],[\"bitsanyset\",{\"_index\":775,\"name\":{\"2209\":{}},\"comment\":{}}],[\"bitwisefilter\",{\"_index\":744,\"name\":{\"2173\":{}},\"comment\":{}}],[\"body\",{\"_index\":559,\"name\":{\"1646\":{}},\"comment\":{}}],[\"bsonoptions\",{\"_index\":210,\"name\":{\"653\":{},\"707\":{},\"943\":{},\"972\":{},\"1036\":{},\"1319\":{}},\"comment\":{}}],[\"bsonregexp\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"bsonserializeoptions\",{\"_index\":410,\"name\":{\"1217\":{}},\"comment\":{}}],[\"bsonsymbol\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"bsontype\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"bsontypealias\",{\"_index\":745,\"name\":{\"2174\":{}},\"comment\":{}}],[\"bucket\",{\"_index\":289,\"name\":{\"820\":{}},\"comment\":{}}],[\"bucketmaxspanseconds\",{\"_index\":854,\"name\":{\"2401\":{}},\"comment\":{}}],[\"bucketname\",{\"_index\":695,\"name\":{\"2001\":{}},\"comment\":{}}],[\"bucketroundingseconds\",{\"_index\":855,\"name\":{\"2402\":{}},\"comment\":{}}],[\"bucketsize\",{\"_index\":886,\"name\":{\"2595\":{},\"2634\":{}},\"comment\":{}}],[\"bufferedcount\",{\"_index\":116,\"name\":{\"452\":{},\"520\":{},\"758\":{},\"856\":{},\"902\":{},\"1000\":{},\"1922\":{}},\"comment\":{}}],[\"buftostore\",{\"_index\":295,\"name\":{\"828\":{}},\"comment\":{}}],[\"buildinfo\",{\"_index\":149,\"name\":{\"487\":{}},\"comment\":{}}],[\"bulkoperation\",{\"_index\":448,\"name\":{\"1325\":{}},\"comment\":{}}],[\"bulkoperationbase\",{\"_index\":446,\"name\":{\"1313\":{}},\"comment\":{}}],[\"bulkwrite\",{\"_index\":214,\"name\":{\"658\":{}},\"comment\":{}}],[\"bulkwriteoperationerror\",{\"_index\":414,\"name\":{\"1223\":{}},\"comment\":{}}],[\"bulkwriteoptions\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"bulkwriteresult\",{\"_index\":416,\"name\":{\"1229\":{},\"1623\":{}},\"comment\":{}}],[\"bypassautoencryption\",{\"_index\":513,\"name\":{\"1577\":{}},\"comment\":{}}],[\"bypassdocumentvalidation\",{\"_index\":17,\"name\":{\"17\":{},\"1471\":{},\"1883\":{},\"2256\":{},\"2334\":{},\"2527\":{},\"2553\":{},\"2661\":{},\"2788\":{},\"2810\":{}},\"comment\":{}}],[\"bypassqueryanalysis\",{\"_index\":514,\"name\":{\"1578\":{}},\"comment\":{}}],[\"callback\",{\"_index\":1002,\"name\":{\"3028\":{}},\"comment\":{}}],[\"cancellationtoken\",{\"_index\":170,\"name\":{\"551\":{},\"1749\":{},\"1786\":{},\"2902\":{}},\"comment\":{}}],[\"canonicalize_host_name\",{\"_index\":573,\"name\":{\"1683\":{}},\"comment\":{}}],[\"capped\",{\"_index\":836,\"name\":{\"2361\":{}},\"comment\":{}}],[\"casefirst\",{\"_index\":821,\"name\":{\"2281\":{}},\"comment\":{}}],[\"caselevel\",{\"_index\":820,\"name\":{\"2280\":{}},\"comment\":{}}],[\"casesensitive\",{\"_index\":806,\"name\":{\"2241\":{}},\"comment\":{}}],[\"causalconsistency\",{\"_index\":188,\"name\":{\"610\":{},\"2984\":{}},\"comment\":{}}],[\"cause\",{\"_index\":57,\"name\":{\"59\":{},\"85\":{},\"96\":{},\"107\":{},\"118\":{},\"129\":{},\"140\":{},\"151\":{},\"162\":{},\"173\":{},\"184\":{},\"194\":{},\"206\":{},\"217\":{},\"228\":{},\"239\":{},\"250\":{},\"261\":{},\"272\":{},\"283\":{},\"294\":{},\"305\":{},\"316\":{},\"327\":{},\"338\":{},\"353\":{},\"365\":{},\"377\":{},\"388\":{},\"399\":{},\"410\":{},\"421\":{},\"437\":{}},\"comment\":{}}],[\"change\",{\"_index\":175,\"name\":{\"572\":{}},\"comment\":{}}],[\"changestream\",{\"_index\":171,\"name\":{\"567\":{}},\"comment\":{}}],[\"changestreamcollmoddocument\",{\"_index\":450,\"name\":{\"1339\":{}},\"comment\":{}}],[\"changestreamcreatedocument\",{\"_index\":457,\"name\":{\"1347\":{}},\"comment\":{}}],[\"changestreamcreateindexdocument\",{\"_index\":458,\"name\":{\"1355\":{}},\"comment\":{}}],[\"changestreamdeletedocument\",{\"_index\":460,\"name\":{\"1364\":{}},\"comment\":{}}],[\"changestreamdocument\",{\"_index\":464,\"name\":{\"1377\":{}},\"comment\":{}}],[\"changestreamdocumentcollectionuuid\",{\"_index\":465,\"name\":{\"1378\":{}},\"comment\":{}}],[\"changestreamdocumentcommon\",{\"_index\":466,\"name\":{\"1380\":{}},\"comment\":{}}],[\"changestreamdocumentkey\",{\"_index\":467,\"name\":{\"1386\":{}},\"comment\":{}}],[\"changestreamdocumentoperationdescription\",{\"_index\":468,\"name\":{\"1390\":{}},\"comment\":{}}],[\"changestreamdropdatabasedocument\",{\"_index\":469,\"name\":{\"1392\":{}},\"comment\":{}}],[\"changestreamdropdocument\",{\"_index\":470,\"name\":{\"1402\":{}},\"comment\":{}}],[\"changestreamdropindexdocument\",{\"_index\":471,\"name\":{\"1411\":{}},\"comment\":{}}],[\"changestreamevents\",{\"_index\":472,\"name\":{\"1420\":{}},\"comment\":{}}],[\"changestreaminsertdocument\",{\"_index\":473,\"name\":{\"1421\":{}},\"comment\":{}}],[\"changestreaminvalidatedocument\",{\"_index\":475,\"name\":{\"1434\":{}},\"comment\":{}}],[\"changestreamnamespace\",{\"_index\":476,\"name\":{\"1441\":{}},\"comment\":{}}],[\"changestreamoptions\",{\"_index\":478,\"name\":{\"1444\":{}},\"comment\":{}}],[\"changestreampreandpostimages\",{\"_index\":848,\"name\":{\"2378\":{}},\"comment\":{}}],[\"changestreamrefinecollectionshardkeydocument\",{\"_index\":484,\"name\":{\"1474\":{}},\"comment\":{}}],[\"changestreamrenamedocument\",{\"_index\":485,\"name\":{\"1483\":{}},\"comment\":{}}],[\"changestreamreplacedocument\",{\"_index\":487,\"name\":{\"1496\":{}},\"comment\":{}}],[\"changestreamreshardcollectiondocument\",{\"_index\":488,\"name\":{\"1509\":{}},\"comment\":{}}],[\"changestreamshardcollectiondocument\",{\"_index\":489,\"name\":{\"1518\":{}},\"comment\":{}}],[\"changestreamsplitevent\",{\"_index\":490,\"name\":{\"1527\":{}},\"comment\":{}}],[\"changestreamupdatedocument\",{\"_index\":493,\"name\":{\"1530\":{}},\"comment\":{}}],[\"chunks\",{\"_index\":290,\"name\":{\"821\":{}},\"comment\":{}}],[\"chunksize\",{\"_index\":689,\"name\":{\"1991\":{}},\"comment\":{}}],[\"chunksizebytes\",{\"_index\":294,\"name\":{\"827\":{},\"2002\":{},\"2006\":{}},\"comment\":{}}],[\"clientencryption\",{\"_index\":62,\"name\":{\"64\":{}},\"comment\":{}}],[\"clientencryptioncreatedatakeyprovideroptions\",{\"_index\":532,\"name\":{\"1602\":{}},\"comment\":{}}],[\"clientencryptiondatakeyprovider\",{\"_index\":566,\"name\":{\"1660\":{}},\"comment\":{}}],[\"clientencryptionencryptoptions\",{\"_index\":536,\"name\":{\"1606\":{}},\"comment\":{}}],[\"clientencryptionoptions\",{\"_index\":543,\"name\":{\"1613\":{}},\"comment\":{}}],[\"clientencryptionrewrapmanydatakeyprovideroptions\",{\"_index\":544,\"name\":{\"1619\":{}},\"comment\":{}}],[\"clientencryptionrewrapmanydatakeyresult\",{\"_index\":546,\"name\":{\"1622\":{}},\"comment\":{}}],[\"clientencryptiontlsoptions\",{\"_index\":567,\"name\":{\"1671\":{}},\"comment\":{}}],[\"clientid\",{\"_index\":592,\"name\":{\"1710\":{}},\"comment\":{}}],[\"clientmetadata\",{\"_index\":637,\"name\":{\"1789\":{}},\"comment\":{}}],[\"clientmetadataoptions\",{\"_index\":647,\"name\":{\"1811\":{}},\"comment\":{}}],[\"clientoptions\",{\"_index\":186,\"name\":{\"607\":{}},\"comment\":{}}],[\"clientsession\",{\"_index\":184,\"name\":{\"605\":{}},\"comment\":{}}],[\"clientsessionevents\",{\"_index\":985,\"name\":{\"2980\":{}},\"comment\":{}}],[\"clientsessionoptions\",{\"_index\":987,\"name\":{\"2983\":{}},\"comment\":{}}],[\"clone\",{\"_index\":130,\"name\":{\"468\":{},\"498\":{},\"730\":{},\"847\":{},\"893\":{},\"987\":{},\"1900\":{}},\"comment\":{}}],[\"close\",{\"_index\":110,\"name\":{\"443\":{},\"459\":{},\"496\":{},\"527\":{},\"571\":{},\"587\":{},\"729\":{},\"765\":{},\"842\":{},\"863\":{},\"889\":{},\"909\":{},\"945\":{},\"977\":{},\"1007\":{},\"1734\":{},\"1852\":{},\"1898\":{},\"1929\":{}},\"comment\":{}}],[\"closed\",{\"_index\":113,\"name\":{\"449\":{},\"517\":{},\"586\":{},\"755\":{},\"853\":{},\"899\":{},\"997\":{},\"1919\":{}},\"comment\":{}}],[\"closeoptions\",{\"_index\":628,\"name\":{\"1763\":{}},\"comment\":{}}],[\"clusteredcollectionoptions\",{\"_index\":833,\"name\":{\"2356\":{}},\"comment\":{}}],[\"clusteredindex\",{\"_index\":846,\"name\":{\"2375\":{}},\"comment\":{}}],[\"clustertime\",{\"_index\":189,\"name\":{\"611\":{},\"1342\":{},\"1350\":{},\"1358\":{},\"1369\":{},\"1382\":{},\"1398\":{},\"1406\":{},\"1414\":{},\"1426\":{},\"1437\":{},\"1477\":{},\"1491\":{},\"1502\":{},\"1512\":{},\"1521\":{},\"1537\":{},\"2879\":{},\"2880\":{},\"2926\":{}},\"comment\":{}}],[\"clustertimereceived\",{\"_index\":609,\"name\":{\"1733\":{}},\"comment\":{}}],[\"code\",{\"_index\":4,\"name\":{\"4\":{},\"56\":{},\"82\":{},\"93\":{},\"104\":{},\"115\":{},\"126\":{},\"137\":{},\"148\":{},\"159\":{},\"170\":{},\"181\":{},\"191\":{},\"203\":{},\"214\":{},\"225\":{},\"236\":{},\"247\":{},\"258\":{},\"269\":{},\"280\":{},\"291\":{},\"302\":{},\"313\":{},\"324\":{},\"335\":{},\"350\":{},\"362\":{},\"374\":{},\"385\":{},\"396\":{},\"407\":{},\"418\":{},\"434\":{},\"1225\":{},\"1284\":{},\"1292\":{},\"1299\":{},\"1336\":{}},\"comment\":{}}],[\"codename\",{\"_index\":51,\"name\":{\"52\":{},\"345\":{},\"430\":{}},\"comment\":{}}],[\"coll\",{\"_index\":477,\"name\":{\"1443\":{},\"1488\":{}},\"comment\":{}}],[\"collation\",{\"_index\":22,\"name\":{\"22\":{},\"747\":{},\"1254\":{},\"1258\":{},\"1265\":{},\"1272\":{},\"1279\":{},\"1332\":{},\"1466\":{},\"1550\":{},\"1885\":{},\"2260\":{},\"2290\":{},\"2315\":{},\"2338\":{},\"2382\":{},\"2405\":{},\"2429\":{},\"2435\":{},\"2454\":{},\"2484\":{},\"2511\":{},\"2536\":{},\"2562\":{},\"2610\":{},\"2615\":{},\"2652\":{},\"2664\":{},\"2707\":{},\"2715\":{},\"2749\":{},\"2772\":{},\"2789\":{},\"2811\":{},\"2841\":{},\"2847\":{},\"3015\":{}},\"comment\":{}}],[\"collationoptions\",{\"_index\":818,\"name\":{\"2278\":{}},\"comment\":{}}],[\"collection\",{\"_index\":208,\"name\":{\"647\":{},\"714\":{},\"3050\":{},\"3058\":{}},\"comment\":{}}],[\"collectioninfo\",{\"_index\":898,\"name\":{\"2682\":{}},\"comment\":{}}],[\"collectionname\",{\"_index\":209,\"name\":{\"649\":{}},\"comment\":{}}],[\"collectionoptions\",{\"_index\":660,\"name\":{\"1839\":{}},\"comment\":{}}],[\"collections\",{\"_index\":264,\"name\":{\"720\":{}},\"comment\":{}}],[\"collectionuuid\",{\"_index\":456,\"name\":{\"1346\":{},\"1354\":{},\"1362\":{},\"1376\":{},\"1379\":{},\"1410\":{},\"1418\":{},\"1433\":{},\"1481\":{},\"1495\":{},\"1516\":{},\"1525\":{},\"1544\":{}},\"comment\":{}}],[\"command\",{\"_index\":148,\"name\":{\"486\":{},\"711\":{},\"978\":{},\"1128\":{}},\"comment\":{}}],[\"commandfailed\",{\"_index\":608,\"name\":{\"1732\":{}},\"comment\":{}}],[\"commandfailedevent\",{\"_index\":371,\"name\":{\"1114\":{}},\"comment\":{}}],[\"commandname\",{\"_index\":376,\"name\":{\"1119\":{},\"1127\":{},\"1138\":{}},\"comment\":{}}],[\"commandobj\",{\"_index\":381,\"name\":{\"1124\":{}},\"comment\":{}}],[\"commandoperationoptions\",{\"_index\":828,\"name\":{\"2288\":{}},\"comment\":{}}],[\"commandstakecollation\",{\"_index\":972,\"name\":{\"2958\":{}},\"comment\":{}}],[\"commandstakewriteconcern\",{\"_index\":971,\"name\":{\"2957\":{}},\"comment\":{}}],[\"commandstarted\",{\"_index\":606,\"name\":{\"1730\":{}},\"comment\":{}}],[\"commandstartedevent\",{\"_index\":380,\"name\":{\"1123\":{}},\"comment\":{}}],[\"commandsucceeded\",{\"_index\":607,\"name\":{\"1731\":{}},\"comment\":{}}],[\"commandsucceededevent\",{\"_index\":382,\"name\":{\"1133\":{}},\"comment\":{}}],[\"comment\",{\"_index\":24,\"name\":{\"24\":{},\"741\":{},\"981\":{},\"1463\":{},\"1860\":{},\"1876\":{},\"2244\":{},\"2265\":{},\"2292\":{},\"2316\":{},\"2343\":{},\"2384\":{},\"2410\":{},\"2437\":{},\"2455\":{},\"2500\":{},\"2513\":{},\"2538\":{},\"2564\":{},\"2607\":{},\"2649\":{},\"2666\":{},\"2704\":{},\"2717\":{},\"2751\":{},\"2774\":{},\"2795\":{},\"2817\":{},\"2849\":{},\"3017\":{}},\"comment\":{}}],[\"commitquorum\",{\"_index\":879,\"name\":{\"2585\":{}},\"comment\":{}}],[\"committransaction\",{\"_index\":204,\"name\":{\"628\":{}},\"comment\":{}}],[\"commonevents\",{\"_index\":732,\"name\":{\"2141\":{}},\"comment\":{}}],[\"commonwireversion\",{\"_index\":981,\"name\":{\"2973\":{}},\"comment\":{}}],[\"compatibilityerror\",{\"_index\":980,\"name\":{\"2969\":{}},\"comment\":{}}],[\"compatible\",{\"_index\":979,\"name\":{\"2968\":{}},\"comment\":{}}],[\"compressor\",{\"_index\":331,\"name\":{\"1048\":{},\"1049\":{},\"1828\":{}},\"comment\":{}}],[\"compressorname\",{\"_index\":659,\"name\":{\"1838\":{}},\"comment\":{}}],[\"compressors\",{\"_index\":622,\"name\":{\"1751\":{},\"1782\":{},\"1827\":{},\"1835\":{},\"2037\":{},\"2090\":{},\"2898\":{}},\"comment\":{}}],[\"condition\",{\"_index\":746,\"name\":{\"2175\":{}},\"comment\":{}}],[\"connect\",{\"_index\":308,\"name\":{\"935\":{},\"944\":{}},\"comment\":{}}],[\"connectioncheckedinevent\",{\"_index\":384,\"name\":{\"1142\":{}},\"comment\":{}}],[\"connectioncheckedoutevent\",{\"_index\":386,\"name\":{\"1146\":{}},\"comment\":{}}],[\"connectioncheckoutfailedevent\",{\"_index\":387,\"name\":{\"1150\":{}},\"comment\":{}}],[\"connectioncheckoutstartedevent\",{\"_index\":388,\"name\":{\"1154\":{}},\"comment\":{}}],[\"connectionclosedevent\",{\"_index\":389,\"name\":{\"1157\":{}},\"comment\":{}}],[\"connectioncreatedevent\",{\"_index\":390,\"name\":{\"1163\":{}},\"comment\":{}}],[\"connectionevents\",{\"_index\":605,\"name\":{\"1728\":{}},\"comment\":{}}],[\"connectiongeneration\",{\"_index\":56,\"name\":{\"58\":{},\"84\":{},\"95\":{},\"106\":{},\"117\":{},\"128\":{},\"139\":{},\"150\":{},\"161\":{},\"172\":{},\"183\":{},\"193\":{},\"205\":{},\"216\":{},\"227\":{},\"238\":{},\"249\":{},\"260\":{},\"271\":{},\"282\":{},\"293\":{},\"304\":{},\"315\":{},\"326\":{},\"337\":{},\"352\":{},\"364\":{},\"376\":{},\"387\":{},\"398\":{},\"409\":{},\"420\":{},\"436\":{}},\"comment\":{}}],[\"connectionid\",{\"_index\":373,\"name\":{\"1116\":{},\"1130\":{},\"1135\":{},\"1143\":{},\"1147\":{},\"1158\":{},\"1164\":{},\"1185\":{},\"1197\":{},\"1201\":{},\"1203\":{}},\"comment\":{}}],[\"connectionoptions\",{\"_index\":613,\"name\":{\"1738\":{}},\"comment\":{}}],[\"connectionpoolclearedevent\",{\"_index\":391,\"name\":{\"1167\":{}},\"comment\":{}}],[\"connectionpoolclosedevent\",{\"_index\":393,\"name\":{\"1171\":{}},\"comment\":{}}],[\"connectionpoolcreatedevent\",{\"_index\":394,\"name\":{\"1174\":{}},\"comment\":{}}],[\"connectionpoolevents\",{\"_index\":630,\"name\":{\"1765\":{}},\"comment\":{}}],[\"connectionpoolmonitoringevent\",{\"_index\":395,\"name\":{\"1178\":{}},\"comment\":{}}],[\"connectionpooloptions\",{\"_index\":631,\"name\":{\"1766\":{}},\"comment\":{}}],[\"connectionpoolreadyevent\",{\"_index\":396,\"name\":{\"1181\":{}},\"comment\":{}}],[\"connectionreadyevent\",{\"_index\":397,\"name\":{\"1184\":{}},\"comment\":{}}],[\"connectoptions\",{\"_index\":961,\"name\":{\"2940\":{}},\"comment\":{}}],[\"connecttimeoutms\",{\"_index\":617,\"name\":{\"1745\":{},\"1780\":{},\"2035\":{},\"2108\":{},\"2887\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":38,\"name\":{\"38\":{},\"66\":{},\"80\":{},\"91\":{},\"102\":{},\"113\":{},\"124\":{},\"135\":{},\"146\":{},\"157\":{},\"168\":{},\"179\":{},\"190\":{},\"201\":{},\"212\":{},\"223\":{},\"234\":{},\"245\":{},\"256\":{},\"267\":{},\"278\":{},\"289\":{},\"300\":{},\"311\":{},\"322\":{},\"333\":{},\"344\":{},\"359\":{},\"371\":{},\"383\":{},\"394\":{},\"405\":{},\"416\":{},\"427\":{},\"701\":{},\"790\":{},\"843\":{},\"890\":{},\"936\":{},\"1075\":{},\"1093\":{},\"1107\":{},\"1283\":{},\"1290\":{},\"1305\":{},\"1692\":{},\"1819\":{},\"2947\":{},\"2961\":{},\"3036\":{},\"3049\":{},\"3056\":{}},\"comment\":{}}],[\"contentionfactor\",{\"_index\":540,\"name\":{\"1610\":{}},\"comment\":{}}],[\"contenttype\",{\"_index\":690,\"name\":{\"1993\":{},\"2009\":{}},\"comment\":{}}],[\"count\",{\"_index\":243,\"name\":{\"688\":{},\"732\":{}},\"comment\":{}}],[\"countdocuments\",{\"_index\":233,\"name\":{\"678\":{}},\"comment\":{}}],[\"countdocumentsoptions\",{\"_index\":832,\"name\":{\"2329\":{}},\"comment\":{}}],[\"counter\",{\"_index\":960,\"name\":{\"2939\":{}},\"comment\":{}}],[\"countoptions\",{\"_index\":831,\"name\":{\"2309\":{}},\"comment\":{}}],[\"createcollection\",{\"_index\":258,\"name\":{\"710\":{}},\"comment\":{}}],[\"createcollectionoptions\",{\"_index\":835,\"name\":{\"2360\":{}},\"comment\":{}}],[\"createdatakey\",{\"_index\":64,\"name\":{\"67\":{}},\"comment\":{}}],[\"createencryptedcollection\",{\"_index\":72,\"name\":{\"75\":{}},\"comment\":{}}],[\"createindex\",{\"_index\":225,\"name\":{\"670\":{},\"721\":{}},\"comment\":{}}],[\"createindexes\",{\"_index\":226,\"name\":{\"671\":{}},\"comment\":{}}],[\"createindexesoptions\",{\"_index\":875,\"name\":{\"2577\":{}},\"comment\":{}}],[\"createpk\",{\"_index\":724,\"name\":{\"2130\":{}},\"comment\":{}}],[\"createsearchindex\",{\"_index\":245,\"name\":{\"690\":{}},\"comment\":{}}],[\"createsearchindexes\",{\"_index\":246,\"name\":{\"691\":{}},\"comment\":{}}],[\"creationdate\",{\"_index\":549,\"name\":{\"1629\":{}},\"comment\":{}}],[\"credentials\",{\"_index\":616,\"name\":{\"1744\":{},\"1773\":{},\"2085\":{},\"2890\":{}},\"comment\":{}}],[\"cryptsharedlibpath\",{\"_index\":521,\"name\":{\"1589\":{}},\"comment\":{}}],[\"cryptsharedlibrequired\",{\"_index\":522,\"name\":{\"1590\":{}},\"comment\":{}}],[\"csflekmstlsoptions\",{\"_index\":568,\"name\":{\"1672\":{}},\"comment\":{}}],[\"currentindex\",{\"_index\":441,\"name\":{\"1307\":{}},\"comment\":{}}],[\"cursor\",{\"_index\":483,\"name\":{\"1460\":{},\"1884\":{},\"2257\":{},\"2335\":{}},\"comment\":{}}],[\"cursor_flags\",{\"_index\":332,\"name\":{\"1050\":{}},\"comment\":{}}],[\"cursorflag\",{\"_index\":670,\"name\":{\"1866\":{}},\"comment\":{}}],[\"cursorstreamoptions\",{\"_index\":671,\"name\":{\"1867\":{}},\"comment\":{}}],[\"data\",{\"_index\":699,\"name\":{\"2016\":{}},\"comment\":{}}],[\"databasename\",{\"_index\":256,\"name\":{\"702\":{},\"1126\":{}},\"comment\":{}}],[\"databases\",{\"_index\":908,\"name\":{\"2731\":{}},\"comment\":{}}],[\"datakey\",{\"_index\":547,\"name\":{\"1624\":{}},\"comment\":{}}],[\"db\",{\"_index\":249,\"name\":{\"694\":{},\"946\":{},\"1396\":{},\"1442\":{},\"1487\":{},\"1705\":{},\"3051\":{},\"3057\":{}},\"comment\":{}}],[\"dbname\",{\"_index\":26,\"name\":{\"26\":{},\"648\":{},\"1456\":{},\"1890\":{},\"2092\":{},\"2267\":{},\"2294\":{},\"2318\":{},\"2345\":{},\"2386\":{},\"2412\":{},\"2439\":{},\"2457\":{},\"2494\":{},\"2515\":{},\"2540\":{},\"2566\":{},\"2601\":{},\"2643\":{},\"2668\":{},\"2698\":{},\"2719\":{},\"2753\":{},\"2776\":{},\"2797\":{},\"2819\":{},\"2851\":{},\"3019\":{}},\"comment\":{}}],[\"dboptions\",{\"_index\":677,\"name\":{\"1955\":{}},\"comment\":{}}],[\"dbref\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"dbstatsoptions\",{\"_index\":921,\"name\":{\"2769\":{}},\"comment\":{}}],[\"decimal128\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"decrypt\",{\"_index\":75,\"name\":{\"78\":{}},\"comment\":{}}],[\"default_language\",{\"_index\":881,\"name\":{\"2588\":{},\"2629\":{}},\"comment\":{}}],[\"defaulttransactionoptions\",{\"_index\":192,\"name\":{\"614\":{},\"2986\":{}},\"comment\":{}}],[\"definition\",{\"_index\":919,\"name\":{\"2767\":{}},\"comment\":{}}],[\"delete\",{\"_index\":282,\"name\":{\"794\":{},\"1330\":{}},\"comment\":{}}],[\"deletedcount\",{\"_index\":46,\"name\":{\"46\":{},\"1236\":{},\"2425\":{}},\"comment\":{}}],[\"deletekey\",{\"_index\":66,\"name\":{\"69\":{}},\"comment\":{}}],[\"deletemany\",{\"_index\":219,\"name\":{\"663\":{}},\"comment\":{}}],[\"deletemanymodel\",{\"_index\":427,\"name\":{\"1252\":{}},\"comment\":{}}],[\"deleteone\",{\"_index\":218,\"name\":{\"662\":{},\"1329\":{}},\"comment\":{}}],[\"deleteonemodel\",{\"_index\":428,\"name\":{\"1256\":{}},\"comment\":{}}],[\"deleteoptions\",{\"_index\":856,\"name\":{\"2403\":{}},\"comment\":{}}],[\"deleteresult\",{\"_index\":857,\"name\":{\"2423\":{}},\"comment\":{}}],[\"deletestatement\",{\"_index\":859,\"name\":{\"2426\":{}},\"comment\":{}}],[\"deprecationerrors\",{\"_index\":726,\"name\":{\"2134\":{}},\"comment\":{}}],[\"deserialize\",{\"_index\":412,\"name\":{\"1221\":{}},\"comment\":{}}],[\"diacriticsensitive\",{\"_index\":807,\"name\":{\"2242\":{}},\"comment\":{}}],[\"directconnection\",{\"_index\":719,\"name\":{\"2062\":{},\"2123\":{}},\"comment\":{}}],[\"disambiguatedpaths\",{\"_index\":499,\"name\":{\"1560\":{}},\"comment\":{}}],[\"distinct\",{\"_index\":234,\"name\":{\"679\":{}},\"comment\":{}}],[\"distinctoptions\",{\"_index\":861,\"name\":{\"2431\":{}},\"comment\":{}}],[\"document\",{\"_index\":411,\"name\":{\"1220\":{},\"1261\":{}},\"comment\":{}}],[\"documentkey\",{\"_index\":463,\"name\":{\"1373\":{},\"1387\":{},\"1430\":{},\"1506\":{},\"1541\":{}},\"comment\":{}}],[\"done\",{\"_index\":293,\"name\":{\"825\":{}},\"comment\":{}}],[\"double\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"driver\",{\"_index\":638,\"name\":{\"1790\":{}},\"comment\":{}}],[\"driverinfo\",{\"_index\":648,\"name\":{\"1812\":{},\"2020\":{},\"2074\":{},\"2128\":{}},\"comment\":{}}],[\"drop\",{\"_index\":221,\"name\":{\"665\":{},\"798\":{}},\"comment\":{}}],[\"dropcollection\",{\"_index\":262,\"name\":{\"718\":{}},\"comment\":{}}],[\"dropcollectionoptions\",{\"_index\":862,\"name\":{\"2432\":{}},\"comment\":{}}],[\"dropdatabase\",{\"_index\":263,\"name\":{\"719\":{}},\"comment\":{}}],[\"dropdatabaseoptions\",{\"_index\":863,\"name\":{\"2450\":{}},\"comment\":{}}],[\"dropindex\",{\"_index\":227,\"name\":{\"672\":{}},\"comment\":{}}],[\"dropindexes\",{\"_index\":228,\"name\":{\"673\":{}},\"comment\":{}}],[\"dropindexesoptions\",{\"_index\":889,\"name\":{\"2613\":{}},\"comment\":{}}],[\"dropsearchindex\",{\"_index\":247,\"name\":{\"692\":{}},\"comment\":{}}],[\"droptarget\",{\"_index\":915,\"name\":{\"2746\":{}},\"comment\":{}}],[\"duration\",{\"_index\":375,\"name\":{\"1118\":{},\"1137\":{},\"1198\":{},\"1204\":{}},\"comment\":{}}],[\"each\",{\"_index\":738,\"name\":{\"2164\":{},\"2169\":{}},\"comment\":{}}],[\"electionid\",{\"_index\":951,\"name\":{\"2924\":{}},\"comment\":{}}],[\"elemmatch\",{\"_index\":771,\"name\":{\"2204\":{}},\"comment\":{}}],[\"emit\",{\"_index\":140,\"name\":{\"478\":{},\"544\":{},\"560\":{},\"598\":{},\"640\":{},\"781\":{},\"807\":{},\"881\":{},\"927\":{},\"958\":{},\"1021\":{},\"1946\":{},\"2154\":{}},\"comment\":{}}],[\"enabled\",{\"_index\":849,\"name\":{\"2380\":{},\"2864\":{}},\"comment\":{}}],[\"enableutf8validation\",{\"_index\":34,\"name\":{\"34\":{},\"1219\":{},\"1454\":{},\"1843\":{},\"1865\":{},\"1881\":{},\"1963\":{},\"2080\":{},\"2275\":{},\"2302\":{},\"2326\":{},\"2353\":{},\"2394\":{},\"2420\":{},\"2447\":{},\"2465\":{},\"2492\":{},\"2523\":{},\"2548\":{},\"2574\":{},\"2599\":{},\"2641\":{},\"2676\":{},\"2696\":{},\"2727\":{},\"2742\":{},\"2761\":{},\"2784\":{},\"2805\":{},\"2827\":{},\"2859\":{},\"3026\":{}},\"comment\":{}}],[\"encrypt\",{\"_index\":73,\"name\":{\"76\":{}},\"comment\":{}}],[\"encryptedfields\",{\"_index\":561,\"name\":{\"1649\":{},\"1652\":{},\"2377\":{},\"2433\":{}},\"comment\":{}}],[\"encryptedfieldsmap\",{\"_index\":512,\"name\":{\"1576\":{}},\"comment\":{}}],[\"encryptexpression\",{\"_index\":74,\"name\":{\"77\":{}},\"comment\":{}}],[\"end\",{\"_index\":176,\"name\":{\"573\":{},\"817\":{},\"1981\":{},\"1987\":{}},\"comment\":{}}],[\"ended\",{\"_index\":986,\"name\":{\"2982\":{}},\"comment\":{}}],[\"endpoint\",{\"_index\":510,\"name\":{\"1574\":{},\"1597\":{},\"1639\":{},\"1668\":{}},\"comment\":{}}],[\"endsession\",{\"_index\":197,\"name\":{\"621\":{}},\"comment\":{}}],[\"endsessionoptions\",{\"_index\":988,\"name\":{\"2987\":{}},\"comment\":{}}],[\"enhancedomit\",{\"_index\":747,\"name\":{\"2176\":{}},\"comment\":{}}],[\"env\",{\"_index\":643,\"name\":{\"1804\":{}},\"comment\":{}}],[\"eq\",{\"_index\":750,\"name\":{\"2180\":{}},\"comment\":{}}],[\"equals\",{\"_index\":200,\"name\":{\"624\":{},\"1102\":{},\"1698\":{},\"2934\":{}},\"comment\":{}}],[\"err\",{\"_index\":41,\"name\":{\"41\":{},\"1291\":{},\"1969\":{}},\"comment\":{}}],[\"errinfo\",{\"_index\":53,\"name\":{\"54\":{},\"347\":{},\"432\":{},\"1227\":{},\"1286\":{},\"1295\":{},\"1338\":{},\"1971\":{}},\"comment\":{}}],[\"errmsg\",{\"_index\":58,\"name\":{\"60\":{},\"86\":{},\"97\":{},\"108\":{},\"119\":{},\"130\":{},\"141\":{},\"152\":{},\"163\":{},\"174\":{},\"185\":{},\"196\":{},\"207\":{},\"218\":{},\"229\":{},\"240\":{},\"251\":{},\"262\":{},\"273\":{},\"284\":{},\"295\":{},\"306\":{},\"317\":{},\"328\":{},\"339\":{},\"354\":{},\"366\":{},\"378\":{},\"389\":{},\"400\":{},\"411\":{},\"422\":{},\"438\":{},\"1226\":{},\"1285\":{},\"1294\":{},\"1301\":{},\"1337\":{},\"1968\":{}},\"comment\":{}}],[\"error\",{\"_index\":177,\"name\":{\"574\":{},\"2913\":{},\"2974\":{}},\"comment\":{}}],[\"errordescription\",{\"_index\":681,\"name\":{\"1966\":{}},\"comment\":{}}],[\"errored\",{\"_index\":302,\"name\":{\"836\":{}},\"comment\":{}}],[\"errorlabels\",{\"_index\":61,\"name\":{\"63\":{},\"89\":{},\"100\":{},\"111\":{},\"122\":{},\"133\":{},\"144\":{},\"155\":{},\"166\":{},\"177\":{},\"188\":{},\"199\":{},\"210\":{},\"221\":{},\"232\":{},\"243\":{},\"254\":{},\"265\":{},\"276\":{},\"287\":{},\"298\":{},\"309\":{},\"320\":{},\"331\":{},\"342\":{},\"357\":{},\"369\":{},\"381\":{},\"392\":{},\"403\":{},\"414\":{},\"425\":{},\"441\":{},\"1970\":{}},\"comment\":{}}],[\"estimateddocumentcount\",{\"_index\":232,\"name\":{\"677\":{}},\"comment\":{}}],[\"estimateddocumentcountoptions\",{\"_index\":864,\"name\":{\"2451\":{}},\"comment\":{}}],[\"eventemitterwithstate\",{\"_index\":1003,\"name\":{\"3030\":{}},\"comment\":{}}],[\"eventnames\",{\"_index\":144,\"name\":{\"482\":{},\"548\":{},\"564\":{},\"602\":{},\"644\":{},\"785\":{},\"811\":{},\"885\":{},\"931\":{},\"962\":{},\"1025\":{},\"1950\":{},\"2158\":{}},\"comment\":{}}],[\"eventsdescription\",{\"_index\":733,\"name\":{\"2142\":{}},\"comment\":{}}],[\"execute\",{\"_index\":319,\"name\":{\"975\":{},\"1039\":{},\"1322\":{}},\"comment\":{}}],[\"exists\",{\"_index\":759,\"name\":{\"2189\":{}},\"comment\":{}}],[\"expireafterseconds\",{\"_index\":847,\"name\":{\"2376\":{},\"2583\":{},\"2626\":{}},\"comment\":{}}],[\"expiresinseconds\",{\"_index\":596,\"name\":{\"1714\":{}},\"comment\":{}}],[\"explain\",{\"_index\":36,\"name\":{\"36\":{},\"500\":{},\"733\":{},\"1465\":{},\"1896\":{},\"1902\":{},\"1975\":{},\"2277\":{},\"2304\":{},\"2328\":{},\"2355\":{},\"2396\":{},\"2422\":{},\"2449\":{},\"2467\":{},\"2501\":{},\"2525\":{},\"2550\":{},\"2576\":{},\"2609\":{},\"2651\":{},\"2678\":{},\"2706\":{},\"2729\":{},\"2763\":{},\"2786\":{},\"2807\":{},\"2829\":{},\"2861\":{},\"3027\":{}},\"comment\":{}}],[\"explainoptions\",{\"_index\":684,\"name\":{\"1974\":{}},\"comment\":{}}],[\"explainverbosity\",{\"_index\":334,\"name\":{\"1053\":{},\"1054\":{}},\"comment\":{}}],[\"explainverbositylike\",{\"_index\":685,\"name\":{\"1976\":{}},\"comment\":{}}],[\"explicit\",{\"_index\":191,\"name\":{\"613\":{}},\"comment\":{}}],[\"expr\",{\"_index\":760,\"name\":{\"2191\":{}},\"comment\":{}}],[\"extraoptions\",{\"_index\":516,\"name\":{\"1583\":{}},\"comment\":{}}],[\"failure\",{\"_index\":377,\"name\":{\"1120\":{},\"1199\":{}},\"comment\":{}}],[\"file\",{\"_index\":285,\"name\":{\"815\":{}},\"comment\":{}}],[\"filename\",{\"_index\":292,\"name\":{\"823\":{},\"1992\":{}},\"comment\":{}}],[\"files\",{\"_index\":291,\"name\":{\"822\":{}},\"comment\":{}}],[\"files_id\",{\"_index\":698,\"name\":{\"2014\":{}},\"comment\":{}}],[\"filter\",{\"_index\":269,\"name\":{\"734\":{},\"845\":{},\"1253\":{},\"1257\":{},\"1263\":{},\"1269\":{},\"1276\":{},\"2177\":{},\"2711\":{}},\"comment\":{}}],[\"filteroperations\",{\"_index\":748,\"name\":{\"2178\":{}},\"comment\":{}}],[\"filteroperators\",{\"_index\":749,\"name\":{\"2179\":{}},\"comment\":{}}],[\"find\",{\"_index\":223,\"name\":{\"667\":{},\"795\":{},\"970\":{},\"1034\":{},\"1317\":{}},\"comment\":{}}],[\"findcursor\",{\"_index\":268,\"name\":{\"728\":{}},\"comment\":{}}],[\"findone\",{\"_index\":222,\"name\":{\"666\":{}},\"comment\":{}}],[\"findoneanddelete\",{\"_index\":236,\"name\":{\"681\":{}},\"comment\":{}}],[\"findoneanddeleteoptions\",{\"_index\":871,\"name\":{\"2504\":{}},\"comment\":{}}],[\"findoneandreplace\",{\"_index\":237,\"name\":{\"682\":{}},\"comment\":{}}],[\"findoneandreplaceoptions\",{\"_index\":873,\"name\":{\"2526\":{}},\"comment\":{}}],[\"findoneandupdate\",{\"_index\":238,\"name\":{\"683\":{}},\"comment\":{}}],[\"findoneandupdateoptions\",{\"_index\":874,\"name\":{\"2551\":{}},\"comment\":{}}],[\"findoperators\",{\"_index\":447,\"name\":{\"1324\":{}},\"comment\":{}}],[\"findoptions\",{\"_index\":865,\"name\":{\"2468\":{}},\"comment\":{}}],[\"flags\",{\"_index\":838,\"name\":{\"2365\":{}},\"comment\":{}}],[\"flatten\",{\"_index\":777,\"name\":{\"2211\":{}},\"comment\":{}}],[\"force\",{\"_index\":629,\"name\":{\"1764\":{},\"2988\":{}},\"comment\":{}}],[\"forceclear\",{\"_index\":989,\"name\":{\"2989\":{}},\"comment\":{}}],[\"forceserverobjectid\",{\"_index\":19,\"name\":{\"19\":{},\"1957\":{},\"2069\":{},\"2125\":{},\"2662\":{}},\"comment\":{}}],[\"foreach\",{\"_index\":122,\"name\":{\"458\":{},\"526\":{},\"764\":{},\"862\":{},\"908\":{},\"1006\":{},\"1928\":{}},\"comment\":{}}],[\"fragment\",{\"_index\":491,\"name\":{\"1528\":{}},\"comment\":{}}],[\"fromhostport\",{\"_index\":1004,\"name\":{\"3034\":{}},\"comment\":{}}],[\"fromoptions\",{\"_index\":341,\"name\":{\"1070\":{},\"1090\":{},\"1106\":{}},\"comment\":{}}],[\"fromsrvrecord\",{\"_index\":1005,\"name\":{\"3035\":{}},\"comment\":{}}],[\"fromstring\",{\"_index\":355,\"name\":{\"1089\":{},\"3033\":{},\"3048\":{},\"3055\":{}},\"comment\":{}}],[\"fsync\",{\"_index\":370,\"name\":{\"1113\":{},\"3070\":{}},\"comment\":{}}],[\"full\",{\"_index\":830,\"name\":{\"2306\":{}},\"comment\":{}}],[\"fulldocument\",{\"_index\":474,\"name\":{\"1423\":{},\"1445\":{},\"1498\":{},\"1532\":{},\"1554\":{}},\"comment\":{}}],[\"fulldocumentbeforechange\",{\"_index\":462,\"name\":{\"1367\":{},\"1446\":{},\"1500\":{},\"1535\":{}},\"comment\":{}}],[\"gcp\",{\"_index\":508,\"name\":{\"1571\":{},\"1670\":{},\"1675\":{}},\"comment\":{}}],[\"gcpencryptionkeyoptions\",{\"_index\":552,\"name\":{\"1633\":{}},\"comment\":{}}],[\"generateidmap\",{\"_index\":417,\"name\":{\"1230\":{}},\"comment\":{}}],[\"generation\",{\"_index\":614,\"name\":{\"1740\":{}},\"comment\":{}}],[\"genericlistener\",{\"_index\":734,\"name\":{\"2143\":{}},\"comment\":{}}],[\"geointersects\",{\"_index\":764,\"name\":{\"2196\":{}},\"comment\":{}}],[\"geometry\",{\"_index\":765,\"name\":{\"2198\":{}},\"comment\":{}}],[\"geonear\",{\"_index\":169,\"name\":{\"511\":{},\"1913\":{}},\"comment\":{}}],[\"geowithin\",{\"_index\":766,\"name\":{\"2199\":{}},\"comment\":{}}],[\"getkey\",{\"_index\":68,\"name\":{\"71\":{}},\"comment\":{}}],[\"getkeybyaltname\",{\"_index\":69,\"name\":{\"72\":{}},\"comment\":{}}],[\"getkeys\",{\"_index\":67,\"name\":{\"70\":{}},\"comment\":{}}],[\"getmaxlisteners\",{\"_index\":145,\"name\":{\"483\":{},\"549\":{},\"565\":{},\"603\":{},\"645\":{},\"786\":{},\"812\":{},\"886\":{},\"932\":{},\"963\":{},\"1026\":{},\"1951\":{},\"2159\":{}},\"comment\":{}}],[\"getmoreoptions\",{\"_index\":321,\"name\":{\"979\":{}},\"comment\":{}}],[\"getoperation\",{\"_index\":438,\"name\":{\"1296\":{}},\"comment\":{}}],[\"getrawresponse\",{\"_index\":419,\"name\":{\"1244\":{}},\"comment\":{}}],[\"getupsertedidat\",{\"_index\":418,\"name\":{\"1243\":{}},\"comment\":{}}],[\"getwriteconcernerror\",{\"_index\":424,\"name\":{\"1249\":{}},\"comment\":{}}],[\"getwriteerrorat\",{\"_index\":422,\"name\":{\"1247\":{}},\"comment\":{}}],[\"getwriteerrorcount\",{\"_index\":421,\"name\":{\"1246\":{}},\"comment\":{}}],[\"getwriteerrors\",{\"_index\":423,\"name\":{\"1248\":{}},\"comment\":{}}],[\"granularity\",{\"_index\":853,\"name\":{\"2400\":{}},\"comment\":{}}],[\"gridfsbucket\",{\"_index\":277,\"name\":{\"788\":{}},\"comment\":{}}],[\"gridfsbucketevents\",{\"_index\":693,\"name\":{\"1997\":{}},\"comment\":{}}],[\"gridfsbucketoptions\",{\"_index\":694,\"name\":{\"2000\":{}},\"comment\":{}}],[\"gridfsbucketreadstream\",{\"_index\":284,\"name\":{\"814\":{}},\"comment\":{}}],[\"gridfsbucketreadstreamoptions\",{\"_index\":686,\"name\":{\"1977\":{}},\"comment\":{}}],[\"gridfsbucketreadstreamoptionswithrevision\",{\"_index\":687,\"name\":{\"1982\":{}},\"comment\":{}}],[\"gridfsbucketwritestream\",{\"_index\":288,\"name\":{\"819\":{}},\"comment\":{}}],[\"gridfsbucketwritestreamoptions\",{\"_index\":696,\"name\":{\"2005\":{}},\"comment\":{}}],[\"gridfschunk\",{\"_index\":697,\"name\":{\"2012\":{}},\"comment\":{}}],[\"gridfsfile\",{\"_index\":304,\"name\":{\"839\":{},\"1988\":{}},\"comment\":{}}],[\"group\",{\"_index\":159,\"name\":{\"501\":{},\"1903\":{}},\"comment\":{}}],[\"gssapicanonicalizationvalue\",{\"_index\":329,\"name\":{\"1044\":{},\"1045\":{}},\"comment\":{}}],[\"gt\",{\"_index\":751,\"name\":{\"2181\":{}},\"comment\":{}}],[\"gte\",{\"_index\":752,\"name\":{\"2182\":{}},\"comment\":{}}],[\"handlewriteerror\",{\"_index\":326,\"name\":{\"1029\":{}},\"comment\":{}}],[\"hasaggregationcursor\",{\"_index\":964,\"name\":{\"2950\":{}},\"comment\":{}}],[\"hasauthcommands\",{\"_index\":967,\"name\":{\"2953\":{}},\"comment\":{}}],[\"hasdatabearingservers\",{\"_index\":983,\"name\":{\"2976\":{}},\"comment\":{}}],[\"hasended\",{\"_index\":185,\"name\":{\"606\":{}},\"comment\":{}}],[\"haserrorlabel\",{\"_index\":59,\"name\":{\"61\":{},\"87\":{},\"98\":{},\"109\":{},\"120\":{},\"131\":{},\"142\":{},\"153\":{},\"164\":{},\"175\":{},\"186\":{},\"197\":{},\"208\":{},\"219\":{},\"230\":{},\"241\":{},\"252\":{},\"263\":{},\"274\":{},\"285\":{},\"296\":{},\"307\":{},\"318\":{},\"329\":{},\"340\":{},\"355\":{},\"367\":{},\"379\":{},\"390\":{},\"401\":{},\"412\":{},\"423\":{},\"439\":{}},\"comment\":{}}],[\"hash\",{\"_index\":938,\"name\":{\"2883\":{}},\"comment\":{}}],[\"hasknownservers\",{\"_index\":982,\"name\":{\"2975\":{}},\"comment\":{}}],[\"haslistcollectionscommand\",{\"_index\":968,\"name\":{\"2954\":{}},\"comment\":{}}],[\"haslistindexescommand\",{\"_index\":969,\"name\":{\"2955\":{}},\"comment\":{}}],[\"hasnext\",{\"_index\":119,\"name\":{\"455\":{},\"523\":{},\"583\":{},\"761\":{},\"859\":{},\"905\":{},\"1003\":{},\"1925\":{}},\"comment\":{}}],[\"hasserviceid\",{\"_index\":379,\"name\":{\"1122\":{},\"1132\":{},\"1141\":{}},\"comment\":{}}],[\"hastextsearch\",{\"_index\":966,\"name\":{\"2952\":{}},\"comment\":{}}],[\"hastimedout\",{\"_index\":992,\"name\":{\"2995\":{}},\"comment\":{}}],[\"haswritecommands\",{\"_index\":965,\"name\":{\"2951\":{}},\"comment\":{}}],[\"haswriteerrors\",{\"_index\":420,\"name\":{\"1245\":{}},\"comment\":{}}],[\"heartbeatfrequencyms\",{\"_index\":716,\"name\":{\"2057\":{},\"2119\":{},\"2888\":{},\"2971\":{},\"2978\":{}},\"comment\":{}}],[\"hedge\",{\"_index\":360,\"name\":{\"1096\":{},\"2868\":{},\"2875\":{},\"2878\":{}},\"comment\":{}}],[\"hedgeoptions\",{\"_index\":932,\"name\":{\"2863\":{}},\"comment\":{}}],[\"hidden\",{\"_index\":888,\"name\":{\"2597\":{},\"2625\":{}},\"comment\":{}}],[\"hint\",{\"_index\":211,\"name\":{\"655\":{},\"735\":{},\"1255\":{},\"1259\":{},\"1266\":{},\"1273\":{},\"1280\":{},\"1334\":{},\"1469\":{},\"1886\":{},\"2261\":{},\"2313\":{},\"2339\":{},\"2406\":{},\"2430\":{},\"2473\":{},\"2505\":{},\"2528\":{},\"2554\":{},\"2735\":{},\"2790\":{},\"2812\":{},\"2843\":{}},\"comment\":{}}],[\"host\",{\"_index\":956,\"name\":{\"2932\":{},\"3037\":{},\"3045\":{}},\"comment\":{}}],[\"hostaddress\",{\"_index\":615,\"name\":{\"1741\":{},\"1774\":{},\"2927\":{},\"3032\":{}},\"comment\":{}}],[\"hosts\",{\"_index\":722,\"name\":{\"2083\":{},\"2909\":{}},\"comment\":{}}],[\"id\",{\"_index\":111,\"name\":{\"444\":{},\"512\":{},\"616\":{},\"750\":{},\"826\":{},\"848\":{},\"894\":{},\"992\":{},\"1739\":{},\"1914\":{},\"2007\":{},\"2991\":{},\"2998\":{}},\"comment\":{}}],[\"idindex\",{\"_index\":901,\"name\":{\"2690\":{}},\"comment\":{}}],[\"idpserverinfo\",{\"_index\":590,\"name\":{\"1708\":{}},\"comment\":{}}],[\"idpserverresponse\",{\"_index\":594,\"name\":{\"1712\":{}},\"comment\":{}}],[\"in\",{\"_index\":753,\"name\":{\"2183\":{}},\"comment\":{}}],[\"includeresultmetadata\",{\"_index\":872,\"name\":{\"2509\":{},\"2534\":{},\"2560\":{}},\"comment\":{}}],[\"incrementtransactionnumber\",{\"_index\":201,\"name\":{\"625\":{}},\"comment\":{}}],[\"index\",{\"_index\":278,\"name\":{\"789\":{},\"1224\":{},\"1293\":{},\"1300\":{},\"1999\":{}},\"comment\":{}}],[\"indexdescription\",{\"_index\":890,\"name\":{\"2614\":{}},\"comment\":{}}],[\"indexdirection\",{\"_index\":891,\"name\":{\"2636\":{}},\"comment\":{}}],[\"indexes\",{\"_index\":235,\"name\":{\"680\":{}},\"comment\":{}}],[\"indexexists\",{\"_index\":230,\"name\":{\"675\":{}},\"comment\":{}}],[\"indexinformation\",{\"_index\":231,\"name\":{\"676\":{},\"725\":{}},\"comment\":{}}],[\"indexinformationoptions\",{\"_index\":829,\"name\":{\"2305\":{}},\"comment\":{}}],[\"indexoptiondefaults\",{\"_index\":843,\"name\":{\"2370\":{}},\"comment\":{}}],[\"indexspecification\",{\"_index\":892,\"name\":{\"2637\":{}},\"comment\":{}}],[\"inferidtype\",{\"_index\":778,\"name\":{\"2212\":{}},\"comment\":{}}],[\"info\",{\"_index\":899,\"name\":{\"2686\":{}},\"comment\":{}}],[\"init\",{\"_index\":174,\"name\":{\"570\":{}},\"comment\":{}}],[\"initializeorderedbulkop\",{\"_index\":242,\"name\":{\"687\":{}},\"comment\":{}}],[\"initializeunorderedbulkop\",{\"_index\":241,\"name\":{\"686\":{}},\"comment\":{}}],[\"insert\",{\"_index\":317,\"name\":{\"969\":{},\"1033\":{},\"1316\":{}},\"comment\":{}}],[\"insertedcount\",{\"_index\":43,\"name\":{\"43\":{},\"1233\":{},\"2657\":{}},\"comment\":{}}],[\"insertedid\",{\"_index\":897,\"name\":{\"2681\":{}},\"comment\":{}}],[\"insertedids\",{\"_index\":48,\"name\":{\"48\":{},\"1240\":{},\"2658\":{}},\"comment\":{}}],[\"insertmany\",{\"_index\":213,\"name\":{\"657\":{}},\"comment\":{}}],[\"insertmanyresult\",{\"_index\":894,\"name\":{\"2655\":{}},\"comment\":{}}],[\"insertone\",{\"_index\":212,\"name\":{\"656\":{}},\"comment\":{}}],[\"insertonemodel\",{\"_index\":429,\"name\":{\"1260\":{}},\"comment\":{}}],[\"insertoneoptions\",{\"_index\":895,\"name\":{\"2660\":{}},\"comment\":{}}],[\"insertoneresult\",{\"_index\":896,\"name\":{\"2679\":{}},\"comment\":{}}],[\"inspect\",{\"_index\":1008,\"name\":{\"3041\":{}},\"comment\":{}}],[\"int32\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"integertype\",{\"_index\":779,\"name\":{\"2213\":{}},\"comment\":{}}],[\"interruptinuseconnections\",{\"_index\":392,\"name\":{\"1168\":{}},\"comment\":{}}],[\"intransaction\",{\"_index\":202,\"name\":{\"626\":{}},\"comment\":{}}],[\"isactive\",{\"_index\":998,\"name\":{\"3008\":{}},\"comment\":{}}],[\"isany\",{\"_index\":780,\"name\":{\"2214\":{}},\"comment\":{}}],[\"iscapped\",{\"_index\":224,\"name\":{\"669\":{}},\"comment\":{}}],[\"iscommitted\",{\"_index\":999,\"name\":{\"3009\":{}},\"comment\":{}}],[\"isdatabearing\",{\"_index\":954,\"name\":{\"2930\":{}},\"comment\":{}}],[\"isdirty\",{\"_index\":991,\"name\":{\"2994\":{}},\"comment\":{}}],[\"isipv6\",{\"_index\":1007,\"name\":{\"3040\":{}},\"comment\":{}}],[\"isok\",{\"_index\":426,\"name\":{\"1251\":{}},\"comment\":{}}],[\"isordered\",{\"_index\":315,\"name\":{\"967\":{},\"1031\":{},\"1314\":{}},\"comment\":{}}],[\"ispinned\",{\"_index\":196,\"name\":{\"620\":{},\"3006\":{}},\"comment\":{}}],[\"isreadable\",{\"_index\":953,\"name\":{\"2929\":{}},\"comment\":{}}],[\"isstarting\",{\"_index\":997,\"name\":{\"3007\":{}},\"comment\":{}}],[\"issuer\",{\"_index\":591,\"name\":{\"1709\":{}},\"comment\":{}}],[\"isvalid\",{\"_index\":357,\"name\":{\"1092\":{},\"1100\":{}},\"comment\":{}}],[\"iswritable\",{\"_index\":955,\"name\":{\"2931\":{}},\"comment\":{}}],[\"j\",{\"_index\":369,\"name\":{\"1112\":{},\"3068\":{}},\"comment\":{}}],[\"join\",{\"_index\":781,\"name\":{\"2215\":{}},\"comment\":{}}],[\"journal\",{\"_index\":366,\"name\":{\"1109\":{},\"2066\":{},\"3067\":{}},\"comment\":{}}],[\"jsonschema\",{\"_index\":761,\"name\":{\"2192\":{}},\"comment\":{}}],[\"key\",{\"_index\":506,\"name\":{\"1569\":{},\"1596\":{},\"1665\":{},\"2358\":{},\"2617\":{}},\"comment\":{}}],[\"keyaltname\",{\"_index\":539,\"name\":{\"1609\":{}},\"comment\":{}}],[\"keyaltnames\",{\"_index\":534,\"name\":{\"1604\":{},\"1627\":{}},\"comment\":{}}],[\"keyid\",{\"_index\":538,\"name\":{\"1608\":{},\"2884\":{}},\"comment\":{}}],[\"keymaterial\",{\"_index\":535,\"name\":{\"1605\":{},\"1628\":{}},\"comment\":{}}],[\"keyname\",{\"_index\":529,\"name\":{\"1599\":{},\"1637\":{}},\"comment\":{}}],[\"keyring\",{\"_index\":555,\"name\":{\"1636\":{}},\"comment\":{}}],[\"keysofatype\",{\"_index\":782,\"name\":{\"2216\":{}},\"comment\":{}}],[\"keysofothertype\",{\"_index\":783,\"name\":{\"2217\":{}},\"comment\":{}}],[\"keyvaultclient\",{\"_index\":501,\"name\":{\"1562\":{},\"1615\":{}},\"comment\":{}}],[\"keyvaultendpoint\",{\"_index\":530,\"name\":{\"1600\":{}},\"comment\":{}}],[\"keyvaultnamespace\",{\"_index\":502,\"name\":{\"1563\":{},\"1614\":{}},\"comment\":{}}],[\"keyversion\",{\"_index\":531,\"name\":{\"1601\":{},\"1638\":{}},\"comment\":{}}],[\"killed\",{\"_index\":114,\"name\":{\"450\":{},\"518\":{},\"756\":{},\"854\":{},\"900\":{},\"998\":{},\"1920\":{}},\"comment\":{}}],[\"kmip\",{\"_index\":509,\"name\":{\"1572\":{},\"1666\":{},\"1676\":{}},\"comment\":{}}],[\"kmsproviders\",{\"_index\":503,\"name\":{\"1564\":{},\"1616\":{},\"1661\":{}},\"comment\":{}}],[\"language\",{\"_index\":805,\"name\":{\"2240\":{}},\"comment\":{}}],[\"language_override\",{\"_index\":882,\"name\":{\"2589\":{},\"2630\":{}},\"comment\":{}}],[\"lasterrorobject\",{\"_index\":663,\"name\":{\"1847\":{}},\"comment\":{}}],[\"lastupdatetime\",{\"_index\":946,\"name\":{\"2918\":{}},\"comment\":{}}],[\"lastuse\",{\"_index\":990,\"name\":{\"2992\":{}},\"comment\":{}}],[\"lastwritedate\",{\"_index\":947,\"name\":{\"2919\":{}},\"comment\":{}}],[\"legal_tcp_socket_options\",{\"_index\":603,\"name\":{\"1725\":{}},\"comment\":{}}],[\"legal_tls_socket_options\",{\"_index\":604,\"name\":{\"1726\":{}},\"comment\":{}}],[\"length\",{\"_index\":296,\"name\":{\"829\":{},\"1990\":{}},\"comment\":{}}],[\"let\",{\"_index\":20,\"name\":{\"20\":{},\"1472\":{},\"1887\":{},\"2262\":{},\"2340\":{},\"2407\":{},\"2489\":{},\"2508\":{},\"2533\":{},\"2559\":{},\"2792\":{},\"2814\":{}},\"comment\":{}}],[\"level\",{\"_index\":346,\"name\":{\"1076\":{}},\"comment\":{}}],[\"libmongocryptversion\",{\"_index\":63,\"name\":{\"65\":{}},\"comment\":{}}],[\"limit\",{\"_index\":160,\"name\":{\"502\":{},\"748\":{},\"1904\":{},\"2311\":{},\"2331\":{},\"2428\":{},\"2469\":{}},\"comment\":{}}],[\"linearizable\",{\"_index\":344,\"name\":{\"1073\":{}},\"comment\":{}}],[\"listcollections\",{\"_index\":260,\"name\":{\"716\":{}},\"comment\":{}}],[\"listcollectionscursor\",{\"_index\":305,\"name\":{\"841\":{}},\"comment\":{}}],[\"listcollectionsoptions\",{\"_index\":902,\"name\":{\"2691\":{}},\"comment\":{}}],[\"listdatabases\",{\"_index\":155,\"name\":{\"493\":{}},\"comment\":{}}],[\"listdatabasesoptions\",{\"_index\":905,\"name\":{\"2710\":{}},\"comment\":{}}],[\"listdatabasesresult\",{\"_index\":907,\"name\":{\"2730\":{}},\"comment\":{}}],[\"listenercount\",{\"_index\":141,\"name\":{\"479\":{},\"545\":{},\"561\":{},\"599\":{},\"641\":{},\"782\":{},\"808\":{},\"882\":{},\"928\":{},\"959\":{},\"1022\":{},\"1947\":{},\"2155\":{}},\"comment\":{}}],[\"listeners\",{\"_index\":138,\"name\":{\"476\":{},\"542\":{},\"558\":{},\"596\":{},\"638\":{},\"779\":{},\"805\":{},\"879\":{},\"925\":{},\"956\":{},\"1019\":{},\"1944\":{},\"2152\":{}},\"comment\":{}}],[\"listindexes\",{\"_index\":229,\"name\":{\"674\":{}},\"comment\":{}}],[\"listindexescursor\",{\"_index\":306,\"name\":{\"888\":{}},\"comment\":{}}],[\"listindexesoptions\",{\"_index\":893,\"name\":{\"2638\":{}},\"comment\":{}}],[\"listsearchindexes\",{\"_index\":244,\"name\":{\"689\":{}},\"comment\":{}}],[\"listsearchindexescursor\",{\"_index\":674,\"name\":{\"1897\":{}},\"comment\":{}}],[\"listsearchindexesoptions\",{\"_index\":675,\"name\":{\"1953\":{}},\"comment\":{}}],[\"loadbalanced\",{\"_index\":115,\"name\":{\"451\":{},\"519\":{},\"619\":{},\"757\":{},\"855\":{},\"901\":{},\"999\":{},\"1753\":{},\"1772\":{},\"1830\":{},\"1837\":{},\"1921\":{},\"2063\":{},\"2088\":{},\"2891\":{}},\"comment\":{}}],[\"local\",{\"_index\":505,\"name\":{\"1567\":{},\"1663\":{},\"1677\":{}},\"comment\":{}}],[\"locale\",{\"_index\":819,\"name\":{\"2279\":{}},\"comment\":{}}],[\"localthresholdms\",{\"_index\":714,\"name\":{\"2055\":{},\"2117\":{},\"2972\":{},\"2979\":{}},\"comment\":{}}],[\"location\",{\"_index\":554,\"name\":{\"1635\":{}},\"comment\":{}}],[\"logger\",{\"_index\":515,\"name\":{\"1581\":{}},\"comment\":{}}],[\"logicalsessiontimeoutminutes\",{\"_index\":623,\"name\":{\"1752\":{},\"1788\":{},\"1829\":{},\"1836\":{},\"2904\":{},\"2925\":{},\"2970\":{}},\"comment\":{}}],[\"long\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"lookup\",{\"_index\":164,\"name\":{\"506\":{},\"1908\":{}},\"comment\":{}}],[\"lsid\",{\"_index\":454,\"name\":{\"1344\":{},\"1352\":{},\"1360\":{},\"1371\":{},\"1384\":{},\"1400\":{},\"1408\":{},\"1416\":{},\"1428\":{},\"1439\":{},\"1479\":{},\"1493\":{},\"1504\":{},\"1514\":{},\"1523\":{},\"1539\":{}},\"comment\":{}}],[\"lt\",{\"_index\":754,\"name\":{\"2184\":{}},\"comment\":{}}],[\"lte\",{\"_index\":755,\"name\":{\"2185\":{}},\"comment\":{}}],[\"majority\",{\"_index\":342,\"name\":{\"1071\":{}},\"comment\":{}}],[\"map\",{\"_index\":125,\"name\":{\"462\":{},\"499\":{},\"731\":{},\"866\":{},\"912\":{},\"1009\":{},\"1901\":{}},\"comment\":{}}],[\"masterkey\",{\"_index\":533,\"name\":{\"1603\":{},\"1621\":{},\"1632\":{}},\"comment\":{}}],[\"match\",{\"_index\":161,\"name\":{\"503\":{},\"1905\":{}},\"comment\":{}}],[\"matchedcount\",{\"_index\":44,\"name\":{\"44\":{},\"1234\":{},\"2832\":{}},\"comment\":{}}],[\"matchkeysandvalues\",{\"_index\":784,\"name\":{\"2218\":{}},\"comment\":{}}],[\"max\",{\"_index\":271,\"name\":{\"737\":{},\"1642\":{},\"2364\":{},\"2480\":{},\"2594\":{},\"2618\":{}},\"comment\":{}}],[\"maxawaittimems\",{\"_index\":275,\"name\":{\"742\":{},\"982\":{},\"1447\":{},\"1549\":{},\"1859\":{},\"1875\":{},\"2259\":{},\"2337\":{},\"2482\":{}},\"comment\":{}}],[\"maxbsonobjectsize\",{\"_index\":652,\"name\":{\"1824\":{}},\"comment\":{}}],[\"maxcommittimems\",{\"_index\":1001,\"name\":{\"3014\":{}},\"comment\":{}}],[\"maxconnecting\",{\"_index\":634,\"name\":{\"1769\":{},\"2043\":{},\"2114\":{}},\"comment\":{}}],[\"maxdistance\",{\"_index\":769,\"name\":{\"2202\":{}},\"comment\":{}}],[\"maxelectionid\",{\"_index\":976,\"name\":{\"2965\":{}},\"comment\":{}}],[\"maxidletimems\",{\"_index\":635,\"name\":{\"1770\":{},\"2044\":{},\"2115\":{}},\"comment\":{}}],[\"maxkey\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"maxmessagesizebytes\",{\"_index\":653,\"name\":{\"1825\":{}},\"comment\":{}}],[\"maxpoolsize\",{\"_index\":632,\"name\":{\"1767\":{},\"2041\":{},\"2113\":{}},\"comment\":{}}],[\"maxsetversion\",{\"_index\":975,\"name\":{\"2964\":{}},\"comment\":{}}],[\"maxstalenessseconds\",{\"_index\":361,\"name\":{\"1097\":{},\"2049\":{},\"2870\":{},\"2874\":{},\"2877\":{}},\"comment\":{}}],[\"maxtimems\",{\"_index\":23,\"name\":{\"23\":{},\"465\":{},\"532\":{},\"743\":{},\"869\":{},\"915\":{},\"990\":{},\"1464\":{},\"1858\":{},\"1874\":{},\"1934\":{},\"2258\":{},\"2291\":{},\"2312\":{},\"2336\":{},\"2383\":{},\"2409\":{},\"2436\":{},\"2452\":{},\"2481\":{},\"2512\":{},\"2537\":{},\"2563\":{},\"2608\":{},\"2650\":{},\"2665\":{},\"2705\":{},\"2716\":{},\"2750\":{},\"2773\":{},\"2794\":{},\"2816\":{},\"2848\":{},\"3016\":{}},\"comment\":{}}],[\"maxvariable\",{\"_index\":825,\"name\":{\"2285\":{}},\"comment\":{}}],[\"maxwireversion\",{\"_index\":651,\"name\":{\"1823\":{},\"2916\":{},\"2948\":{}},\"comment\":{}}],[\"maxwritebatchsize\",{\"_index\":654,\"name\":{\"1826\":{}},\"comment\":{}}],[\"me\",{\"_index\":948,\"name\":{\"2920\":{}},\"comment\":{}}],[\"mechanism\",{\"_index\":585,\"name\":{\"1696\":{},\"1706\":{}},\"comment\":{}}],[\"mechanismproperties\",{\"_index\":586,\"name\":{\"1697\":{},\"1707\":{}},\"comment\":{}}],[\"memory_mb\",{\"_index\":645,\"name\":{\"1808\":{}},\"comment\":{}}],[\"merge\",{\"_index\":581,\"name\":{\"1691\":{}},\"comment\":{}}],[\"message\",{\"_index\":610,\"name\":{\"1735\":{},\"1967\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":621,\"name\":{\"1750\":{},\"1787\":{},\"1995\":{},\"2008\":{},\"2093\":{},\"2903\":{}},\"comment\":{}}],[\"metafield\",{\"_index\":852,\"name\":{\"2399\":{}},\"comment\":{}}],[\"min\",{\"_index\":270,\"name\":{\"736\":{},\"1641\":{},\"2479\":{},\"2593\":{},\"2619\":{}},\"comment\":{}}],[\"minheartbeatfrequencyms\",{\"_index\":717,\"name\":{\"2058\":{},\"2120\":{},\"2889\":{}},\"comment\":{}}],[\"minkey\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"minpoolsize\",{\"_index\":633,\"name\":{\"1768\":{},\"2042\":{},\"2103\":{}},\"comment\":{}}],[\"minwireversion\",{\"_index\":362,\"name\":{\"1098\":{},\"1822\":{},\"2915\":{},\"2949\":{}},\"comment\":{}}],[\"mod\",{\"_index\":762,\"name\":{\"2193\":{}},\"comment\":{}}],[\"mode\",{\"_index\":358,\"name\":{\"1094\":{}},\"comment\":{}}],[\"modifiedcount\",{\"_index\":45,\"name\":{\"45\":{},\"1235\":{},\"2833\":{}},\"comment\":{}}],[\"modifyresult\",{\"_index\":661,\"name\":{\"1845\":{}},\"comment\":{}}],[\"mongo_client_events\",{\"_index\":664,\"name\":{\"1849\":{}},\"comment\":{}}],[\"mongoapierror\",{\"_index\":76,\"name\":{\"79\":{}},\"comment\":{}}],[\"mongoawserror\",{\"_index\":77,\"name\":{\"90\":{}},\"comment\":{}}],[\"mongoazureerror\",{\"_index\":78,\"name\":{\"101\":{}},\"comment\":{}}],[\"mongobatchreexecutionerror\",{\"_index\":79,\"name\":{\"112\":{}},\"comment\":{}}],[\"mongobulkwriteerror\",{\"_index\":37,\"name\":{\"37\":{}},\"comment\":{}}],[\"mongochangestreamerror\",{\"_index\":80,\"name\":{\"123\":{}},\"comment\":{}}],[\"mongoclient\",{\"_index\":307,\"name\":{\"934\":{}},\"comment\":{}}],[\"mongoclientevents\",{\"_index\":701,\"name\":{\"2024\":{}},\"comment\":{}}],[\"mongoclientoptions\",{\"_index\":702,\"name\":{\"2025\":{}},\"comment\":{}}],[\"mongocompatibilityerror\",{\"_index\":81,\"name\":{\"134\":{}},\"comment\":{}}],[\"mongocredentials\",{\"_index\":580,\"name\":{\"1690\":{}},\"comment\":{}}],[\"mongocredentialsoptions\",{\"_index\":589,\"name\":{\"1701\":{}},\"comment\":{}}],[\"mongocryptazurekmsrequesterror\",{\"_index\":558,\"name\":{\"1645\":{}},\"comment\":{}}],[\"mongocryptcreatedatakeyerror\",{\"_index\":560,\"name\":{\"1648\":{}},\"comment\":{}}],[\"mongocryptcreateencryptedcollectionerror\",{\"_index\":562,\"name\":{\"1651\":{}},\"comment\":{}}],[\"mongocryptdbypassspawn\",{\"_index\":518,\"name\":{\"1586\":{}},\"comment\":{}}],[\"mongocryptdspawnargs\",{\"_index\":520,\"name\":{\"1588\":{}},\"comment\":{}}],[\"mongocryptdspawnpath\",{\"_index\":519,\"name\":{\"1587\":{}},\"comment\":{}}],[\"mongocryptduri\",{\"_index\":517,\"name\":{\"1585\":{}},\"comment\":{}}],[\"mongocrypterror\",{\"_index\":563,\"name\":{\"1654\":{}},\"comment\":{}}],[\"mongocryptinvalidargumenterror\",{\"_index\":564,\"name\":{\"1656\":{}},\"comment\":{}}],[\"mongocryptkmsrequestnetworktimeouterror\",{\"_index\":565,\"name\":{\"1658\":{}},\"comment\":{}}],[\"mongocursorexhaustederror\",{\"_index\":82,\"name\":{\"145\":{}},\"comment\":{}}],[\"mongocursorinuseerror\",{\"_index\":83,\"name\":{\"156\":{}},\"comment\":{}}],[\"mongodbcollectionnamespace\",{\"_index\":1010,\"name\":{\"3047\":{}},\"comment\":{}}],[\"mongodbnamespace\",{\"_index\":1012,\"name\":{\"3054\":{}},\"comment\":{}}],[\"mongodecompressionerror\",{\"_index\":84,\"name\":{\"167\":{}},\"comment\":{}}],[\"mongodrivererror\",{\"_index\":85,\"name\":{\"178\":{}},\"comment\":{}}],[\"mongoerror\",{\"_index\":86,\"name\":{\"189\":{}},\"comment\":{}}],[\"mongoerrorlabel\",{\"_index\":333,\"name\":{\"1051\":{},\"1052\":{}},\"comment\":{}}],[\"mongoexpiredsessionerror\",{\"_index\":87,\"name\":{\"200\":{}},\"comment\":{}}],[\"mongogridfschunkerror\",{\"_index\":88,\"name\":{\"211\":{}},\"comment\":{}}],[\"mongogridfsstreamerror\",{\"_index\":89,\"name\":{\"222\":{}},\"comment\":{}}],[\"mongoinvalidargumenterror\",{\"_index\":90,\"name\":{\"233\":{}},\"comment\":{}}],[\"mongokerberoserror\",{\"_index\":91,\"name\":{\"244\":{}},\"comment\":{}}],[\"mongomissingcredentialserror\",{\"_index\":92,\"name\":{\"255\":{}},\"comment\":{}}],[\"mongomissingdependencyerror\",{\"_index\":93,\"name\":{\"266\":{}},\"comment\":{}}],[\"mongonetworkerror\",{\"_index\":94,\"name\":{\"277\":{}},\"comment\":{}}],[\"mongonetworkerroroptions\",{\"_index\":682,\"name\":{\"1972\":{}},\"comment\":{}}],[\"mongonetworktimeouterror\",{\"_index\":95,\"name\":{\"288\":{}},\"comment\":{}}],[\"mongonotconnectederror\",{\"_index\":96,\"name\":{\"299\":{}},\"comment\":{}}],[\"mongooptions\",{\"_index\":721,\"name\":{\"2081\":{}},\"comment\":{}}],[\"mongoparseerror\",{\"_index\":97,\"name\":{\"310\":{}},\"comment\":{}}],[\"mongoruntimeerror\",{\"_index\":98,\"name\":{\"321\":{}},\"comment\":{}}],[\"mongoserverclosederror\",{\"_index\":99,\"name\":{\"332\":{}},\"comment\":{}}],[\"mongoservererror\",{\"_index\":100,\"name\":{\"343\":{}},\"comment\":{}}],[\"mongoserverselectionerror\",{\"_index\":101,\"name\":{\"358\":{}},\"comment\":{}}],[\"mongosystemerror\",{\"_index\":103,\"name\":{\"370\":{}},\"comment\":{}}],[\"mongotailablecursorerror\",{\"_index\":104,\"name\":{\"382\":{}},\"comment\":{}}],[\"mongotopologyclosederror\",{\"_index\":105,\"name\":{\"393\":{}},\"comment\":{}}],[\"mongotransactionerror\",{\"_index\":106,\"name\":{\"404\":{}},\"comment\":{}}],[\"mongounexpectedserverresponseerror\",{\"_index\":107,\"name\":{\"415\":{}},\"comment\":{}}],[\"mongowriteconcernerror\",{\"_index\":108,\"name\":{\"426\":{}},\"comment\":{}}],[\"monitorcommands\",{\"_index\":310,\"name\":{\"939\":{},\"1743\":{},\"1784\":{},\"2071\":{},\"2127\":{},\"2900\":{}},\"comment\":{}}],[\"monitorevents\",{\"_index\":939,\"name\":{\"2885\":{}},\"comment\":{}}],[\"monitoroptions\",{\"_index\":940,\"name\":{\"2886\":{}},\"comment\":{}}],[\"more\",{\"_index\":173,\"name\":{\"569\":{}},\"comment\":{}}],[\"multi\",{\"_index\":929,\"name\":{\"2840\":{}},\"comment\":{}}],[\"n\",{\"_index\":297,\"name\":{\"830\":{},\"2015\":{}},\"comment\":{}}],[\"name\",{\"_index\":42,\"name\":{\"42\":{},\"81\":{},\"92\":{},\"103\":{},\"114\":{},\"125\":{},\"136\":{},\"147\":{},\"158\":{},\"169\":{},\"180\":{},\"195\":{},\"202\":{},\"213\":{},\"224\":{},\"235\":{},\"246\":{},\"257\":{},\"268\":{},\"279\":{},\"290\":{},\"301\":{},\"312\":{},\"323\":{},\"334\":{},\"349\":{},\"360\":{},\"373\":{},\"384\":{},\"395\":{},\"406\":{},\"417\":{},\"429\":{},\"1647\":{},\"1650\":{},\"1653\":{},\"1655\":{},\"1657\":{},\"1659\":{},\"1792\":{},\"1797\":{},\"1803\":{},\"1806\":{},\"1814\":{},\"2021\":{},\"2357\":{},\"2580\":{},\"2616\":{},\"2683\":{},\"2766\":{}},\"comment\":{}}],[\"nameonly\",{\"_index\":903,\"name\":{\"2692\":{},\"2712\":{}},\"comment\":{}}],[\"namespace\",{\"_index\":112,\"name\":{\"445\":{},\"513\":{},\"579\":{},\"650\":{},\"709\":{},\"751\":{},\"849\":{},\"895\":{},\"993\":{},\"1915\":{}},\"comment\":{}}],[\"ne\",{\"_index\":756,\"name\":{\"2186\":{}},\"comment\":{}}],[\"near\",{\"_index\":767,\"name\":{\"2200\":{}},\"comment\":{}}],[\"nearest\",{\"_index\":352,\"name\":{\"1083\":{},\"1088\":{}},\"comment\":{}}],[\"nearsphere\",{\"_index\":768,\"name\":{\"2201\":{}},\"comment\":{}}],[\"nestedpaths\",{\"_index\":785,\"name\":{\"2219\":{}},\"comment\":{}}],[\"nestedpathsoftype\",{\"_index\":786,\"name\":{\"2220\":{}},\"comment\":{}}],[\"new_collection\",{\"_index\":916,\"name\":{\"2747\":{}},\"comment\":{}}],[\"newdescription\",{\"_index\":402,\"name\":{\"1195\":{},\"1214\":{}},\"comment\":{}}],[\"next\",{\"_index\":120,\"name\":{\"456\":{},\"524\":{},\"584\":{},\"762\":{},\"860\":{},\"906\":{},\"1004\":{},\"1926\":{}},\"comment\":{}}],[\"nin\",{\"_index\":757,\"name\":{\"2187\":{}},\"comment\":{}}],[\"nocursortimeout\",{\"_index\":669,\"name\":{\"1863\":{},\"1879\":{},\"2483\":{}},\"comment\":{}}],[\"nodelay\",{\"_index\":619,\"name\":{\"1747\":{},\"1783\":{},\"2068\":{},\"2124\":{},\"2899\":{}},\"comment\":{}}],[\"nonobjectidlikedocument\",{\"_index\":787,\"name\":{\"2221\":{}},\"comment\":{}}],[\"nor\",{\"_index\":801,\"name\":{\"2235\":{}},\"comment\":{}}],[\"noresponse\",{\"_index\":28,\"name\":{\"28\":{},\"1468\":{},\"1892\":{},\"2269\":{},\"2296\":{},\"2320\":{},\"2347\":{},\"2388\":{},\"2414\":{},\"2441\":{},\"2459\":{},\"2503\":{},\"2517\":{},\"2542\":{},\"2568\":{},\"2612\":{},\"2654\":{},\"2670\":{},\"2709\":{},\"2721\":{},\"2755\":{},\"2778\":{},\"2799\":{},\"2821\":{},\"2853\":{},\"3021\":{}},\"comment\":{}}],[\"normalization\",{\"_index\":827,\"name\":{\"2287\":{}},\"comment\":{}}],[\"not\",{\"_index\":758,\"name\":{\"2188\":{}},\"comment\":{}}],[\"notacceptedfields\",{\"_index\":788,\"name\":{\"2222\":{}},\"comment\":{}}],[\"ns\",{\"_index\":461,\"name\":{\"1366\":{},\"1394\":{},\"1404\":{},\"1424\":{},\"1489\":{},\"1499\":{},\"1534\":{}},\"comment\":{}}],[\"numericordering\",{\"_index\":823,\"name\":{\"2283\":{}},\"comment\":{}}],[\"numerictype\",{\"_index\":789,\"name\":{\"2223\":{}},\"comment\":{}}],[\"objectid\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"of\",{\"_index\":492,\"name\":{\"1529\":{}},\"comment\":{}}],[\"off\",{\"_index\":136,\"name\":{\"474\":{},\"540\":{},\"556\":{},\"594\":{},\"636\":{},\"777\":{},\"803\":{},\"877\":{},\"923\":{},\"954\":{},\"1017\":{},\"1942\":{},\"2150\":{}},\"comment\":{}}],[\"oidccallbackcontext\",{\"_index\":598,\"name\":{\"1716\":{}},\"comment\":{}}],[\"oidcrefreshfunction\",{\"_index\":601,\"name\":{\"1721\":{}},\"comment\":{}}],[\"oidcrequestfunction\",{\"_index\":602,\"name\":{\"1723\":{}},\"comment\":{}}],[\"ok\",{\"_index\":54,\"name\":{\"55\":{},\"348\":{},\"433\":{},\"1242\":{},\"1848\":{},\"2734\":{}},\"comment\":{}}],[\"omitreadpreference\",{\"_index\":32,\"name\":{\"32\":{},\"1462\":{},\"1894\":{},\"2273\":{},\"2300\":{},\"2324\":{},\"2351\":{},\"2392\":{},\"2418\":{},\"2445\":{},\"2463\":{},\"2499\":{},\"2521\":{},\"2546\":{},\"2572\":{},\"2606\":{},\"2648\":{},\"2674\":{},\"2703\":{},\"2725\":{},\"2740\":{},\"2759\":{},\"2782\":{},\"2803\":{},\"2825\":{},\"2857\":{},\"3024\":{}},\"comment\":{}}],[\"on\",{\"_index\":133,\"name\":{\"471\":{},\"537\":{},\"553\":{},\"591\":{},\"633\":{},\"774\":{},\"800\":{},\"874\":{},\"920\":{},\"951\":{},\"1014\":{},\"1939\":{},\"2147\":{}},\"comment\":{}}],[\"once\",{\"_index\":134,\"name\":{\"472\":{},\"538\":{},\"554\":{},\"592\":{},\"634\":{},\"775\":{},\"801\":{},\"875\":{},\"921\":{},\"952\":{},\"1015\":{},\"1940\":{},\"2148\":{}},\"comment\":{}}],[\"oneormore\",{\"_index\":790,\"name\":{\"2224\":{}},\"comment\":{}}],[\"onlyfieldsoftype\",{\"_index\":791,\"name\":{\"2225\":{}},\"comment\":{}}],[\"op\",{\"_index\":415,\"name\":{\"1228\":{},\"1302\":{}},\"comment\":{}}],[\"opendownloadstream\",{\"_index\":281,\"name\":{\"793\":{}},\"comment\":{}}],[\"opendownloadstreambyname\",{\"_index\":283,\"name\":{\"796\":{}},\"comment\":{}}],[\"openuploadstream\",{\"_index\":279,\"name\":{\"791\":{}},\"comment\":{}}],[\"openuploadstreamwithid\",{\"_index\":280,\"name\":{\"792\":{}},\"comment\":{}}],[\"operationdescription\",{\"_index\":459,\"name\":{\"1363\":{},\"1391\":{},\"1419\":{},\"1482\":{},\"1517\":{},\"1526\":{}},\"comment\":{}}],[\"operationid\",{\"_index\":316,\"name\":{\"968\":{},\"1032\":{},\"1315\":{}},\"comment\":{}}],[\"operationoptions\",{\"_index\":911,\"name\":{\"2736\":{}},\"comment\":{}}],[\"operations\",{\"_index\":443,\"name\":{\"1310\":{}},\"comment\":{}}],[\"operationtime\",{\"_index\":190,\"name\":{\"612\":{},\"1545\":{}},\"comment\":{}}],[\"operationtype\",{\"_index\":451,\"name\":{\"1340\":{},\"1348\":{},\"1356\":{},\"1365\":{},\"1393\":{},\"1403\":{},\"1412\":{},\"1422\":{},\"1435\":{},\"1475\":{},\"1484\":{},\"1497\":{},\"1510\":{},\"1519\":{},\"1531\":{}},\"comment\":{}}],[\"oplogreplay\",{\"_index\":870,\"name\":{\"2490\":{}},\"comment\":{}}],[\"optionalid\",{\"_index\":792,\"name\":{\"2226\":{}},\"comment\":{}}],[\"optionalunlessrequiredid\",{\"_index\":793,\"name\":{\"2227\":{}},\"comment\":{}}],[\"options\",{\"_index\":179,\"name\":{\"577\":{},\"668\":{},\"703\":{},\"824\":{},\"846\":{},\"892\":{},\"937\":{},\"1175\":{},\"1579\":{},\"2195\":{},\"2685\":{},\"3004\":{}},\"comment\":{}}],[\"or\",{\"_index\":802,\"name\":{\"2236\":{}},\"comment\":{}}],[\"ordered\",{\"_index\":18,\"name\":{\"18\":{},\"2404\":{}},\"comment\":{}}],[\"orderedbulkoperation\",{\"_index\":313,\"name\":{\"965\":{}},\"comment\":{}}],[\"originalindexes\",{\"_index\":442,\"name\":{\"1308\":{}},\"comment\":{}}],[\"originalzeroindex\",{\"_index\":440,\"name\":{\"1306\":{}},\"comment\":{}}],[\"os\",{\"_index\":639,\"name\":{\"1794\":{}},\"comment\":{}}],[\"out\",{\"_index\":162,\"name\":{\"504\":{},\"1473\":{},\"1888\":{},\"1906\":{},\"2263\":{},\"2341\":{}},\"comment\":{}}],[\"outstandingrequests\",{\"_index\":301,\"name\":{\"835\":{}},\"comment\":{}}],[\"parent\",{\"_index\":180,\"name\":{\"578\":{},\"844\":{},\"891\":{}},\"comment\":{}}],[\"partialfilterexpression\",{\"_index\":877,\"name\":{\"2581\":{},\"2623\":{}},\"comment\":{}}],[\"passives\",{\"_index\":943,\"name\":{\"2910\":{}},\"comment\":{}}],[\"password\",{\"_index\":583,\"name\":{\"1694\":{},\"1703\":{},\"2019\":{}},\"comment\":{}}],[\"ping\",{\"_index\":152,\"name\":{\"490\":{}},\"comment\":{}}],[\"pinned\",{\"_index\":611,\"name\":{\"1736\":{}},\"comment\":{}}],[\"pipeline\",{\"_index\":158,\"name\":{\"497\":{},\"576\":{},\"1899\":{},\"2372\":{}},\"comment\":{}}],[\"pkfactory\",{\"_index\":679,\"name\":{\"1959\":{},\"2070\":{},\"2126\":{},\"2129\":{},\"2373\":{}},\"comment\":{}}],[\"platform\",{\"_index\":641,\"name\":{\"1800\":{},\"1816\":{},\"2023\":{}},\"comment\":{}}],[\"port\",{\"_index\":957,\"name\":{\"2933\":{},\"3038\":{},\"3046\":{}},\"comment\":{}}],[\"pos\",{\"_index\":298,\"name\":{\"831\":{}},\"comment\":{}}],[\"position\",{\"_index\":743,\"name\":{\"2171\":{}},\"comment\":{}}],[\"precision\",{\"_index\":557,\"name\":{\"1644\":{}},\"comment\":{}}],[\"preference\",{\"_index\":363,\"name\":{\"1099\":{}},\"comment\":{}}],[\"prependlistener\",{\"_index\":142,\"name\":{\"480\":{},\"546\":{},\"562\":{},\"600\":{},\"642\":{},\"783\":{},\"809\":{},\"883\":{},\"929\":{},\"960\":{},\"1023\":{},\"1948\":{},\"2156\":{}},\"comment\":{}}],[\"prependoncelistener\",{\"_index\":143,\"name\":{\"481\":{},\"547\":{},\"563\":{},\"601\":{},\"643\":{},\"784\":{},\"810\":{},\"884\":{},\"930\":{},\"961\":{},\"1024\":{},\"1949\":{},\"2157\":{}},\"comment\":{}}],[\"previousdescription\",{\"_index\":401,\"name\":{\"1194\":{},\"1213\":{}},\"comment\":{}}],[\"primary\",{\"_index\":348,\"name\":{\"1079\":{},\"1084\":{},\"2921\":{}},\"comment\":{}}],[\"primary_preferred\",{\"_index\":349,\"name\":{\"1080\":{}},\"comment\":{}}],[\"primarypreferred\",{\"_index\":353,\"name\":{\"1085\":{}},\"comment\":{}}],[\"processid\",{\"_index\":959,\"name\":{\"2938\":{}},\"comment\":{}}],[\"profilinglevel\",{\"_index\":266,\"name\":{\"724\":{},\"1059\":{},\"1060\":{}},\"comment\":{}}],[\"profilingleveloptions\",{\"_index\":912,\"name\":{\"2743\":{}},\"comment\":{}}],[\"project\",{\"_index\":163,\"name\":{\"505\":{},\"744\":{},\"1907\":{}},\"comment\":{}}],[\"projectid\",{\"_index\":553,\"name\":{\"1634\":{}},\"comment\":{}}],[\"projection\",{\"_index\":866,\"name\":{\"2471\":{},\"2506\":{},\"2529\":{},\"2555\":{}},\"comment\":{}}],[\"propertytype\",{\"_index\":794,\"name\":{\"2228\":{}},\"comment\":{}}],[\"provider\",{\"_index\":545,\"name\":{\"1620\":{}},\"comment\":{}}],[\"provider_name\",{\"_index\":577,\"name\":{\"1687\":{}},\"comment\":{}}],[\"proxyhost\",{\"_index\":624,\"name\":{\"1754\":{},\"1759\":{},\"1775\":{},\"2075\":{},\"2094\":{},\"2892\":{}},\"comment\":{}}],[\"proxyoptions\",{\"_index\":523,\"name\":{\"1591\":{},\"1617\":{},\"1758\":{}},\"comment\":{}}],[\"proxypassword\",{\"_index\":627,\"name\":{\"1757\":{},\"1762\":{},\"1778\":{},\"2078\":{},\"2097\":{},\"2895\":{}},\"comment\":{}}],[\"proxyport\",{\"_index\":625,\"name\":{\"1755\":{},\"1760\":{},\"1776\":{},\"2076\":{},\"2095\":{},\"2893\":{}},\"comment\":{}}],[\"proxyusername\",{\"_index\":626,\"name\":{\"1756\":{},\"1761\":{},\"1777\":{},\"2077\":{},\"2096\":{},\"2894\":{}},\"comment\":{}}],[\"pullalloperator\",{\"_index\":795,\"name\":{\"2229\":{}},\"comment\":{}}],[\"pulloperator\",{\"_index\":796,\"name\":{\"2230\":{}},\"comment\":{}}],[\"pushoperator\",{\"_index\":797,\"name\":{\"2231\":{}},\"comment\":{}}],[\"q\",{\"_index\":860,\"name\":{\"2427\":{},\"2837\":{}},\"comment\":{}}],[\"querytype\",{\"_index\":541,\"name\":{\"1611\":{}},\"comment\":{}}],[\"rand\",{\"_index\":776,\"name\":{\"2210\":{}},\"comment\":{}}],[\"rangeoptions\",{\"_index\":542,\"name\":{\"1612\":{},\"1640\":{}},\"comment\":{}}],[\"raw\",{\"_index\":33,\"name\":{\"33\":{},\"971\":{},\"1035\":{},\"1218\":{},\"1318\":{},\"1453\":{},\"1842\":{},\"1864\":{},\"1880\":{},\"1962\":{},\"2079\":{},\"2101\":{},\"2274\":{},\"2301\":{},\"2325\":{},\"2352\":{},\"2393\":{},\"2419\":{},\"2446\":{},\"2464\":{},\"2491\":{},\"2522\":{},\"2547\":{},\"2573\":{},\"2598\":{},\"2640\":{},\"2675\":{},\"2695\":{},\"2726\":{},\"2741\":{},\"2760\":{},\"2783\":{},\"2804\":{},\"2826\":{},\"2858\":{},\"3025\":{}},\"comment\":{}}],[\"rawlisteners\",{\"_index\":139,\"name\":{\"477\":{},\"543\":{},\"559\":{},\"597\":{},\"639\":{},\"780\":{},\"806\":{},\"880\":{},\"926\":{},\"957\":{},\"1020\":{},\"1945\":{},\"2153\":{}},\"comment\":{}}],[\"readbuffereddocuments\",{\"_index\":117,\"name\":{\"453\":{},\"521\":{},\"759\":{},\"857\":{},\"903\":{},\"1001\":{},\"1923\":{}},\"comment\":{}}],[\"readconcern\",{\"_index\":21,\"name\":{\"21\":{},\"447\":{},\"515\":{},\"651\":{},\"705\":{},\"753\":{},\"851\":{},\"897\":{},\"940\":{},\"995\":{},\"1069\":{},\"1457\":{},\"1840\":{},\"1856\":{},\"1872\":{},\"1917\":{},\"1960\":{},\"2046\":{},\"2087\":{},\"2264\":{},\"2289\":{},\"2314\":{},\"2342\":{},\"2381\":{},\"2408\":{},\"2434\":{},\"2453\":{},\"2495\":{},\"2510\":{},\"2535\":{},\"2561\":{},\"2602\":{},\"2644\":{},\"2663\":{},\"2699\":{},\"2714\":{},\"2748\":{},\"2771\":{},\"2793\":{},\"2815\":{},\"2846\":{},\"3011\":{}},\"comment\":{}}],[\"readconcernlevel\",{\"_index\":337,\"name\":{\"1061\":{},\"1062\":{},\"2047\":{}},\"comment\":{}}],[\"readconcernlike\",{\"_index\":931,\"name\":{\"2862\":{}},\"comment\":{}}],[\"readonly\",{\"_index\":900,\"name\":{\"2688\":{}},\"comment\":{}}],[\"readpreference\",{\"_index\":31,\"name\":{\"31\":{},\"446\":{},\"514\":{},\"652\":{},\"706\":{},\"752\":{},\"850\":{},\"896\":{},\"942\":{},\"994\":{},\"1078\":{},\"1458\":{},\"1551\":{},\"1841\":{},\"1855\":{},\"1871\":{},\"1916\":{},\"1958\":{},\"2003\":{},\"2048\":{},\"2086\":{},\"2272\":{},\"2299\":{},\"2307\":{},\"2323\":{},\"2350\":{},\"2391\":{},\"2417\":{},\"2444\":{},\"2462\":{},\"2496\":{},\"2520\":{},\"2545\":{},\"2571\":{},\"2603\":{},\"2645\":{},\"2673\":{},\"2700\":{},\"2724\":{},\"2739\":{},\"2758\":{},\"2781\":{},\"2802\":{},\"2824\":{},\"2856\":{},\"2869\":{},\"2873\":{},\"2941\":{},\"2943\":{},\"3013\":{}},\"comment\":{}}],[\"readpreferencefromoptions\",{\"_index\":933,\"name\":{\"2865\":{}},\"comment\":{}}],[\"readpreferencelike\",{\"_index\":934,\"name\":{\"2871\":{}},\"comment\":{}}],[\"readpreferencelikeoptions\",{\"_index\":935,\"name\":{\"2872\":{}},\"comment\":{}}],[\"readpreferencemode\",{\"_index\":338,\"name\":{\"1063\":{},\"1064\":{}},\"comment\":{}}],[\"readpreferenceoptions\",{\"_index\":936,\"name\":{\"2876\":{}},\"comment\":{}}],[\"readpreferencetags\",{\"_index\":713,\"name\":{\"2050\":{},\"2867\":{}},\"comment\":{}}],[\"reason\",{\"_index\":102,\"name\":{\"361\":{},\"372\":{},\"1151\":{},\"1159\":{}},\"comment\":{}}],[\"receiveresponse\",{\"_index\":657,\"name\":{\"1833\":{}},\"comment\":{}}],[\"recoverytoken\",{\"_index\":996,\"name\":{\"3005\":{}},\"comment\":{}}],[\"redact\",{\"_index\":165,\"name\":{\"507\":{},\"1909\":{}},\"comment\":{}}],[\"refresh_token_callback\",{\"_index\":576,\"name\":{\"1686\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":597,\"name\":{\"1715\":{},\"1717\":{}},\"comment\":{}}],[\"regex\",{\"_index\":763,\"name\":{\"2194\":{}},\"comment\":{}}],[\"regexporstring\",{\"_index\":798,\"name\":{\"2232\":{}},\"comment\":{}}],[\"region\",{\"_index\":527,\"name\":{\"1595\":{},\"1809\":{}},\"comment\":{}}],[\"removealllisteners\",{\"_index\":137,\"name\":{\"475\":{},\"541\":{},\"557\":{},\"595\":{},\"637\":{},\"778\":{},\"804\":{},\"878\":{},\"924\":{},\"955\":{},\"1018\":{},\"1943\":{},\"2151\":{}},\"comment\":{}}],[\"removedfields\",{\"_index\":497,\"name\":{\"1558\":{}},\"comment\":{}}],[\"removekeyaltname\",{\"_index\":71,\"name\":{\"74\":{}},\"comment\":{}}],[\"removelistener\",{\"_index\":135,\"name\":{\"473\":{},\"539\":{},\"555\":{},\"593\":{},\"635\":{},\"776\":{},\"802\":{},\"876\":{},\"922\":{},\"953\":{},\"1016\":{},\"1941\":{},\"2149\":{}},\"comment\":{}}],[\"removeuser\",{\"_index\":153,\"name\":{\"491\":{},\"722\":{}},\"comment\":{}}],[\"removeuseroptions\",{\"_index\":913,\"name\":{\"2744\":{}},\"comment\":{}}],[\"rename\",{\"_index\":220,\"name\":{\"664\":{},\"797\":{}},\"comment\":{}}],[\"renamecollection\",{\"_index\":261,\"name\":{\"717\":{}},\"comment\":{}}],[\"renameoptions\",{\"_index\":914,\"name\":{\"2745\":{}},\"comment\":{}}],[\"replacement\",{\"_index\":431,\"name\":{\"1264\":{}},\"comment\":{}}],[\"replaceone\",{\"_index\":216,\"name\":{\"660\":{},\"1328\":{}},\"comment\":{}}],[\"replaceonemodel\",{\"_index\":430,\"name\":{\"1262\":{}},\"comment\":{}}],[\"replaceoptions\",{\"_index\":923,\"name\":{\"2787\":{}},\"comment\":{}}],[\"replicaset\",{\"_index\":703,\"name\":{\"2026\":{},\"2104\":{}},\"comment\":{}}],[\"replsetgetstatus\",{\"_index\":156,\"name\":{\"494\":{}},\"comment\":{}}],[\"reply\",{\"_index\":383,\"name\":{\"1139\":{},\"1205\":{}},\"comment\":{}}],[\"request_token_callback\",{\"_index\":575,\"name\":{\"1685\":{}},\"comment\":{}}],[\"requestid\",{\"_index\":374,\"name\":{\"1117\":{},\"1125\":{},\"1136\":{}},\"comment\":{}}],[\"requestscopes\",{\"_index\":593,\"name\":{\"1711\":{}},\"comment\":{}}],[\"resolveauthmechanism\",{\"_index\":587,\"name\":{\"1699\":{}},\"comment\":{}}],[\"response\",{\"_index\":172,\"name\":{\"568\":{}},\"comment\":{}}],[\"result\",{\"_index\":39,\"name\":{\"39\":{},\"428\":{},\"1232\":{}},\"comment\":{}}],[\"resume_token_changed\",{\"_index\":178,\"name\":{\"575\":{}},\"comment\":{}}],[\"resumeafter\",{\"_index\":479,\"name\":{\"1448\":{},\"1552\":{}},\"comment\":{}}],[\"resumeoptions\",{\"_index\":495,\"name\":{\"1546\":{}},\"comment\":{}}],[\"resumetoken\",{\"_index\":183,\"name\":{\"582\":{},\"1555\":{}},\"comment\":{}}],[\"retryreads\",{\"_index\":718,\"name\":{\"2060\":{},\"2121\":{}},\"comment\":{}}],[\"retrywrites\",{\"_index\":25,\"name\":{\"25\":{},\"1459\":{},\"1889\":{},\"1961\":{},\"2061\":{},\"2122\":{},\"2266\":{},\"2293\":{},\"2317\":{},\"2344\":{},\"2385\":{},\"2411\":{},\"2438\":{},\"2456\":{},\"2497\":{},\"2514\":{},\"2539\":{},\"2565\":{},\"2604\":{},\"2646\":{},\"2667\":{},\"2701\":{},\"2718\":{},\"2752\":{},\"2775\":{},\"2796\":{},\"2818\":{},\"2850\":{},\"3018\":{}},\"comment\":{}}],[\"returndocument\",{\"_index\":336,\"name\":{\"1057\":{},\"1058\":{},\"2530\":{},\"2556\":{}},\"comment\":{}}],[\"returnkey\",{\"_index\":272,\"name\":{\"738\":{},\"2478\":{}},\"comment\":{}}],[\"revision\",{\"_index\":688,\"name\":{\"1983\":{}},\"comment\":{}}],[\"rewind\",{\"_index\":129,\"name\":{\"467\":{},\"534\":{},\"771\":{},\"871\":{},\"917\":{},\"1011\":{},\"1936\":{}},\"comment\":{}}],[\"rewrapmanydatakey\",{\"_index\":65,\"name\":{\"68\":{}},\"comment\":{}}],[\"rootfilteroperators\",{\"_index\":799,\"name\":{\"2233\":{}},\"comment\":{}}],[\"roundtriptime\",{\"_index\":945,\"name\":{\"2917\":{}},\"comment\":{}}],[\"runcommandcursor\",{\"_index\":320,\"name\":{\"976\":{}},\"comment\":{}}],[\"runcommandoptions\",{\"_index\":917,\"name\":{\"2764\":{}},\"comment\":{}}],[\"runcursorcommand\",{\"_index\":267,\"name\":{\"727\":{}},\"comment\":{}}],[\"runcursorcommandoptions\",{\"_index\":676,\"name\":{\"1954\":{}},\"comment\":{}}],[\"scale\",{\"_index\":922,\"name\":{\"2770\":{}},\"comment\":{}}],[\"schemamap\",{\"_index\":511,\"name\":{\"1575\":{}},\"comment\":{}}],[\"schemamember\",{\"_index\":809,\"name\":{\"2245\":{}},\"comment\":{}}],[\"search\",{\"_index\":804,\"name\":{\"2239\":{}},\"comment\":{}}],[\"searchindexdescription\",{\"_index\":918,\"name\":{\"2765\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":350,\"name\":{\"1081\":{},\"1086\":{}},\"comment\":{}}],[\"secondary_preferred\",{\"_index\":351,\"name\":{\"1082\":{}},\"comment\":{}}],[\"secondaryok\",{\"_index\":257,\"name\":{\"704\":{},\"1101\":{}},\"comment\":{}}],[\"secondarypreferred\",{\"_index\":354,\"name\":{\"1087\":{}},\"comment\":{}}],[\"selectserveroptions\",{\"_index\":962,\"name\":{\"2942\":{}},\"comment\":{}}],[\"serialize\",{\"_index\":413,\"name\":{\"1222\":{}},\"comment\":{}}],[\"serverapi\",{\"_index\":309,\"name\":{\"938\":{},\"1742\":{},\"1785\":{},\"2072\":{},\"2089\":{},\"2131\":{},\"2901\":{}},\"comment\":{}}],[\"serverapiversion\",{\"_index\":335,\"name\":{\"1055\":{},\"1056\":{}},\"comment\":{}}],[\"servercapabilities\",{\"_index\":963,\"name\":{\"2946\":{}},\"comment\":{}}],[\"serverclosedevent\",{\"_index\":398,\"name\":{\"1188\":{}},\"comment\":{}}],[\"serverdescription\",{\"_index\":942,\"name\":{\"2906\":{}},\"comment\":{}}],[\"serverdescriptionchangedevent\",{\"_index\":400,\"name\":{\"1191\":{}},\"comment\":{}}],[\"serverevents\",{\"_index\":941,\"name\":{\"2905\":{}},\"comment\":{}}],[\"serverheartbeatfailedevent\",{\"_index\":403,\"name\":{\"1196\":{}},\"comment\":{}}],[\"serverheartbeatstartedevent\",{\"_index\":404,\"name\":{\"1200\":{}},\"comment\":{}}],[\"serverheartbeatsucceededevent\",{\"_index\":405,\"name\":{\"1202\":{}},\"comment\":{}}],[\"serverinfo\",{\"_index\":150,\"name\":{\"488\":{}},\"comment\":{}}],[\"serveropeningevent\",{\"_index\":406,\"name\":{\"1206\":{}},\"comment\":{}}],[\"servers\",{\"_index\":977,\"name\":{\"2966\":{}},\"comment\":{}}],[\"serverselectiontimeoutms\",{\"_index\":715,\"name\":{\"2056\":{},\"2118\":{},\"2944\":{}},\"comment\":{}}],[\"serversession\",{\"_index\":194,\"name\":{\"617\":{},\"2990\":{}},\"comment\":{}}],[\"serversessionid\",{\"_index\":993,\"name\":{\"2996\":{}},\"comment\":{}}],[\"serverstatus\",{\"_index\":151,\"name\":{\"489\":{}},\"comment\":{}}],[\"servertype\",{\"_index\":339,\"name\":{\"1065\":{},\"1066\":{}},\"comment\":{}}],[\"service_host\",{\"_index\":570,\"name\":{\"1680\":{}},\"comment\":{}}],[\"service_name\",{\"_index\":571,\"name\":{\"1681\":{}},\"comment\":{}}],[\"service_realm\",{\"_index\":572,\"name\":{\"1682\":{}},\"comment\":{}}],[\"serviceid\",{\"_index\":378,\"name\":{\"1121\":{},\"1131\":{},\"1140\":{},\"1160\":{}},\"comment\":{}}],[\"session\",{\"_index\":29,\"name\":{\"29\":{},\"448\":{},\"516\":{},\"754\":{},\"852\":{},\"898\":{},\"996\":{},\"1455\":{},\"1854\":{},\"1870\":{},\"1918\":{},\"2270\":{},\"2297\":{},\"2308\":{},\"2321\":{},\"2348\":{},\"2389\":{},\"2415\":{},\"2442\":{},\"2460\":{},\"2493\":{},\"2518\":{},\"2543\":{},\"2569\":{},\"2600\":{},\"2642\":{},\"2671\":{},\"2697\":{},\"2722\":{},\"2737\":{},\"2756\":{},\"2779\":{},\"2800\":{},\"2822\":{},\"2854\":{},\"2866\":{},\"2945\":{},\"3022\":{}},\"comment\":{}}],[\"setbatchsize\",{\"_index\":324,\"name\":{\"986\":{}},\"comment\":{}}],[\"setcomment\",{\"_index\":322,\"name\":{\"984\":{}},\"comment\":{}}],[\"setfields\",{\"_index\":810,\"name\":{\"2246\":{}},\"comment\":{}}],[\"setmaxlisteners\",{\"_index\":146,\"name\":{\"484\":{},\"550\":{},\"566\":{},\"604\":{},\"646\":{},\"787\":{},\"813\":{},\"887\":{},\"933\":{},\"964\":{},\"1027\":{},\"1952\":{},\"2160\":{}},\"comment\":{}}],[\"setmaxtimems\",{\"_index\":323,\"name\":{\"985\":{}},\"comment\":{}}],[\"setname\",{\"_index\":949,\"name\":{\"2922\":{},\"2963\":{}},\"comment\":{}}],[\"setprofilinglevel\",{\"_index\":265,\"name\":{\"723\":{}},\"comment\":{}}],[\"setprofilingleveloptions\",{\"_index\":920,\"name\":{\"2768\":{}},\"comment\":{}}],[\"setversion\",{\"_index\":950,\"name\":{\"2923\":{}},\"comment\":{}}],[\"showexpandedevents\",{\"_index\":482,\"name\":{\"1452\":{}},\"comment\":{}}],[\"showrecordid\",{\"_index\":273,\"name\":{\"739\":{},\"2488\":{}},\"comment\":{}}],[\"signature\",{\"_index\":937,\"name\":{\"2881\":{}},\"comment\":{}}],[\"singlebatch\",{\"_index\":868,\"name\":{\"2486\":{}},\"comment\":{}}],[\"size\",{\"_index\":444,\"name\":{\"1311\":{},\"2205\":{},\"2363\":{}},\"comment\":{}}],[\"sizebytes\",{\"_index\":445,\"name\":{\"1312\":{}},\"comment\":{}}],[\"skip\",{\"_index\":166,\"name\":{\"508\":{},\"749\":{},\"1910\":{},\"1979\":{},\"1985\":{},\"2310\":{},\"2330\":{},\"2472\":{}},\"comment\":{}}],[\"slice\",{\"_index\":742,\"name\":{\"2170\":{}},\"comment\":{}}],[\"snapshot\",{\"_index\":345,\"name\":{\"1074\":{},\"2985\":{}},\"comment\":{}}],[\"snapshotenabled\",{\"_index\":195,\"name\":{\"618\":{}},\"comment\":{}}],[\"socketpath\",{\"_index\":1006,\"name\":{\"3039\":{}},\"comment\":{}}],[\"sockettimeoutms\",{\"_index\":620,\"name\":{\"1748\":{},\"1781\":{},\"2036\":{},\"2109\":{},\"2897\":{}},\"comment\":{}}],[\"sort\",{\"_index\":167,\"name\":{\"509\":{},\"745\":{},\"1911\":{},\"1978\":{},\"1984\":{},\"2172\":{},\"2470\":{},\"2507\":{},\"2531\":{},\"2557\":{},\"3001\":{}},\"comment\":{}}],[\"sortdirection\",{\"_index\":995,\"name\":{\"3002\":{}},\"comment\":{}}],[\"source\",{\"_index\":584,\"name\":{\"1695\":{},\"1704\":{}},\"comment\":{}}],[\"sparse\",{\"_index\":878,\"name\":{\"2582\":{},\"2624\":{}},\"comment\":{}}],[\"sparsity\",{\"_index\":556,\"name\":{\"1643\":{}},\"comment\":{}}],[\"splitevent\",{\"_index\":455,\"name\":{\"1345\":{},\"1353\":{},\"1361\":{},\"1372\":{},\"1385\":{},\"1401\":{},\"1409\":{},\"1417\":{},\"1429\":{},\"1440\":{},\"1480\":{},\"1494\":{},\"1505\":{},\"1515\":{},\"1524\":{},\"1540\":{}},\"comment\":{}}],[\"srvhost\",{\"_index\":723,\"name\":{\"2084\":{}},\"comment\":{}}],[\"srvmaxhosts\",{\"_index\":711,\"name\":{\"2039\":{},\"2111\":{}},\"comment\":{}}],[\"srvservicename\",{\"_index\":712,\"name\":{\"2040\":{},\"2112\":{}},\"comment\":{}}],[\"ssl\",{\"_index\":704,\"name\":{\"2028\":{}},\"comment\":{}}],[\"stale\",{\"_index\":978,\"name\":{\"2967\":{}},\"comment\":{}}],[\"start\",{\"_index\":286,\"name\":{\"816\":{},\"1980\":{},\"1986\":{}},\"comment\":{}}],[\"startafter\",{\"_index\":480,\"name\":{\"1449\":{},\"1553\":{}},\"comment\":{}}],[\"startatoperationtime\",{\"_index\":481,\"name\":{\"1450\":{},\"1547\":{}},\"comment\":{}}],[\"startsession\",{\"_index\":311,\"name\":{\"947\":{}},\"comment\":{}}],[\"starttransaction\",{\"_index\":203,\"name\":{\"627\":{}},\"comment\":{}}],[\"state\",{\"_index\":299,\"name\":{\"832\":{}},\"comment\":{}}],[\"stats\",{\"_index\":259,\"name\":{\"715\":{}},\"comment\":{}}],[\"status\",{\"_index\":551,\"name\":{\"1631\":{}},\"comment\":{}}],[\"storageengine\",{\"_index\":839,\"name\":{\"2366\":{},\"2584\":{},\"2627\":{}},\"comment\":{}}],[\"stream\",{\"_index\":118,\"name\":{\"454\":{},\"522\":{},\"588\":{},\"760\":{},\"858\":{},\"904\":{},\"1002\":{},\"1727\":{},\"1924\":{}},\"comment\":{}}],[\"streamdescription\",{\"_index\":650,\"name\":{\"1818\":{}},\"comment\":{}}],[\"streamdescriptionoptions\",{\"_index\":658,\"name\":{\"1834\":{}},\"comment\":{}}],[\"streamend\",{\"_index\":300,\"name\":{\"834\":{}},\"comment\":{}}],[\"streamoptions\",{\"_index\":182,\"name\":{\"581\":{}},\"comment\":{}}],[\"strength\",{\"_index\":822,\"name\":{\"2282\":{}},\"comment\":{}}],[\"strict\",{\"_index\":725,\"name\":{\"2133\":{}},\"comment\":{}}],[\"strictfilter\",{\"_index\":811,\"name\":{\"2247\":{}},\"comment\":{}}],[\"strictmatchkeysandvalues\",{\"_index\":812,\"name\":{\"2248\":{}},\"comment\":{}}],[\"strictupdatefilter\",{\"_index\":813,\"name\":{\"2249\":{}},\"comment\":{}}],[\"supportednodeconnectionoptions\",{\"_index\":727,\"name\":{\"2135\":{}},\"comment\":{}}],[\"supportedsocketoptions\",{\"_index\":728,\"name\":{\"2136\":{}},\"comment\":{}}],[\"supportedtlsconnectionoptions\",{\"_index\":729,\"name\":{\"2137\":{}},\"comment\":{}}],[\"supportedtlssocketoptions\",{\"_index\":730,\"name\":{\"2138\":{}},\"comment\":{}}],[\"supports\",{\"_index\":187,\"name\":{\"608\":{}},\"comment\":{}}],[\"supportssnapshotreads\",{\"_index\":970,\"name\":{\"2956\":{}},\"comment\":{}}],[\"system_command_collection\",{\"_index\":254,\"name\":{\"699\":{}},\"comment\":{}}],[\"system_index_collection\",{\"_index\":251,\"name\":{\"696\":{}},\"comment\":{}}],[\"system_js_collection\",{\"_index\":255,\"name\":{\"700\":{}},\"comment\":{}}],[\"system_namespace_collection\",{\"_index\":250,\"name\":{\"695\":{}},\"comment\":{}}],[\"system_profile_collection\",{\"_index\":252,\"name\":{\"697\":{}},\"comment\":{}}],[\"system_user_collection\",{\"_index\":253,\"name\":{\"698\":{}},\"comment\":{}}],[\"tags\",{\"_index\":359,\"name\":{\"1095\":{},\"2912\":{}},\"comment\":{}}],[\"tagset\",{\"_index\":958,\"name\":{\"2935\":{}},\"comment\":{}}],[\"tailable\",{\"_index\":667,\"name\":{\"1861\":{},\"1877\":{},\"2475\":{}},\"comment\":{}}],[\"text\",{\"_index\":803,\"name\":{\"2237\":{}},\"comment\":{}}],[\"textindexversion\",{\"_index\":883,\"name\":{\"2590\":{},\"2631\":{}},\"comment\":{}}],[\"time\",{\"_index\":385,\"name\":{\"1144\":{},\"1148\":{},\"1152\":{},\"1155\":{},\"1161\":{},\"1165\":{},\"1169\":{},\"1172\":{},\"1176\":{},\"1179\":{},\"1182\":{},\"1186\":{}},\"comment\":{}}],[\"timefield\",{\"_index\":851,\"name\":{\"2398\":{}},\"comment\":{}}],[\"timeout\",{\"_index\":867,\"name\":{\"2474\":{}},\"comment\":{}}],[\"timeout_sec\",{\"_index\":644,\"name\":{\"1807\":{}},\"comment\":{}}],[\"timeoutcontext\",{\"_index\":600,\"name\":{\"1719\":{}},\"comment\":{}}],[\"timeoutseconds\",{\"_index\":599,\"name\":{\"1718\":{}},\"comment\":{}}],[\"timeseries\",{\"_index\":845,\"name\":{\"2374\":{}},\"comment\":{}}],[\"timeseriescollectionoptions\",{\"_index\":850,\"name\":{\"2397\":{}},\"comment\":{}}],[\"timestamp\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"tls\",{\"_index\":618,\"name\":{\"1746\":{},\"1779\":{},\"2027\":{},\"2098\":{},\"2896\":{}},\"comment\":{}}],[\"tlsallowinvalidcertificates\",{\"_index\":708,\"name\":{\"2032\":{},\"2105\":{}},\"comment\":{}}],[\"tlsallowinvalidhostnames\",{\"_index\":709,\"name\":{\"2033\":{},\"2106\":{}},\"comment\":{}}],[\"tlscafile\",{\"_index\":707,\"name\":{\"2031\":{},\"2099\":{}},\"comment\":{}}],[\"tlscertificatekeyfile\",{\"_index\":705,\"name\":{\"2029\":{},\"2100\":{}},\"comment\":{}}],[\"tlscertificatekeyfilepassword\",{\"_index\":706,\"name\":{\"2030\":{}},\"comment\":{}}],[\"tlsinsecure\",{\"_index\":710,\"name\":{\"2034\":{},\"2107\":{}},\"comment\":{}}],[\"tlsoptions\",{\"_index\":524,\"name\":{\"1592\":{},\"1618\":{}},\"comment\":{}}],[\"to\",{\"_index\":486,\"name\":{\"1485\":{}},\"comment\":{}}],[\"toarray\",{\"_index\":123,\"name\":{\"460\":{},\"528\":{},\"766\":{},\"864\":{},\"910\":{},\"1008\":{},\"1930\":{}},\"comment\":{}}],[\"tobson\",{\"_index\":206,\"name\":{\"630\":{}},\"comment\":{}}],[\"tohostport\",{\"_index\":1009,\"name\":{\"3043\":{}},\"comment\":{}}],[\"tojson\",{\"_index\":347,\"name\":{\"1077\":{},\"1103\":{},\"1287\":{},\"1297\":{}},\"comment\":{}}],[\"token_audience\",{\"_index\":579,\"name\":{\"1689\":{}},\"comment\":{}}],[\"topologyclosedevent\",{\"_index\":407,\"name\":{\"1209\":{}},\"comment\":{}}],[\"topologydescription\",{\"_index\":974,\"name\":{\"2960\":{}},\"comment\":{}}],[\"topologydescriptionchangedevent\",{\"_index\":408,\"name\":{\"1211\":{}},\"comment\":{}}],[\"topologydescriptionoptions\",{\"_index\":984,\"name\":{\"2977\":{}},\"comment\":{}}],[\"topologyevents\",{\"_index\":973,\"name\":{\"2959\":{}},\"comment\":{}}],[\"topologyid\",{\"_index\":399,\"name\":{\"1189\":{},\"1192\":{},\"1207\":{},\"1210\":{},\"1212\":{},\"1216\":{}},\"comment\":{}}],[\"topologyopeningevent\",{\"_index\":409,\"name\":{\"1215\":{}},\"comment\":{}}],[\"topologytype\",{\"_index\":340,\"name\":{\"1067\":{},\"1068\":{}},\"comment\":{}}],[\"topologyversion\",{\"_index\":55,\"name\":{\"57\":{},\"83\":{},\"94\":{},\"105\":{},\"116\":{},\"127\":{},\"138\":{},\"149\":{},\"160\":{},\"171\":{},\"182\":{},\"192\":{},\"204\":{},\"215\":{},\"226\":{},\"237\":{},\"248\":{},\"259\":{},\"270\":{},\"281\":{},\"292\":{},\"303\":{},\"314\":{},\"325\":{},\"336\":{},\"351\":{},\"363\":{},\"375\":{},\"386\":{},\"397\":{},\"408\":{},\"419\":{},\"435\":{},\"2914\":{},\"2937\":{}},\"comment\":{}}],[\"tostring\",{\"_index\":425,\"name\":{\"1250\":{},\"1288\":{},\"1303\":{},\"3042\":{},\"3052\":{},\"3059\":{}},\"comment\":{}}],[\"totalsize\",{\"_index\":909,\"name\":{\"2732\":{}},\"comment\":{}}],[\"totalsizemb\",{\"_index\":910,\"name\":{\"2733\":{}},\"comment\":{}}],[\"transaction\",{\"_index\":193,\"name\":{\"615\":{},\"3003\":{}},\"comment\":{}}],[\"transactionoptions\",{\"_index\":1000,\"name\":{\"3010\":{}},\"comment\":{}}],[\"transform\",{\"_index\":672,\"name\":{\"1868\":{}},\"comment\":{}}],[\"translate\",{\"_index\":356,\"name\":{\"1091\":{}},\"comment\":{}}],[\"truncatedarrays\",{\"_index\":498,\"name\":{\"1559\":{}},\"comment\":{}}],[\"trynext\",{\"_index\":121,\"name\":{\"457\":{},\"525\":{},\"585\":{},\"763\":{},\"861\":{},\"907\":{},\"1005\":{},\"1927\":{}},\"comment\":{}}],[\"txnnumber\",{\"_index\":453,\"name\":{\"1343\":{},\"1351\":{},\"1359\":{},\"1370\":{},\"1383\":{},\"1399\":{},\"1407\":{},\"1415\":{},\"1427\":{},\"1438\":{},\"1478\":{},\"1492\":{},\"1503\":{},\"1513\":{},\"1522\":{},\"1538\":{},\"2993\":{}},\"comment\":{}}],[\"type\",{\"_index\":181,\"name\":{\"580\":{},\"1796\":{},\"1821\":{},\"2190\":{},\"2684\":{},\"2908\":{},\"2962\":{}},\"comment\":{}}],[\"typedeventemitter\",{\"_index\":735,\"name\":{\"2145\":{}},\"comment\":{}}],[\"u\",{\"_index\":928,\"name\":{\"2838\":{}},\"comment\":{}}],[\"unique\",{\"_index\":834,\"name\":{\"2359\":{},\"2579\":{},\"2622\":{}},\"comment\":{}}],[\"unorderedbulkoperation\",{\"_index\":325,\"name\":{\"1028\":{}},\"comment\":{}}],[\"unpinned\",{\"_index\":612,\"name\":{\"1737\":{}},\"comment\":{}}],[\"unwind\",{\"_index\":168,\"name\":{\"510\":{},\"1912\":{}},\"comment\":{}}],[\"update\",{\"_index\":434,\"name\":{\"1270\":{},\"1277\":{},\"1326\":{}},\"comment\":{}}],[\"updatedate\",{\"_index\":550,\"name\":{\"1630\":{}},\"comment\":{}}],[\"updatedescription\",{\"_index\":494,\"name\":{\"1533\":{},\"1556\":{}},\"comment\":{}}],[\"updatedfields\",{\"_index\":496,\"name\":{\"1557\":{}},\"comment\":{}}],[\"updatefilter\",{\"_index\":814,\"name\":{\"2250\":{}},\"comment\":{}}],[\"updatemany\",{\"_index\":217,\"name\":{\"661\":{}},\"comment\":{}}],[\"updatemanymodel\",{\"_index\":433,\"name\":{\"1268\":{}},\"comment\":{}}],[\"updateone\",{\"_index\":215,\"name\":{\"659\":{},\"1327\":{}},\"comment\":{}}],[\"updateonemodel\",{\"_index\":436,\"name\":{\"1275\":{}},\"comment\":{}}],[\"updateoptions\",{\"_index\":924,\"name\":{\"2808\":{}},\"comment\":{}}],[\"updateresult\",{\"_index\":925,\"name\":{\"2830\":{}},\"comment\":{}}],[\"updatesearchindex\",{\"_index\":248,\"name\":{\"693\":{}},\"comment\":{}}],[\"updatestatement\",{\"_index\":927,\"name\":{\"2836\":{}},\"comment\":{}}],[\"uploaddate\",{\"_index\":692,\"name\":{\"1996\":{}},\"comment\":{}}],[\"upsert\",{\"_index\":432,\"name\":{\"1267\":{},\"1274\":{},\"1281\":{},\"1331\":{},\"2532\":{},\"2558\":{},\"2791\":{},\"2813\":{},\"2839\":{}},\"comment\":{}}],[\"upsertedcount\",{\"_index\":47,\"name\":{\"47\":{},\"1237\":{},\"2834\":{}},\"comment\":{}}],[\"upsertedid\",{\"_index\":926,\"name\":{\"2835\":{}},\"comment\":{}}],[\"upsertedids\",{\"_index\":50,\"name\":{\"50\":{},\"1238\":{}},\"comment\":{}}],[\"url\",{\"_index\":646,\"name\":{\"1810\":{}},\"comment\":{}}],[\"username\",{\"_index\":582,\"name\":{\"1693\":{},\"1702\":{},\"2018\":{}},\"comment\":{}}],[\"uuid\",{\"_index\":14,\"name\":{\"14\":{},\"2689\":{}},\"comment\":{}}],[\"validate\",{\"_index\":588,\"name\":{\"1700\":{}},\"comment\":{}}],[\"validatecollection\",{\"_index\":154,\"name\":{\"492\":{}},\"comment\":{}}],[\"validatecollectionoptions\",{\"_index\":930,\"name\":{\"2844\":{}},\"comment\":{}}],[\"validationaction\",{\"_index\":842,\"name\":{\"2369\":{}},\"comment\":{}}],[\"validationlevel\",{\"_index\":841,\"name\":{\"2368\":{}},\"comment\":{}}],[\"validator\",{\"_index\":840,\"name\":{\"2367\":{}},\"comment\":{}}],[\"value\",{\"_index\":662,\"name\":{\"1846\":{}},\"comment\":{}}],[\"version\",{\"_index\":548,\"name\":{\"1626\":{},\"1720\":{},\"1793\":{},\"1799\":{},\"1815\":{},\"2022\":{},\"2132\":{},\"2586\":{},\"2620\":{}},\"comment\":{}}],[\"viewon\",{\"_index\":844,\"name\":{\"2371\":{}},\"comment\":{}}],[\"w\",{\"_index\":365,\"name\":{\"1108\":{},\"2064\":{},\"3061\":{},\"3065\":{}},\"comment\":{}}],[\"waitqueuetimeoutms\",{\"_index\":636,\"name\":{\"1771\":{},\"2045\":{},\"2116\":{}},\"comment\":{}}],[\"watch\",{\"_index\":240,\"name\":{\"685\":{},\"726\":{},\"949\":{}},\"comment\":{}}],[\"weights\",{\"_index\":880,\"name\":{\"2587\":{},\"2628\":{}},\"comment\":{}}],[\"where\",{\"_index\":808,\"name\":{\"2243\":{}},\"comment\":{}}],[\"wildcardprojection\",{\"_index\":887,\"name\":{\"2596\":{},\"2635\":{}},\"comment\":{}}],[\"willretrywrite\",{\"_index\":30,\"name\":{\"30\":{},\"1461\":{},\"1893\":{},\"2271\":{},\"2298\":{},\"2322\":{},\"2349\":{},\"2390\":{},\"2416\":{},\"2443\":{},\"2461\":{},\"2498\":{},\"2519\":{},\"2544\":{},\"2570\":{},\"2605\":{},\"2647\":{},\"2672\":{},\"2702\":{},\"2723\":{},\"2738\":{},\"2757\":{},\"2780\":{},\"2801\":{},\"2823\":{},\"2855\":{},\"3023\":{}},\"comment\":{}}],[\"withcollection\",{\"_index\":1011,\"name\":{\"3053\":{},\"3060\":{}},\"comment\":{}}],[\"withid\",{\"_index\":815,\"name\":{\"2251\":{}},\"comment\":{}}],[\"withoutid\",{\"_index\":816,\"name\":{\"2252\":{}},\"comment\":{}}],[\"withreadconcern\",{\"_index\":127,\"name\":{\"464\":{},\"531\":{},\"769\":{},\"868\":{},\"914\":{},\"988\":{},\"1933\":{}},\"comment\":{}}],[\"withreadpreference\",{\"_index\":126,\"name\":{\"463\":{},\"530\":{},\"768\":{},\"867\":{},\"913\":{},\"1010\":{},\"1932\":{}},\"comment\":{}}],[\"withsession\",{\"_index\":312,\"name\":{\"948\":{}},\"comment\":{}}],[\"withsessioncallback\",{\"_index\":731,\"name\":{\"2139\":{}},\"comment\":{}}],[\"withtransaction\",{\"_index\":207,\"name\":{\"631\":{}},\"comment\":{}}],[\"withtransactioncallback\",{\"_index\":994,\"name\":{\"2999\":{}},\"comment\":{}}],[\"writeconcern\",{\"_index\":35,\"name\":{\"35\":{},\"654\":{},\"708\":{},\"838\":{},\"941\":{},\"973\":{},\"1037\":{},\"1104\":{},\"1320\":{},\"1844\":{},\"1895\":{},\"1964\":{},\"2004\":{},\"2011\":{},\"2067\":{},\"2091\":{},\"2276\":{},\"2303\":{},\"2327\":{},\"2354\":{},\"2395\":{},\"2421\":{},\"2448\":{},\"2466\":{},\"2524\":{},\"2549\":{},\"2575\":{},\"2677\":{},\"2728\":{},\"2762\":{},\"2785\":{},\"2806\":{},\"2828\":{},\"2860\":{},\"3012\":{},\"3063\":{}},\"comment\":{}}],[\"writeconcernerror\",{\"_index\":52,\"name\":{\"53\":{},\"346\":{},\"431\":{},\"1282\":{}},\"comment\":{}}],[\"writeconcernerrordata\",{\"_index\":449,\"name\":{\"1335\":{}},\"comment\":{}}],[\"writeconcernoptions\",{\"_index\":1013,\"name\":{\"3062\":{}},\"comment\":{}}],[\"writeconcernsettings\",{\"_index\":1014,\"name\":{\"3064\":{}},\"comment\":{}}],[\"writeerror\",{\"_index\":437,\"name\":{\"1289\":{}},\"comment\":{}}],[\"writeerrors\",{\"_index\":40,\"name\":{\"40\":{}},\"comment\":{}}],[\"wtimeout\",{\"_index\":368,\"name\":{\"1111\":{},\"3069\":{}},\"comment\":{}}],[\"wtimeoutms\",{\"_index\":367,\"name\":{\"1110\":{},\"2065\":{},\"3066\":{}},\"comment\":{}}],[\"zlibcompressionlevel\",{\"_index\":656,\"name\":{\"1832\":{},\"2038\":{},\"2110\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/Next/classes/AbstractCursor.html b/docs/Next/classes/AbstractCursor.html index 56f4595d46b..c504b1b6a69 100644 --- a/docs/Next/classes/AbstractCursor.html +++ b/docs/Next/classes/AbstractCursor.html @@ -96,6 +96,7 @@

    Methods

    withReadConcern withReadPreference getEventListeners +getMaxListeners listenerCount on once @@ -112,39 +113,72 @@

    Event

    -
    captureRejectionSymbol: typeof captureRejectionSymbol
    +
  • Defined in node_modules/@types/node/events.d.ts:355
  • captureRejections: boolean
    -

    Sets or gets the default captureRejection value for all emitters.

    +

    Value: boolean

    +

    Change the default captureRejections option on all new EventEmitter objects.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:362
  • -
    defaultMaxListeners: number
    +
  • Defined in node_modules/@types/node/events.d.ts:399
  • errorMonitor: typeof errorMonitor
    -

    This symbol shall be used to install a listener for only monitoring 'error' -events. Listeners installed using this symbol are called before the regular -'error' listeners are called.

    -

    Installing a listener using this symbol does not change the behavior once an -'error' event is emitted, therefore the process will still crash if no +

    This symbol shall be used to install a listener for only monitoring 'error'events. Listeners installed using this symbol are called before the regular'error' listeners are called.

    +

    Installing a listener using this symbol does not change the behavior once an'error' event is emitted. Therefore, the process will still crash if no regular 'error' listener is installed.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:348
  • Accessors

    @@ -1103,6 +1137,32 @@

    Since

    v15.2.0, v14.17.0

    Inherited from TypedEventEmitter.getEventListeners

    +
    + +
    +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in src/admin.ts:141
  • +
    +
    +
    +
    + +

    Class ClientEncryption

    +
    +

    The public interface for explicit in-use encryption

    +
    +
    +
    +

    Hierarchy

    +
      +
    • ClientEncryption
    +
    +
    +
    + +
    +
    +

    Constructors

    +
    + +
      + +
    • +

      Create a new encryption instance

      +
      +
      +

      Parameters

      +
      +

      Returns ClientEncryption

      +
      +

      Example

      new ClientEncryption(mongoClient, {
      keyVaultNamespace: 'client.encryption',
      kmsProviders: {
      local: {
      key: masterKey // The master key used for encryption/decryption. A 96-byte long Buffer
      }
      }
      }); +
      + +

      Example

      new ClientEncryption(mongoClient, {
      keyVaultNamespace: 'client.encryption',
      kmsProviders: {
      aws: {
      accessKeyId: AWS_ACCESS_KEY,
      secretAccessKey: AWS_SECRET_KEY
      }
      }
      }); +
      +
    +
    +

    Accessors

    +
    + +
    +
    +

    Methods

    +
    + +
      + +
    • +

      Adds a keyAltName to a key identified by the provided _id.

      +

      This method resolves to/returns the old key value (prior to adding the new altKeyName).

      +
      +
      +

      Parameters

      +
        +
      • +
        _id: Binary
        +

        The id of the document to update.

        +
        +
      • +
      • +
        keyAltName: string
        +

        a keyAltName to search for a key

        +
        +
      +

      Returns Promise<null | WithId<DataKey>>

      Returns a promise that either resolves to a DataKey if a document matches the key or null if no documents +match the id. The promise rejects with an error if an error is thrown.

      + +
      +

      Example

      // adding an keyAltName to a data key
      const id = new Binary(); // id is a bson binary subtype 4 object
      const keyAltName = 'keyAltName';
      const oldKey = await clientEncryption.addKeyAltName(id, keyAltName);
      if (!oldKey) {
      // null is returned if there is no matching document with an id matching the supplied id
      } +
      +
    +
    + +
      + +
    • +

      Creates a data key used for explicit encryption and inserts it into the key vault namespace

      +
      + +

      Returns Promise<UUID>

      +
      +

      Example

      // Using async/await to create a local key
      const dataKeyId = await clientEncryption.createDataKey('local'); +
      + +

      Example

      // Using async/await to create an aws key
      const dataKeyId = await clientEncryption.createDataKey('aws', {
      masterKey: {
      region: 'us-east-1',
      key: 'xxxxxxxxxxxxxx' // CMK ARN here
      }
      }); +
      + +

      Example

      // Using async/await to create an aws key with a keyAltName
      const dataKeyId = await clientEncryption.createDataKey('aws', {
      masterKey: {
      region: 'us-east-1',
      key: 'xxxxxxxxxxxxxx' // CMK ARN here
      },
      keyAltNames: [ 'mySpecialKey' ]
      }); +
      +
    +
    + +
    +
    + +
      + +
    • +

      Explicitly decrypt a provided encrypted value

      +
      +
      +

      Type Parameters

      +
        +
      • +

        T = any

      +
      +

      Parameters

      +
        +
      • +
        value: Binary
        +

        An encrypted value

        +
        +
      +

      Returns Promise<T>

      a Promise that either resolves with the decrypted value, or rejects with an error

      + +
      +

      Example

      // Decrypting value with async/await API
      async function decryptMyValue(value) {
      return clientEncryption.decrypt(value);
      } +
      +
    +
    + +
      + +
    • +

      Deletes the key with the provided id from the keyvault, if it exists.

      +
      +
      +

      Parameters

      +
      +

      Returns Promise<DeleteResult>

      +
      +

      Example

      // delete a key by _id
      const id = new Binary(); // id is a bson binary subtype 4 object
      const { deletedCount } = await clientEncryption.deleteKey(id);

      if (deletedCount != null && deletedCount > 0) {
      // successful deletion
      } +
      +
    +
    + +
      + +
    • +

      Explicitly encrypt a provided value. Note that either options.keyId or options.keyAltName must +be specified. Specifying both options.keyId and options.keyAltName is considered an error.

      +
      +
      +

      Parameters

      +
        +
      • +
        value: unknown
        +

        The value that you wish to serialize. Must be of a type that can be serialized into BSON

        +
        +
      • +
      • +
        options: ClientEncryptionEncryptOptions
        +
      +

      Returns Promise<Binary>

      a Promise that either resolves with the encrypted value, or rejects with an error.

      + +
      +

      Example

      // Encryption with async/await api
      async function encryptMyData(value) {
      const keyId = await clientEncryption.createDataKey('local');
      return clientEncryption.encrypt(value, { keyId, algorithm: 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic' });
      } +
      + +

      Example

      // Encryption using a keyAltName
      async function encryptMyData(value) {
      await clientEncryption.createDataKey('local', { keyAltNames: 'mySpecialKey' });
      return clientEncryption.encrypt(value, { keyAltName: 'mySpecialKey', algorithm: 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic' });
      } +
      +
    +
    + +
      + +
    • Experimental +

      Encrypts a Match Expression or Aggregate Expression to query a range index.

      +

      Only supported when queryType is "rangePreview" and algorithm is "RangePreview".

      +

      The Range algorithm is experimental only. It is not intended for production use. It is subject to breaking changes.

      +
      +
      +

      Parameters

      +
        +
      • +
        expression: Document
        +

        a BSON document of one of the following forms:

        +
          +
        1. A Match Expression of this form: + {$and: [{<field>: {$gt: <value1>}}, {<field>: {$lt: <value2> }}]}
        2. +
        3. An Aggregate Expression of this form: + {$and: [{$gt: [<fieldpath>, <value1>]}, {$lt: [<fieldpath>, <value2>]}]}
        4. +
        +

        $gt may also be $gte. $lt may also be $lte.

        +
        +
      • +
      • +
        options: ClientEncryptionEncryptOptions
        +
      +

      Returns Promise<Binary>

      Returns a Promise that either resolves with the encrypted value or rejects with an error.

      + +
    +
    + +
      + +
    • +

      Finds a key in the keyvault with the specified _id.

      +

      Returns a promise that either resolves to a DataKey if a document matches the key or null if no documents +match the id. The promise rejects with an error if an error is thrown.

      +
      +
      +

      Parameters

      +
      +

      Returns Promise<null | DataKey>

      +
      +

      Example

      // getting a key by id
      const id = new Binary(); // id is a bson binary subtype 4 object
      const key = await clientEncryption.getKey(id);
      if (!key) {
      // key is null if there was no matching key
      } +
      +
    +
    + +
      + +
    • +

      Finds a key in the keyvault which has the specified keyAltName.

      +
      +
      +

      Parameters

      +
        +
      • +
        keyAltName: string
        +

        a keyAltName to search for a key

        +
        +
      +

      Returns Promise<null | WithId<DataKey>>

      Returns a promise that either resolves to a DataKey if a document matches the key or null if no documents +match the keyAltName. The promise rejects with an error if an error is thrown.

      + +
      +

      Example

      // get a key by alt name
      const keyAltName = 'keyAltName';
      const key = await clientEncryption.getKeyByAltName(keyAltName);
      if (!key) {
      // key is null if there is no matching key
      } +
      +
    +
    + +
    +
    + +
      + +
    • +

      Adds a keyAltName to a key identified by the provided _id.

      +

      This method resolves to/returns the old key value (prior to removing the new altKeyName).

      +

      If the removed keyAltName is the last keyAltName for that key, the altKeyNames property is unset from the document.

      +
      +
      +

      Parameters

      +
        +
      • +
        _id: Binary
        +

        The id of the document to update.

        +
        +
      • +
      • +
        keyAltName: string
        +

        a keyAltName to search for a key

        +
        +
      +

      Returns Promise<null | WithId<DataKey>>

      Returns a promise that either resolves to a DataKey if a document matches the key or null if no documents +match the id. The promise rejects with an error if an error is thrown.

      + +
      +

      Example

      // removing a key alt name from a data key
      const id = new Binary(); // id is a bson binary subtype 4 object
      const keyAltName = 'keyAltName';
      const oldKey = await clientEncryption.removeKeyAltName(id, keyAltName);

      if (!oldKey) {
      // null is returned if there is no matching document with an id matching the supplied id
      } +
      +
    +
    + +
      + +
    • +

      Searches the keyvault for any data keys matching the provided filter. If there are matches, rewrapManyDataKey then attempts to re-wrap the data keys using the provided options.

      +

      If no matches are found, then no bulk write is performed.

      +
      +
      +

      Parameters

      +
      +

      Returns Promise<{
          bulkWriteResult?: undefined;
      } | {
          bulkWriteResult: BulkWriteResult;
      }>

      +
      +

      Example

      // rewrapping all data data keys (using a filter that matches all documents)
      const filter = {};

      const result = await clientEncryption.rewrapManyDataKey(filter);
      if (result.bulkWriteResult != null) {
      // keys were re-wrapped, results will be available in the bulkWrite object.
      } +
      + +

      Example

      // attempting to rewrap all data keys with no matches
      const filter = { _id: new Binary() } // assume _id matches no documents in the database
      const result = await clientEncryption.rewrapManyDataKey(filter);

      if (result.bulkWriteResult == null) {
      // no keys matched, `bulkWriteResult` does not exist on the result object
      } +
      +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/Next/classes/ClientSession.html b/docs/Next/classes/ClientSession.html index f282591ffea..91d172d8f79 100644 --- a/docs/Next/classes/ClientSession.html +++ b/docs/Next/classes/ClientSession.html @@ -27,7 +27,7 @@

    Hierarchy

    +
  • Defined in src/sessions.ts:105
  • @@ -85,6 +85,7 @@

    Methods

    toBSON withTransaction getEventListeners +getMaxListeners listenerCount on once @@ -96,32 +97,32 @@

    Properties

    clientOptions?: MongoOptions
    +
  • Defined in src/sessions.ts:111
  • clusterTime?: ClusterTime
    +
  • Defined in src/sessions.ts:113
  • defaultTransactionOptions: TransactionOptions
    +
  • Defined in src/sessions.ts:118
  • explicit: boolean
    +
  • Defined in src/sessions.ts:115
  • hasEnded: boolean
    +
  • Defined in src/sessions.ts:110
  • operationTime?: Timestamp
    +
  • Defined in src/sessions.ts:114
  • supports: {
        causalConsistency: boolean;
    }
    @@ -131,47 +132,80 @@

    Type declaration

  • causalConsistency: boolean
  • +
  • Defined in src/sessions.ts:112
  • transaction: Transaction
    +
  • Defined in src/sessions.ts:119
  • -
    captureRejectionSymbol: typeof captureRejectionSymbol
    +
  • Defined in node_modules/@types/node/events.d.ts:355
  • captureRejections: boolean
    -

    Sets or gets the default captureRejection value for all emitters.

    +

    Value: boolean

    +

    Change the default captureRejections option on all new EventEmitter objects.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:362
  • -
    defaultMaxListeners: number
    +
  • Defined in node_modules/@types/node/events.d.ts:399
  • errorMonitor: typeof errorMonitor
    -

    This symbol shall be used to install a listener for only monitoring 'error' -events. Listeners installed using this symbol are called before the regular -'error' listeners are called.

    -

    Installing a listener using this symbol does not change the behavior once an -'error' event is emitted, therefore the process will still crash if no +

    This symbol shall be used to install a listener for only monitoring 'error'events. Listeners installed using this symbol are called before the regular'error' listeners are called.

    +

    Installing a listener using this symbol does not change the behavior once an'error' event is emitted. Therefore, the process will still crash if no regular 'error' listener is installed.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:348
  • Accessors

    @@ -184,7 +218,7 @@
    +
  • Defined in src/sessions.ts:192
  • +
  • Defined in src/sessions.ts:247
  • +
  • Defined in src/sessions.ts:216
  • +
  • Defined in src/sessions.ts:196
  • +
  • Defined in src/sessions.ts:212
  • Methods

    +
  • Defined in src/sessions.ts:423
  • +
  • Defined in src/sessions.ts:304
  • +
  • Defined in src/sessions.ts:288
  • +
  • Defined in src/sessions.ts:416
  • +
  • Defined in src/sessions.ts:256
  • +
  • Defined in src/sessions.ts:333
  • +
  • Defined in src/sessions.ts:358
  • +
  • Defined in src/sessions.ts:353
  • +
  • Defined in src/sessions.ts:367
  • +
  • Defined in src/sessions.ts:430
  • Parameters

    +
  • Defined in src/sessions.ts:453
  • +
    + +
    +
  • Defined in node_modules/@types/node/events.d.ts:340
  • Generated using TypeDoc

    -
    +
    \ No newline at end of file diff --git a/docs/Next/classes/Collection.html b/docs/Next/classes/Collection.html index cfd1afd44a0..d66891f4892 100644 --- a/docs/Next/classes/Collection.html +++ b/docs/Next/classes/Collection.html @@ -34,7 +34,7 @@

    Hierarchy

    +
  • Defined in src/collection.ts:155
  • @@ -87,7 +87,6 @@

    Methods

    options rename replaceOne -stats updateMany updateOne updateSearchIndex @@ -102,7 +101,7 @@
    +
  • Defined in src/collection.ts:237
  • +
  • Defined in src/collection.ts:194
  • +
  • Defined in src/collection.ts:187
  • set hint(v): void
  • @@ -145,7 +144,7 @@

    Parameters

    v: undefined | Hint
  • Returns void

    +
  • Defined in src/collection.ts:257
  • +
  • Defined in src/collection.ts:201
  • +
  • Defined in src/collection.ts:218
  • +
  • Defined in src/collection.ts:229
  • +
  • Defined in src/collection.ts:245
  • Methods

    @@ -223,7 +222,7 @@
    Optional Returns AggregationCursor<T>
    +
  • Defined in src/collection.ts:928
  • +
  • Defined in src/collection.ts:324
  • +
  • Defined in src/collection.ts:1033
  • +
  • Defined in src/collection.ts:742
  • +
  • Defined in src/collection.ts:566
  • +
  • Defined in src/collection.ts:612
    • @@ -424,7 +423,7 @@

      Returns Promise<

      Remarks

      Only available when used against a 7.0+ Atlas cluster.

    +
  • Defined in src/collection.ts:1081
    • @@ -446,7 +445,7 @@

      Returns Promise<

      Remarks

      Only available when used against a 7.0+ Atlas cluster.

    +
  • Defined in src/collection.ts:1095
  • +
  • Defined in src/collection.ts:433
  • +
  • Defined in src/collection.ts:417
  • @@ -535,7 +534,7 @@
    key: filter: Filter<TSchema>
  • Returns Promise<Flatten<WithId<TSchema>[Key]>[]>

    +
  • Defined in src/collection.ts:762
  • @@ -554,7 +553,7 @@
    filter: options: CommandOperationOptions
  • Returns Promise<Flatten<WithId<TSchema>[Key]>[]>

    +
  • Defined in src/collection.ts:766
  • @@ -564,7 +563,7 @@

    Parameters

    key: string
  • Returns Promise<any[]>

    +
  • Defined in src/collection.ts:773
  • @@ -576,7 +575,7 @@
    key: filter: Filter<TSchema>
  • Returns Promise<any[]>

    +
  • Defined in src/collection.ts:774
  • @@ -590,7 +589,7 @@
    filter: options: CommandOperationOptions
  • Returns Promise<any[]>

    +
  • Defined in src/collection.ts:775
  • +
  • Defined in src/collection.ts:468
  • +
  • Defined in src/collection.ts:633
    • - +
    • Drops all indexes from this collection.

      @@ -649,10 +648,10 @@
      Optional

      Optional settings for the command

    -

    Returns Promise<Document>

    +

    Returns Promise<boolean>

    +
  • Defined in src/collection.ts:648
    • @@ -673,7 +672,7 @@

      Returns Promise<

      Remarks

      Only available when used against a 7.0+ Atlas cluster.

    +
  • Defined in src/collection.ts:1109
  • +
  • Defined in src/collection.ts:710
  • @@ -723,7 +722,7 @@
    filter: Optional options: FindOptions<Document>
  • Returns FindCursor<WithId<TSchema>>

    +
  • Defined in src/collection.ts:503
  • @@ -740,7 +739,7 @@
    filter: Optional options: FindOptions<Document>
  • Returns FindCursor<T>

    +
  • Defined in src/collection.ts:504
  • @@ -761,7 +760,7 @@

    Parameters

    filter: Filter<TSchema>
  • Returns Promise<null | WithId<TSchema>>

    +
  • Defined in src/collection.ts:482
  • @@ -773,7 +772,7 @@
    filter: options: FindOptions<Document>
  • Returns Promise<null | WithId<TSchema>>

    +
  • Defined in src/collection.ts:483
  • @@ -783,7 +782,7 @@

    Type Parameters

    T = TSchema

  • Returns Promise<null | T>

    +
  • Defined in src/collection.ts:486
  • @@ -798,7 +797,7 @@

    Parameters

    filter: Filter<TSchema>
  • Returns Promise<null | T>

    +
  • Defined in src/collection.ts:487
  • @@ -815,7 +814,7 @@
    filter: Optional options: FindOptions<Document>
  • Returns Promise<null | T>

    +
  • Defined in src/collection.ts:488
  • @@ -851,8 +850,8 @@
    filter: options: FindOneAndDeleteOptions & {
        includeResultMetadata: false;
    }
  • Returns Promise<null | WithId<TSchema>>

    - +
  • Defined in src/collection.ts:815
  • +
  • Parameters

    @@ -861,19 +860,19 @@

    Parameters

    filter: Filter<TSchema>
  • options: FindOneAndDeleteOptions
  • -

    Returns Promise<ModifyResult<TSchema>>

    +
  • Parameters

    -

    Returns Promise<ModifyResult<TSchema>>

  • +
  • Defined in src/collection.ts:823
  • @@ -916,8 +915,8 @@
    replacement: options: FindOneAndReplaceOptions & {
        includeResultMetadata: false;
    }
  • Returns Promise<null | WithId<TSchema>>

    - +
  • Defined in src/collection.ts:850
  • +
  • Parameters

    @@ -928,10 +927,10 @@
    filter: replacement: WithoutId<TSchema>
  • options: FindOneAndReplaceOptions
  • -

    Returns Promise<ModifyResult<TSchema>>

    +
  • Parameters

    @@ -940,9 +939,9 @@

    Parameters

    filter: Filter<TSchema>
  • replacement: WithoutId<TSchema>
  • -

    Returns Promise<ModifyResult<TSchema>>

    +
  • Defined in src/collection.ts:860
  • @@ -985,8 +984,8 @@
    update: options: FindOneAndUpdateOptions & {
        includeResultMetadata: false;
    }
  • Returns Promise<null | WithId<TSchema>>

    - +
  • Defined in src/collection.ts:892
  • +
  • Parameters

    @@ -997,10 +996,10 @@
    filter: update: UpdateFilter<TSchema>
  • options: FindOneAndUpdateOptions
  • -

    Returns Promise<ModifyResult<TSchema>>

    +
  • Parameters

    @@ -1009,9 +1008,9 @@

    Parameters

    filter: Filter<TSchema>
  • update: UpdateFilter<TSchema>
  • -

    Returns Promise<ModifyResult<TSchema>>

    +
  • Defined in src/collection.ts:902
  • +
  • Defined in src/collection.ts:675
  • +
  • Defined in src/collection.ts:690
  • +
  • Defined in src/collection.ts:798
    • @@ -1094,7 +1093,7 @@

      Remarks

      NOTE: MongoClient must be connected prior to However, collection.bulkWrite() provides an equivalent API that does not require prior connecting.

    +
  • Defined in src/collection.ts:1017
    • @@ -1115,7 +1114,7 @@

      Remarks

      NOTE: MongoClient must be connected prior to However, collection.bulkWrite() provides an equivalent API that does not require prior connecting.

    +
  • Defined in src/collection.ts:1005
  • +
  • Defined in src/collection.ts:291
  • +
  • Defined in src/collection.ts:269
  • +
  • Defined in src/collection.ts:531
  • +
  • Defined in src/collection.ts:665
  • Returns all search indexes for the current collection.

    @@ -1249,7 +1248,7 @@

    Returns Remarks

    Only available when used against a 7.0+ Atlas cluster.

  • +
  • Defined in src/collection.ts:1056
  • +
  • Defined in src/collection.ts:519
    • @@ -1294,7 +1293,7 @@

      Returns Promise<

      Remarks

      This operation does not inherit options from the Db or MongoClient.

    +
  • Defined in src/collection.ts:452
  • -
    - -
      - -
    • -

      Get all the collection statistics.

      -
      -
      -

      Parameters

      -
      -

      Returns Promise<CollStats>

      -
      -

      Deprecated

      the collStats operation will be removed in the next major release. Please -use an aggregation pipeline with the $collStats stage instead

      -
    +
  • Defined in src/collection.ts:372
  • +
  • Defined in src/collection.ts:395
  • +
  • Defined in src/collection.ts:349
    • @@ -1429,7 +1406,7 @@

      Returns Promise<

      Remarks

      Only available when used against a 7.0+ Atlas cluster.

    +
  • Defined in src/collection.ts:1124
    • @@ -1483,7 +1460,7 @@

      Example

      Passing a second argument provides a way to reflect the type

    +
  • Defined in src/collection.ts:984
  • +
  • Defined in src/cmap/connection_pool_events.ts:235
  • time: Date
    @@ -106,6 +106,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -117,6 +118,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -153,6 +155,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -205,15 +213,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -237,15 +244,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -258,6 +269,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -270,13 +282,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -292,6 +304,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -306,6 +319,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -313,7 +327,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -330,7 +343,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -343,13 +355,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionCheckedOutEvent.html b/docs/Next/classes/ConnectionCheckedOutEvent.html index 4c4d4c8ef43..e877741488d 100644 --- a/docs/Next/classes/ConnectionCheckedOutEvent.html +++ b/docs/Next/classes/ConnectionCheckedOutEvent.html @@ -26,7 +26,7 @@

    Hierarchy

    • ConnectionCheckedOutEvent
    +
  • Defined in src/cmap/connection_pool_events.ts:215
  • @@ -56,7 +56,7 @@
    +
  • Defined in src/cmap/connection_pool_events.ts:217
  • time: Date
    @@ -106,6 +106,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -117,6 +118,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -153,6 +155,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -205,15 +213,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -237,15 +244,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -258,6 +269,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -270,13 +282,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -292,6 +304,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -306,6 +319,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -313,7 +327,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -330,7 +343,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -343,13 +355,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionClosedEvent.html b/docs/Next/classes/ConnectionClosedEvent.html index c49e193fe21..ef876b87a3b 100644 --- a/docs/Next/classes/ConnectionClosedEvent.html +++ b/docs/Next/classes/ConnectionClosedEvent.html @@ -26,7 +26,7 @@

    Hierarchy

    • ConnectionClosedEvent
    +
  • Defined in src/cmap/connection_pool_events.ts:144
  • @@ -58,7 +58,7 @@
    +
  • Defined in src/cmap/connection_pool_events.ts:146
  • reason: string
    @@ -66,12 +66,12 @@
    +
  • Defined in src/cmap/connection_pool_events.ts:148
  • serviceId?: ObjectId
    +
  • Defined in src/cmap/connection_pool_events.ts:149
  • time: Date
    @@ -123,6 +123,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -134,6 +135,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -170,6 +172,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -222,15 +230,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -254,15 +261,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -275,6 +286,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -287,13 +299,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -309,6 +321,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -323,6 +336,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -330,7 +344,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -347,7 +360,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -360,13 +372,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionCreatedEvent.html b/docs/Next/classes/ConnectionCreatedEvent.html index f4da7d57f95..45bd3b7e0cc 100644 --- a/docs/Next/classes/ConnectionCreatedEvent.html +++ b/docs/Next/classes/ConnectionCreatedEvent.html @@ -26,7 +26,7 @@

    Hierarchy

    • ConnectionCreatedEvent
    +
  • Defined in src/cmap/connection_pool_events.ts:108
  • @@ -56,7 +56,7 @@
    +
  • Defined in src/cmap/connection_pool_events.ts:110
  • time: Date
    @@ -106,6 +106,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -117,6 +118,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -153,6 +155,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -205,15 +213,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -237,15 +244,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -258,6 +269,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -270,13 +282,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -292,6 +304,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -306,6 +319,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -313,7 +327,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -330,7 +343,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -343,13 +355,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionPoolClearedEvent.html b/docs/Next/classes/ConnectionPoolClearedEvent.html index 2fa7f51df8d..b71302dac57 100644 --- a/docs/Next/classes/ConnectionPoolClearedEvent.html +++ b/docs/Next/classes/ConnectionPoolClearedEvent.html @@ -26,7 +26,7 @@

    Hierarchy

    • ConnectionPoolClearedEvent
    +
  • Defined in src/cmap/connection_pool_events.ts:251
  • @@ -53,7 +53,7 @@
    interruptInUseConnections?: boolean
    +
  • Defined in src/cmap/connection_pool_events.ts:255
  • time: Date
    @@ -103,6 +103,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -114,6 +115,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -150,6 +152,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -202,15 +210,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -234,15 +241,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -255,6 +266,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -267,13 +279,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -289,6 +301,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -303,6 +316,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -310,7 +324,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -327,7 +340,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -340,13 +352,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionPoolClosedEvent.html b/docs/Next/classes/ConnectionPoolClosedEvent.html index 899c4d601e0..77565b7e4d0 100644 --- a/docs/Next/classes/ConnectionPoolClosedEvent.html +++ b/docs/Next/classes/ConnectionPoolClosedEvent.html @@ -26,7 +26,7 @@

    Hierarchy

    • ConnectionPoolClosedEvent
    +
  • Defined in src/cmap/connection_pool_events.ts:93
  • @@ -96,6 +96,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -107,6 +108,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -143,6 +145,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -195,15 +203,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -227,15 +234,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -248,6 +259,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -260,13 +272,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -282,6 +294,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -296,6 +309,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -303,7 +317,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -320,7 +333,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -333,13 +345,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionPoolCreatedEvent.html b/docs/Next/classes/ConnectionPoolCreatedEvent.html index e398f128610..d71eb2171b5 100644 --- a/docs/Next/classes/ConnectionPoolCreatedEvent.html +++ b/docs/Next/classes/ConnectionPoolCreatedEvent.html @@ -35,7 +35,7 @@

    Properties

    @@ -50,8 +50,8 @@
    - - + +
    options: Pick<ConnectionPoolOptions, "minPoolSize" | "maxPoolSize" | "maxConnecting" | "maxIdleTimeMS" | "waitQueueTimeoutMS">

    The options used to create this connection pool

    +
  • Defined in src/cmap/connection_pool_events.ts:78
  • @@ -96,6 +96,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -107,6 +108,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -143,6 +145,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -195,15 +203,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -227,15 +234,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -248,6 +259,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -260,13 +272,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -282,6 +294,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -296,6 +309,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -303,7 +317,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -320,7 +333,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -333,13 +345,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/ConnectionReadyEvent.html b/docs/Next/classes/ConnectionReadyEvent.html index ecdecbe3966..0a07f5d1611 100644 --- a/docs/Next/classes/ConnectionReadyEvent.html +++ b/docs/Next/classes/ConnectionReadyEvent.html @@ -26,7 +26,7 @@

    Hierarchy

    • ConnectionReadyEvent
    +
  • Defined in src/cmap/connection_pool_events.ts:126
  • @@ -56,7 +56,7 @@
    +
  • Defined in src/cmap/connection_pool_events.ts:128
  • time: Date
    @@ -106,6 +106,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -117,6 +118,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -153,6 +155,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -205,15 +213,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -237,15 +244,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -258,6 +269,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -270,13 +282,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -292,6 +304,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -306,6 +319,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -313,7 +327,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -330,7 +343,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -343,13 +355,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/Db.html b/docs/Next/classes/Db.html index 395f0c74a4b..e93d7bf96a4 100644 --- a/docs/Next/classes/Db.html +++ b/docs/Next/classes/Db.html @@ -27,7 +27,7 @@

    Hierarchy

    • Db
    +
  • Defined in src/db.ts:122
  • @@ -59,8 +59,7 @@

    Accessors

    Methods

    -
    addUser -admin +
    admin aggregate collection collections @@ -109,39 +108,39 @@
    Optional Returns Db
    +
  • Defined in src/db.ts:143
  • Properties

    SYSTEM_COMMAND_COLLECTION: string = CONSTANTS.SYSTEM_COMMAND_COLLECTION
    +
  • Defined in src/db.ts:133
  • SYSTEM_INDEX_COLLECTION: string = CONSTANTS.SYSTEM_INDEX_COLLECTION
    +
  • Defined in src/db.ts:130
  • SYSTEM_JS_COLLECTION: string = CONSTANTS.SYSTEM_JS_COLLECTION
    +
  • Defined in src/db.ts:134
  • SYSTEM_NAMESPACE_COLLECTION: string = CONSTANTS.SYSTEM_NAMESPACE_COLLECTION
    +
  • Defined in src/db.ts:129
  • SYSTEM_PROFILE_COLLECTION: string = CONSTANTS.SYSTEM_PROFILE_COLLECTION
    +
  • Defined in src/db.ts:131
  • SYSTEM_USER_COLLECTION: string = CONSTANTS.SYSTEM_USER_COLLECTION
    +
  • Defined in src/db.ts:132
  • Accessors

    @@ -151,7 +150,7 @@
    +
  • Defined in src/db.ts:204
  • +
  • Defined in src/db.ts:172
  • +
  • Defined in src/db.ts:213
  • +
  • Defined in src/db.ts:177
  • +
  • Defined in src/db.ts:188
  • +
  • Defined in src/db.ts:196
  • +
  • Defined in src/db.ts:184
  • +
  • Defined in src/db.ts:209
  • Methods

    -
    - -
    +
  • Defined in src/db.ts:290
  • +
  • Defined in src/db.ts:277
  • +
  • Defined in src/db.ts:300
  • +
  • Defined in src/db.ts:402
    • @@ -379,7 +345,7 @@

      Remarks

      This command does not inherit options from the MongoClient.Attaching any of the above fields to the command will have no effect as the driver will overwrite the value.

    +
  • Defined in src/db.ts:259
  • +
  • Defined in src/db.ts:224
    • @@ -438,7 +404,7 @@
      Optional Returns Promise<string>
    +
  • Defined in src/db.ts:416
    • @@ -462,7 +428,7 @@
      Optional Returns Promise<boolean>
    +
  • Defined in src/db.ts:378
    • @@ -481,7 +447,7 @@
      Optional Returns Promise<boolean>
    +
  • Defined in src/db.ts:390
  • +
  • Defined in src/db.ts:474
  • @@ -541,7 +507,7 @@
    filter: options: ListCollectionsOptions & {
        nameOnly: false;
    }
  • Returns ListCollectionsCursor<CollectionInfo>

    +
  • Defined in src/db.ts:329
  • @@ -558,7 +524,7 @@
    Optional Optional options: ListCollectionsOptions
  • Returns ListCollectionsCursor<T>

    +
  • Defined in src/db.ts:333
    • @@ -577,7 +543,7 @@
      Optional Returns Promise<string>
    +
  • Defined in src/db.ts:461
    • @@ -601,7 +567,7 @@
      Optional Returns Promise<boolean>
    +
  • Defined in src/db.ts:433
    • @@ -637,7 +603,7 @@

      Returns Promise<

      Remarks

      This operation does not inherit options from the MongoClient.

    +
  • Defined in src/db.ts:356
  • +
  • Defined in src/db.ts:518
  • +
  • Defined in src/db.ts:446
  • +
  • Defined in src/db.ts:315
    • @@ -754,7 +720,7 @@

      Remarks

      watch() accepts two generic arguments for distinct use cases:

    +
  • Defined in src/db.ts:496
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/stream.d.ts:105
  • errored: null | Error
    @@ -139,7 +133,7 @@

    Since

    v18.0.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:115
  • readable: boolean
    @@ -149,10 +143,9 @@
    +
  • Defined in node_modules/@types/node/stream.d.ts:61
  • readableAborted: boolean
    @@ -163,7 +156,7 @@

    Since

    v16.8.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:55
  • readableDidRead: boolean
    @@ -174,7 +167,7 @@

    Since

    v16.7.0, v14.18.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:67
  • readableEncoding: null | BufferEncoding
    @@ -185,7 +178,7 @@

    Since

    v12.7.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:72
  • readableEnded: boolean
    @@ -196,7 +189,7 @@

    Since

    v12.9.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:77
  • readableFlowing: null | boolean
    @@ -208,7 +201,7 @@

    Since

    v9.4.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:83
  • readableHighWaterMark: number
    @@ -219,7 +212,7 @@

    Since

    v9.3.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:88
  • readableLength: number
    @@ -232,7 +225,7 @@

    Since

    v9.4.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:95
  • readableObjectMode: boolean
    @@ -243,43 +236,7 @@

    Since

    v12.3.0

    -
    - -
    CLOSE: "close" = ...
    -

    Fired when the stream is exhausted and the underlying cursor is killed

    -
    -
    -

    Event

    -
    - -
    DATA: "data" = ...
    -

    Emitted when a chunk of data is available to be consumed.

    -
    -
    -

    Event

    -
    - -
    END: "end" = ...
    -

    Fired when the stream is exhausted (no more data events).

    -
    -
    -

    Event

    -
    - -
    ERROR: "error" = ...
    -

    An error occurred

    -
    -
    -

    Event

    +
  • Defined in node_modules/@types/node/stream.d.ts:100
  • FILE: "file" = ...
    @@ -288,42 +245,75 @@
    +
  • Defined in src/gridfs/download.ts:89
  • -
    captureRejectionSymbol: typeof captureRejectionSymbol
    +
  • Defined in node_modules/@types/node/events.d.ts:355
  • captureRejections: boolean
    -

    Sets or gets the default captureRejection value for all emitters.

    +

    Value: boolean

    +

    Change the default captureRejections option on all new EventEmitter objects.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:362
  • -
    defaultMaxListeners: number
    +
  • Defined in node_modules/@types/node/events.d.ts:399
  • errorMonitor: typeof errorMonitor
    -

    This symbol shall be used to install a listener for only monitoring 'error' -events. Listeners installed using this symbol are called before the regular -'error' listeners are called.

    -

    Installing a listener using this symbol does not change the behavior once an -'error' event is emitted, therefore the process will still crash if no +

    This symbol shall be used to install a listener for only monitoring 'error'events. Listeners installed using this symbol are called before the regular'error' listeners are called.

    +

    Installing a listener using this symbol does not change the behavior once an'error' event is emitted. Therefore, the process will still crash if no regular 'error' listener is installed.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:348
  • Methods

    @@ -332,10 +322,9 @@
    +
  • Defined in node_modules/@types/node/stream.d.ts:479
    • @@ -360,7 +349,7 @@

      Returns voidReturns void

    +
  • Defined in node_modules/@types/node/stream.d.ts:117
    • @@ -387,7 +376,7 @@

      Returns voidReturns void

    +
  • Defined in node_modules/@types/node/stream.d.ts:399
  • +
  • Defined in src/gridfs/download.ts:166
    • @@ -433,10 +422,9 @@
      listener: Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:423
  • @@ -458,10 +446,9 @@

    Parameters

    chunk: any
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:424
  • @@ -478,10 +465,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:425
  • @@ -503,10 +489,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:426
  • @@ -523,10 +508,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:427
  • @@ -543,10 +527,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:428
  • @@ -563,10 +546,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:429
  • @@ -588,10 +570,33 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:430
  • +
    + +
      + +
    • +
      +

      Type Parameters

      +
        +
      • +

        T extends ReadableStream<T>

      +
      +

      Parameters

      +
        +
      • +
        stream: ComposeFnParam | T | Iterable<T> | AsyncIterable<T>
      • +
      • +
        Optional options: {
            signal: AbortSignal;
        }
        +
          +
        • +
          signal: AbortSignal
      +

      Returns T

      @@ -617,7 +622,7 @@

      Since

      v8.0.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:411
    • @@ -629,10 +634,9 @@

      Parameters

    • event: "close"

    Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:431
  • @@ -643,10 +647,9 @@
    event: chunk: any
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:432
  • @@ -655,10 +658,9 @@

    Parameters

  • event: "end"
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:433
  • @@ -669,10 +671,9 @@
    event: err: Error
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:434
  • @@ -681,10 +682,9 @@

    Parameters

  • event: "pause"
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:435
  • @@ -693,10 +693,9 @@

    Parameters

  • event: "readable"
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:436
  • @@ -705,10 +704,9 @@

    Parameters

  • event: "resume"
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:437
  • @@ -719,14 +717,13 @@
    event: Rest ...args: any[]
  • Returns boolean

    -
    - +
  • Defined in node_modules/@types/node/stream.d.ts:438
  • +
    +
    +
  • Defined in src/gridfs/download.ts:155
    • @@ -758,10 +755,9 @@

      Returns (

      Since

      v6.0.0

    +
  • Defined in node_modules/@types/node/events.d.ts:744
  • +
  • Defined in node_modules/@types/node/events.d.ts:596
  • +
  • Defined in node_modules/@types/node/stream.d.ts:278
  • +
  • Defined in node_modules/@types/node/events.d.ts:690
  • +
  • Defined in node_modules/@types/node/events.d.ts:609
  • +
  • Defined in node_modules/@types/node/events.d.ts:569
  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:439
  • @@ -926,10 +916,9 @@

    Parameters

    chunk: any
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:440
  • @@ -946,10 +935,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:441
  • @@ -971,10 +959,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:442
  • @@ -991,10 +978,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:443
  • @@ -1011,10 +997,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:444
  • @@ -1031,10 +1016,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:445
  • @@ -1056,10 +1040,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:446
  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:447
  • @@ -1104,10 +1086,9 @@

    Parameters

    chunk: any
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:448
  • @@ -1124,10 +1105,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:449
  • @@ -1149,10 +1129,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:450
  • @@ -1169,10 +1148,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:451
  • @@ -1189,10 +1167,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:452
  • @@ -1209,10 +1186,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:453
  • @@ -1234,10 +1210,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:454
  • +
  • Defined in node_modules/@types/node/stream.d.ts:242
  • Returns T

    +
  • Defined in node_modules/@types/node/stream.d.ts:29
  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:455
  • @@ -1327,10 +1299,9 @@

    Parameters

    chunk: any
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:456
  • @@ -1347,10 +1318,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:457
  • @@ -1372,10 +1342,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:458
  • @@ -1392,10 +1361,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:459
  • @@ -1412,10 +1380,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:460
  • @@ -1432,10 +1399,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:461
  • @@ -1457,10 +1423,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:462
  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:463
  • @@ -1505,10 +1469,9 @@

    Parameters

    chunk: any
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:464
  • @@ -1525,10 +1488,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:465
  • @@ -1550,10 +1512,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:466
  • @@ -1570,10 +1531,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:467
  • @@ -1590,10 +1550,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:468
  • @@ -1610,10 +1569,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:469
  • @@ -1635,10 +1593,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:470
  • +
  • Defined in node_modules/@types/node/stream.d.ts:398
  • +
  • Defined in node_modules/@types/node/events.d.ts:640
  • +
  • Defined in node_modules/@types/node/stream.d.ts:195
  • +
  • Defined in node_modules/@types/node/events.d.ts:580
  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:471
  • @@ -1801,10 +1754,9 @@

    Parameters

    chunk: any
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:472
  • @@ -1821,10 +1773,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:473
  • @@ -1846,10 +1797,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:474
  • @@ -1866,10 +1816,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:475
  • @@ -1886,10 +1835,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:476
  • @@ -1906,10 +1854,9 @@
    listener:

    Returns void

  • Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:477
  • @@ -1931,10 +1878,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketReadStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:478
  • +
  • Defined in node_modules/@types/node/stream.d.ts:261
  • +
  • Defined in node_modules/@types/node/stream.d.ts:220
  • +
  • Defined in node_modules/@types/node/events.d.ts:590
  • +
  • Defined in src/gridfs/download.ts:142
  • +
  • Defined in node_modules/@types/node/stream.d.ts:305
  • +
  • Defined in node_modules/@types/node/stream.d.ts:371
  • +
  • Defined in node_modules/@types/node/stream.d.ts:397
  • +
  • Defined in node_modules/@types/node/stream.d.ts:44
  • +
    Optional options: Pick<ReadableOptions, "objectMode" | "highWaterMark" | "signal" | "encoding">

    Returns Readable

    Since

    v17.0.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:795
  • +
    + +
    +
  • Defined in node_modules/@types/node/stream.d.ts:49
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/stream.d.ts:801
  • +
  • Defined in node_modules/@types/node/stream.d.ts:532
  • destroyed: boolean
    @@ -153,12 +155,15 @@

    Since

    v8.0.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:527
  • -
    done: boolean
    +
  • Defined in src/gridfs/upload.ts:52
  • errored: null | Error
    @@ -169,58 +174,107 @@

    Since

    v18.0.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:537
  • -
    filename: string
    +
  • Defined in src/gridfs/upload.ts:48
  • -
    +
  • Defined in src/gridfs/upload.ts:46
  • +
    + +
    gridFSFile: null | GridFSFile = null
    +

    The document containing information about the inserted file. +This property is defined after the finish event has been emitted. +It will remain null if an error occurs.

    +
    +
    +

    Example

    fs.createReadStream('file.txt')
    .pipe(bucket.openUploadStream('file.txt'))
    .on('finish', function () {
    console.log(this.gridFSFile)
    }) +
    +
    -
    +
  • Defined in src/gridfs/upload.ts:54
  • -
    length: number
    +
  • Defined in src/gridfs/upload.ts:60
  • -
    n: number
    +
  • Defined in src/gridfs/upload.ts:62
  • -
    +
  • Defined in src/gridfs/upload.ts:50
  • -
    pos: number
    +
  • Defined in src/gridfs/upload.ts:64
  • state: {
        aborted: boolean;
        errored: boolean;
        outstandingRequests: number;
        streamEnd: boolean;
    }
    +

    Contains a number of properties indicating the current state of the stream

    +

    Type declaration

    • -
      aborted: boolean
    • +
      aborted: boolean
      +

      If set the stream was intentionally aborted

      +
      +
    • -
      errored: boolean
    • +
      errored: boolean
      +

      If set an error occurred during insertion

      +
      +
    • -
      outstandingRequests: number
    • +
      outstandingRequests: number
      +

      Indicates the number of chunks that still need to be inserted to exhaust the current buffered data

      +
      +
    • -
      streamEnd: boolean
    +
  • Defined in src/gridfs/upload.ts:66
  • writable: boolean
    @@ -230,10 +284,9 @@

    Since

    v11.4.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:488
  • writableCorked: number
    @@ -245,7 +298,7 @@

    Since

    v13.2.0, v12.16.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:522
  • writableEnded: boolean
    @@ -257,7 +310,7 @@

    Since

    v12.9.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:494
  • writableFinished: boolean
    @@ -268,7 +321,7 @@

    Since

    v12.6.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:499
  • writableHighWaterMark: number
    @@ -279,7 +332,7 @@

    Since

    v9.3.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:504
  • writableLength: number
    @@ -292,7 +345,7 @@

    Since

    v9.4.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:511
  • writableNeedDrain: boolean
    @@ -303,7 +356,7 @@

    Since

    v15.2.0, v14.17.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:542
  • writableObjectMode: boolean
    @@ -314,97 +367,85 @@

    Since

    v12.3.0

    +
  • Defined in node_modules/@types/node/stream.d.ts:516
  • -
    writeConcern?: WriteConcern
    -
    - -
    CLOSE: "close" = 'close'
    -
    -

    Event

    -
    - -
    ERROR: "error" = 'error'
    -
    -

    Event

    -
    - -
    FINISH: "finish" = 'finish'
    -

    end() was called and the write stream successfully wrote the file metadata and all the chunks to MongoDB.

    +
    writeConcern?: WriteConcern
    +

    The write concern setting to be used with every insert operation

    -
    -

    Event

    +
  • Defined in src/gridfs/upload.ts:77
  • -
    captureRejectionSymbol: typeof captureRejectionSymbol
    +
  • Defined in node_modules/@types/node/events.d.ts:355
  • captureRejections: boolean
    -

    Sets or gets the default captureRejection value for all emitters.

    +

    Value: boolean

    +

    Change the default captureRejections option on all new EventEmitter objects.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:362
  • -
    defaultMaxListeners: number
    +
  • Defined in node_modules/@types/node/events.d.ts:399
  • errorMonitor: typeof errorMonitor
    -

    This symbol shall be used to install a listener for only monitoring 'error' -events. Listeners installed using this symbol are called before the regular -'error' listeners are called.

    -

    Installing a listener using this symbol does not change the behavior once an -'error' event is emitted, therefore the process will still crash if no +

    This symbol shall be used to install a listener for only monitoring 'error'events. Listeners installed using this symbol are called before the regular'error' listeners are called.

    +

    Installing a listener using this symbol does not change the behavior once an'error' event is emitted. Therefore, the process will still crash if no regular 'error' listener is installed.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:348
  • Methods

    -
    - -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        callback: ((error?) => void)
        -
          -
        • -
            -
          • (error?): void
          • -
          • -
            -

            Parameters

            -
              -
            • -
              Optional error: null | Error
            -

            Returns void

      -

      Returns void

      @@ -431,61 +472,7 @@

      Returns voidReturns void

    -
    - -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        callback: ((error?) => void)
        -
          -
        • -
            -
          • (error?): void
          • -
          • -
            -

            Parameters

            -
              -
            • -
              Optional error: null | Error
            -

            Returns void

      -

      Returns void

    -
    - -
      - -
    • -
      -

      Parameters

      -
        -
      • -
        chunk: any
      • -
      • -
        encoding: BufferEncoding
      • -
      • -
        callback: ((error?) => void)
        -
          -
        • -
            -
          • (error?): void
          • -
          • -
            -

            Parameters

            -
              -
            • -
              Optional error: null | Error
            -

            Returns void

      -

      Returns void

    +
  • Defined in node_modules/@types/node/stream.d.ts:553
  • +
  • Defined in node_modules/@types/node/stream.d.ts:545
  • +
  • Defined in src/gridfs/upload.ts:181
  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:720
  • @@ -576,10 +562,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:721
  • @@ -601,10 +586,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:722
  • @@ -621,10 +605,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:723
  • @@ -646,10 +629,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:724
  • @@ -671,10 +653,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:725
  • @@ -696,10 +677,33 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:726
  • +
    + +
    +
  • Defined in node_modules/@types/node/stream.d.ts:658
  • +
  • Defined in node_modules/@types/node/stream.d.ts:709
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:727
  • @@ -776,10 +779,9 @@

    Parameters

  • event: "drain"
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:728
  • @@ -790,10 +792,9 @@
    event: err: Error
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:729
  • @@ -802,10 +803,9 @@

    Parameters

  • event: "finish"
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:730
  • @@ -816,10 +816,9 @@
    event: src: Readable
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:731
  • @@ -830,10 +829,9 @@
    event: src: Readable
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:732
  • @@ -844,93 +842,80 @@
    event: Rest ...args: any[]
  • Returns boolean

    -
    +
  • Defined in node_modules/@types/node/stream.d.ts:733
  • +
    - +
  • Parameters

    -

    Returns GridFSBucketWriteStream

  • - +
    Optional cb: (() => void)
    +

    Returns GridFSBucketWriteStream

    - +
  • Defined in node_modules/@types/node/stream.d.ts:642
  • +
  • Parameters

    • -
      chunk: Buffer
    • +
      chunk: any
    • -
      encoding: undefined | BufferEncoding
    • +
      encoding: BufferEncoding
    • -
      callback: Callback<void | GridFSFile>
    +
    Optional cb: (() => void)
    +
      +
    • +
        +
      • (): void
      • +
      • +

        Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:643
  • +
  • Defined in node_modules/@types/node/events.d.ts:744
  • +
  • Defined in node_modules/@types/node/events.d.ts:596
  • +
  • Defined in node_modules/@types/node/events.d.ts:690
  • +
  • Defined in node_modules/@types/node/events.d.ts:609
  • +
  • Defined in node_modules/@types/node/events.d.ts:569
  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:734
  • @@ -1089,10 +1068,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:735
  • @@ -1114,10 +1092,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:736
  • @@ -1134,10 +1111,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:737
  • @@ -1159,10 +1135,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:738
  • @@ -1184,10 +1159,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:739
  • @@ -1209,10 +1183,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:740
  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:741
  • @@ -1252,10 +1224,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:742
  • @@ -1277,10 +1248,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:743
  • @@ -1297,10 +1267,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:744
  • @@ -1322,10 +1291,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:745
  • @@ -1347,10 +1315,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:746
  • @@ -1372,10 +1339,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:747
  • +
  • Defined in node_modules/@types/node/stream.d.ts:29
  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:748
  • @@ -1439,10 +1404,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:749
  • @@ -1464,10 +1428,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:750
  • @@ -1484,10 +1447,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:751
  • @@ -1509,10 +1471,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:752
  • @@ -1534,10 +1495,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:753
  • @@ -1559,10 +1519,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:754
  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:755
  • @@ -1602,10 +1560,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:756
  • @@ -1627,10 +1584,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:757
  • @@ -1647,10 +1603,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:758
  • @@ -1672,10 +1627,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:759
  • @@ -1697,10 +1651,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:760
  • @@ -1722,10 +1675,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:761
  • +
  • Defined in node_modules/@types/node/events.d.ts:640
  • +
  • Defined in node_modules/@types/node/events.d.ts:580
  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:762
  • @@ -1812,10 +1761,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:763
  • @@ -1837,10 +1785,9 @@

    Parameters

    err: Error
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:764
  • @@ -1857,10 +1804,9 @@
    listener:

    Returns void

  • Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:765
  • @@ -1882,10 +1828,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:766
  • @@ -1907,10 +1852,9 @@

    Parameters

    src: Readable
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:767
  • @@ -1932,10 +1876,9 @@

    Parameters

    Rest ...args: any[]
  • Returns void

    Returns GridFSBucketWriteStream

    +
  • Defined in node_modules/@types/node/stream.d.ts:768
  • +
  • Defined in node_modules/@types/node/stream.d.ts:618
  • +
  • Defined in node_modules/@types/node/events.d.ts:590
  • -
    +
  • Defined in node_modules/@types/node/stream.d.ts:692
  • +
    - +

    Returns boolean

    false if the stream wishes for the calling code to wait for the 'drain' event to be emitted before continuing to write additional data; otherwise true.

    + +
    +

    Since

    v0.9.4

    +
    - +
  • Defined in node_modules/@types/node/stream.d.ts:611
  • +
  • Parameters

    • -
      chunk: string | Buffer
    • +
      chunk: any
    • -
      encoding: undefined | BufferEncoding
    -

    Returns boolean

  • - +
    encoding: BufferEncoding
    +
  • +
    Optional callback: ((error) => void)
    +
  • Returns boolean

    +
  • Defined in node_modules/@types/node/stream.d.ts:612
  • +
  • Defined in node_modules/@types/node/stream.d.ts:826
  • +
    + +
    +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/stream.d.ts:832
  • Returns HostAddress

    +
  • Defined in src/utils.ts:1036
  • Returns HostAddress

    +
  • Defined in src/utils.ts:1043
  • Returns HostAddress

    +
  • Defined in src/utils.ts:1032
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • Accessors

    -
    +
  • Defined in src/mongo_client.ts:326
  • Properties

    -
    captureRejectionSymbol: typeof captureRejectionSymbol
    +
  • Defined in node_modules/@types/node/events.d.ts:355
  • captureRejections: boolean
    -

    Sets or gets the default captureRejection value for all emitters.

    +

    Value: boolean

    +

    Change the default captureRejections option on all new EventEmitter objects.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:362
  • -
    defaultMaxListeners: number
    +
  • Defined in node_modules/@types/node/events.d.ts:399
  • errorMonitor: typeof errorMonitor
    -

    This symbol shall be used to install a listener for only monitoring 'error' -events. Listeners installed using this symbol are called before the regular -'error' listeners are called.

    -

    Installing a listener using this symbol does not change the behavior once an -'error' event is emitted, therefore the process will still crash if no +

    This symbol shall be used to install a listener for only monitoring 'error'events. Listeners installed using this symbol are called before the regular'error' listeners are called.

    +

    Installing a listener using this symbol does not change the behavior once an'error' event is emitted. Therefore, the process will still crash if no regular 'error' listener is installed.

    -
    +
  • Defined in node_modules/@types/node/events.d.ts:348
  • Accessors

    -
    - -
    +
  • Defined in src/mongo_client.ts:398
  • Returns void

    +
  • Defined in src/mongo_client.ts:377
  • +
  • Defined in src/mongo_client.ts:363
  • +
  • Defined in src/mongo_client.ts:386
  • +
  • Defined in src/mongo_client.ts:394
  • +
  • Defined in src/mongo_client.ts:367
  • +
  • Defined in src/mongo_client.ts:390
  • Methods

    @@ -298,7 +323,7 @@
    force: Returns Promise<void>
    +
  • Defined in src/mongo_client.ts:507
  • +
  • Defined in src/mongo_client.ts:407
  • +
  • Defined in src/mongo_client.ts:569
  • Returns ClientSession

    -
    +
  • Defined in src/mongo_client.ts:608
  • +

    Returns Promise<T>

    +
  • Defined in src/mongo_client.ts:630
  • +
  • Defined in src/mongo_client.ts:595
  • +
    + +
    +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in src/utils.ts:350
  • +
  • fromString
  • Returns MongoMissingDependencyError

    Methods

    @@ -288,6 +293,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -299,6 +305,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -335,6 +342,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -387,15 +400,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -419,15 +431,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -440,6 +456,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -452,13 +469,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -474,6 +491,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -488,6 +506,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -495,7 +514,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -512,7 +530,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -525,13 +542,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoNetworkError.html b/docs/Next/classes/MongoNetworkError.html index 8f04b58eb58..443d71bda4d 100644 --- a/docs/Next/classes/MongoNetworkError.html +++ b/docs/Next/classes/MongoNetworkError.html @@ -292,6 +292,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -303,6 +304,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -339,6 +341,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -391,15 +399,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -423,15 +430,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -444,6 +455,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -456,13 +468,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -478,6 +490,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -492,6 +505,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -499,7 +513,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -516,7 +529,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -529,13 +541,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoNetworkTimeoutError.html b/docs/Next/classes/MongoNetworkTimeoutError.html index aee820d59ad..87f209e8d98 100644 --- a/docs/Next/classes/MongoNetworkTimeoutError.html +++ b/docs/Next/classes/MongoNetworkTimeoutError.html @@ -290,6 +290,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -301,6 +302,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -337,6 +339,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -389,15 +397,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -421,15 +428,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -442,6 +453,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -454,13 +466,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -476,6 +488,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -490,6 +503,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -497,7 +511,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -514,7 +527,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -527,13 +539,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoNotConnectedError.html b/docs/Next/classes/MongoNotConnectedError.html index a9c53cd5ed8..306c7e5b68b 100644 --- a/docs/Next/classes/MongoNotConnectedError.html +++ b/docs/Next/classes/MongoNotConnectedError.html @@ -289,6 +289,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -300,6 +301,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -336,6 +338,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -388,15 +396,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -420,15 +427,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -441,6 +452,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -453,13 +465,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -475,6 +487,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -489,6 +502,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -496,7 +510,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -513,7 +526,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -526,13 +538,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoParseError.html b/docs/Next/classes/MongoParseError.html index ffafe96629d..7e2181bd5fe 100644 --- a/docs/Next/classes/MongoParseError.html +++ b/docs/Next/classes/MongoParseError.html @@ -288,6 +288,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -299,6 +300,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -335,6 +337,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -387,15 +395,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -419,15 +426,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -440,6 +451,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -452,13 +464,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -474,6 +486,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -488,6 +501,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -495,7 +509,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -512,7 +525,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -525,13 +537,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoRuntimeError.html b/docs/Next/classes/MongoRuntimeError.html index c1085cf5447..b6f5c09e130 100644 --- a/docs/Next/classes/MongoRuntimeError.html +++ b/docs/Next/classes/MongoRuntimeError.html @@ -298,6 +298,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -309,6 +310,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -345,6 +347,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -397,15 +405,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -429,15 +436,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -450,6 +461,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -462,13 +474,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -484,6 +496,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -498,6 +511,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -505,7 +519,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -522,7 +535,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -535,13 +547,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoServerClosedError.html b/docs/Next/classes/MongoServerClosedError.html index 6e4abef814a..98420b542ea 100644 --- a/docs/Next/classes/MongoServerClosedError.html +++ b/docs/Next/classes/MongoServerClosedError.html @@ -289,6 +289,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -300,6 +301,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -336,6 +338,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -388,15 +396,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -420,15 +427,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -441,6 +452,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -453,13 +465,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -475,6 +487,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -489,6 +502,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -496,7 +510,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -513,7 +526,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -526,13 +538,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoServerError.html b/docs/Next/classes/MongoServerError.html index f13803b2a3f..96bdf222b53 100644 --- a/docs/Next/classes/MongoServerError.html +++ b/docs/Next/classes/MongoServerError.html @@ -322,6 +322,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -333,6 +334,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -369,6 +371,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -421,15 +429,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -453,15 +460,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -474,6 +485,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -486,13 +498,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -508,6 +520,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -522,6 +535,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -529,7 +543,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -546,7 +559,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -559,13 +571,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoServerSelectionError.html b/docs/Next/classes/MongoServerSelectionError.html index 25ab5495fc3..f5d06c4bc58 100644 --- a/docs/Next/classes/MongoServerSelectionError.html +++ b/docs/Next/classes/MongoServerSelectionError.html @@ -26,7 +26,7 @@

    Hierarchy

    +
  • Defined in src/error.ts:737
  • @@ -77,7 +77,7 @@
    reason: Returns MongoServerSelectionError
    +
  • Defined in src/error.ts:738
  • Properties

    @@ -115,7 +115,7 @@
    +
  • Defined in src/error.ts:711
  • stack?: string
    +
  • Defined in src/error.ts:742
  • Methods

    @@ -301,6 +301,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -312,6 +313,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -348,6 +350,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -400,15 +408,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -432,15 +439,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -453,6 +464,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -465,13 +477,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -487,6 +499,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -501,6 +514,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -508,7 +522,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -525,7 +538,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -538,13 +550,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoSystemError.html b/docs/Next/classes/MongoSystemError.html index 1a7849b80db..3c6b7b6163f 100644 --- a/docs/Next/classes/MongoSystemError.html +++ b/docs/Next/classes/MongoSystemError.html @@ -28,7 +28,7 @@

    Hierarchy

    +
  • Defined in src/error.ts:709
  • @@ -79,7 +79,7 @@
    reason: Returns MongoSystemError
    +
  • Defined in src/error.ts:713
  • Properties

    @@ -116,7 +116,7 @@
    +
  • Defined in src/error.ts:711
  • stack?: string
    +
  • Defined in src/error.ts:727
  • Methods

    @@ -302,6 +302,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -313,6 +314,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -349,6 +351,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -401,15 +409,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -433,15 +440,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -454,6 +465,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -466,13 +478,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -488,6 +500,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -502,6 +515,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -509,7 +523,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -526,7 +539,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -539,13 +551,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoTailableCursorError.html b/docs/Next/classes/MongoTailableCursorError.html index ae355424258..2eddfc5a7f3 100644 --- a/docs/Next/classes/MongoTailableCursorError.html +++ b/docs/Next/classes/MongoTailableCursorError.html @@ -288,6 +288,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -299,6 +300,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -335,6 +337,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -387,15 +395,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -419,15 +426,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -440,6 +451,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -452,13 +464,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -474,6 +486,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -488,6 +501,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -495,7 +509,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -512,7 +525,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -525,13 +537,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoTopologyClosedError.html b/docs/Next/classes/MongoTopologyClosedError.html index 10eb5085e03..8e546027458 100644 --- a/docs/Next/classes/MongoTopologyClosedError.html +++ b/docs/Next/classes/MongoTopologyClosedError.html @@ -289,6 +289,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -300,6 +301,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -336,6 +338,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -388,15 +396,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -420,15 +427,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -441,6 +452,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -453,13 +465,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -475,6 +487,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -489,6 +502,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -496,7 +510,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -513,7 +526,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -526,13 +538,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoTransactionError.html b/docs/Next/classes/MongoTransactionError.html index e36fbcadf9d..b8629e698db 100644 --- a/docs/Next/classes/MongoTransactionError.html +++ b/docs/Next/classes/MongoTransactionError.html @@ -289,6 +289,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -300,6 +301,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -336,6 +338,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -388,15 +396,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -420,15 +427,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -441,6 +452,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -453,13 +465,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -475,6 +487,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -489,6 +502,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -496,7 +510,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -513,7 +526,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -526,13 +538,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoUnexpectedServerResponseError.html b/docs/Next/classes/MongoUnexpectedServerResponseError.html index 05c77a45165..c7a2c431ca6 100644 --- a/docs/Next/classes/MongoUnexpectedServerResponseError.html +++ b/docs/Next/classes/MongoUnexpectedServerResponseError.html @@ -299,6 +299,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -310,6 +311,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -346,6 +348,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -398,15 +406,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -430,15 +437,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -451,6 +462,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -463,13 +475,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -485,6 +497,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -499,6 +512,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -506,7 +520,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -523,7 +536,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -536,13 +548,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/MongoWriteConcernError.html b/docs/Next/classes/MongoWriteConcernError.html index 65ba476284d..d1ab20b9151 100644 --- a/docs/Next/classes/MongoWriteConcernError.html +++ b/docs/Next/classes/MongoWriteConcernError.html @@ -26,7 +26,7 @@

    Hierarchy

    +
  • Defined in src/error.ts:765
  • @@ -81,7 +81,7 @@
    Optional Returns MongoWriteConcernError
    +
  • Defined in src/error.ts:769
  • Properties

    @@ -136,7 +136,7 @@
    +
  • Defined in src/error.ts:767
  • stack?: string
    +
  • Defined in src/error.ts:782
  • Methods

    @@ -332,6 +332,7 @@

    MinKey
  • ObjectId
  • Timestamp
  • +
  • UUID
  • deserialize
  • serialize
  • BSON
  • @@ -343,6 +344,7 @@

    BulkWriteResult
  • CancellationToken
  • ChangeStream
  • +
  • ClientEncryption
  • ClientSession
  • Collection
  • CommandFailedEvent
  • @@ -379,6 +381,12 @@

    MongoClient
  • MongoCompatibilityError
  • MongoCredentials
  • +
  • MongoCryptAzureKMSRequestError
  • +
  • MongoCryptCreateDataKeyError
  • +
  • MongoCryptCreateEncryptedCollectionError
  • +
  • MongoCryptError
  • +
  • MongoCryptInvalidArgumentError
  • +
  • MongoCryptKMSRequestNetworkTimeoutError
  • MongoCursorExhaustedError
  • MongoCursorInUseError
  • MongoDBCollectionNamespace
  • @@ -431,15 +439,14 @@

    WriteConcern
  • WriteConcernError
  • WriteError
  • -
  • AbstractCursorOptions
  • -
  • AddUserOptions
  • +
  • AWSEncryptionKeyOptions
  • +
  • AbstractCursorOptions
  • AggregateOptions
  • AggregationCursorOptions
  • Auth
  • AuthMechanismProperties
  • -
  • AutoEncrypter
  • AutoEncryptionOptions
  • -
  • AutoEncryptionTlsOptions
  • +
  • AzureEncryptionKeyOptions
  • BSONSerializeOptions
  • BulkWriteOperationError
  • BulkWriteOptions
  • @@ -463,15 +470,19 @@

    ChangeStreamReplaceDocument
  • ChangeStreamReshardCollectionDocument
  • ChangeStreamShardCollectionDocument
  • +
  • ChangeStreamSplitEvent
  • ChangeStreamUpdateDocument
  • +
  • ClientEncryptionCreateDataKeyProviderOptions
  • +
  • ClientEncryptionEncryptOptions
  • +
  • ClientEncryptionOptions
  • +
  • ClientEncryptionRewrapManyDataKeyProviderOptions
  • +
  • ClientEncryptionRewrapManyDataKeyResult
  • ClientMetadata
  • ClientMetadataOptions
  • ClientSessionOptions
  • CloseOptions
  • ClusterTime
  • ClusteredCollectionOptions
  • -
  • CollStats
  • -
  • CollStatsOptions
  • CollationOptions
  • CollectionInfo
  • CollectionOptions
  • @@ -484,6 +495,7 @@

    CreateCollectionOptions
  • CreateIndexesOptions
  • CursorStreamOptions
  • +
  • DataKey
  • DbOptions
  • DbStatsOptions
  • DeleteManyModel
  • @@ -496,13 +508,13 @@

    EndSessionOptions
  • ErrorDescription
  • EstimatedDocumentCountOptions
  • -
  • EvalOptions
  • ExplainOptions
  • FilterOperators
  • FindOneAndDeleteOptions
  • FindOneAndReplaceOptions
  • FindOneAndUpdateOptions
  • FindOptions
  • +
  • GCPEncryptionKeyOptions
  • GridFSBucketOptions
  • GridFSBucketReadStreamOptions
  • GridFSBucketReadStreamOptionsWithRevision
  • @@ -518,6 +530,7 @@

    InsertOneModel
  • InsertOneOptions
  • InsertOneResult
  • +
  • KMSProviders
  • ListCollectionsOptions
  • ListDatabasesOptions
  • ListDatabasesResult
  • @@ -532,6 +545,7 @@

    OperationOptions
  • PkFactory
  • ProxyOptions
  • +
  • RangeOptions
  • ReadPreferenceFromOptions
  • ReadPreferenceLikeOptions
  • ReadPreferenceOptions
  • @@ -539,7 +553,6 @@

    ReplaceOneModel
  • ReplaceOptions
  • ResumeOptions
  • -
  • RoleSpecification
  • RootFilterOperators
  • SearchIndexDescription
  • SelectServerOptions
  • @@ -556,7 +569,6 @@

    UpdateResult
  • UpdateStatement
  • ValidateCollectionOptions
  • -
  • WiredTigerData
  • WriteConcernErrorData
  • WriteConcernOptions
  • WriteConcernSettings
  • @@ -569,13 +581,17 @@

    ArrayElement
  • ArrayOperator
  • AuthMechanism
  • +
  • AutoEncryptionExtraOptions
  • AutoEncryptionLoggerLevel
  • BSONTypeAlias
  • BatchType
  • BitwiseFilter
  • +
  • CSFLEKMSTlsOptions
  • Callback
  • ChangeStreamDocument
  • ChangeStreamEvents
  • +
  • ClientEncryptionDataKeyProvider
  • +
  • ClientEncryptionTlsOptions
  • ClientSessionEvents
  • CommonEvents
  • Compressor
  • diff --git a/docs/Next/classes/OrderedBulkOperation.html b/docs/Next/classes/OrderedBulkOperation.html index abdaeab0e59..4fcb8ce0228 100644 --- a/docs/Next/classes/OrderedBulkOperation.html +++ b/docs/Next/classes/OrderedBulkOperation.html @@ -54,13 +54,13 @@

    +
  • Defined in src/bulk/common.ts:863
  • operationId?: number
    +
  • Defined in src/bulk/common.ts:866
  • Accessors

    @@ -71,7 +71,7 @@
    +
  • Defined in src/bulk/common.ts:1144
  • +
  • Defined in src/bulk/common.ts:1136
  • +
  • Defined in src/bulk/common.ts:1140
  • Methods

    @@ -121,7 +121,7 @@
    options: Returns Promise<BulkWriteResult>
    +
  • Defined in src/bulk/common.ts:1156
  • +
  • Defined in src/bulk/common.ts:1029
  • +
  • Defined in src/bulk/common.ts:986
  • +
  • Defined in src/bulk/common.ts:1043
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in node_modules/@types/node/events.d.ts:340
  • +
  • Defined in src/bulk/common.ts:1043
  • Constructors

      - +
    • Constructs a WriteConcern from the write concern properties.

      @@ -66,60 +69,100 @@
      Optional
  • -
    Optional wtimeout: number
    +
    Optional wtimeoutMS: number

    specify a time limit to prevent write operations from blocking indefinitely

  • -
    Optional j: boolean
    +
    Optional journal: boolean

    request acknowledgment that the write operation has been written to the on-disk journal

  • Optional fsync: boolean | 1
    -

    equivalent to the j option

    +

    equivalent to the j option. Is deprecated and will be removed in the next major version.

  • Returns WriteConcern

    +
  • Defined in src/write_concern.ts:88
  • Properties

    - +
    fsync?: boolean | 1
    -

    equivalent to the j option

    +

    Equivalent to the j option.

    -
    +
  • Defined in src/write_concern.ts:79
  • - +
    j?: boolean
    -

    request acknowledgment that the write operation has been written to the on-disk journal

    +

    Request acknowledgment that the write operation has been written to the on-disk journal.

    +
    +
    +

    Deprecated

    Will be removed in the next major version. Please use journal.

    +
    +
    + +
    journal?: boolean
    +

    Request acknowledgment that the write operation has been written to the on-disk journal

    +
  • Defined in src/write_concern.ts:62
  • - +
    w?: W
    -

    request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags.

    +

    Request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags.

    +
  • Defined in src/write_concern.ts:60
  • - +
    wtimeout?: number
    -

    specify a time limit to prevent write operations from blocking indefinitely

    +

    Specify a time limit to prevent write operations from blocking indefinitely.

    +
    +
    +

    Deprecated

    Will be removed in the next major version. Please use wtimeoutMS.

    +
    +
    + +
    wtimeoutMS?: number
    +

    Specify a time limit to prevent write operations from blocking indefinitely

    +
  • Defined in src/write_concern.ts:64
  • Methods

    +
    + +
    +
  • Defined in src/write_concern.ts:121
  • Returns WriteConcernError

    +
  • Defined in src/bulk/common.ts:294
  • Accessors

    @@ -72,7 +72,7 @@
    +
  • Defined in src/bulk/common.ts:299
  • +
  • Defined in src/bulk/common.ts:309
  • +
  • Defined in src/bulk/common.ts:304
  • Methods

    @@ -104,7 +104,7 @@
    +
  • Defined in src/bulk/common.ts:313
  • +
  • Defined in src/bulk/common.ts:317
  • +
  • Defined in src/bulk/common.ts:372
  • +
  • Defined in src/bson.ts:64
  • fieldsAsRaw?: Document
    @@ -215,7 +215,7 @@

    Remarks

    Please note there is a known limitation where this option can

    +
  • Defined in src/bson.ts:61
  • readConcern?: ReadConcernLike
    +
  • Defined in src/operations/aggregate.ts:16
  • @@ -76,13 +76,13 @@
    +
  • Defined in src/operations/aggregate.ts:18
  • authdb?: string
    +
  • Defined in src/operations/command.ts:56
  • batchSize?: number
    @@ -90,7 +90,7 @@
    +
  • Defined in src/operations/aggregate.ts:20
  • bsonRegExp?: boolean
    @@ -105,11 +105,11 @@

    Default Value

    false

    bypassDocumentValidation?: boolean
    -

    Allow driver to bypass schema validation in MongoDB 3.2 or higher.

    +

    Allow driver to bypass schema validation.

    +
  • Defined in src/operations/aggregate.ts:22
  • checkKeys?: boolean
    @@ -129,7 +129,7 @@
    +
  • Defined in src/operations/aggregate.ts:30
  • comment?: unknown
    @@ -141,7 +141,7 @@
    +
  • Defined in src/operations/command.ts:50
  • cursor?: Document
    @@ -149,13 +149,13 @@
    +
  • Defined in src/operations/aggregate.ts:24
  • dbName?: string
    +
  • Defined in src/operations/command.ts:55
  • enableUtf8Validation?: boolean
    @@ -164,7 +164,7 @@
    +
  • Defined in src/bson.ts:64
  • @@ -192,7 +192,7 @@
    +
  • Defined in src/operations/aggregate.ts:32
  • ignoreUndefined?: boolean
    @@ -212,7 +212,7 @@
    +
  • Defined in src/operations/aggregate.ts:34
  • maxAwaitTimeMS?: number
    @@ -220,7 +220,7 @@
    +
  • Defined in src/operations/aggregate.ts:28
  • maxTimeMS?: number
    @@ -229,24 +229,24 @@
    +
  • Defined in src/operations/aggregate.ts:26
  • noResponse?: boolean
    +
  • Defined in src/operations/command.ts:57
  • omitReadPreference?: boolean
    +
  • Defined in src/operations/operation.ts:31
  • out?: string
    +
  • Defined in src/operations/aggregate.ts:36
  • promoteBuffers?: boolean
    @@ -299,7 +299,7 @@

    Remarks

    Please note there is a known limitation where this option can

    +
  • Defined in src/bson.ts:61
  • readConcern?: ReadConcernLike
    @@ -308,7 +308,7 @@
    +
  • Defined in src/operations/command.ts:38
  • readPreference?: ReadPreferenceLike
    @@ -317,7 +317,7 @@
    +
  • Defined in src/operations/operation.ts:27
  • retryWrites?: boolean
    @@ -326,7 +326,7 @@
    +
  • Defined in src/operations/command.ts:52
  • serializeFunctions?: boolean
    @@ -346,7 +346,7 @@
    +
  • Defined in src/operations/operation.ts:23
  • useBigInt64?: boolean
    @@ -363,7 +363,7 @@
    +
  • Defined in src/operations/operation.ts:24
  • @@ -372,7 +372,7 @@
    +
  • Defined in src/write_concern.ts:9
  • +
  • Defined in src/operations/aggregate.ts:30
  • comment?: unknown
    @@ -166,13 +166,13 @@
    +
  • Defined in src/operations/aggregate.ts:24
  • dbName?: string
    +
  • Defined in src/operations/command.ts:55
  • enableUtf8Validation?: boolean
    @@ -181,7 +181,7 @@
    +
  • Defined in src/bson.ts:64
  • @@ -210,7 +210,7 @@
    +
  • Defined in src/operations/aggregate.ts:32
  • ignoreUndefined?: boolean
    @@ -231,7 +231,7 @@
    +
  • Defined in src/operations/aggregate.ts:34
  • maxAwaitTimeMS?: number
    @@ -263,19 +263,19 @@
    +
  • Defined in src/operations/command.ts:57
  • omitReadPreference?: boolean
    +
  • Defined in src/operations/operation.ts:31
  • out?: string
    +
  • Defined in src/operations/aggregate.ts:36
  • promoteBuffers?: boolean
    @@ -328,7 +328,7 @@

    Remarks

    Please note there is a known limitation where this option can

    +
  • Defined in src/bson.ts:61
  • readConcern?: ReadConcernLike
    @@ -355,7 +355,7 @@
    +
  • Defined in src/operations/command.ts:52
  • serializeFunctions?: boolean
    @@ -404,7 +404,7 @@
    +
  • Defined in src/operations/operation.ts:24
  • @@ -413,7 +413,7 @@
    +
  • Defined in src/write_concern.ts:9
  • +
  • Defined in src/client-side-encryption/auto_encrypter.ts:126
  • keyVaultClient?: MongoClient
    @@ -129,7 +129,7 @@
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:24
  • keyVaultNamespace?: string
    @@ -137,7 +137,7 @@
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:26
  • kmsProviders?: {
        aws?: Record<string, never> | {
            accessKeyId: string;
            secretAccessKey: string;
            sessionToken?: string;
        };
        azure?: Record<string, never> | {
            clientId: string;
            clientSecret: string;
            identityPlatformEndpoint?: string;
            tenantId: string;
        } | {
            accessToken: string;
        };
        gcp?: Record<string, never> | {
            email: string;
            endpoint?: string;
            privateKey: string | Buffer;
        } | {
            accessToken: string;
        };
        kmip?: {
            endpoint?: string;
        };
        local?: {
            key: string | Buffer;
        };
    }
    @@ -188,7 +188,7 @@
    key
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:28
  • options?: {
        logger?: ((level, message) => void);
    }
    @@ -214,12 +214,12 @@
    message: Returns void
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:122
  • proxyOptions?: ProxyOptions
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:178
  • schemaMap?: Document
    @@ -231,28 +231,15 @@
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:115
  • -
    tlsOptions?: {
        aws?: AutoEncryptionTlsOptions;
        azure?: AutoEncryptionTlsOptions;
        gcp?: AutoEncryptionTlsOptions;
        kmip?: AutoEncryptionTlsOptions;
        local?: AutoEncryptionTlsOptions;
    }
    +
    tlsOptions?: CSFLEKMSTlsOptions

    The TLS options to use connecting to the KMS provider

    -
    -

    Type declaration

    -
    +
  • Defined in src/client-side-encryption/auto_encrypter.ts:180
  • +
  • Defined in src/bulk/common.ts:328
  • +
  • Defined in src/operations/command.ts:40
  • comment?: unknown
    @@ -118,13 +120,13 @@
    +
  • Defined in src/operations/command.ts:50
  • dbName?: string
    +
  • Defined in src/operations/command.ts:55
  • enableUtf8Validation?: boolean
    @@ -133,7 +135,7 @@
    +
  • Defined in src/bson.ts:64
  • @@ -159,9 +161,11 @@
    +
  • Defined in src/bulk/common.ts:828
  • ignoreUndefined?: boolean
    @@ -181,33 +185,36 @@
    +
  • Defined in src/bulk/common.ts:830
  • maxTimeMS?: number
    +
  • Defined in src/operations/command.ts:41
  • noResponse?: boolean
    +
  • Defined in src/operations/command.ts:57
  • omitReadPreference?: boolean
    +
  • Defined in src/operations/operation.ts:31
  • ordered?: boolean
    -

    If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails.

    +

    If true, when an insert fails, don't execute the remaining writes. +If false, continue with remaining inserts when one fails.

    -
    +
  • Defined in src/bulk/common.ts:823
  • promoteBuffers?: boolean
    @@ -260,7 +267,7 @@

    Remarks

    Please note there is a known limitation where this option can

    +
  • Defined in src/bson.ts:61
  • readConcern?: ReadConcernLike
    @@ -269,7 +276,7 @@
    +
  • Defined in src/operations/command.ts:38
  • readPreference?: ReadPreferenceLike
    @@ -278,7 +285,7 @@
    +
  • Defined in src/operations/operation.ts:27
  • retryWrites?: boolean
    @@ -287,7 +294,7 @@
    +
  • Defined in src/operations/command.ts:52
  • serializeFunctions?: boolean
    @@ -307,7 +314,7 @@
    +
  • Defined in src/operations/operation.ts:23
  • useBigInt64?: boolean
    @@ -324,7 +331,7 @@
    +
  • Defined in src/operations/operation.ts:24
  • @@ -333,7 +340,7 @@
    +
  • Defined in src/write_concern.ts:9
  • @@ -55,7 +56,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -69,7 +70,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -83,7 +84,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • @@ -93,7 +94,7 @@
    +
  • Defined in src/change_stream.ts:202
  • operationType: "modify"
    @@ -101,7 +102,18 @@
    +
  • Defined in src/change_stream.ts:414
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -112,7 +124,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -53,7 +54,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -67,7 +68,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -81,7 +82,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • @@ -91,7 +92,7 @@
    +
  • Defined in src/change_stream.ts:202
  • operationType: "create"
    @@ -99,7 +100,18 @@
    +
  • Defined in src/change_stream.ts:425
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -110,7 +122,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -57,7 +58,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -71,7 +72,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -85,7 +86,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • @@ -95,7 +96,7 @@
    +
  • Defined in src/change_stream.ts:202
  • operationDescription?: Document
    @@ -107,7 +108,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:236
  • operationType: "createIndexes"
    @@ -115,7 +116,18 @@
    +
  • Defined in src/change_stream.ts:389
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -126,7 +138,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -62,7 +63,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -76,7 +77,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -90,7 +91,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • documentKey: {
        _id: InferIdType<TSchema>;
        [shardKey: string]: any;
    }
    @@ -119,7 +120,7 @@
    +
  • Defined in src/change_stream.ts:328
  • @@ -129,7 +130,7 @@
    +
  • Defined in src/change_stream.ts:202
  • @@ -137,7 +138,7 @@
    +
  • Defined in src/change_stream.ts:320
  • operationType: "delete"
    @@ -145,7 +146,18 @@
    +
  • Defined in src/change_stream.ts:318
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -156,7 +168,7 @@
    +
  • Defined in src/change_stream.ts:196
  • +
  • Defined in src/change_stream.ts:224
  • +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -72,7 +73,7 @@
    +
  • Defined in src/change_stream.ts:188
  • @@ -81,7 +82,17 @@
    +
  • Defined in src/change_stream.ts:202
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -91,7 +102,7 @@
    +
  • Defined in src/change_stream.ts:196
  • +
  • Defined in src/change_stream.ts:236
  • @@ -52,7 +53,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -66,7 +67,7 @@
    +
  • Defined in src/change_stream.ts:188
  • @@ -76,7 +77,7 @@
    +
  • Defined in src/change_stream.ts:202
  • ns: {
        db: string;
    }
    @@ -89,7 +90,7 @@

    Type declaration

    db: string
    +
  • Defined in src/change_stream.ts:367
  • operationType: "dropDatabase"
    @@ -97,7 +98,18 @@
    +
  • Defined in src/change_stream.ts:365
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -108,7 +120,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -54,7 +55,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -68,7 +69,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -82,7 +83,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • @@ -92,7 +93,7 @@
    +
  • Defined in src/change_stream.ts:202
  • @@ -100,7 +101,7 @@
    +
  • Defined in src/change_stream.ts:341
  • operationType: "drop"
    @@ -108,7 +109,18 @@
    +
  • Defined in src/change_stream.ts:339
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -119,7 +131,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -57,7 +58,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -71,7 +72,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -85,7 +86,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • @@ -95,7 +96,7 @@
    +
  • Defined in src/change_stream.ts:202
  • operationDescription?: Document
    @@ -107,7 +108,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:236
  • operationType: "dropIndexes"
    @@ -115,7 +116,18 @@
    +
  • Defined in src/change_stream.ts:402
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -126,7 +138,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -62,7 +63,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -76,7 +77,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -90,7 +91,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • documentKey: {
        _id: InferIdType<TSchema>;
        [shardKey: string]: any;
    }
    @@ -115,7 +116,7 @@
    +
  • Defined in src/change_stream.ts:250
  • @@ -125,7 +126,7 @@
    +
  • Defined in src/change_stream.ts:202
  • @@ -133,7 +134,7 @@
    +
  • Defined in src/change_stream.ts:252
  • operationType: "insert"
    @@ -141,7 +142,18 @@
    +
  • Defined in src/change_stream.ts:248
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -152,7 +164,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -51,7 +52,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -65,7 +66,7 @@
    +
  • Defined in src/change_stream.ts:188
  • @@ -75,7 +76,7 @@
    +
  • Defined in src/change_stream.ts:202
  • operationType: "invalidate"
    @@ -83,7 +84,18 @@
    +
  • Defined in src/change_stream.ts:376
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -94,7 +106,7 @@
    +
  • Defined in src/change_stream.ts:196
  • +
  • Defined in src/operations/aggregate.ts:18
  • authdb?: string
    +
  • Defined in src/operations/command.ts:56
  • batchSize?: number
    @@ -115,12 +115,12 @@

    Default Value

    false

    bypassDocumentValidation?: boolean
    -

    Allow driver to bypass schema validation in MongoDB 3.2 or higher.

    +

    Allow driver to bypass schema validation.

    +
  • Defined in src/operations/aggregate.ts:22
  • checkKeys?: boolean
    @@ -140,7 +140,7 @@
    +
  • Defined in src/operations/aggregate.ts:30
  • comment?: unknown
    @@ -152,7 +152,7 @@
    +
  • Defined in src/operations/command.ts:50
  • cursor?: Document
    @@ -161,13 +161,13 @@
    +
  • Defined in src/operations/aggregate.ts:24
  • dbName?: string
    +
  • Defined in src/operations/command.ts:55
  • enableUtf8Validation?: boolean
    @@ -176,7 +176,7 @@
    +
  • Defined in src/bson.ts:64
  • @@ -236,7 +236,7 @@
    +
  • Defined in src/operations/aggregate.ts:32
  • ignoreUndefined?: boolean
    @@ -257,7 +257,7 @@
    +
  • Defined in src/operations/aggregate.ts:34
  • maxAwaitTimeMS?: number
    @@ -275,25 +275,25 @@
    +
  • Defined in src/operations/aggregate.ts:26
  • noResponse?: boolean
    +
  • Defined in src/operations/command.ts:57
  • omitReadPreference?: boolean
    +
  • Defined in src/operations/operation.ts:31
  • out?: string
    +
  • Defined in src/operations/aggregate.ts:36
  • promoteBuffers?: boolean
    @@ -346,7 +346,7 @@

    Remarks

    Please note there is a known limitation where this option can

    +
  • Defined in src/bson.ts:61
  • readConcern?: ReadConcernLike
    @@ -355,7 +355,7 @@
    +
  • Defined in src/operations/command.ts:38
  • readPreference?: ReadPreferenceLike
    @@ -364,7 +364,7 @@
    +
  • Defined in src/operations/operation.ts:27
  • resumeAfter?: unknown
    @@ -383,7 +383,7 @@
    +
  • Defined in src/operations/command.ts:52
  • serializeFunctions?: boolean
    @@ -403,7 +403,7 @@
    +
  • Defined in src/operations/operation.ts:23
  • showExpandedEvents?: boolean
    @@ -455,7 +455,7 @@
    +
  • Defined in src/operations/operation.ts:24
  • @@ -55,7 +56,7 @@
    +
  • Defined in src/change_stream.ts:179
  • clusterTime?: Timestamp
    @@ -69,7 +70,7 @@
    +
  • Defined in src/change_stream.ts:188
  • collectionUUID: Binary
    @@ -83,7 +84,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:224
  • @@ -93,7 +94,7 @@
    +
  • Defined in src/change_stream.ts:202
  • operationDescription?: Document
    @@ -105,7 +106,7 @@

    Since Server Version

    6.1.0

    +
  • Defined in src/change_stream.ts:236
  • operationType: "refineCollectionShardKey"
    @@ -113,7 +114,18 @@
    +
  • Defined in src/change_stream.ts:461
  • +
    + + +

    When the change stream's backing aggregation pipeline contains the $changeStreamSplitLargeEvent +stage, events larger than 16MB will be split into multiple events and contain the +following information about which fragment the current event is.

    +
    +
    txnNumber?: number
    @@ -124,7 +136,7 @@
    +
  • Defined in src/change_stream.ts:196
  • @@ -55,7 +56,7 @@