···11-{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"sourceDefaults":{"$ref":"#/definitions/SourceDefaults"},"clientDefaults":{"$ref":"#/definitions/ClientDefaults"},"sources":{"type":"array","items":{"$ref":"#/definitions/SourceAIOConfig"}},"clients":{"type":"array","items":{"$ref":"#/definitions/ClientAIOConfig"}},"webhooks":{"type":"array","items":{"$ref":"#/definitions/WebhookConfig"}},"port":{"type":"number","description":"Set the port the multi-scrobbler UI will be served from","default":9078,"examples":[9078]},"baseUrl":{"type":"string","description":"Set the Base URL the application should assume the UI is served from.\n\nThis will affect how default redirect URLs are generated (spotify, lastfm, deezer) and some logging messages.\n\nIt will NOT set the actual interface/IP that the application is listening on.\n\nThis can also be set using the BASE_URL environmental variable.","default":"http://localhost","examples":["http://localhost","http://192.168.0.101","https://ms.myDomain.tld"]},"logging":{"$ref":"#/definitions/LogOptions"},"disableWeb":{"type":"boolean","description":"Disable web server from running/listening on port.\n\nThis will also make any ingress sources (Plex, Jellyfin, Tautulli, etc...) unusable"},"debugMode":{"type":"boolean","description":"Enables ALL relevant logging and debug options for all sources/clients, when none are defined.\n\nThis is a convenience shortcut for enabling all output needed to troubleshoot an issue and does not need to be on for normal operation.\n\nIt can also be enabled with the environmental variable DEBUG_MODE=true","default":false,"examples":[false]},"cache":{"$ref":"#/definitions/CacheConfigOptions"}},"definitions":{"SourceDefaults":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"SourceDefaults"},"LogLevel":{"type":"string","enum":["silent","fatal","error","warn","info","log","verbose","debug"],"description":"Names of log levels that can be invoked on the logger\n\nFrom lowest to highest:\n\n* `debug`\n* `verbose`\n* `log`\n* `info`\n* `warn`\n* `error`\n* `fatal`\n* `silent` (will never output anything)\n\nWhen used in `LogOptions` specifies the **minimum** level the output should log at.","title":"LogLevel"},"FileLogOptions":{"type":"object","properties":{"timestamp":{"type":"string","enum":["unix","iso","auto"],"description":"For rolling log files\n\nWhen\n* value passed to rolling destination is a string (`path` from LogOptions is a string) and\n* `frequency` is defined\n\nThis determines the format of the datetime inserted into the log file name:\n\n* `unix` - unix epoch timestamp in milliseconds\n* `iso` - Full [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) datetime IE '2024-03-07T20:11:34Z'\n* `auto`\n * When frequency is `daily` only inserts date IE YYYY-MM-DD\n * Otherwise inserts full ISO8601 datetime","default":"auto"},"size":{"type":["number","string"],"description":"The maximum size of a given rolling log file.\n\nCan be combined with frequency. Use k, m and g to express values in KB, MB or GB.\n\nNumerical values will be considered as MB.","default":"10MB"},"frequency":{"anyOf":[{"type":"string","enum":["daily"]},{"type":"string","enum":["hourly"]},{"type":"number"}],"description":"The amount of time a given rolling log file is used. Can be combined with size.\n\nUse `daily` or `hourly` to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used.\n\nNumerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.","default":"daily"},"path":{"anyOf":[{"type":"string"},{"$comment":"() => string"}],"description":"The path and filename to use for log files.\n\nIf using rolling files the filename will be appended with `.N` (a number) BEFORE the extension based on rolling status.\n\nMay also be specified using env LOG_PATH or a function that returns a string.\n\nIf path is relative the absolute path will be derived from `logBaseDir` (in `LoggerAppExtras`) which defaults to CWD","default":"./logs/app.log"},"level":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false}],"description":"Specify the minimum log level to output to rotating files. If `false` no log files will be created."}},"title":"FileLogOptions"},"ScrobbleThresholds":{"type":"object","properties":{"duration":{"type":["number","null"],"description":"The number of seconds a track has been listened to before it should be considered scrobbled.\n\nSet to null to disable.","default":240,"examples":[240]},"percent":{"type":["number","null"],"description":"The percentage (as an integer) of a track that should have been seen played before it should be scrobbled. Only used if the Source provides information about how long the track is.\n\nSet to null to disable.\n\nNOTE: This should be used with care when the Source is a \"polling\" type (has an 'interval' property). If the track is short and the interval is too high MS may ignore the track if percentage is high because it had not \"seen\" the track for long enough from first discovery, even if you have been playing the track for longer.","default":50,"examples":[50]}},"title":"ScrobbleThresholds"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<SearchAndReplaceTerm>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<SearchAndReplaceTerm>"},"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>"},"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"artists":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"album":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"type":{"$ref":"#/definitions/StageTypeMetadata"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"artists":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"album":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"type":{"$ref":"#/definitions/StageTypeUser"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"album":{}},"required":["album","artists","title"]}],"title":"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"album":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"StageTypeMetadata":{"type":"string","enum":["spotify","listenbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"search":{},"replace":{}},"required":["search","replace"],"title":"ConditionalSearchAndReplaceTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"ClientDefaults":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"ClientDefaults"},"MatchLoggingOptions":{"type":"object","properties":{"onNoMatch":{"type":"boolean","description":"Log to DEBUG when a new track does NOT match an existing scrobble","default":false,"examples":[false]},"onMatch":{"type":"boolean","description":"Log to DEBUG when a new track DOES match an existing scrobble","default":false,"examples":[false]},"confidenceBreakdown":{"type":"boolean","description":"Include confidence breakdowns in track match logging, if applicable","default":false,"examples":[false]}},"description":"Scrobble matching (between new source track and existing client scrobbles) logging options. Used for debugging.","title":"MatchLoggingOptions"},"SourceAIOConfig":{"anyOf":[{"$ref":"#/definitions/SpotifySourceAIOConfig"},{"$ref":"#/definitions/PlexSourceAIOConfig"},{"$ref":"#/definitions/PlexApiSourceAIOConfig"},{"$ref":"#/definitions/TautulliSourceAIOConfig"},{"$ref":"#/definitions/DeezerSourceAIOConfig"},{"$ref":"#/definitions/DeezerInternalAIOConfig"},{"$ref":"#/definitions/ListenbrainzEndpointSourceAIOConfig"},{"$ref":"#/definitions/LastFMEndpointSourceAIOConfig"},{"$ref":"#/definitions/SubsonicSourceAIOConfig"},{"$ref":"#/definitions/JellySourceAIOConfig"},{"$ref":"#/definitions/JellyApiSourceAIOConfig"},{"$ref":"#/definitions/LastFmSouceAIOConfig"},{"$ref":"#/definitions/YTMusicSourceAIOConfig"},{"$ref":"#/definitions/MPRISSourceAIOConfig"},{"$ref":"#/definitions/MopidySourceAIOConfig"},{"$ref":"#/definitions/ListenBrainzSourceAIOConfig"},{"$ref":"#/definitions/JRiverSourceAIOConfig"},{"$ref":"#/definitions/KodiSourceAIOConfig"},{"$ref":"#/definitions/WebScrobblerSourceAIOConfig"},{"$ref":"#/definitions/ChromecastSourceAIOConfig"},{"$ref":"#/definitions/MalojaSourceAIOConfig"},{"$ref":"#/definitions/MusikcubeSourceAIOConfig"},{"$ref":"#/definitions/MusicCastSourceAIOConfig"},{"$ref":"#/definitions/MPDSourceAIOConfig"},{"$ref":"#/definitions/VLCSourceAIOConfig"},{"$ref":"#/definitions/IcecastSourceAIOConfig"},{"$ref":"#/definitions/AzuracastSourceAIOConfig"},{"$ref":"#/definitions/KoitoSourceAIOConfig"},{"$ref":"#/definitions/TealSourceAIOConfig"},{"$ref":"#/definitions/RockskySourceAIOConfig"}],"title":"SourceAIOConfig"},"SpotifySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SpotifySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["spotify"]}},"required":["data","type"],"title":"SpotifySourceAIOConfig"},"SpotifySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)\n\nIt is unlikely you should need to change this unless you scrobble many very short tracks often\n\nReading:\n* https://developer.spotify.com/documentation/web-api/guides/rate-limits/\n* https://medium.com/mendix/limiting-your-amount-of-calls-in-mendix-most-of-the-time-rest-835dde55b10e\n * Rate limit may ~180 req/min\n* https://community.spotify.com/t5/Spotify-for-Developers/Web-API-ratelimit/m-p/5503150/highlight/true#M7930\n * Informally indicated as 20 req/sec? Probably for burstiness","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"spotify client id","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"clientSecret":{"type":"string","description":"spotify client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"spotify redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/callback","examples":["http://localhost:9078/callback"]}},"required":["clientId","clientSecret"],"title":"SpotifySourceData"},"CommonSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonSourceOptions"},"PlexSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","type"],"title":"PlexSourceAIOConfig"},"PlexSourceData":{"type":"object","properties":{"user":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"libraries":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of libraries to scrobble tracks from\n\nIf none are provided tracks from all libraries will be scrobbled","examples":[["Audio","Music"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName"]]}},"title":"PlexSourceData"},"PlexApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/PlexApiOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","options","type"],"title":"PlexApiSourceAIOConfig"},"PlexApiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"token":{"type":"string"},"url":{"type":"string","description":"http(s)://HOST:PORT of the Plex server to connect to"},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"}},"required":["url"],"title":"PlexApiData"},"PlexApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"ignoreInvalidCert":{"type":"boolean","description":"Ignore invalid cert errors when connecting to Plex\n\nUseful for Plex servers using \"Required\" Secure Connections with self-signed certificates\n\nDo not enable unless you know you need this.","default":false}},"title":"PlexApiOptions"},"TautulliSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["tautulli"]}},"required":["data","type"],"title":"TautulliSourceAIOConfig"},"DeezerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerSourceAIOConfig"},"DeezerData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"deezer client id","examples":["a89cba1569901a0671d5a9875fed4be1"]},"clientSecret":{"type":"string","description":"deezer client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"deezer redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/deezer/callback","examples":["http://localhost:9078/deezer/callback"]}},"required":["clientId","clientSecret"],"title":"DeezerData"},"DeezerInternalAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerInternalData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/DeezerInternalSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerInternalAIOConfig"},"DeezerInternalData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"arl":{"type":"string","description":"ARL retrieved from Deezer response header"},"userAgent":{"type":"string","description":"User agent","default":"Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"}},"required":["arl"],"title":"DeezerInternalData"},"DeezerInternalSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"fuzzyDiscoveryIgnore":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["aggressive"]}]}},"title":"DeezerInternalSourceOptions"},"ListenbrainzEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenbrainzEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlz"]}},"required":["type"],"title":"ListenbrainzEndpointSourceAIOConfig"},"ListenbrainzEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Listenbrainz endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/listenbrainz/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/listenbrainz/originb\n\nIf no slug is found from an extension's incoming webhook event the first Listenbrainz source without a slug will be used"},"token":{"type":["string","null"],"description":"If an LZ submission request contains this token in the Authorization Header it will be used to match the submission with this Source\n\nSee: https://listenbrainz.readthedocs.io/en/latest/users/api/index.html#add-the-user-token-to-your-requests"}},"title":"ListenbrainzEndpointData"},"LastFMEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFMEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlfm"]}},"required":["type"],"title":"LastFMEndpointSourceAIOConfig"},"LastFMEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Last.fm endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/lastfm/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/lastfm/originb\n\nIf no slug is found from an extension's incoming webhook event the first Last.fm source without a slug will be used"}},"title":"LastFMEndpointData"},"SubsonicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SubsonicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["subsonic"]}},"required":["data","type"],"title":"SubsonicSourceAIOConfig"},"SubsonicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the subsonic media server to query","examples":["http://airsonic.local"]},"user":{"type":"string","description":"Username to login to the server with","examples":[["MyUser"]]},"password":{"type":"string","description":"Password for the user to login to the server with","examples":["MyPassword"]},"ignoreTlsErrors":{"type":"boolean","description":"If your subsonic server is using self-signed certs you may need to disable TLS errors in order to get a connection\n\nWARNING: This should be used with caution as your traffic may not be encrypted.","default":false},"legacyAuthentication":{"type":"boolean","description":"Older Subsonic versions, and some badly implemented servers (Nextcloud), use legacy authentication which sends your password in CLEAR TEXT. This is less secure than the newer, recommended hashing authentication method but in some cases it is needed. See \"Authentication\" section here => https://www.subsonic.org/pages/api.jsp\n\nIf this option is not specified it will be turned on if the subsonic server responds with error code 41 \"Token authentication not supported for LDAP users.\" -- See Error Handling section => https://www.subsonic.org/pages/api.jsp","default":false},"usersAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf undefined or an empty string/list MS will scrobble activity from all users"}},"required":["url","user","password"],"title":"SubsonicData"},"JellySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","type"],"title":"JellySourceAIOConfig"},"JellyData":{"type":"object","properties":{"users":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName1"]]}},"title":"JellyData"},"JellyApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/JellyApiOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","options","type"],"title":"JellyApiSourceAIOConfig"},"JellyApiData":{"type":"object","properties":{"url":{"type":"string","description":"HOST:PORT of the Jellyfin server to connect to"},"user":{"type":"string","description":"The username of the user to authenticate for or track scrobbles for"},"password":{"type":"string","description":"Password of the username to authenticate for\n\nRequired if `apiKey` is not provided."},"apiKey":{"type":"string","description":"API Key to authenticate with.\n\nRequired if `password` is not provided."},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"},"additionalAllowedLibraryTypes":{"type":"array","items":{},"description":"Allow MS to scrobble audio media in libraries classified other than 'music'\n\n`librariesAllow` will achieve the same result as this but this is more convenient if you do not want to explicitly list every library name or are only using `librariesBlock`"},"allowUnknown":{"type":"boolean","description":"Force media with a type of \"Unknown\" to be counted as Audio","default":false},"frontendUrlOverride":{"type":"string","description":"HOST:PORT of the Jellyfin server that your browser will be able to access from the frontend (and thus load images and links from)\nIf unspecified it will use the normal server HOST and PORT from the `url`\nNecessary if you are using a reverse proxy or other network configuration that prevents the frontend from accessing the server directly\n\nENV: JELLYFIN_FRONTEND_URL_OVERRIDE"}},"required":["url","user"],"title":"JellyApiData"},"JellyApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"JellyApiOptions"},"LastFmSouceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFmSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `lastfm.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","type"],"title":"LastFmSouceAIOConfig"},"LastFmSourceData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]},"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"}},"required":["apiKey","secret"],"title":"LastFmSourceData"},"YTMusicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/YTMusicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"type":"object","properties":{"logAuth":{"type":"boolean","description":"When true MS will log to DEBUG all of the credentials data it receives from YTM"},"logDiff":{"type":"boolean","description":"Always log history diff\n\nBy default MS will log to `WARN` if history diff is inconsistent but does not log if diff is expected (on new tracks found)\nSet this to `true` to ALWAYS log diff on new tracks. Expected diffs will log to `DEBUG` and inconsistent diffs will continue to log to `WARN`","default":false},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}}},"type":{"type":"string","enum":["ytmusic"]}},"required":["type"],"title":"YTMusicSourceAIOConfig"},"YTMusicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"cookie":{"type":"string","description":"The cookie retrieved from the Request Headers of music.youtube.com after logging in.\n\nSee https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers for how to retrieve this value.","examples":["VISITOR_INFO1_LIVE=jMp2xA1Xz2_PbVc; __Secure-3PAPISID=3AxsXpy0M/AkISpjek; ..."]},"clientId":{"type":"string","description":"Google Cloud Console project OAuth Client ID\n\nGenerated from a custom OAuth Client, see docs"},"clientSecret":{"type":"string","description":"Google Cloud Console project OAuth Client Secret\n\nGenerated from a custom OAuth Client, see docs"},"redirectUri":{"type":"string","description":"Google Cloud Console project OAuth Client Authorized redirect URI\n\nGenerated from a custom OAuth Client, see docs. multi-scrobbler will generate a default based on BASE_URL.\nOnly specify this if the default does not work for you."},"innertubeOptions":{"$ref":"#/definitions/InnertubeOptions","description":"Additional options for authorization and tailoring YTM client"}},"title":"YTMusicData"},"InnertubeOptions":{"type":"object","properties":{"po_token":{"type":"string","description":"Proof of Origin token\n\nMay be required if YTM starts returning 403"},"visitor_data":{"type":"string","description":"Visitor ID value found in VISITOR_INFO1_LIVE or visitorData cookie\n\nMay be required if YTM starts returning 403"},"account_index":{"type":"number","description":"If account login results in being able to choose multiple account, use a zero-based index to choose which one to monitor","examples":[0,1]},"location":{"type":"string"},"lang":{"type":"string"},"generate_session_locally":{"type":"boolean"},"device_category":{"type":"string"},"client_type":{"type":"string"},"timezone":{"type":"string"}},"title":"InnertubeOptions"},"MPRISSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPRISData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mpris"]}},"required":["data","type"],"title":"MPRISSourceAIOConfig"},"MPRISData":{"type":"object","properties":{"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any players that START WITH these values, case-insensitive","examples":[["spotify","vlc"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY from any players that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","vlc"]]}},"title":"MPRISData"},"MopidySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MopidyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mopidy"]}},"required":["data","type"],"title":"MopidySourceAIOConfig"},"MopidyData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Mopidy HTTP server to connect to\n\nYou MUST have Mopidy-HTTP extension enabled: https://mopidy.com/ext/http\n\nmulti-scrobbler connects to the WebSocket endpoint that ultimately looks like this => `ws://localhost:6680/mopidy/ws/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `6680`\n* Path => `/mopidy/ws/`","examples":["ws://localhost:6680/mopidy/ws/"],"default":"ws://localhost:6680/mopidy/ws/"},"uriBlacklist":{"type":"array","items":{"type":"string"},"description":"Do not scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Don't scrobble tracks from soundcloud by adding 'soundcloud' to this list.\n\nList is ignored if uriWhitelist is used."},"uriWhitelist":{"type":"array","items":{"type":"string"},"description":"Only scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Only scrobble tracks from soundcloud by adding 'soundcloud' to this list."},"albumBlacklist":{"type":"array","items":{"type":"string"},"description":"Remove album data that matches any case-insensitive string from this list when scrobbling,\n\nFor certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \"Soundcloud\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake name to this list. Multi-scrobbler will still scrobble the track, just without the bad data.","examples":[["Soundcloud","Mixcloud"]],"default":["Soundcloud"]}},"title":"MopidyData"},"ListenBrainzSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenBrainzSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `listenbrainz.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","type"],"title":"ListenBrainzSourceAIOConfig"},"ListenBrainzSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzSourceData"},"JRiverSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JRiverData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jriver"]}},"required":["data","type"],"title":"JRiverSourceAIOConfig"},"JRiverData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the JRiver HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:52199/MCWS/v1/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `52199`\n* Path => `/MCWS/v1/`","examples":["http://localhost:52199/MCWS/v1/"],"default":"http://localhost:52199/MCWS/v1/"},"username":{"type":"string","description":"If you have enabled authentication, the username you set"},"password":{"type":"string","description":"If you have enabled authentication, the password you set"}},"required":["url"],"title":"JRiverData"},"KodiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KodiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["kodi"]}},"required":["data","type"],"title":"KodiSourceAIOConfig"},"KodiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Kodi HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:8080/jsonrpc`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `8080`\n* Path => `/jsonrpc`","examples":["http://localhost:8080/jsonrpc"],"default":"http://localhost:8080/jsonrpc"},"username":{"type":"string","description":"The username set for Remote Control via Web Sever"},"password":{"type":"string","description":"The password set for Remote Control via Web Sever"}},"required":["url","username","password"],"title":"KodiData"},"WebScrobblerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/WebScrobblerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["webscrobbler"]}},"required":["type"],"title":"WebScrobblerSourceAIOConfig"},"WebScrobblerData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIn WebScrobbler's Webhook you must set an 'API URL'. All MS WebScrobbler sources must start like:\n\nhttp://localhost:9078/api/webscrobbler\n\nIf you are using multiple WebScrobbler sources (scrobbles for many users) you must use a slug to match Sources with each users extension.\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/webscrobbler/usera\n* slug: 'userb' => API URL: http://localhost:9078/api/webscrobbler/userb\n\nIf no slug is found from an extension's incoming webhook event the first WebScrobbler source without a slug will be used"},"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Block scrobbling from specific WebScrobbler Connectors","examples":[["youtube"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only allow scrobbling from specific WebScrobbler Connectors","examples":[["mixcloud","soundcloud","bandcamp"]]}},"title":"WebScrobblerData"},"ChromecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ChromecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["chromecast"]}},"required":["data","type"],"title":"ChromecastSourceAIOConfig"},"ChromecastData":{"type":"object","properties":{"blacklistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any cast devices that START WITH these values, case-insensitive\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"whitelistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any cast device that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"blacklistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any application that START WITH these values, case-insensitive","examples":[["spotify","pandora"]]},"whitelistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any application that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","pandora"]]},"useAvahi":{"type":"boolean","description":"Try to use Avahi and avahi-browse to resolve mDNS devices instead of native mDNS querying\n\nUseful for docker (alpine) container where mDNS resolution is not yet supported. Avahi socket must be exposed to the container and avahi-tools must be installed.","default":false},"useAutoDiscovery":{"type":"boolean","description":"Use mDNS to discovery Google Cast devices on your next automatically?\n\nIf not explicitly set then it is TRUE if `devices` is not set"},"devices":{"type":"array","items":{"$ref":"#/definitions/ChromecastDeviceInfo"},"description":"A list of Google Cast devices to monitor\n\nIf this is used then `useAutoDiscovery` is set to FALSE, if not explicitly set"},"allowUnknownMedia":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Chromecast Apps report a \"media type\" in the status info returned for whatever is currently playing\n\n* If set to TRUE then Music AND Generic/Unknown media will be tracked for ALL APPS\n* If set to FALSE then only media explicitly typed as Music will be tracked for ALL APPS\n* If set to a list then only Apps whose name contain one of these values, case-insensitive, will have Music AND Generic/Unknown tracked\n\nSee https://developers.google.com/cast/docs/media/messages#MediaInformation \"metadata\" property","default":false},"forceMediaRecognitionOn":{"type":"array","items":{"type":"string"},"description":"Media provided by any App whose name is listed here will ALWAYS be tracked, regardless of the \"media type\" reported\n\nApps will be recognized if they CONTAIN any of these values, case-insensitive"}},"title":"ChromecastData"},"ChromecastDeviceInfo":{"type":"object","properties":{"name":{"type":"string","description":"A friendly name to identify this device","examples":["MySmartTV"]},"address":{"type":"string","description":"The IP address of the device","examples":["192.168.0.115"]}},"required":["name","address"],"title":"ChromecastDeviceInfo"},"MalojaSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MalojaSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `maloja.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","type"],"title":"MalojaSourceAIOConfig"},"MalojaSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaSourceData"},"MusikcubeSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusikcubeData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musikcube"]}},"required":["data","type"],"title":"MusikcubeSourceAIOConfig"},"MusikcubeData":{"type":"object","properties":{"url":{"type":"string","description":"URL of the Musikcube Websocket (Metadata) server to connect to\n\nYou MUST have enabled 'metadata' server and set a password: https://github.com/clangen/musikcube/wiki/remote-api-documentation\n * musikcube -> settings -> server setup\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `7905`","examples":["ws://localhost:7905"],"default":"ws://localhost:7905"},"password":{"type":"string","description":"Password set in Musikcube https://github.com/clangen/musikcube/wiki/remote-api-documentation\n\n* musikcube -> settings -> server setup -> password"},"device_id":{"type":"string"}},"required":["password"],"title":"MusikcubeData"},"MusicCastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusicCastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musiccast"]}},"required":["data","type"],"title":"MusicCastSourceAIOConfig"},"MusicCastData":{"type":"object","properties":{"url":{"type":"string","description":"The host or URL of the YamahaExtendedControl endpoint to use","examples":[["192.168.0.101","http://192.168.0.101/YamahaExtendedControl"]]}},"required":["url"],"title":"MusicCastData"},"MPDSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPDData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/MPDSourceOptions"},"type":{"type":"string","enum":["mpd"]}},"required":["data","options","type"],"title":"MPDSourceAIOConfig"},"MPDData":{"type":"object","properties":{"url":{"type":"string","description":"URL:PORT of the MPD server to connect to\n\nTo use this you must have TCP connections enabled for your MPD server https://mpd.readthedocs.io/en/stable/user.html#client-connections","examples":["localhost:6600"],"default":"localhost:6600"},"path":{"type":"string","description":"If using socket specify the path instead of url.\n\ntrailing `~` is replaced by your home directory"},"password":{"type":"string","description":"Password for the server, if set https://mpd.readthedocs.io/en/stable/user.html#permissions-and-passwords"}},"title":"MPDData"},"MPDSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"MPDSourceOptions"},"VLCSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/VLCData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/VLCSourceOptions"},"type":{"type":"string","enum":["vlc"]}},"required":["data","type"],"title":"VLCSourceAIOConfig"},"VLCData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL:PORT of the VLC server to connect to\n\nTo use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc","examples":["localhost:8080"],"default":"localhost:8080"},"password":{"type":"string","description":"Password for the server"}},"required":["password"],"title":"VLCData"},"VLCSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"filenamePatterns":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"A list of regular expressions to use to extract metadata (title, album, artist) from a filename\n\nUsed when VLC reports only the filename for the current audio track"},"logFilenamePatterns":{"type":"boolean","description":"Log to DEBUG when a filename-only track is matched or not matched by filenamePatterns","default":false},"dumpVlcMetadata":{"type":"boolean","description":"Dump all the metadata VLC reports for an audio track to DEBUG.\n\nUse this if reporting an issue with VLC not correctly capturing metadata for a track.","default":false}},"title":"VLCSourceOptions"},"IcecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/IcecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/IcecastSourceOptions"},"type":{"type":"string","enum":["icecast"]}},"required":["data","type"],"title":"IcecastSourceAIOConfig"},"IcecastData":{"type":"object","properties":{"sources":{"type":"array","items":{"$ref":"#/definitions/IcecastSource"}},"icestatsEndpoint":{"type":"string"},"statsEndpoint":{"type":"string"},"nextsongsEndpoint":{"type":"string"},"sevenhtmlEndpoint":{"type":"string"},"icyMetaInt":{"type":"number"},"url":{"type":"string","description":"The Icecast stream URL"}},"required":["url"],"title":"IcecastData"},"IcecastSource":{"type":"string","enum":["icy","ogg","icestats","stats","sevenhtml","nextsongs"],"title":"IcecastSource"},"IcecastSourceOptions":{"type":"object","properties":{"systemScrobble":{"type":"boolean","description":"For Sources that support manual listening, should MS default to scrobbling when no user interaction has occurred?\n\nIf not specified MS will use a Source's specific behavior, see Source's documentation."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"IcecastSourceOptions"},"AzuracastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/AzuracastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["azuracast"]}},"required":["data","type"],"title":"AzuracastSourceAIOConfig"},"AzuracastData":{"type":"object","properties":{"url":{"type":"string","description":"Base URL of the Azuracast instance\n\nThis does NOT include the station. If a station is included it will be ignored. Use `station` field to specify station, if necessary","examples":["https://radio.mydomain.tld","http://localhost:80"]},"station":{"type":"string","description":"The specific station to monitor\n\nScrobbling will only occur if any of the monitor conditions are met AND the station is ONLINE.\n\nTo monitor multiple stations create a Source for each station.","examples":["my-station-1"]},"monitorWhenListeners":{"type":["boolean","number"],"description":"Only activate scrobble monitoring if station\n\n* `true` => has any current listeners\n* `number` => has EQUAL TO or MORE THAN X number of listeners"},"monitorWhenLive":{"type":"boolean","description":"Only activate scrobble monitoring if station has a live DJ/Streamer","default":true},"apiKey":{"type":"string","description":"API Key used to access data about private streams\n\nhttps://www.azuracast.com/docs/developers/apis/#api-authentication"}},"required":["url","station"],"title":"AzuracastData"},"KoitoSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KoitoSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `koito.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["koito"]}},"required":["data","type"],"title":"KoitoSourceAIOConfig"},"KoitoSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoSourceData"},"TealSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/TealSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/TealSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"Should always be `souce` when using Tealfm as a Source","default":"source","examples":["source"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","type"],"title":"TealSourceAIOConfig"},"TealSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealSourceData"},"TealSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealSourceOptions"},"RockskySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/RockskySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/RockskySourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `rocksky.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","type"],"title":"RockskySourceAIOConfig"},"RockskySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockskySourceData"},"RockskySourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockskySourceOptions"},"ClientAIOConfig":{"anyOf":[{"$ref":"#/definitions/MalojaClientAIOConfig"},{"$ref":"#/definitions/LastfmClientAIOConfig"},{"$ref":"#/definitions/ListenBrainzClientAIOConfig"},{"$ref":"#/definitions/KoitoClientAIOConfig"},{"$ref":"#/definitions/TealClientAIOConfig"},{"$ref":"#/definitions/RockSkyClientAIOConfig"}],"title":"ClientAIOConfig"},"MalojaClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/MalojaClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Maloja as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","name","type"],"title":"MalojaClientAIOConfig"},"MalojaClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaClientData"},"CommonClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonClientOptions"},"LastfmClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/LastfmData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/LastfmClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using LastFM as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","name","type"],"title":"LastfmClientAIOConfig"},"LastfmData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]}},"required":["apiKey","secret"],"title":"LastfmData"},"LastfmClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"LastfmClientOptions"},"ListenBrainzClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/ListenBrainzClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Listenbrainz as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","name","type"],"title":"ListenBrainzClientAIOConfig"},"ListenBrainzClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzClientData"},"KoitoClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/KoitoClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Koito as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["koito"]}},"required":["data","name","type"],"title":"KoitoClientAIOConfig"},"KoitoClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoClientData"},"TealClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/TealClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/TealClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Tealfm as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","name","type"],"title":"TealClientAIOConfig"},"TealClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealClientData"},"TealClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealClientOptions"},"RockSkyClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/RockSkyClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/RockSkyClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using RockSky as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","name","type"],"title":"RockSkyClientAIOConfig"},"RockSkyClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockSkyClientData"},"RockSkyClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockSkyClientOptions"},"WebhookConfig":{"anyOf":[{"$ref":"#/definitions/GotifyConfig"},{"$ref":"#/definitions/NtfyConfig"},{"$ref":"#/definitions/AppriseConfig"}],"title":"WebhookConfig"},"GotifyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\n\n* gotify\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Gotify server. Same URL that would be used to reach the Gotify UI","examples":["http://192.168.0.100:8078"]},"token":{"type":"string","description":"The token created for this Application in Gotify","examples":["AQZI58fA.rfSZbm"]},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\n\n* Info -> 5\n* Warn -> 7\n* Error -> 10"}},"required":["token","type","url"],"title":"GotifyConfig"},"PrioritiesConfig":{"type":"object","properties":{"info":{"type":"number","examples":[5]},"warn":{"type":"number","examples":[7]},"error":{"type":"number","examples":[10]}},"required":["info","warn","error"],"title":"PrioritiesConfig"},"NtfyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\n\n* gotify\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Ntfy server","examples":["http://192.168.0.100:8078"]},"topic":{"type":"string","description":"The topic mutli-scrobbler should POST to"},"username":{"type":"string","description":"Required if topic is protected"},"password":{"type":"string","description":"Required if topic is protected"},"token":{"type":"string","description":"Use instead of username/password, required if topic is protected"},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\n\n* Info -> 3\n* Warn -> 4\n* Error -> 5"}},"required":["topic","type","url"],"title":"NtfyConfig"},"AppriseConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\n\n* gotify\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"host":{"type":"string","description":"The URL of the apprise-api server","examples":["http://192.168.0.100:8078"]},"urls":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Stateless Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution) the Apprise config URL(s) to send"},"keys":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Persistent Store Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution) the Configuration ID(s) to send to\n\nNote: If multiple keys are defined then MS will attempt to POST to each one individually"},"tags":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Optional [tag(s)](https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging) to send in the notification payload"}},"required":["host","type"],"title":"AppriseConfig"},"LogOptions":{"type":"object","properties":{"level":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level for all log outputs without their own level specified.\n\nDefaults to env `LOG_LEVEL` or `info` if not specified.","default":"info"},"file":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false},{"$ref":"#/definitions/FileLogOptions"}],"description":"Specify the minimum log level to output to rotating files or file output options. If `false` no log files will be created."},"console":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level streamed to the console (or docker container)"}},"description":"Configure log levels and file options for an AppLogger.\n\n```ts\nconst infoLogger = loggerApp({\n level: 'info' // console and file will log any levels `info` and above\n});\n\nconst logger = loggerApp({\n console: 'debug', // console will log `debug` and higher\n file: 'warn' // file will log `warn` and higher\n});\n\nconst fileLogger = loggerRollingApp({\n console: 'debug', // console will log `debug` and higher\n file: {\n level: 'warn', // file will log `warn` and higher\n path: '/my/cool/path/output.log', // optionally, output to log file at this path\n frequency: 'hourly', // optionally, rotate hourly\n }\n});\n```","title":"LogOptions"},"CacheConfigOptions":{"type":"object","properties":{"metadata":{"$ref":"#/definitions/CacheMetadataConfig"},"scrobble":{"$ref":"#/definitions/CacheScrobbleConfig"},"auth":{"$ref":"#/definitions/CacheAuthConfig"}},"title":"CacheConfigOptions"},"CacheMetadataConfig":{"$ref":"#/definitions/CacheConfig%3CCacheMetadataProvider%3E","title":"CacheMetadataConfig"},"CacheConfig<CacheMetadataProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheMetadataProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheMetadataProvider>"},"CacheMetadataProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheMetadataProvider"},"CacheProvider":{"type":["string","boolean"],"enum":["memory","valkey","file",false],"title":"CacheProvider"},"CacheScrobbleConfig":{"$ref":"#/definitions/CacheConfig%3CCacheScrobbleProvider%3E","title":"CacheScrobbleConfig"},"CacheConfig<CacheScrobbleProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheScrobbleProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheScrobbleProvider>"},"CacheScrobbleProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheScrobbleProvider"},"CacheAuthConfig":{"$ref":"#/definitions/CacheConfig%3CCacheAuthProvider%3E","title":"CacheAuthConfig"},"CacheConfig<CacheAuthProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheAuthProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheAuthProvider>"},"CacheAuthProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheAuthProvider"}}}11+{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"sourceDefaults":{"$ref":"#/definitions/SourceDefaults"},"clientDefaults":{"$ref":"#/definitions/ClientDefaults"},"sources":{"type":"array","items":{"$ref":"#/definitions/SourceAIOConfig"}},"clients":{"type":"array","items":{"$ref":"#/definitions/ClientAIOConfig"}},"webhooks":{"type":"array","items":{"$ref":"#/definitions/WebhookConfig"}},"port":{"type":"number","description":"Set the port the multi-scrobbler UI will be served from","default":9078,"examples":[9078]},"baseUrl":{"type":"string","description":"Set the Base URL the application should assume the UI is served from.\n\nThis will affect how default redirect URLs are generated (spotify, lastfm, deezer) and some logging messages.\n\nIt will NOT set the actual interface/IP that the application is listening on.\n\nThis can also be set using the BASE_URL environmental variable.","default":"http://localhost","examples":["http://localhost","http://192.168.0.101","https://ms.myDomain.tld"]},"logging":{"$ref":"#/definitions/LogOptions"},"disableWeb":{"type":"boolean","description":"Disable web server from running/listening on port.\n\nThis will also make any ingress sources (Plex, Jellyfin, Tautulli, etc...) unusable"},"debugMode":{"type":"boolean","description":"Enables ALL relevant logging and debug options for all sources/clients, when none are defined.\n\nThis is a convenience shortcut for enabling all output needed to troubleshoot an issue and does not need to be on for normal operation.\n\nIt can also be enabled with the environmental variable DEBUG_MODE=true","default":false,"examples":[false]},"cache":{"$ref":"#/definitions/CacheConfigOptions"},"transformers":{"type":"array","items":{"$ref":"#/definitions/TransformerCommonConfig"}}},"definitions":{"SourceDefaults":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"SourceDefaults"},"LogLevel":{"type":"string","enum":["silent","fatal","error","warn","info","log","verbose","debug"],"description":"Names of log levels that can be invoked on the logger\n\nFrom lowest to highest:\n\n* `debug`\n* `verbose`\n* `log`\n* `info`\n* `warn`\n* `error`\n* `fatal`\n* `silent` (will never output anything)\n\nWhen used in `LogOptions` specifies the **minimum** level the output should log at.","title":"LogLevel"},"FileLogOptions":{"type":"object","properties":{"timestamp":{"type":"string","enum":["unix","iso","auto"],"description":"For rolling log files\n\nWhen\n* value passed to rolling destination is a string (`path` from LogOptions is a string) and\n* `frequency` is defined\n\nThis determines the format of the datetime inserted into the log file name:\n\n* `unix` - unix epoch timestamp in milliseconds\n* `iso` - Full [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) datetime IE '2024-03-07T20:11:34Z'\n* `auto`\n * When frequency is `daily` only inserts date IE YYYY-MM-DD\n * Otherwise inserts full ISO8601 datetime","default":"auto"},"size":{"type":["number","string"],"description":"The maximum size of a given rolling log file.\n\nCan be combined with frequency. Use k, m and g to express values in KB, MB or GB.\n\nNumerical values will be considered as MB.","default":"10MB"},"frequency":{"anyOf":[{"type":"string","enum":["daily"]},{"type":"string","enum":["hourly"]},{"type":"number"}],"description":"The amount of time a given rolling log file is used. Can be combined with size.\n\nUse `daily` or `hourly` to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used.\n\nNumerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.","default":"daily"},"path":{"anyOf":[{"type":"string"},{"$comment":"() => string"}],"description":"The path and filename to use for log files.\n\nIf using rolling files the filename will be appended with `.N` (a number) BEFORE the extension based on rolling status.\n\nMay also be specified using env LOG_PATH or a function that returns a string.\n\nIf path is relative the absolute path will be derived from `logBaseDir` (in `LoggerAppExtras`) which defaults to CWD","default":"./logs/app.log"},"level":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false}],"description":"Specify the minimum log level to output to rotating files. If `false` no log files will be created."}},"title":"FileLogOptions"},"ScrobbleThresholds":{"type":"object","properties":{"duration":{"type":["number","null"],"description":"The number of seconds a track has been listened to before it should be considered scrobbled.\n\nSet to null to disable.","default":240,"examples":[240]},"percent":{"type":["number","null"],"description":"The percentage (as an integer) of a track that should have been seen played before it should be scrobbled. Only used if the Source provides information about how long the track is.\n\nSet to null to disable.\n\nNOTE: This should be used with care when the Source is a \"polling\" type (has an 'interval' property). If the track is short and the interval is too high MS may ignore the track if percentage is high because it had not \"seen\" the track for long enough from first discovery, even if you have been playing the track for longer.","default":50,"examples":[50]}},"title":"ScrobbleThresholds"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>"},"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeMetadata"},"name":{"type":"string"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"artists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"albumArtists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"album":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"duration":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"meta":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeUser"},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string","enum":["native"]},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{},"name":{},"onSuccess":{},"onFailure":{},"failureReturnPartial":{},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{}},"required":["album","albumArtists","artists","duration","failureReturnPartial","meta","name","onFailure","onSuccess","title","when"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string"},"name":{"type":"string"}},"required":["type"]}],"title":"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"albumArtists":{"type":"string"},"album":{"type":"string"},"duration":{"type":"string"},"meta":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"Whennable":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"title":"Whennable"},"FlowControlTerm":{"type":"string","enum":["continue","stop"],"title":"FlowControlTerm"},"StageTypeMetadata":{"type":"string","enum":["spotify","musicbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"search":{},"replace":{},"when":{}},"required":["search","replace","when"],"title":"ConditionalSearchAndReplaceTerm"},"ExternalMetadataTerm":{"anyOf":[{"type":"boolean"},{"not":{}},{"$ref":"#/definitions/Whennable"}],"title":"ExternalMetadataTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"ClientDefaults":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"ClientDefaults"},"MatchLoggingOptions":{"type":"object","properties":{"onNoMatch":{"type":"boolean","description":"Log to DEBUG when a new track does NOT match an existing scrobble","default":false,"examples":[false]},"onMatch":{"type":"boolean","description":"Log to DEBUG when a new track DOES match an existing scrobble","default":false,"examples":[false]},"confidenceBreakdown":{"type":"boolean","description":"Include confidence breakdowns in track match logging, if applicable","default":false,"examples":[false]}},"description":"Scrobble matching (between new source track and existing client scrobbles) logging options. Used for debugging.","title":"MatchLoggingOptions"},"SourceAIOConfig":{"anyOf":[{"$ref":"#/definitions/SpotifySourceAIOConfig"},{"$ref":"#/definitions/PlexSourceAIOConfig"},{"$ref":"#/definitions/PlexApiSourceAIOConfig"},{"$ref":"#/definitions/TautulliSourceAIOConfig"},{"$ref":"#/definitions/DeezerSourceAIOConfig"},{"$ref":"#/definitions/DeezerInternalAIOConfig"},{"$ref":"#/definitions/ListenbrainzEndpointSourceAIOConfig"},{"$ref":"#/definitions/LastFMEndpointSourceAIOConfig"},{"$ref":"#/definitions/SubsonicSourceAIOConfig"},{"$ref":"#/definitions/JellySourceAIOConfig"},{"$ref":"#/definitions/JellyApiSourceAIOConfig"},{"$ref":"#/definitions/LastFmSouceAIOConfig"},{"$ref":"#/definitions/YTMusicSourceAIOConfig"},{"$ref":"#/definitions/MPRISSourceAIOConfig"},{"$ref":"#/definitions/MopidySourceAIOConfig"},{"$ref":"#/definitions/ListenBrainzSourceAIOConfig"},{"$ref":"#/definitions/JRiverSourceAIOConfig"},{"$ref":"#/definitions/KodiSourceAIOConfig"},{"$ref":"#/definitions/WebScrobblerSourceAIOConfig"},{"$ref":"#/definitions/ChromecastSourceAIOConfig"},{"$ref":"#/definitions/MalojaSourceAIOConfig"},{"$ref":"#/definitions/MusikcubeSourceAIOConfig"},{"$ref":"#/definitions/MusicCastSourceAIOConfig"},{"$ref":"#/definitions/MPDSourceAIOConfig"},{"$ref":"#/definitions/VLCSourceAIOConfig"},{"$ref":"#/definitions/IcecastSourceAIOConfig"},{"$ref":"#/definitions/AzuracastSourceAIOConfig"},{"$ref":"#/definitions/KoitoSourceAIOConfig"},{"$ref":"#/definitions/TealSourceAIOConfig"},{"$ref":"#/definitions/RockskySourceAIOConfig"}],"title":"SourceAIOConfig"},"SpotifySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SpotifySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["spotify"]}},"required":["data","type"],"title":"SpotifySourceAIOConfig"},"SpotifySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)\n\nIt is unlikely you should need to change this unless you scrobble many very short tracks often\n\nReading:\n* https://developer.spotify.com/documentation/web-api/guides/rate-limits/\n* https://medium.com/mendix/limiting-your-amount-of-calls-in-mendix-most-of-the-time-rest-835dde55b10e\n * Rate limit may ~180 req/min\n* https://community.spotify.com/t5/Spotify-for-Developers/Web-API-ratelimit/m-p/5503150/highlight/true#M7930\n * Informally indicated as 20 req/sec? Probably for burstiness","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"spotify client id","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"clientSecret":{"type":"string","description":"spotify client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"spotify redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/callback","examples":["http://localhost:9078/callback"]}},"required":["clientId","clientSecret"],"title":"SpotifySourceData"},"CommonSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonSourceOptions"},"PlexSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","type"],"title":"PlexSourceAIOConfig"},"PlexSourceData":{"type":"object","properties":{"user":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"libraries":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of libraries to scrobble tracks from\n\nIf none are provided tracks from all libraries will be scrobbled","examples":[["Audio","Music"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName"]]}},"title":"PlexSourceData"},"PlexApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/PlexApiOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","options","type"],"title":"PlexApiSourceAIOConfig"},"PlexApiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"token":{"type":"string"},"url":{"type":"string","description":"http(s)://HOST:PORT of the Plex server to connect to"},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"}},"required":["url"],"title":"PlexApiData"},"PlexApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"ignoreInvalidCert":{"type":"boolean","description":"Ignore invalid cert errors when connecting to Plex\n\nUseful for Plex servers using \"Required\" Secure Connections with self-signed certificates\n\nDo not enable unless you know you need this.","default":false}},"title":"PlexApiOptions"},"TautulliSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["tautulli"]}},"required":["data","type"],"title":"TautulliSourceAIOConfig"},"DeezerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerSourceAIOConfig"},"DeezerData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"deezer client id","examples":["a89cba1569901a0671d5a9875fed4be1"]},"clientSecret":{"type":"string","description":"deezer client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"deezer redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/deezer/callback","examples":["http://localhost:9078/deezer/callback"]}},"required":["clientId","clientSecret"],"title":"DeezerData"},"DeezerInternalAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerInternalData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/DeezerInternalSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerInternalAIOConfig"},"DeezerInternalData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"arl":{"type":"string","description":"ARL retrieved from Deezer response header"},"userAgent":{"type":"string","description":"User agent","default":"Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"}},"required":["arl"],"title":"DeezerInternalData"},"DeezerInternalSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"fuzzyDiscoveryIgnore":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["aggressive"]}]}},"title":"DeezerInternalSourceOptions"},"ListenbrainzEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenbrainzEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlz"]}},"required":["type"],"title":"ListenbrainzEndpointSourceAIOConfig"},"ListenbrainzEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Listenbrainz endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/listenbrainz/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/listenbrainz/originb\n\nIf no slug is found from an extension's incoming webhook event the first Listenbrainz source without a slug will be used"},"token":{"type":["string","null"],"description":"If an LZ submission request contains this token in the Authorization Header it will be used to match the submission with this Source\n\nSee: https://listenbrainz.readthedocs.io/en/latest/users/api/index.html#add-the-user-token-to-your-requests"}},"title":"ListenbrainzEndpointData"},"LastFMEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFMEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlfm"]}},"required":["type"],"title":"LastFMEndpointSourceAIOConfig"},"LastFMEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Last.fm endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/lastfm/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/lastfm/originb\n\nIf no slug is found from an extension's incoming webhook event the first Last.fm source without a slug will be used"}},"title":"LastFMEndpointData"},"SubsonicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SubsonicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["subsonic"]}},"required":["data","type"],"title":"SubsonicSourceAIOConfig"},"SubsonicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the subsonic media server to query","examples":["http://airsonic.local"]},"user":{"type":"string","description":"Username to login to the server with","examples":[["MyUser"]]},"password":{"type":"string","description":"Password for the user to login to the server with","examples":["MyPassword"]},"ignoreTlsErrors":{"type":"boolean","description":"If your subsonic server is using self-signed certs you may need to disable TLS errors in order to get a connection\n\nWARNING: This should be used with caution as your traffic may not be encrypted.","default":false},"legacyAuthentication":{"type":"boolean","description":"Older Subsonic versions, and some badly implemented servers (Nextcloud), use legacy authentication which sends your password in CLEAR TEXT. This is less secure than the newer, recommended hashing authentication method but in some cases it is needed. See \"Authentication\" section here => https://www.subsonic.org/pages/api.jsp\n\nIf this option is not specified it will be turned on if the subsonic server responds with error code 41 \"Token authentication not supported for LDAP users.\" -- See Error Handling section => https://www.subsonic.org/pages/api.jsp","default":false},"usersAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf undefined or an empty string/list MS will scrobble activity from all users"}},"required":["url","user","password"],"title":"SubsonicData"},"JellySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","type"],"title":"JellySourceAIOConfig"},"JellyData":{"type":"object","properties":{"users":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName1"]]}},"title":"JellyData"},"JellyApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/JellyApiOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","options","type"],"title":"JellyApiSourceAIOConfig"},"JellyApiData":{"type":"object","properties":{"url":{"type":"string","description":"HOST:PORT of the Jellyfin server to connect to"},"user":{"type":"string","description":"The username of the user to authenticate for or track scrobbles for"},"password":{"type":"string","description":"Password of the username to authenticate for\n\nRequired if `apiKey` is not provided."},"apiKey":{"type":"string","description":"API Key to authenticate with.\n\nRequired if `password` is not provided."},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"},"additionalAllowedLibraryTypes":{"type":"array","items":{},"description":"Allow MS to scrobble audio media in libraries classified other than 'music'\n\n`librariesAllow` will achieve the same result as this but this is more convenient if you do not want to explicitly list every library name or are only using `librariesBlock`"},"allowUnknown":{"type":"boolean","description":"Force media with a type of \"Unknown\" to be counted as Audio","default":false},"frontendUrlOverride":{"type":"string","description":"HOST:PORT of the Jellyfin server that your browser will be able to access from the frontend (and thus load images and links from)\nIf unspecified it will use the normal server HOST and PORT from the `url`\nNecessary if you are using a reverse proxy or other network configuration that prevents the frontend from accessing the server directly\n\nENV: JELLYFIN_FRONTEND_URL_OVERRIDE"}},"required":["url","user"],"title":"JellyApiData"},"JellyApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"JellyApiOptions"},"LastFmSouceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFmSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `lastfm.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","type"],"title":"LastFmSouceAIOConfig"},"LastFmSourceData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]},"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"}},"required":["apiKey","secret"],"title":"LastFmSourceData"},"YTMusicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/YTMusicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"type":"object","properties":{"logAuth":{"type":"boolean","description":"When true MS will log to DEBUG all of the credentials data it receives from YTM"},"logDiff":{"type":"boolean","description":"Always log history diff\n\nBy default MS will log to `WARN` if history diff is inconsistent but does not log if diff is expected (on new tracks found)\nSet this to `true` to ALWAYS log diff on new tracks. Expected diffs will log to `DEBUG` and inconsistent diffs will continue to log to `WARN`","default":false},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}}},"type":{"type":"string","enum":["ytmusic"]}},"required":["type"],"title":"YTMusicSourceAIOConfig"},"YTMusicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"cookie":{"type":"string","description":"The cookie retrieved from the Request Headers of music.youtube.com after logging in.\n\nSee https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers for how to retrieve this value.","examples":["VISITOR_INFO1_LIVE=jMp2xA1Xz2_PbVc; __Secure-3PAPISID=3AxsXpy0M/AkISpjek; ..."]},"clientId":{"type":"string","description":"Google Cloud Console project OAuth Client ID\n\nGenerated from a custom OAuth Client, see docs"},"clientSecret":{"type":"string","description":"Google Cloud Console project OAuth Client Secret\n\nGenerated from a custom OAuth Client, see docs"},"redirectUri":{"type":"string","description":"Google Cloud Console project OAuth Client Authorized redirect URI\n\nGenerated from a custom OAuth Client, see docs. multi-scrobbler will generate a default based on BASE_URL.\nOnly specify this if the default does not work for you."},"innertubeOptions":{"$ref":"#/definitions/InnertubeOptions","description":"Additional options for authorization and tailoring YTM client"}},"title":"YTMusicData"},"InnertubeOptions":{"type":"object","properties":{"po_token":{"type":"string","description":"Proof of Origin token\n\nMay be required if YTM starts returning 403"},"visitor_data":{"type":"string","description":"Visitor ID value found in VISITOR_INFO1_LIVE or visitorData cookie\n\nMay be required if YTM starts returning 403"},"account_index":{"type":"number","description":"If account login results in being able to choose multiple account, use a zero-based index to choose which one to monitor","examples":[0,1]},"location":{"type":"string"},"lang":{"type":"string"},"generate_session_locally":{"type":"boolean"},"device_category":{"type":"string"},"client_type":{"type":"string"},"timezone":{"type":"string"}},"title":"InnertubeOptions"},"MPRISSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPRISData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mpris"]}},"required":["data","type"],"title":"MPRISSourceAIOConfig"},"MPRISData":{"type":"object","properties":{"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any players that START WITH these values, case-insensitive","examples":[["spotify","vlc"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY from any players that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","vlc"]]}},"title":"MPRISData"},"MopidySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MopidyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mopidy"]}},"required":["data","type"],"title":"MopidySourceAIOConfig"},"MopidyData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Mopidy HTTP server to connect to\n\nYou MUST have Mopidy-HTTP extension enabled: https://mopidy.com/ext/http\n\nmulti-scrobbler connects to the WebSocket endpoint that ultimately looks like this => `ws://localhost:6680/mopidy/ws/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `6680`\n* Path => `/mopidy/ws/`","examples":["ws://localhost:6680/mopidy/ws/"],"default":"ws://localhost:6680/mopidy/ws/"},"uriBlacklist":{"type":"array","items":{"type":"string"},"description":"Do not scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Don't scrobble tracks from soundcloud by adding 'soundcloud' to this list.\n\nList is ignored if uriWhitelist is used."},"uriWhitelist":{"type":"array","items":{"type":"string"},"description":"Only scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Only scrobble tracks from soundcloud by adding 'soundcloud' to this list."},"albumBlacklist":{"type":"array","items":{"type":"string"},"description":"Remove album data that matches any case-insensitive string from this list when scrobbling,\n\nFor certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \"Soundcloud\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake name to this list. Multi-scrobbler will still scrobble the track, just without the bad data.","examples":[["Soundcloud","Mixcloud"]],"default":["Soundcloud"]}},"title":"MopidyData"},"ListenBrainzSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenBrainzSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `listenbrainz.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","type"],"title":"ListenBrainzSourceAIOConfig"},"ListenBrainzSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzSourceData"},"JRiverSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JRiverData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jriver"]}},"required":["data","type"],"title":"JRiverSourceAIOConfig"},"JRiverData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the JRiver HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:52199/MCWS/v1/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `52199`\n* Path => `/MCWS/v1/`","examples":["http://localhost:52199/MCWS/v1/"],"default":"http://localhost:52199/MCWS/v1/"},"username":{"type":"string","description":"If you have enabled authentication, the username you set"},"password":{"type":"string","description":"If you have enabled authentication, the password you set"}},"required":["url"],"title":"JRiverData"},"KodiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KodiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["kodi"]}},"required":["data","type"],"title":"KodiSourceAIOConfig"},"KodiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Kodi HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:8080/jsonrpc`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `8080`\n* Path => `/jsonrpc`","examples":["http://localhost:8080/jsonrpc"],"default":"http://localhost:8080/jsonrpc"},"username":{"type":"string","description":"The username set for Remote Control via Web Sever"},"password":{"type":"string","description":"The password set for Remote Control via Web Sever"}},"required":["url","username","password"],"title":"KodiData"},"WebScrobblerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/WebScrobblerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["webscrobbler"]}},"required":["type"],"title":"WebScrobblerSourceAIOConfig"},"WebScrobblerData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIn WebScrobbler's Webhook you must set an 'API URL'. All MS WebScrobbler sources must start like:\n\nhttp://localhost:9078/api/webscrobbler\n\nIf you are using multiple WebScrobbler sources (scrobbles for many users) you must use a slug to match Sources with each users extension.\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/webscrobbler/usera\n* slug: 'userb' => API URL: http://localhost:9078/api/webscrobbler/userb\n\nIf no slug is found from an extension's incoming webhook event the first WebScrobbler source without a slug will be used"},"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Block scrobbling from specific WebScrobbler Connectors","examples":[["youtube"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only allow scrobbling from specific WebScrobbler Connectors","examples":[["mixcloud","soundcloud","bandcamp"]]}},"title":"WebScrobblerData"},"ChromecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ChromecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["chromecast"]}},"required":["data","type"],"title":"ChromecastSourceAIOConfig"},"ChromecastData":{"type":"object","properties":{"blacklistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any cast devices that START WITH these values, case-insensitive\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"whitelistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any cast device that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"blacklistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any application that START WITH these values, case-insensitive","examples":[["spotify","pandora"]]},"whitelistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any application that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","pandora"]]},"useAvahi":{"type":"boolean","description":"Try to use Avahi and avahi-browse to resolve mDNS devices instead of native mDNS querying\n\nUseful for docker (alpine) container where mDNS resolution is not yet supported. Avahi socket must be exposed to the container and avahi-tools must be installed.","default":false},"useAutoDiscovery":{"type":"boolean","description":"Use mDNS to discovery Google Cast devices on your next automatically?\n\nIf not explicitly set then it is TRUE if `devices` is not set"},"devices":{"type":"array","items":{"$ref":"#/definitions/ChromecastDeviceInfo"},"description":"A list of Google Cast devices to monitor\n\nIf this is used then `useAutoDiscovery` is set to FALSE, if not explicitly set"},"allowUnknownMedia":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Chromecast Apps report a \"media type\" in the status info returned for whatever is currently playing\n\n* If set to TRUE then Music AND Generic/Unknown media will be tracked for ALL APPS\n* If set to FALSE then only media explicitly typed as Music will be tracked for ALL APPS\n* If set to a list then only Apps whose name contain one of these values, case-insensitive, will have Music AND Generic/Unknown tracked\n\nSee https://developers.google.com/cast/docs/media/messages#MediaInformation \"metadata\" property","default":false},"forceMediaRecognitionOn":{"type":"array","items":{"type":"string"},"description":"Media provided by any App whose name is listed here will ALWAYS be tracked, regardless of the \"media type\" reported\n\nApps will be recognized if they CONTAIN any of these values, case-insensitive"}},"title":"ChromecastData"},"ChromecastDeviceInfo":{"type":"object","properties":{"name":{"type":"string","description":"A friendly name to identify this device","examples":["MySmartTV"]},"address":{"type":"string","description":"The IP address of the device","examples":["192.168.0.115"]}},"required":["name","address"],"title":"ChromecastDeviceInfo"},"MalojaSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MalojaSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `maloja.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","type"],"title":"MalojaSourceAIOConfig"},"MalojaSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaSourceData"},"MusikcubeSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusikcubeData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musikcube"]}},"required":["data","type"],"title":"MusikcubeSourceAIOConfig"},"MusikcubeData":{"type":"object","properties":{"url":{"type":"string","description":"URL of the Musikcube Websocket (Metadata) server to connect to\n\nYou MUST have enabled 'metadata' server and set a password: https://github.com/clangen/musikcube/wiki/remote-api-documentation\n * musikcube -> settings -> server setup\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `7905`","examples":["ws://localhost:7905"],"default":"ws://localhost:7905"},"password":{"type":"string","description":"Password set in Musikcube https://github.com/clangen/musikcube/wiki/remote-api-documentation\n\n* musikcube -> settings -> server setup -> password"},"device_id":{"type":"string"}},"required":["password"],"title":"MusikcubeData"},"MusicCastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusicCastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musiccast"]}},"required":["data","type"],"title":"MusicCastSourceAIOConfig"},"MusicCastData":{"type":"object","properties":{"url":{"type":"string","description":"The host or URL of the YamahaExtendedControl endpoint to use","examples":[["192.168.0.101","http://192.168.0.101/YamahaExtendedControl"]]}},"required":["url"],"title":"MusicCastData"},"MPDSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPDData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/MPDSourceOptions"},"type":{"type":"string","enum":["mpd"]}},"required":["data","options","type"],"title":"MPDSourceAIOConfig"},"MPDData":{"type":"object","properties":{"url":{"type":"string","description":"URL:PORT of the MPD server to connect to\n\nTo use this you must have TCP connections enabled for your MPD server https://mpd.readthedocs.io/en/stable/user.html#client-connections","examples":["localhost:6600"],"default":"localhost:6600"},"path":{"type":"string","description":"If using socket specify the path instead of url.\n\ntrailing `~` is replaced by your home directory"},"password":{"type":"string","description":"Password for the server, if set https://mpd.readthedocs.io/en/stable/user.html#permissions-and-passwords"}},"title":"MPDData"},"MPDSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"MPDSourceOptions"},"VLCSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/VLCData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/VLCSourceOptions"},"type":{"type":"string","enum":["vlc"]}},"required":["data","type"],"title":"VLCSourceAIOConfig"},"VLCData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL:PORT of the VLC server to connect to\n\nTo use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc","examples":["localhost:8080"],"default":"localhost:8080"},"password":{"type":"string","description":"Password for the server"}},"required":["password"],"title":"VLCData"},"VLCSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"filenamePatterns":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"A list of regular expressions to use to extract metadata (title, album, artist) from a filename\n\nUsed when VLC reports only the filename for the current audio track"},"logFilenamePatterns":{"type":"boolean","description":"Log to DEBUG when a filename-only track is matched or not matched by filenamePatterns","default":false},"dumpVlcMetadata":{"type":"boolean","description":"Dump all the metadata VLC reports for an audio track to DEBUG.\n\nUse this if reporting an issue with VLC not correctly capturing metadata for a track.","default":false}},"title":"VLCSourceOptions"},"IcecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/IcecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/IcecastSourceOptions"},"type":{"type":"string","enum":["icecast"]}},"required":["data","type"],"title":"IcecastSourceAIOConfig"},"IcecastData":{"type":"object","properties":{"sources":{"type":"array","items":{"$ref":"#/definitions/IcecastSource"}},"icestatsEndpoint":{"type":"string"},"statsEndpoint":{"type":"string"},"nextsongsEndpoint":{"type":"string"},"sevenhtmlEndpoint":{"type":"string"},"icyMetaInt":{"type":"number"},"url":{"type":"string","description":"The Icecast stream URL"}},"required":["url"],"title":"IcecastData"},"IcecastSource":{"type":"string","enum":["icy","ogg","icestats","stats","sevenhtml","nextsongs"],"title":"IcecastSource"},"IcecastSourceOptions":{"type":"object","properties":{"systemScrobble":{"type":"boolean","description":"For Sources that support manual listening, should MS default to scrobbling when no user interaction has occurred?\n\nIf not specified MS will use a Source's specific behavior, see Source's documentation."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"IcecastSourceOptions"},"AzuracastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/AzuracastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["azuracast"]}},"required":["data","type"],"title":"AzuracastSourceAIOConfig"},"AzuracastData":{"type":"object","properties":{"url":{"type":"string","description":"Base URL of the Azuracast instance\n\nThis does NOT include the station. If a station is included it will be ignored. Use `station` field to specify station, if necessary","examples":["https://radio.mydomain.tld","http://localhost:80"]},"station":{"type":"string","description":"The specific station to monitor\n\nScrobbling will only occur if any of the monitor conditions are met AND the station is ONLINE.\n\nTo monitor multiple stations create a Source for each station.","examples":["my-station-1"]},"monitorWhenListeners":{"type":["boolean","number"],"description":"Only activate scrobble monitoring if station\n\n* `true` => has any current listeners\n* `number` => has EQUAL TO or MORE THAN X number of listeners"},"monitorWhenLive":{"type":"boolean","description":"Only activate scrobble monitoring if station has a live DJ/Streamer","default":true},"apiKey":{"type":"string","description":"API Key used to access data about private streams\n\nhttps://www.azuracast.com/docs/developers/apis/#api-authentication"}},"required":["url","station"],"title":"AzuracastData"},"KoitoSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KoitoSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `koito.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["koito"]}},"required":["data","type"],"title":"KoitoSourceAIOConfig"},"KoitoSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoSourceData"},"TealSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/TealSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/TealSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"Should always be `souce` when using Tealfm as a Source","default":"source","examples":["source"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","type"],"title":"TealSourceAIOConfig"},"TealSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealSourceData"},"TealSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealSourceOptions"},"RockskySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/RockskySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/RockskySourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `rocksky.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","type"],"title":"RockskySourceAIOConfig"},"RockskySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockskySourceData"},"RockskySourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockskySourceOptions"},"ClientAIOConfig":{"anyOf":[{"$ref":"#/definitions/MalojaClientAIOConfig"},{"$ref":"#/definitions/LastfmClientAIOConfig"},{"$ref":"#/definitions/ListenBrainzClientAIOConfig"},{"$ref":"#/definitions/KoitoClientAIOConfig"},{"$ref":"#/definitions/TealClientAIOConfig"},{"$ref":"#/definitions/RockSkyClientAIOConfig"}],"title":"ClientAIOConfig"},"MalojaClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/MalojaClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Maloja as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","name","type"],"title":"MalojaClientAIOConfig"},"MalojaClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaClientData"},"CommonClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonClientOptions"},"LastfmClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/LastfmData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/LastfmClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using LastFM as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","name","type"],"title":"LastfmClientAIOConfig"},"LastfmData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]}},"required":["apiKey","secret"],"title":"LastfmData"},"LastfmClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"LastfmClientOptions"},"ListenBrainzClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/ListenBrainzClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Listenbrainz as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","name","type"],"title":"ListenBrainzClientAIOConfig"},"ListenBrainzClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzClientData"},"KoitoClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/KoitoClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Koito as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["koito"]}},"required":["data","name","type"],"title":"KoitoClientAIOConfig"},"KoitoClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoClientData"},"TealClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/TealClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/TealClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Tealfm as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","name","type"],"title":"TealClientAIOConfig"},"TealClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealClientData"},"TealClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealClientOptions"},"RockSkyClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/RockSkyClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/RockSkyClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using RockSky as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","name","type"],"title":"RockSkyClientAIOConfig"},"RockSkyClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockSkyClientData"},"RockSkyClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockSkyClientOptions"},"WebhookConfig":{"anyOf":[{"$ref":"#/definitions/GotifyConfig"},{"$ref":"#/definitions/NtfyConfig"},{"$ref":"#/definitions/AppriseConfig"}],"title":"WebhookConfig"},"GotifyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\n\n* gotify\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Gotify server. Same URL that would be used to reach the Gotify UI","examples":["http://192.168.0.100:8078"]},"token":{"type":"string","description":"The token created for this Application in Gotify","examples":["AQZI58fA.rfSZbm"]},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\n\n* Info -> 5\n* Warn -> 7\n* Error -> 10"}},"required":["token","type","url"],"title":"GotifyConfig"},"PrioritiesConfig":{"type":"object","properties":{"info":{"type":"number","examples":[5]},"warn":{"type":"number","examples":[7]},"error":{"type":"number","examples":[10]}},"required":["info","warn","error"],"title":"PrioritiesConfig"},"NtfyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\n\n* gotify\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Ntfy server","examples":["http://192.168.0.100:8078"]},"topic":{"type":"string","description":"The topic mutli-scrobbler should POST to"},"username":{"type":"string","description":"Required if topic is protected"},"password":{"type":"string","description":"Required if topic is protected"},"token":{"type":"string","description":"Use instead of username/password, required if topic is protected"},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\n\n* Info -> 3\n* Warn -> 4\n* Error -> 5"}},"required":["topic","type","url"],"title":"NtfyConfig"},"AppriseConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\n\n* gotify\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"host":{"type":"string","description":"The URL of the apprise-api server","examples":["http://192.168.0.100:8078"]},"urls":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Stateless Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution) the Apprise config URL(s) to send"},"keys":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Persistent Store Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution) the Configuration ID(s) to send to\n\nNote: If multiple keys are defined then MS will attempt to POST to each one individually"},"tags":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Optional [tag(s)](https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging) to send in the notification payload"}},"required":["host","type"],"title":"AppriseConfig"},"LogOptions":{"type":"object","properties":{"level":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level for all log outputs without their own level specified.\n\nDefaults to env `LOG_LEVEL` or `info` if not specified.","default":"info"},"file":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false},{"$ref":"#/definitions/FileLogOptions"}],"description":"Specify the minimum log level to output to rotating files or file output options. If `false` no log files will be created."},"console":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level streamed to the console (or docker container)"}},"description":"Configure log levels and file options for an AppLogger.\n\n```ts\nconst infoLogger = loggerApp({\n level: 'info' // console and file will log any levels `info` and above\n});\n\nconst logger = loggerApp({\n console: 'debug', // console will log `debug` and higher\n file: 'warn' // file will log `warn` and higher\n});\n\nconst fileLogger = loggerRollingApp({\n console: 'debug', // console will log `debug` and higher\n file: {\n level: 'warn', // file will log `warn` and higher\n path: '/my/cool/path/output.log', // optionally, output to log file at this path\n frequency: 'hourly', // optionally, rotate hourly\n }\n});\n```","title":"LogOptions"},"CacheConfigOptions":{"type":"object","properties":{"metadata":{"$ref":"#/definitions/CacheMetadataConfig"},"scrobble":{"$ref":"#/definitions/CacheScrobbleConfig"},"auth":{"$ref":"#/definitions/CacheAuthConfig"},"regex":{"type":"number","description":"Number of regex functions to cache (LRU)","default":200}},"title":"CacheConfigOptions"},"CacheMetadataConfig":{"$ref":"#/definitions/CacheConfig%3CCacheMetadataProvider%3E","title":"CacheMetadataConfig"},"CacheConfig<CacheMetadataProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheMetadataProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheMetadataProvider>"},"CacheMetadataProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheMetadataProvider"},"CacheProvider":{"type":["string","boolean"],"enum":["memory","valkey","file",false],"title":"CacheProvider"},"CacheScrobbleConfig":{"$ref":"#/definitions/CacheConfig%3CCacheScrobbleProvider%3E","title":"CacheScrobbleConfig"},"CacheConfig<CacheScrobbleProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheScrobbleProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheScrobbleProvider>"},"CacheScrobbleProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheScrobbleProvider"},"CacheAuthConfig":{"$ref":"#/definitions/CacheConfig%3CCacheAuthProvider%3E","title":"CacheAuthConfig"},"CacheConfig<CacheAuthProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheAuthProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheAuthProvider>"},"CacheAuthProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheAuthProvider"},"TransformerCommonConfig":{"type":"object","properties":{"defaults":{"type":"object"},"data":{"type":"object"},"type":{"type":"string"},"name":{"type":"string"},"options":{"$ref":"#/definitions/TransformOptions"}},"required":["type"],"title":"TransformerCommonConfig"},"TransformOptions":{"type":"object","properties":{"failOnFetch":{"type":"boolean"},"throwOnFailure":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string","enum":["artists","title","albumArtists","album","duration","meta"]}}]},"ttl":{"type":"string"}},"title":"TransformOptions"}}}
+13
assets/js/04d926a5.3977f47f.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["8051"],{70003:function(e,n,i){i.d(n,{ZP:()=>a,d$:()=>o});var s=i(85893),r=i(50065),l=i(75752),t=i.n(l);let o=[];function c(e){let n={a:"a",code:"code",li:"li",p:"p",strong:"strong",ul:"ul",...(0,r.a)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsxs)(n.p,{children:["A ",(0,s.jsx)(n.strong,{children:"Source"})," that monitors active listening uses one of two metrics to determine if a Song is scrobbable based on your listening:"]}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"percent"})," of track listened to (50% or more)"]}),"\n",(0,s.jsxs)(n.li,{children:["or amount of time (",(0,s.jsx)(n.strong,{children:"duration"}),") track was listened to (4 minutes or more)"]}),"\n"]}),"\n",(0,s.jsxs)(n.p,{children:["These default values are based on ",(0,s.jsx)(n.a,{href:"https://www.last.fm/api/scrobbling#when-is-a-scrobble-a-scrobble",children:"last.fm's scrobble guidance."})]}),"\n",(0,s.jsxs)(n.p,{children:["These values can be customized in the ",(0,s.jsx)(n.code,{children:"options"})," of Source's ",(0,s.jsx)(n.a,{href:"/configuration#configuration-types",children:"file or aio config"}),":"]}),"\n",(0,s.jsx)(t(),{language:"json5",title:`${e.filename}.json`,children:`{
22+ "data": {
33+ // ...
44+ },
55+ "options": {
66+ // highlight-start
77+ "scrobbleThresholds": {
88+ "duration": 40, // scrobbable if listened to for 40 seconds or more
99+ "percent": 20 // scrobbable if listened to for 20% or more of the track's length
1010+ }
1111+ // highlight-end
1212+ }
1313+}`})]})}function a(e={}){let{wrapper:n}={...(0,r.a)(),...e.components};return n?(0,s.jsx)(n,{...e,children:(0,s.jsx)(c,{...e})}):c(e)}},68875:function(e,n,i){i.r(n),i.d(n,{frontMatter:()=>h,default:()=>p,toc:()=>j,metadata:()=>s,assets:()=>x,contentTitle:()=>u});var s=JSON.parse('{"id":"configuration/configuration","title":"Overview","description":"Check the FAQ if you have any issues after configuration!","source":"@site/docs/configuration/configuration.mdx","sourceDirName":"configuration","slug":"/configuration/","permalink":"/multi-scrobbler/configuration/","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/configuration.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"sidebar_position":2,"title":"Overview","toc_max_heading_level":3},"sidebar":"tutorialSidebar","previous":{"title":"Overview","permalink":"/multi-scrobbler/updating/"},"next":{"title":"Overview","permalink":"/multi-scrobbler/configuration/clients/"}}'),r=i(85893),l=i(50065),t=i(703),o=i(73752),c=i(75752),a=i.n(c);i(13727),i(49437),i(94728),i(70003);var d=i(51952);let h={sidebar_position:2,title:"Overview",toc_max_heading_level:3},u=void 0,x={},j=[{value:"Configuration Types",id:"configuration-types",level:2},{value:"Setup Sources and Clients",id:"setup-sources-and-clients",level:2},{value:"Application Options",id:"application-options",level:2},{value:"Base URL",id:"base-url",level:3},{value:"Caching",id:"caching",level:3},{value:"Configuration",id:"configuration",level:5},{value:"Configuration",id:"configuration-1",level:5},{value:"Configuration",id:"configuration-2",level:5},{value:"Secondary Caching Configuration",id:"secondary-caching-configuration",level:4},{value:"Debug Mode",id:"debug-mode",level:3},{value:"Disable Web",id:"disable-web",level:3},{value:"Monitoring",id:"monitoring",level:2},{value:"Webhook Configurations",id:"webhook-configurations",level:3},{value:"Gotify",id:"gotify",level:4},{value:"Ntfy",id:"ntfy",level:4},{value:"Apprise",id:"apprise",level:4},{value:"Health Endpoint",id:"health-endpoint",level:3}];function f(e){let n={a:"a",admonition:"admonition",code:"code",h2:"h2",h3:"h3",h4:"h4",h5:"h5",li:"li",p:"p",pre:"pre",strong:"strong",table:"table",tbody:"tbody",td:"td",th:"th",thead:"thead",tr:"tr",ul:"ul",...(0,l.a)(),...e.components},{Details:i}=n;return i||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.p,{children:["Check the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/FAQ",children:(0,r.jsx)(n.strong,{children:"FAQ"})})," if you have any issues after configuration!"]})}),"\n",(0,r.jsx)(n.h2,{id:"configuration-types",children:"Configuration Types"}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.a,{href:"/configuration/sources",children:(0,r.jsx)(n.strong,{children:"Sources"})})," and ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:(0,r.jsx)(n.strong,{children:"Clients"})})," are configured using:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"environmental (ENV) variables"}),"\n",(0,r.jsx)(n.li,{children:"client/source specific json config files"}),"\n",(0,r.jsx)(n.li,{children:"an all-in-one json config file"}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"MS will parse configuration from all configuration types."})," You can mix and match configurations but it is generally better to stick to one or the other."]}),"\n",(0,r.jsxs)(t.default,{groupId:"configType",queryString:!0,children:[(0,r.jsxs)(o.default,{value:"env",label:"ENV",children:[(0,r.jsxs)(n.p,{children:["MS will parse environmental variables present in the OS/container when it is run. ",(0,r.jsx)(n.strong,{children:"This method means MS does not require files to run."})]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Use ENV-based configuration if..."}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"You are the only person for whom MS is scrobbling for"}),"\n",(0,r.jsxs)(n.li,{children:["You have a very simple setup for MS such as one scrobble ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:"Client"})," and one ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:"Source"})," IE Plex -> Maloja"]}),"\n"]})]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Config Example"}),(0,r.jsx)(n.p,{children:"For Docker container..."}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-shell",children:'docker run -e "SPOTIFY_CLIENT_ID=yourId" -e "SPOTIFY_CLIENT_SECRET=yourSecret" ...\n'})}),(0,r.jsx)(n.p,{children:"For Docker Compose"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-yaml",metastring:'title="docker-compose.yml"',children:"services:\n multi-scrobbler:\n image: foxxmd/multi-scrobbler\n environment:\n - SPOTIFY_CLIENT_ID=yourId\n - SPOTIFY_CLIENT_SECRET=yourSecret\n - MALOJA_URL=http://domain.tld:42010\n - MALOJA_API_KEY=1234\n # ...\n # ...\n"})}),(0,r.jsx)(n.p,{children:"For a local/node installation export variables before running..."}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-shell",children:"SPOTIFY_CLIENT_ID=yourId SPOTIFY_CLIENT_SECRET=yourSecret npm run start\n"})})]})]}),(0,r.jsxs)(o.default,{value:"file",label:"File",children:[(0,r.jsxs)(n.p,{children:["MS will parse configuration files located in the directory specified by the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," environmental variable. This variable defaults to:"]}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Local installation -> ",(0,r.jsx)(n.code,{children:"PROJECT_DIR/config"})]}),"\n",(0,r.jsxs)(n.li,{children:["Docker -> ",(0,r.jsx)(n.code,{children:"/config"})," (in the container) -- see the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/installation/#docker",children:"install docs"})," for how to configure this correctly"]}),"\n"]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Use File-based configuration if..."}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["You have many ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:"Sources"})]}),"\n",(0,r.jsxs)(n.li,{children:["You have many of each type of ",(0,r.jsx)(n.strong,{children:"Source"})," you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x\nFunkwhale..."]}),"\n",(0,r.jsxs)(n.li,{children:["You have more than one scrobble ",(0,r.jsx)(n.strong,{children:"Client"})," you want to scrobble to IE multiple Maloja servers"]}),"\n",(0,r.jsxs)(n.li,{children:["You want only to scrobble to specific ",(0,r.jsx)(n.strong,{children:"Clients"})]}),"\n",(0,r.jsxs)(n.li,{children:["You need to setup more advanced configuration for a Source/Client","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"Most Source/Clients only support basic configuration through ENV, all configuration is possible using File/AIO"}),"\n"]}),"\n"]}),"\n"]})]}),(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["There are ",(0,r.jsx)(n.strong,{children:"example configurations"})," for all Source/Client types and AIO config located in the ",(0,r.jsx)(n.a,{href:"https://github.com/FoxxMD/multi-scrobbler/tree/master/config",children:(0,r.jsx)(n.code,{children:"/config"})})," directory of this project. These can be used as-is by renaming them to ",(0,r.jsx)(n.code,{children:".json"}),"."]}),"\n",(0,r.jsx)(n.li,{children:"For docker installations these examples are copied to your configuration directory on first-time use."}),"\n",(0,r.jsxs)(n.li,{children:["There is also a ",(0,r.jsx)(n.a,{href:"/configuration/kitchensink",children:(0,r.jsx)(n.strong,{children:"kitchensink example"})})," that provides examples of using all sources/clients in a complex configuration."]}),"\n"]})}),(0,r.jsxs)(n.p,{children:["Each file is named by the ",(0,r.jsx)(n.strong,{children:"type"})," of the Client/Source found in below sections. Each file as an ",(0,r.jsx)(n.strong,{children:"array"})," of that type of Client/Source."]}),(0,r.jsx)(n.p,{children:"Example directory structure:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{children:"/CONFIG_DIR\n plex.json\n spotify.json\n maloja.json\n"})}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Config Example"}),(0,r.jsx)(a(),{title:"CONFIG_DIR/spotify.json",language:"json5",children:d.Z})]})]}),(0,r.jsxs)(o.default,{value:"aio",label:"File AIO",children:[(0,r.jsxs)(n.p,{children:["MS will parse an ",(0,r.jsx)(n.strong,{children:"all-in-one"})," configuration file located in the directory specified by the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," environmental variable. This variable defaults to:"]}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Local installation -> ",(0,r.jsx)(n.code,{children:"PROJECT_DIR/config/config.json"})]}),"\n",(0,r.jsxs)(n.li,{children:["Docker -> ",(0,r.jsx)(n.code,{children:"/config/config.json"})," (in the container) -- see the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/installation/#docker",children:"install docs"})," for how to configure this correctly"]}),"\n"]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Use AIO-based configuration if..."}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["You have many ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:"Sources"})]}),"\n",(0,r.jsxs)(n.li,{children:["You have many of each type of ",(0,r.jsx)(n.strong,{children:"Source"})," you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x\nFunkwhale..."]}),"\n",(0,r.jsxs)(n.li,{children:["You have more than one scrobble ",(0,r.jsx)(n.strong,{children:"Client"})," you want to scrobble to IE multiple Maloja servers"]}),"\n",(0,r.jsxs)(n.li,{children:["You want only to scrobble to specific ",(0,r.jsx)(n.strong,{children:"Clients"})]}),"\n",(0,r.jsxs)(n.li,{children:["You need to setup ",(0,r.jsx)(n.a,{href:"#monitoring",children:"monitoring/webhooks"})]}),"\n",(0,r.jsx)(n.li,{children:"You want to setup defaults for all Sources/Clients"}),"\n"]})]}),(0,r.jsx)(n.p,{children:(0,r.jsx)(n.strong,{children:"The AIO config also enables setting default options for sources/clients as well as global options for MS itself."})}),(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["An example AIO config files can be found in the project directory at ",(0,r.jsx)(n.a,{href:"https://github.com/FoxxMD/multi-scrobbler/tree/master/config/config.json.example",children:(0,r.jsx)(n.code,{children:"/config/config.json.example"})})]}),"\n",(0,r.jsx)(n.li,{children:"For docker installations this example is copied to your configuration directory on first-time use."}),"\n",(0,r.jsxs)(n.li,{children:["There is also a ",(0,r.jsx)(n.a,{href:"/configuration/kitchensink",children:(0,r.jsx)(n.strong,{children:"kitchensink example"})})," that provides examples of using all sources/clients in a complex configuration."]}),"\n"]})}),(0,r.jsx)(n.p,{children:(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:(0,r.jsx)(n.strong,{children:"Explore the schema for this configuration, along with an example generator and validator, here"})})}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Config Example"}),(0,r.jsx)(a(),{title:"CONFIG_DIR/config.json",language:"json5",children:'{\n "debugMode": false,\n "disableWeb": false,\n "sourceDefaults": {\n "logPayload": false,\n "logFilterFailure": "warn",\n "logPlayerState": false,\n "scrobbleThresholds": {\n "duration": 30,\n "percent": 50\n },\n "maxPollRetries": 1,\n "maxRequestRetries": 1,\n "retryMultiplier": 1.5\n },\n "clientDefaults": {\n "maxRequestRetries": 1,\n "retryMultiplier": 1.5\n },\n "sources": [\n {\n "type": "spotify",\n "enable": true,\n "clients": ["myConfig"],\n "name": "mySpotifySource",\n "data": {\n "clientId": "a89cba1569901a0671d5a9875fed4be1",\n "clientSecret": "ec42e09d5ae0ee0f0816ca151008412a",\n "redirectUri": "http://localhost:9078/callback"\n }\n }\n ],\n "clients": [\n {\n "type": "maloja",\n "enable": true,\n "name": "myConfig",\n "data": {\n "url": "http://localhost:42010",\n "apiKey": "myMalojaKey"\n }\n }\n ],\n "webhooks": [\n {\n "name": "FirstGotifyServer",\n "type": "gotify",\n "url": "http://localhost:8070",\n "token": "MyGotifyToken",\n "priorities": {\n "info": 5,\n "warn": 7,\n "error": 10\n }\n },\n {\n "type": "ntfy",\n "name": "MyNtfyFriendlyNameForLogs",\n "url": "http://localhost:9991",\n "topic": "MyMultiScrobblerTopic",\n "username": "Optional",\n "password": "Optional",\n "priorities": {\n "info": 3,\n "warn": 4,\n "error": 5\n }\n }\n ]\n}\n'})]})]})]}),"\n",(0,r.jsx)(n.h2,{id:"setup-sources-and-clients",children:"Setup Sources and Clients"}),"\n",(0,r.jsxs)(n.p,{children:["See the ",(0,r.jsx)(n.a,{href:"#configuration-types",children:"Configuration Types"})," above for your options for creating Source and Client configurations."]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Reference ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:(0,r.jsx)(n.strong,{children:"Scrobble Sources"})})," for what Sources are available"]}),"\n",(0,r.jsxs)(n.li,{children:["Reference ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:(0,r.jsx)(n.strong,{children:"Scrobble Clients"})})," for what Clients are available"]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Each entry for a Source/Client includes a ",(0,r.jsx)(n.strong,{children:"Configuration"})," section that describes how to configure it using a ",(0,r.jsx)(n.a,{href:"#configuration-types",children:"configuration type"}),"."]}),"\n",(0,r.jsx)(n.h2,{id:"application-options",children:"Application Options"}),"\n",(0,r.jsx)(n.p,{children:"These options affect multi-scrobbler's behavior and are not specific to any source/client."}),"\n",(0,r.jsx)(n.h3,{id:"base-url",children:"Base URL"}),"\n",(0,r.jsxs)(n.p,{children:["Defines the URL that is used to generate default redirect URLs for authentication on ",(0,r.jsx)(n.a,{href:"/configuration/sources/spotify",children:"spotify"})," and ",(0,r.jsx)(n.a,{href:"/configuration/clients/lastfm",children:"lastfm"})," -- as well as some logging hints."]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Default => ",(0,r.jsx)(n.code,{children:"http://localhost:9078"})]}),"\n",(0,r.jsxs)(n.li,{children:["Set with ",(0,r.jsx)(n.a,{href:"./?configType=env#configuration-types",children:"ENV"})," ",(0,r.jsx)(n.code,{children:"BASE_URL"})," or ",(0,r.jsx)(n.code,{children:"baseUrl"})," ",(0,r.jsx)(n.a,{href:"./?configType=aio#configuration-types",children:"all-in-one configuration"})]}),"\n",(0,r.jsxs)(n.li,{children:["If protocol is ",(0,r.jsx)(n.code,{children:"http"})," or no protocol is specified MS will try to use port ",(0,r.jsx)(n.code,{children:"9078"})," -- to override this explicitly set the port or use ",(0,r.jsx)(n.code,{children:"https"})]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Useful when running with ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/installation/#docker",children:"docker"})," so that you do not need to specify redirect URLs for each configuration."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsxs)(n.p,{children:["EX Lastfm Redirect Url is ",(0,r.jsx)(n.code,{children:"BASE_URL:PORT/lastfm/callback"})," (when no other redirectUri is specified for ",(0,r.jsx)(n.a,{href:"/configuration/clients/lastfm",children:"lastfm configuration"}),")"]}),(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{children:(0,r.jsx)(n.code,{children:"BASE_URL"})}),(0,r.jsx)(n.th,{children:"Redirect URL"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"192.168.0.101"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:9078/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://my.domain.local"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://my.domain.local:9078/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101/my/subfolder"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:9078/my/subfolder/lastfm/callback"})})]})]})]}),(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{children:(0,r.jsx)(n.code,{children:"BASE_URL"})}),(0,r.jsx)(n.th,{children:"Redirect URL"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"my.domain.local:80"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:80/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"my.domain.local:9000"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://my.domain.local:9000/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"192.168.0.101:4000/my/subfolder"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:4000/my/subfolder/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"https://192.168.0.101"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"https://192.168.0.101:443/lastfm/callback"})})]})]})]})]}),"\n",(0,r.jsx)(n.h3,{id:"caching",children:"Caching"}),"\n",(0,r.jsx)(n.p,{children:"Multi-scrobbler caches some activities to persist important data across restarts, reduce external API calls, and make some actions faster."}),"\n",(0,r.jsxs)(n.p,{children:["All of the activities below are ",(0,r.jsx)(n.strong,{children:"always"})," cached ",(0,r.jsx)(n.strong,{children:"in-memory"})," with an optional, configurable ",(0,r.jsxs)(n.a,{href:"#secondary-caching-configuration",children:[(0,r.jsx)(n.strong,{children:"secondary"})," store"]})," for persistence."]}),"\n",(0,r.jsxs)(t.default,{groupId:"cachedThings",queryString:!0,children:[(0,r.jsxs)(o.default,{value:"scrobbles",label:"Scrobbles",children:[(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Queued"})," and ",(0,r.jsx)(n.strong,{children:"Failed"})," Scrobbles are cached so that any un-scrobbled data you have is persisted across restarts of multi-scrobbler."]}),(0,r.jsxs)(n.admonition,{type:"tip",children:[(0,r.jsxs)(n.p,{children:["By default, this data use a ",(0,r.jsx)(n.a,{href:"#secondary-caching-configuration",children:"Secondary"})," ",(0,r.jsx)(n.a,{href:"./?cacheType=file#secondary-caching-configuration",children:"File"})," store, configured for you automatically."]}),(0,r.jsxs)(n.p,{children:["If you have configured a ",(0,r.jsx)(n.a,{href:"/installation#storage",children:"persisted volume/bind mount"})," for configuration (",(0,r.jsx)(n.code,{children:"/config"})," is mounted in ",(0,r.jsx)(n.a,{href:"/quickstart#create-docker-compose-file",children:"docker compose"}),") then you are already done. If you are not persisting this directory then you should consider setting up ",(0,r.jsx)(n.a,{href:"./?cacheType=valkey#secondary-caching-configuration",children:"Valkey Cache"})," for this."]})]}),(0,r.jsx)(n.h5,{id:"configuration",children:"Configuration"}),(0,r.jsxs)(n.p,{children:["Use any ",(0,r.jsx)(n.a,{href:"#secondary-caching-configuration",children:"Secondary Cache"}),", the config examples below show the default values:"]}),(0,r.jsxs)(t.default,{children:[(0,r.jsx)(o.default,{value:"env",label:"ENV",children:(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"file"})}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE_CONN"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"/config"})}),(0,r.jsx)(n.td,{})]})]})]})}),(0,r.jsx)(o.default,{value:"aio",label:"AIO",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "scrobble": {\n "provider": "file",\n "connection": "/config"\n }\n },\n // ...\n}\n'})})})]})]}),(0,r.jsxs)(o.default,{value:"auth",label:"Auth Data",children:[(0,r.jsx)(n.p,{children:"Authentication sessions/tokens/etc... are cached for quicker requests and for persistence across restarts."}),(0,r.jsxs)(n.admonition,{type:"tip",children:[(0,r.jsxs)(n.p,{children:["By default, this data use a ",(0,r.jsx)(n.a,{href:"#secondary-caching-configuration",children:"Secondary"})," ",(0,r.jsx)(n.a,{href:"./?cacheType=file#secondary-caching-configuration",children:"File"})," store, configured for you automatically."]}),(0,r.jsxs)(n.p,{children:["If you have configured a ",(0,r.jsx)(n.a,{href:"/installation#storage",children:"persisted volume/bind mount"})," for configuration (",(0,r.jsx)(n.code,{children:"/config"})," is mounted in ",(0,r.jsx)(n.a,{href:"/quickstart#create-docker-compose-file",children:"docker compose"}),") then you are already done. If you are not persisting this directory then you should consider setting up ",(0,r.jsx)(n.a,{href:"./?cacheType=valkey#secondary-caching-configuration",children:"Valkey Cache"})," for this."]})]}),(0,r.jsx)(n.h5,{id:"configuration-1",children:"Configuration"}),(0,r.jsxs)(n.p,{children:["Use any ",(0,r.jsx)(n.a,{href:"#secondary-caching-configuration",children:"Secondary Cache"}),", the config examples below show the default values:"]}),(0,r.jsxs)(t.default,{children:[(0,r.jsx)(o.default,{value:"env",label:"ENV",children:(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_AUTH"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"file"})}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_AUTH_CONN"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"/config"})}),(0,r.jsx)(n.td,{})]})]})]})}),(0,r.jsx)(o.default,{value:"aio",label:"AIO",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "auth": {\n "provider": "file",\n "connection": "/config"\n }\n },\n // ...\n}\n'})})})]})]}),(0,r.jsxs)(o.default,{value:"metadata",label:"Transform API Calls",children:[(0,r.jsxs)(n.p,{children:["API Calls to external (metadata) services used to ",(0,r.jsx)(n.a,{href:"/configuration/transforms",children:"Enhance Scrobbles"}),", like calls to ",(0,r.jsx)(n.a,{href:"/configuration/transforms/musicbrainz",children:"Musicbrainz"}),", can be cached to avoid duplicate calls and speed up scrobble transformations."]}),(0,r.jsxs)(n.p,{children:["By default, these calls are only cached in memory. If you wish for cached calls to be persisted across restarts then setup ",(0,r.jsx)(n.a,{href:"./?cacheType=valkey#secondary-caching-configuration",children:"Valkey Cache"}),"."]}),(0,r.jsx)(n.h5,{id:"configuration-2",children:"Configuration"}),(0,r.jsxs)(n.p,{children:["Use any ",(0,r.jsx)(n.a,{href:"#secondary-caching-configuration",children:"Secondary Cache"}),", the config examples below show the default values:"]}),(0,r.jsxs)(t.default,{children:[(0,r.jsx)(o.default,{value:"env",label:"ENV",children:(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_METADATA"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_METADATA_CONN"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{}),(0,r.jsx)(n.td,{})]})]})]})}),(0,r.jsx)(o.default,{value:"aio",label:"AIO",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "metadata": {\n "provider": "valkey",\n "connection": "yourConnectionStringHere"\n }\n },\n // ...\n}\n'})})})]})]})]}),"\n",(0,r.jsx)(n.h4,{id:"secondary-caching-configuration",children:"Secondary Caching Configuration"}),"\n",(0,r.jsxs)(n.p,{children:["The type of cache used, and its connection properties, can be configured through ",(0,r.jsx)(n.strong,{children:"ENV"})," or ",(0,r.jsx)(n.strong,{children:"AIO"})," config."]}),"\n",(0,r.jsxs)(t.default,{groupId:"cacheType",queryString:!0,children:[(0,r.jsxs)(o.default,{value:"file",label:"File",children:[(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"File"})," cache is stored in the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," directory using the pre-defined file name ",(0,r.jsx)(n.code,{children:"ms-[cacheName].cache"}),"."]}),(0,r.jsxs)(t.default,{groupId:"configType",queryString:!0,children:[(0,r.jsxs)(o.default,{value:"env",label:"ENV",children:[(0,r.jsx)(n.p,{children:"Example"}),(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"file"})}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE_CONN"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"/config"})}),(0,r.jsx)(n.td,{children:"The directory, within the container, to store the cache file"})]})]})]})]}),(0,r.jsxs)(o.default,{value:"aio",label:"AIO",children:[(0,r.jsx)(n.p,{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "scrobble": {\n "provider": "file",\n "connection": "/config"\n }\n },\n // ...\n}\n'})})]})]})]}),(0,r.jsxs)(o.default,{value:"valkey",label:"Valkey",children:[(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.a,{href:"https://valkey.io/",children:(0,r.jsx)(n.strong,{children:"Valkey"})})," is an open-source fork of Redis."]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Adding Valkey container to multi-scrobbler"}),(0,r.jsxs)(n.p,{children:["A valkey container can be added to the ",(0,r.jsx)(n.a,{href:"/installation?runType=docker-compose#docker",children:"multi-scrobbler docker compose stack"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-yaml",metastring:'title="docker-compose.yml"',children:"services:\n multi-scrobbler:\n # ...\n # adding everything below\n // highlight-start\n valkey:\n image: valkey/valkey\n volumes:\n - valkeydata:/data\n\nvolumes:\n valkeydata:\n driver: local\n // highlight-end\n"})})]}),(0,r.jsx)(n.p,{children:"The connection string used by multi-scrobbler to connect to your Valkey instance must be in the form:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{children:"redis://HOST_IP:HOST_PORT\n"})}),(0,r.jsxs)(t.default,{groupId:"configType",queryString:!0,children:[(0,r.jsxs)(o.default,{value:"env",label:"ENV",children:[(0,r.jsx)(n.p,{children:"Example"}),(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_METADATA"})}),(0,r.jsx)(n.td,{children:"Yes"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"valkey"})}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_METADATA_CONN"})}),(0,r.jsx)(n.td,{children:"Yes"}),(0,r.jsx)(n.td,{}),(0,r.jsxs)(n.td,{children:["The host/IP and port to connect to EX: ",(0,r.jsx)(n.code,{children:"redis://192.168.0.120:6379"})]})]})]})]})]}),(0,r.jsxs)(o.default,{value:"aio",label:"AIO",children:[(0,r.jsx)(n.p,{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "metadata": {\n "provider": "valkey",\n "connection": "redis://192.168.0.120:6379"\n }\n },\n // ...\n}\n'})})]})]})]})]}),"\n",(0,r.jsx)(n.h3,{id:"debug-mode",children:"Debug Mode"}),"\n",(0,r.jsx)(n.p,{children:"Turning on Debug Mode will"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:'override and enable all optional "debugging" options found in configuration'}),"\n",(0,r.jsx)(n.li,{children:"set log output to DEBUG"}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"Use this as a shortcut for enabling output that can be used for troubleshooting and issue reporting. Be aware that logs will likely be VERY noisy while Debug Mode is on. You should only have this mode on while gathering logs for troubleshooting and then turn it off afterwards."}),"\n",(0,r.jsxs)(n.p,{children:["To set debug mode either add it to ",(0,r.jsxs)(n.a,{href:"./?configType=aio#configuration-types",children:["AIO ",(0,r.jsx)(n.code,{children:"config.json"})]})]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "debugMode": true,\n "sources": [...],\n // ...\n}\n'})}),"\n",(0,r.jsxs)(n.p,{children:["or set the ",(0,r.jsx)(n.a,{href:"./?configType=env#configuration-types",children:"ENV"})," ",(0,r.jsx)(n.code,{children:"DEBUG_MODE=true"})]}),"\n",(0,r.jsx)(n.h3,{id:"disable-web",children:"Disable Web"}),"\n",(0,r.jsx)(n.p,{children:"If you do not need the dashboard and/or ingress sources, or have security concerns about ingress and cannot control your hosting environment, the web server and API can be disabled."}),"\n",(0,r.jsx)(n.admonition,{type:"warning",children:(0,r.jsxs)(n.p,{children:["Any ",(0,r.jsxs)(n.strong,{children:[(0,r.jsx)(n.a,{href:"/configuration/sources#ingress",children:"ingress-based sources"})," will be unusable"]})," (Webscrobbler, etc...) if this is disabled."]})}),"\n",(0,r.jsx)(n.p,{children:"Disable using either:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["ENV ",(0,r.jsx)(n.code,{children:"DISABLE_WEB=true"})]}),"\n",(0,r.jsxs)(n.li,{children:["In ",(0,r.jsx)(n.a,{href:"./?configType=aio#configuration-types",children:"All-in-One File"})," use the top-level property ",(0,r.jsx)(n.code,{children:'"disableWeb": true'})]}),"\n"]}),"\n",(0,r.jsx)(n.h2,{id:"monitoring",children:"Monitoring"}),"\n",(0,r.jsx)(n.p,{children:"Multi-scrobbler supports some common webhooks and a healthcheck endpoint in order to monitor Sources and Clients for errors."}),"\n",(0,r.jsx)(n.h3,{id:"webhook-configurations",children:"Webhook Configurations"}),"\n",(0,r.jsxs)(n.p,{children:["Webhooks will ",(0,r.jsx)(n.strong,{children:"push"})," a notification to your configured servers on these events:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"Source polling started"}),"\n",(0,r.jsx)(n.li,{children:"Source polling retry"}),"\n",(0,r.jsx)(n.li,{children:"Source polling stopped on error"}),"\n",(0,r.jsx)(n.li,{children:"Scrobble client scrobble failure"}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Webhooks are configured in the AIO ",(0,r.jsx)(n.a,{href:"#configuration-types",children:"config.json"})," file under the ",(0,r.jsx)(n.code,{children:"webhook"})," top-level property. Multiple webhooks may be configured for each webhook type."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sources": [\n //...\n ],\n "clients": [\n //...\n ],\n "webhooks": [\n {\n "name": "FirstGotifyServer",\n "type": "gotify",\n "url": "http://192.168.0.100:8070",\n "token": "abcd"\n },\n {\n "name": "SecondGotifyServer",\n "type": "gotify",\n //...\n },\n {\n "name": "NtfyServerOne",\n "type": "ntfy",\n //...\n },\n //...\n ]\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"gotify",children:(0,r.jsx)(n.a,{href:"https://gotify.net/",children:"Gotify"})}),"\n",(0,r.jsxs)(n.p,{children:["Refer to the ",(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23/%23%2Fdefinitions%2FGotifyConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:"config schema for GotifyConfig"})]}),"\n",(0,r.jsxs)(n.p,{children:["multi-scrobbler optionally supports setting message notification priority via ",(0,r.jsx)(n.code,{children:"info"})," ",(0,r.jsx)(n.code,{children:"warn"})," and ",(0,r.jsx)(n.code,{children:"error"})," mappings."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",metastring:'title="config.json"',children:'{\n "type": "gotify",\n "name": "MyGotifyFriendlyNameForLogs",\n "url": "http://192.168.0.100:8070",\n "token": "AQZI58fA.rfSZbm",\n "priorities": {\n "info": 5,\n "warn": 7,\n "error": 10\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"ntfy",children:(0,r.jsx)(n.a,{href:"https://ntfy.sh/",children:"Ntfy"})}),"\n",(0,r.jsxs)(n.p,{children:["Refer to the ",(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23/%23%2Fdefinitions%2FNtfyConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:"config schema for NtfyConfig"})]}),"\n",(0,r.jsxs)(n.p,{children:["multi-scrobbler optionally supports setting message notification priority via ",(0,r.jsx)(n.code,{children:"info"})," ",(0,r.jsx)(n.code,{children:"warn"})," and ",(0,r.jsx)(n.code,{children:"error"})," mappings."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",metastring:'title="config.json"',children:'{\n "type": "ntfy",\n "name": "MyNtfyFriendlyNameForLogs",\n "url": "http://192.168.0.100:9991",\n "topic": "RvOwKJ1XtIVMXGLR",\n "username": "Optional",\n "password": "Optional",\n "priorities": {\n "info": 3,\n "warn": 4,\n "error": 5\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"apprise",children:(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api",children:"Apprise"})}),"\n",(0,r.jsxs)(n.p,{children:["Refer to the ",(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23/%23%2Fdefinitions%2FAppriseConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:"config schema for AppriseConfig"})]}),"\n",(0,r.jsxs)(n.p,{children:["multi-scrobbler supports ",(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution",children:"stateless"})," and ",(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution",children:"persistent storage"})," endpoints as well as ",(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging",children:"tags"}),"/"]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "type": "apprise",\n "name": "MyAppriseFriendlyNameForLogs",\n "host": "http://192.168.0.100:8080",\n "urls": ["gotify://192.168.0.101:8070/MyToken"], // stateless endpoints\n "keys": ["e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17"], //persistent storage endpoints\n "tags": ["my","optional","tags"]\n}\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"health-endpoint",children:"Health Endpoint"}),"\n",(0,r.jsxs)(n.p,{children:["An endpoint for monitoring the health of sources/clients is available at GET ",(0,r.jsx)(n.code,{children:"http://YourMultiScrobblerDomain/health"})]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Returns ",(0,r.jsx)(n.code,{children:"200 OK"})," when ",(0,r.jsx)(n.strong,{children:"everything"})," is working or ",(0,r.jsx)(n.code,{children:"500 Internal Server Error"})," if ",(0,r.jsx)(n.strong,{children:"anything"})," is not"]}),"\n",(0,r.jsxs)(n.li,{children:["The plain url (",(0,r.jsx)(n.code,{children:"/health"}),") aggregates status of ",(0,r.jsx)(n.strong,{children:"all clients/sources"})," -- so any failing client/source will make status return 500","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Use query params ",(0,r.jsx)(n.code,{children:"type"})," or ",(0,r.jsx)(n.code,{children:"name"})," to restrict client/sources aggregated IE ",(0,r.jsx)(n.code,{children:"/health?type=spotify"})," or ",(0,r.jsx)(n.code,{children:"/health?name=MyMaloja"})]}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(n.li,{children:["On 500 the response returns a JSON payload with ",(0,r.jsx)(n.code,{children:"messages"})," array that describes any issues","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["For any clients/sources that require authentication ",(0,r.jsx)(n.code,{children:"/health"})," will return 500 if they are ",(0,r.jsx)(n.strong,{children:"not authenticated"})]}),"\n",(0,r.jsxs)(n.li,{children:["For sources that poll (spotify, yt music, subsonic) ",(0,r.jsx)(n.code,{children:"/health"})," will 500 if they are ",(0,r.jsx)(n.strong,{children:"not polling"})]}),"\n"]}),"\n"]}),"\n"]})]})}function p(e={}){let{wrapper:n}={...(0,l.a)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(f,{...e})}):f(e)}},49437:function(e,n,i){i.d(n,{Z:()=>h}),i(67294);var s=i(75752),r=i.n(s),l=i(29097),t=i(77084);i(8267);var o=i(11142),c=i.n(o),a=i(85893);let d=e=>{let n,{data:i,name:s,client:t=!1}=e;try{n=c().parse(i)}catch(e){return console.error(e),(0,a.jsxs)(l.Z,{type:"danger",title:"Unexpected Error",children:[(0,a.jsx)("p",{children:"Example component crashed because of error!"}),(0,a.jsx)(r(),{children:e.message})]})}n=(n=n.filter(e=>void 0===e.configureAs||e.configureAs===(t?"client":"source"))).map(e=>({...e,type:s}));let o={[t?"clients":"sources"]:n};return(0,a.jsx)(r(),{title:"CONFIG_DIR/config.json",language:"json5",children:JSON.stringify(o,null,2)})},h=e=>(0,a.jsx)(t.default,{fallback:({error:e})=>(0,a.jsx)("div",{children:(0,a.jsxs)("p",{children:["Example component crashed because of error: ",e.message,"."]})}),children:(0,a.jsx)(d,{...e})})},94728:function(e,n,i){i.d(n,{Z:()=>h}),i(67294);var s=i(75752),r=i.n(s),l=i(29097),t=i(77084);i(8267);var o=i(11142),c=i.n(o),a=i(85893);let d=e=>{let n,{data:i,client:s=!1,...t}=e;try{n=c().parse(i)}catch(e){return console.error(e),(0,a.jsxs)(l.Z,{type:"danger",title:"Unexpected Error",children:[(0,a.jsx)("p",{children:"Example component crashed because of error!"}),(0,a.jsx)(r(),{children:e.message})]})}return n=n.filter(e=>void 0===e.configureAs||e.configureAs===(s?"client":"source")),(0,a.jsx)(r(),{...t,language:"json5",children:JSON.stringify(n,null,2)})},h=e=>(0,a.jsx)(t.default,{fallback:({error:e})=>(0,a.jsx)("div",{children:(0,a.jsxs)("p",{children:["Example component crashed because of error: ",e.message,"."]})}),children:(0,a.jsx)(d,{...e})})},13727:function(e,n,i){i.d(n,{Z:()=>l});var s=i(67294),r=i(85893);let l=e=>{let{children:n,lower:i,client:l=!1}=e,t=n;void 0===t&&(t=(0,r.jsxs)(s.Fragment,{children:[i?"explore":"Explore"," the schema with an example and live editor/validator"]}));let o=`https://json-schema.app/view/%23/%23%2Fdefinitions%2F${e.objectName}`;return(0,r.jsx)("a",{target:"_blank",href:`${o}?url=${l?"https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Fclient.json":"https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Fsource.json"}`,children:t})}},51952:function(e,n,i){i.d(n,{Z:()=>s});let s='[\n {\n "name": "MySpotify",\n "enable": true,\n "clients": [],\n "data": {\n "clientId": "a89cba1569901a0671d5a9875fed4be1",\n "clientSecret": "ec42e09d5ae0ee0f0816ca151008412a",\n "redirectUri": "http://localhost:9078/callback",\n "interval": 60\n }\n }\n]\n'}}]);
-13
assets/js/04d926a5.a9b8f583.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["8051"],{70003:function(e,n,i){i.d(n,{ZP:()=>a,d$:()=>l});var s=i(85893),r=i(50065),o=i(75752),t=i.n(o);let l=[];function c(e){let n={a:"a",code:"code",li:"li",p:"p",strong:"strong",ul:"ul",...(0,r.a)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsxs)(n.p,{children:["A ",(0,s.jsx)(n.strong,{children:"Source"})," that monitors active listening uses one of two metrics to determine if a Song is scrobbable based on your listening:"]}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"percent"})," of track listened to (50% or more)"]}),"\n",(0,s.jsxs)(n.li,{children:["or amount of time (",(0,s.jsx)(n.strong,{children:"duration"}),") track was listened to (4 minutes or more)"]}),"\n"]}),"\n",(0,s.jsxs)(n.p,{children:["These default values are based on ",(0,s.jsx)(n.a,{href:"https://www.last.fm/api/scrobbling#when-is-a-scrobble-a-scrobble",children:"last.fm's scrobble guidance."})]}),"\n",(0,s.jsxs)(n.p,{children:["These values can be customized in the ",(0,s.jsx)(n.code,{children:"options"})," of Source's ",(0,s.jsx)(n.a,{href:"/configuration#configuration-types",children:"file or aio config"}),":"]}),"\n",(0,s.jsx)(t(),{language:"json5",title:`${e.filename}.json`,children:`{
22- "data": {
33- // ...
44- },
55- "options": {
66- // highlight-start
77- "scrobbleThresholds": {
88- "duration": 40, // scrobbable if listened to for 40 seconds or more
99- "percent": 20 // scrobbable if listened to for 20% or more of the track's length
1010- }
1111- // highlight-end
1212- }
1313-}`})]})}function a(e={}){let{wrapper:n}={...(0,r.a)(),...e.components};return n?(0,s.jsx)(n,{...e,children:(0,s.jsx)(c,{...e})}):c(e)}},68875:function(e,n,i){i.r(n),i.d(n,{frontMatter:()=>h,default:()=>p,toc:()=>j,metadata:()=>s,assets:()=>x,contentTitle:()=>u});var s=JSON.parse('{"id":"configuration/configuration","title":"Overview","description":"Check the FAQ if you have any issues after configuration!","source":"@site/docs/configuration/configuration.mdx","sourceDirName":"configuration","slug":"/configuration/","permalink":"/multi-scrobbler/configuration/","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/configuration.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"sidebar_position":2,"title":"Overview","toc_max_heading_level":3},"sidebar":"tutorialSidebar","previous":{"title":"Overview","permalink":"/multi-scrobbler/updating/"},"next":{"title":"Overview","permalink":"/multi-scrobbler/configuration/clients/"}}'),r=i(85893),o=i(50065),t=i(703),l=i(73752),c=i(75752),a=i.n(c);i(13727),i(49437),i(94728),i(70003);var d=i(51952);let h={sidebar_position:2,title:"Overview",toc_max_heading_level:3},u=void 0,x={},j=[{value:"Configuration Types",id:"configuration-types",level:2},{value:"Setup Sources and Clients",id:"setup-sources-and-clients",level:2},{value:"Application Options",id:"application-options",level:2},{value:"Base URL",id:"base-url",level:3},{value:"Caching",id:"caching",level:3},{value:"Caching Configuration",id:"caching-configuration",level:5},{value:"Debug Mode",id:"debug-mode",level:3},{value:"Disable Web",id:"disable-web",level:3},{value:"Monitoring",id:"monitoring",level:2},{value:"Webhook Configurations",id:"webhook-configurations",level:3},{value:"Gotify",id:"gotify",level:4},{value:"Ntfy",id:"ntfy",level:4},{value:"Apprise",id:"apprise",level:4},{value:"Health Endpoint",id:"health-endpoint",level:3}];function f(e){let n={a:"a",admonition:"admonition",code:"code",h2:"h2",h3:"h3",h4:"h4",h5:"h5",li:"li",p:"p",pre:"pre",strong:"strong",table:"table",tbody:"tbody",td:"td",th:"th",thead:"thead",tr:"tr",ul:"ul",...(0,o.a)(),...e.components},{Details:i}=n;return i||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.p,{children:["Check the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/FAQ",children:(0,r.jsx)(n.strong,{children:"FAQ"})})," if you have any issues after configuration!"]})}),"\n",(0,r.jsx)(n.h2,{id:"configuration-types",children:"Configuration Types"}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.a,{href:"/configuration/sources",children:(0,r.jsx)(n.strong,{children:"Sources"})})," and ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:(0,r.jsx)(n.strong,{children:"Clients"})})," are configured using:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"environmental (ENV) variables"}),"\n",(0,r.jsx)(n.li,{children:"client/source specific json config files"}),"\n",(0,r.jsx)(n.li,{children:"an all-in-one json config file"}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"MS will parse configuration from all configuration types."})," You can mix and match configurations but it is generally better to stick to one or the other."]}),"\n",(0,r.jsxs)(t.default,{groupId:"configType",queryString:!0,children:[(0,r.jsxs)(l.default,{value:"env",label:"ENV",children:[(0,r.jsxs)(n.p,{children:["MS will parse environmental variables present in the OS/container when it is run. ",(0,r.jsx)(n.strong,{children:"This method means MS does not require files to run."})]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Use ENV-based configuration if..."}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"You are the only person for whom MS is scrobbling for"}),"\n",(0,r.jsxs)(n.li,{children:["You have a very simple setup for MS such as one scrobble ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:"Client"})," and one ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:"Source"})," IE Plex -> Maloja"]}),"\n"]})]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Config Example"}),(0,r.jsx)(n.p,{children:"For Docker container..."}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-shell",children:'docker run -e "SPOTIFY_CLIENT_ID=yourId" -e "SPOTIFY_CLIENT_SECRET=yourSecret" ...\n'})}),(0,r.jsx)(n.p,{children:"For Docker Compose"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-yaml",metastring:'title="docker-compose.yml"',children:"services:\n multi-scrobbler:\n image: foxxmd/multi-scrobbler\n environment:\n - SPOTIFY_CLIENT_ID=yourId\n - SPOTIFY_CLIENT_SECRET=yourSecret\n - MALOJA_URL=http://domain.tld:42010\n - MALOJA_API_KEY=1234\n # ...\n # ...\n"})}),(0,r.jsx)(n.p,{children:"For a local/node installation export variables before running..."}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-shell",children:"SPOTIFY_CLIENT_ID=yourId SPOTIFY_CLIENT_SECRET=yourSecret npm run start\n"})})]})]}),(0,r.jsxs)(l.default,{value:"file",label:"File",children:[(0,r.jsxs)(n.p,{children:["MS will parse configuration files located in the directory specified by the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," environmental variable. This variable defaults to:"]}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Local installation -> ",(0,r.jsx)(n.code,{children:"PROJECT_DIR/config"})]}),"\n",(0,r.jsxs)(n.li,{children:["Docker -> ",(0,r.jsx)(n.code,{children:"/config"})," (in the container) -- see the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/installation/#docker",children:"install docs"})," for how to configure this correctly"]}),"\n"]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Use File-based configuration if..."}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["You have many ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:"Sources"})]}),"\n",(0,r.jsxs)(n.li,{children:["You have many of each type of ",(0,r.jsx)(n.strong,{children:"Source"})," you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x\nFunkwhale..."]}),"\n",(0,r.jsxs)(n.li,{children:["You have more than one scrobble ",(0,r.jsx)(n.strong,{children:"Client"})," you want to scrobble to IE multiple Maloja servers"]}),"\n",(0,r.jsxs)(n.li,{children:["You want only to scrobble to specific ",(0,r.jsx)(n.strong,{children:"Clients"})]}),"\n",(0,r.jsxs)(n.li,{children:["You need to setup more advanced configuration for a Source/Client","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"Most Source/Clients only support basic configuration through ENV, all configuration is possible using File/AIO"}),"\n"]}),"\n"]}),"\n"]})]}),(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["There are ",(0,r.jsx)(n.strong,{children:"example configurations"})," for all Source/Client types and AIO config located in the ",(0,r.jsx)(n.a,{href:"https://github.com/FoxxMD/multi-scrobbler/tree/master/config",children:(0,r.jsx)(n.code,{children:"/config"})})," directory of this project. These can be used as-is by renaming them to ",(0,r.jsx)(n.code,{children:".json"}),"."]}),"\n",(0,r.jsx)(n.li,{children:"For docker installations these examples are copied to your configuration directory on first-time use."}),"\n",(0,r.jsxs)(n.li,{children:["There is also a ",(0,r.jsx)(n.a,{href:"/configuration/kitchensink",children:(0,r.jsx)(n.strong,{children:"kitchensink example"})})," that provides examples of using all sources/clients in a complex configuration."]}),"\n"]})}),(0,r.jsxs)(n.p,{children:["Each file is named by the ",(0,r.jsx)(n.strong,{children:"type"})," of the Client/Source found in below sections. Each file as an ",(0,r.jsx)(n.strong,{children:"array"})," of that type of Client/Source."]}),(0,r.jsx)(n.p,{children:"Example directory structure:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{children:"/CONFIG_DIR\n plex.json\n spotify.json\n maloja.json\n"})}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Config Example"}),(0,r.jsx)(a(),{title:"CONFIG_DIR/spotify.json",language:"json5",children:d.Z})]})]}),(0,r.jsxs)(l.default,{value:"aio",label:"File AIO",children:[(0,r.jsxs)(n.p,{children:["MS will parse an ",(0,r.jsx)(n.strong,{children:"all-in-one"})," configuration file located in the directory specified by the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," environmental variable. This variable defaults to:"]}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Local installation -> ",(0,r.jsx)(n.code,{children:"PROJECT_DIR/config/config.json"})]}),"\n",(0,r.jsxs)(n.li,{children:["Docker -> ",(0,r.jsx)(n.code,{children:"/config/config.json"})," (in the container) -- see the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/installation/#docker",children:"install docs"})," for how to configure this correctly"]}),"\n"]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Use AIO-based configuration if..."}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["You have many ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:"Sources"})]}),"\n",(0,r.jsxs)(n.li,{children:["You have many of each type of ",(0,r.jsx)(n.strong,{children:"Source"})," you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x\nFunkwhale..."]}),"\n",(0,r.jsxs)(n.li,{children:["You have more than one scrobble ",(0,r.jsx)(n.strong,{children:"Client"})," you want to scrobble to IE multiple Maloja servers"]}),"\n",(0,r.jsxs)(n.li,{children:["You want only to scrobble to specific ",(0,r.jsx)(n.strong,{children:"Clients"})]}),"\n",(0,r.jsxs)(n.li,{children:["You need to setup ",(0,r.jsx)(n.a,{href:"#monitoring",children:"monitoring/webhooks"})]}),"\n",(0,r.jsx)(n.li,{children:"You want to setup defaults for all Sources/Clients"}),"\n"]})]}),(0,r.jsx)(n.p,{children:(0,r.jsx)(n.strong,{children:"The AIO config also enables setting default options for sources/clients as well as global options for MS itself."})}),(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["An example AIO config files can be found in the project directory at ",(0,r.jsx)(n.a,{href:"https://github.com/FoxxMD/multi-scrobbler/tree/master/config/config.json.example",children:(0,r.jsx)(n.code,{children:"/config/config.json.example"})})]}),"\n",(0,r.jsx)(n.li,{children:"For docker installations this example is copied to your configuration directory on first-time use."}),"\n",(0,r.jsxs)(n.li,{children:["There is also a ",(0,r.jsx)(n.a,{href:"/configuration/kitchensink",children:(0,r.jsx)(n.strong,{children:"kitchensink example"})})," that provides examples of using all sources/clients in a complex configuration."]}),"\n"]})}),(0,r.jsx)(n.p,{children:(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:(0,r.jsx)(n.strong,{children:"Explore the schema for this configuration, along with an example generator and validator, here"})})}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Config Example"}),(0,r.jsx)(a(),{title:"CONFIG_DIR/config.json",language:"json5",children:'{\n "debugMode": false,\n "disableWeb": false,\n "sourceDefaults": {\n "logPayload": false,\n "logFilterFailure": "warn",\n "logPlayerState": false,\n "scrobbleThresholds": {\n "duration": 30,\n "percent": 50\n },\n "maxPollRetries": 1,\n "maxRequestRetries": 1,\n "retryMultiplier": 1.5\n },\n "clientDefaults": {\n "maxRequestRetries": 1,\n "retryMultiplier": 1.5\n },\n "sources": [\n {\n "type": "spotify",\n "enable": true,\n "clients": ["myConfig"],\n "name": "mySpotifySource",\n "data": {\n "clientId": "a89cba1569901a0671d5a9875fed4be1",\n "clientSecret": "ec42e09d5ae0ee0f0816ca151008412a",\n "redirectUri": "http://localhost:9078/callback"\n }\n }\n ],\n "clients": [\n {\n "type": "maloja",\n "enable": true,\n "name": "myConfig",\n "data": {\n "url": "http://localhost:42010",\n "apiKey": "myMalojaKey"\n }\n }\n ],\n "webhooks": [\n {\n "name": "FirstGotifyServer",\n "type": "gotify",\n "url": "http://localhost:8070",\n "token": "MyGotifyToken",\n "priorities": {\n "info": 5,\n "warn": 7,\n "error": 10\n }\n },\n {\n "type": "ntfy",\n "name": "MyNtfyFriendlyNameForLogs",\n "url": "http://localhost:9991",\n "topic": "MyMultiScrobblerTopic",\n "username": "Optional",\n "password": "Optional",\n "priorities": {\n "info": 3,\n "warn": 4,\n "error": 5\n }\n }\n ]\n}\n'})]})]})]}),"\n",(0,r.jsx)(n.h2,{id:"setup-sources-and-clients",children:"Setup Sources and Clients"}),"\n",(0,r.jsxs)(n.p,{children:["See the ",(0,r.jsx)(n.a,{href:"#configuration-types",children:"Configuration Types"})," above for your options for creating Source and Client configurations."]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Reference ",(0,r.jsx)(n.a,{href:"/configuration/sources",children:(0,r.jsx)(n.strong,{children:"Scrobble Sources"})})," for what Sources are available"]}),"\n",(0,r.jsxs)(n.li,{children:["Reference ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:(0,r.jsx)(n.strong,{children:"Scrobble Clients"})})," for what Clients are available"]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Each entry for a Source/Client includes a ",(0,r.jsx)(n.strong,{children:"Configuration"})," section that describes how to configure it using a ",(0,r.jsx)(n.a,{href:"#configuration-types",children:"configuration type"}),"."]}),"\n",(0,r.jsx)(n.h2,{id:"application-options",children:"Application Options"}),"\n",(0,r.jsx)(n.p,{children:"These options affect multi-scrobbler's behavior and are not specific to any source/client."}),"\n",(0,r.jsx)(n.h3,{id:"base-url",children:"Base URL"}),"\n",(0,r.jsxs)(n.p,{children:["Defines the URL that is used to generate default redirect URLs for authentication on ",(0,r.jsx)(n.a,{href:"/configuration/sources/spotify",children:"spotify"})," and ",(0,r.jsx)(n.a,{href:"/configuration/clients/lastfm",children:"lastfm"})," -- as well as some logging hints."]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Default => ",(0,r.jsx)(n.code,{children:"http://localhost:9078"})]}),"\n",(0,r.jsxs)(n.li,{children:["Set with ",(0,r.jsx)(n.a,{href:"./?configType=env#configuration-types",children:"ENV"})," ",(0,r.jsx)(n.code,{children:"BASE_URL"})," or ",(0,r.jsx)(n.code,{children:"baseUrl"})," ",(0,r.jsx)(n.a,{href:"./?configType=aio#configuration-types",children:"all-in-one configuration"})]}),"\n",(0,r.jsxs)(n.li,{children:["If protocol is ",(0,r.jsx)(n.code,{children:"http"})," or no protocol is specified MS will try to use port ",(0,r.jsx)(n.code,{children:"9078"})," -- to override this explicitly set the port or use ",(0,r.jsx)(n.code,{children:"https"})]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Useful when running with ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/installation/#docker",children:"docker"})," so that you do not need to specify redirect URLs for each configuration."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsxs)(n.p,{children:["EX Lastfm Redirect Url is ",(0,r.jsx)(n.code,{children:"BASE_URL:PORT/lastfm/callback"})," (when no other redirectUri is specified for ",(0,r.jsx)(n.a,{href:"/configuration/clients/lastfm",children:"lastfm configuration"}),")"]}),(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{children:(0,r.jsx)(n.code,{children:"BASE_URL"})}),(0,r.jsx)(n.th,{children:"Redirect URL"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"192.168.0.101"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:9078/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://my.domain.local"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://my.domain.local:9078/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101/my/subfolder"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:9078/my/subfolder/lastfm/callback"})})]})]})]}),(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{children:(0,r.jsx)(n.code,{children:"BASE_URL"})}),(0,r.jsx)(n.th,{children:"Redirect URL"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"my.domain.local:80"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:80/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"my.domain.local:9000"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://my.domain.local:9000/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"192.168.0.101:4000/my/subfolder"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"http://192.168.0.101:4000/my/subfolder/lastfm/callback"})})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"https://192.168.0.101"})}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"https://192.168.0.101:443/lastfm/callback"})})]})]})]})]}),"\n",(0,r.jsx)(n.h3,{id:"caching",children:"Caching"}),"\n",(0,r.jsxs)(n.p,{children:["Multi-scrobbler can cache some of its data for the purpose of ",(0,r.jsx)(n.strong,{children:"persisting queued and dead scrobbles"})," after restarting."]}),"\n",(0,r.jsx)(n.p,{children:"It supports caching using either:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.strong,{children:"File"})," cache stored in the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," directory (next to your File/",(0,r.jsx)(n.a,{href:"./?configType=aio#configuration-types",children:"AIO"})," file)"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.a,{href:"https://valkey.io/",children:(0,r.jsx)(n.strong,{children:"Valkey"})}),", an open-source fork of Redis."]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"File"})," caching is ",(0,r.jsx)(n.strong,{children:"enabled by default"})," when no other configuration is present."]}),"\n",(0,r.jsxs)(n.p,{children:["The type of cache used, and it's connection properties, can be configured through ENV or ",(0,r.jsx)(n.strong,{children:"AIO"})," config."]}),"\n",(0,r.jsx)(n.h5,{id:"caching-configuration",children:"Caching Configuration"}),"\n",(0,r.jsxs)(t.default,{groupId:"cache",queryString:!0,children:[(0,r.jsxs)(l.default,{value:"file",label:"File",children:[(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"File"})," cache is stored in the ",(0,r.jsx)(n.code,{children:"CONFIG_DIR"})," directory using the pre-defined file name ",(0,r.jsx)(n.code,{children:"ms-scrobble.cache"}),"."]}),(0,r.jsxs)(n.p,{children:["It is ",(0,r.jsx)(n.strong,{children:"enabled by default"})," if ",(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE"}),", or the respective AIO configuration, is not defined."]}),(0,r.jsxs)(t.default,{groupId:"configType",queryString:!0,children:[(0,r.jsx)(l.default,{value:"env",label:"ENV",children:(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"file"})}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE_CONN"})}),(0,r.jsx)(n.td,{children:"No"}),(0,r.jsx)(n.td,{children:"The config directory"}),(0,r.jsx)(n.td,{children:"The directory, within the container, to store the cache file"})]})]})]})}),(0,r.jsx)(l.default,{value:"aio",label:"AIO",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "scrobble": {\n "provider": "file",\n "connection": "/config"\n }\n },\n // ...\n}\n'})})})]})]}),(0,r.jsx)(l.default,{value:"valkey",label:"Valkey",children:(0,r.jsxs)(t.default,{groupId:"configType",queryString:!0,children:[(0,r.jsx)(l.default,{value:"env",label:"ENV",children:(0,r.jsxs)(n.table,{children:[(0,r.jsx)(n.thead,{children:(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,r.jsx)(n.th,{children:"Required?"}),(0,r.jsx)(n.th,{children:"Default"}),(0,r.jsx)(n.th,{children:"Description"})]})}),(0,r.jsxs)(n.tbody,{children:[(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE"})}),(0,r.jsx)(n.td,{children:"Yes"}),(0,r.jsx)(n.td,{children:(0,r.jsx)(n.code,{children:"valkey"})}),(0,r.jsx)(n.td,{children:"The cache type to use"})]}),(0,r.jsxs)(n.tr,{children:[(0,r.jsx)(n.td,{style:{textAlign:"left"},children:(0,r.jsx)(n.code,{children:"CACHE_SCROBBLE_CONN"})}),(0,r.jsx)(n.td,{children:"Yes"}),(0,r.jsx)(n.td,{}),(0,r.jsxs)(n.td,{children:["The host/IP and port to connect to, prefixed with ",(0,r.jsx)(n.code,{children:"redis://"})," -- EX: ",(0,r.jsx)(n.code,{children:"redis://192.168.0.120:6379"})]})]})]})]})}),(0,r.jsx)(l.default,{value:"aio",label:"AIO",children:(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "cache": {\n "scrobble": {\n "provider": "valkey",\n "connection": "redis://192.168.0.120:6379"\n }\n },\n // ...\n}\n'})})})]})})]}),"\n",(0,r.jsx)(n.h3,{id:"debug-mode",children:"Debug Mode"}),"\n",(0,r.jsx)(n.p,{children:"Turning on Debug Mode will"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:'override and enable all optional "debugging" options found in configuration'}),"\n",(0,r.jsx)(n.li,{children:"set log output to DEBUG"}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"Use this as a shortcut for enabling output that can be used for troubleshooting and issue reporting. Be aware that logs will likely be VERY noisy while Debug Mode is on. You should only have this mode on while gathering logs for troubleshooting and then turn it off afterwards."}),"\n",(0,r.jsxs)(n.p,{children:["To set debug mode either add it to ",(0,r.jsxs)(n.a,{href:"./?configType=aio#configuration-types",children:["AIO ",(0,r.jsx)(n.code,{children:"config.json"})]})]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "debugMode": true,\n "sources": [...],\n // ...\n}\n'})}),"\n",(0,r.jsxs)(n.p,{children:["or set the ",(0,r.jsx)(n.a,{href:"./?configType=env#configuration-types",children:"ENV"})," ",(0,r.jsx)(n.code,{children:"DEBUG_MODE=true"})]}),"\n",(0,r.jsx)(n.h3,{id:"disable-web",children:"Disable Web"}),"\n",(0,r.jsx)(n.p,{children:"If you do not need the dashboard and/or ingress sources, or have security concerns about ingress and cannot control your hosting environment, the web server and API can be disabled."}),"\n",(0,r.jsx)(n.admonition,{type:"warning",children:(0,r.jsxs)(n.p,{children:["Any ",(0,r.jsxs)(n.strong,{children:[(0,r.jsx)(n.a,{href:"/configuration/sources#ingress",children:"ingress-based sources"})," will be unusable"]})," (Webscrobbler, etc...) if this is disabled."]})}),"\n",(0,r.jsx)(n.p,{children:"Disable using either:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["ENV ",(0,r.jsx)(n.code,{children:"DISABLE_WEB=true"})]}),"\n",(0,r.jsxs)(n.li,{children:["In ",(0,r.jsx)(n.a,{href:"./?configType=aio#configuration-types",children:"All-in-One File"})," use the top-level property ",(0,r.jsx)(n.code,{children:'"disableWeb": true'})]}),"\n"]}),"\n",(0,r.jsx)(n.h2,{id:"monitoring",children:"Monitoring"}),"\n",(0,r.jsx)(n.p,{children:"Multi-scrobbler supports some common webhooks and a healthcheck endpoint in order to monitor Sources and Clients for errors."}),"\n",(0,r.jsx)(n.h3,{id:"webhook-configurations",children:"Webhook Configurations"}),"\n",(0,r.jsxs)(n.p,{children:["Webhooks will ",(0,r.jsx)(n.strong,{children:"push"})," a notification to your configured servers on these events:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"Source polling started"}),"\n",(0,r.jsx)(n.li,{children:"Source polling retry"}),"\n",(0,r.jsx)(n.li,{children:"Source polling stopped on error"}),"\n",(0,r.jsx)(n.li,{children:"Scrobble client scrobble failure"}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Webhooks are configured in the AIO ",(0,r.jsx)(n.a,{href:"#configuration-types",children:"config.json"})," file under the ",(0,r.jsx)(n.code,{children:"webhook"})," top-level property. Multiple webhooks may be configured for each webhook type."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sources": [\n //...\n ],\n "clients": [\n //...\n ],\n "webhooks": [\n {\n "name": "FirstGotifyServer",\n "type": "gotify",\n "url": "http://192.168.0.100:8070",\n "token": "abcd"\n },\n {\n "name": "SecondGotifyServer",\n "type": "gotify",\n //...\n },\n {\n "name": "NtfyServerOne",\n "type": "ntfy",\n //...\n },\n //...\n ]\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"gotify",children:(0,r.jsx)(n.a,{href:"https://gotify.net/",children:"Gotify"})}),"\n",(0,r.jsxs)(n.p,{children:["Refer to the ",(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23/%23%2Fdefinitions%2FGotifyConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:"config schema for GotifyConfig"})]}),"\n",(0,r.jsxs)(n.p,{children:["multi-scrobbler optionally supports setting message notification priority via ",(0,r.jsx)(n.code,{children:"info"})," ",(0,r.jsx)(n.code,{children:"warn"})," and ",(0,r.jsx)(n.code,{children:"error"})," mappings."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",metastring:'title="config.json"',children:'{\n "type": "gotify",\n "name": "MyGotifyFriendlyNameForLogs",\n "url": "http://192.168.0.100:8070",\n "token": "AQZI58fA.rfSZbm",\n "priorities": {\n "info": 5,\n "warn": 7,\n "error": 10\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"ntfy",children:(0,r.jsx)(n.a,{href:"https://ntfy.sh/",children:"Ntfy"})}),"\n",(0,r.jsxs)(n.p,{children:["Refer to the ",(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23/%23%2Fdefinitions%2FNtfyConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:"config schema for NtfyConfig"})]}),"\n",(0,r.jsxs)(n.p,{children:["multi-scrobbler optionally supports setting message notification priority via ",(0,r.jsx)(n.code,{children:"info"})," ",(0,r.jsx)(n.code,{children:"warn"})," and ",(0,r.jsx)(n.code,{children:"error"})," mappings."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",metastring:'title="config.json"',children:'{\n "type": "ntfy",\n "name": "MyNtfyFriendlyNameForLogs",\n "url": "http://192.168.0.100:9991",\n "topic": "RvOwKJ1XtIVMXGLR",\n "username": "Optional",\n "password": "Optional",\n "priorities": {\n "info": 3,\n "warn": 4,\n "error": 5\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"apprise",children:(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api",children:"Apprise"})}),"\n",(0,r.jsxs)(n.p,{children:["Refer to the ",(0,r.jsx)(n.a,{href:"https://json-schema.app/view/%23/%23%2Fdefinitions%2FAppriseConfig?url=https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Faio.json",children:"config schema for AppriseConfig"})]}),"\n",(0,r.jsxs)(n.p,{children:["multi-scrobbler supports ",(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution",children:"stateless"})," and ",(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution",children:"persistent storage"})," endpoints as well as ",(0,r.jsx)(n.a,{href:"https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging",children:"tags"}),"/"]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "type": "apprise",\n "name": "MyAppriseFriendlyNameForLogs",\n "host": "http://192.168.0.100:8080",\n "urls": ["gotify://192.168.0.101:8070/MyToken"], // stateless endpoints\n "keys": ["e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17"], //persistent storage endpoints\n "tags": ["my","optional","tags"]\n}\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"health-endpoint",children:"Health Endpoint"}),"\n",(0,r.jsxs)(n.p,{children:["An endpoint for monitoring the health of sources/clients is available at GET ",(0,r.jsx)(n.code,{children:"http://YourMultiScrobblerDomain/health"})]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Returns ",(0,r.jsx)(n.code,{children:"200 OK"})," when ",(0,r.jsx)(n.strong,{children:"everything"})," is working or ",(0,r.jsx)(n.code,{children:"500 Internal Server Error"})," if ",(0,r.jsx)(n.strong,{children:"anything"})," is not"]}),"\n",(0,r.jsxs)(n.li,{children:["The plain url (",(0,r.jsx)(n.code,{children:"/health"}),") aggregates status of ",(0,r.jsx)(n.strong,{children:"all clients/sources"})," -- so any failing client/source will make status return 500","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Use query params ",(0,r.jsx)(n.code,{children:"type"})," or ",(0,r.jsx)(n.code,{children:"name"})," to restrict client/sources aggregated IE ",(0,r.jsx)(n.code,{children:"/health?type=spotify"})," or ",(0,r.jsx)(n.code,{children:"/health?name=MyMaloja"})]}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(n.li,{children:["On 500 the response returns a JSON payload with ",(0,r.jsx)(n.code,{children:"messages"})," array that describes any issues","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["For any clients/sources that require authentication ",(0,r.jsx)(n.code,{children:"/health"})," will return 500 if they are ",(0,r.jsx)(n.strong,{children:"not authenticated"})]}),"\n",(0,r.jsxs)(n.li,{children:["For sources that poll (spotify, yt music, subsonic) ",(0,r.jsx)(n.code,{children:"/health"})," will 500 if they are ",(0,r.jsx)(n.strong,{children:"not polling"})]}),"\n"]}),"\n"]}),"\n"]})]})}function p(e={}){let{wrapper:n}={...(0,o.a)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(f,{...e})}):f(e)}},49437:function(e,n,i){i.d(n,{Z:()=>h}),i(67294);var s=i(75752),r=i.n(s),o=i(29097),t=i(77084);i(8267);var l=i(11142),c=i.n(l),a=i(85893);let d=e=>{let n,{data:i,name:s,client:t=!1}=e;try{n=c().parse(i)}catch(e){return console.error(e),(0,a.jsxs)(o.Z,{type:"danger",title:"Unexpected Error",children:[(0,a.jsx)("p",{children:"Example component crashed because of error!"}),(0,a.jsx)(r(),{children:e.message})]})}n=(n=n.filter(e=>void 0===e.configureAs||e.configureAs===(t?"client":"source"))).map(e=>({...e,type:s}));let l={[t?"clients":"sources"]:n};return(0,a.jsx)(r(),{title:"CONFIG_DIR/config.json",language:"json5",children:JSON.stringify(l,null,2)})},h=e=>(0,a.jsx)(t.default,{fallback:({error:e})=>(0,a.jsx)("div",{children:(0,a.jsxs)("p",{children:["Example component crashed because of error: ",e.message,"."]})}),children:(0,a.jsx)(d,{...e})})},94728:function(e,n,i){i.d(n,{Z:()=>h}),i(67294);var s=i(75752),r=i.n(s),o=i(29097),t=i(77084);i(8267);var l=i(11142),c=i.n(l),a=i(85893);let d=e=>{let n,{data:i,client:s=!1,...t}=e;try{n=c().parse(i)}catch(e){return console.error(e),(0,a.jsxs)(o.Z,{type:"danger",title:"Unexpected Error",children:[(0,a.jsx)("p",{children:"Example component crashed because of error!"}),(0,a.jsx)(r(),{children:e.message})]})}return n=n.filter(e=>void 0===e.configureAs||e.configureAs===(s?"client":"source")),(0,a.jsx)(r(),{...t,language:"json5",children:JSON.stringify(n,null,2)})},h=e=>(0,a.jsx)(t.default,{fallback:({error:e})=>(0,a.jsx)("div",{children:(0,a.jsxs)("p",{children:["Example component crashed because of error: ",e.message,"."]})}),children:(0,a.jsx)(d,{...e})})},13727:function(e,n,i){i.d(n,{Z:()=>o});var s=i(67294),r=i(85893);let o=e=>{let{children:n,lower:i,client:o=!1}=e,t=n;void 0===t&&(t=(0,r.jsxs)(s.Fragment,{children:[i?"explore":"Explore"," the schema with an example and live editor/validator"]}));let l=`https://json-schema.app/view/%23/%23%2Fdefinitions%2F${e.objectName}`;return(0,r.jsx)("a",{target:"_blank",href:`${l}?url=${o?"https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Fclient.json":"https%3A%2F%2Fraw.githubusercontent.com%2FFoxxMD%2Fmulti-scrobbler%2Fmaster%2Fsrc%2Fbackend%2Fcommon%2Fschema%2Fsource.json"}`,children:t})}},51952:function(e,n,i){i.d(n,{Z:()=>s});let s='[\n {\n "name": "MySpotify",\n "enable": true,\n "clients": [],\n "data": {\n "clientId": "a89cba1569901a0671d5a9875fed4be1",\n "clientSecret": "ec42e09d5ae0ee0f0816ca151008412a",\n "redirectUri": "http://localhost:9078/callback",\n "interval": 60\n }\n }\n]\n'}}]);
+1
assets/js/094000d3.ef9aab55.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["9325"],{77994:function(e,n,i){i.r(n),i.d(n,{frontMatter:()=>r,default:()=>h,toc:()=>c,metadata:()=>s,assets:()=>l,contentTitle:()=>o});var s=JSON.parse('{"id":"configuration/transforms/transforms","title":"Enhancing Scrobbles","description":"Multi-scrobbler configs support the ability to enhance scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler\'s lifecycle.","source":"@site/docs/configuration/transforms/transforms.mdx","sourceDirName":"configuration/transforms","slug":"/configuration/transforms/","permalink":"/multi-scrobbler/configuration/transforms/","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/transforms/transforms.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"sidebar_position":4,"title":"Enhancing Scrobbles","toc_max_heading_level":5},"sidebar":"tutorialSidebar","previous":{"title":"Kitchen Sink","permalink":"/multi-scrobbler/configuration/kitchensink"},"next":{"title":"Musicbrainz Stage","permalink":"/multi-scrobbler/configuration/transforms/musicbrainz"}}'),a=i(85893),t=i(50065);let r={sidebar_position:4,title:"Enhancing Scrobbles",toc_max_heading_level:5},o=void 0,l={},c=[{value:"Journey of a Scrobble",id:"journey-of-a-scrobble",level:2},{value:"Lifecyle Hooks",id:"lifecyle-hooks",level:2},{value:"TLDR",id:"tldr",level:5},{value:"Hook",id:"hook",level:3},{value:"Modification Stage",id:"stage",level:2},{value:"Configuring Stages",id:"configuring-stages",level:3},{value:"Overriding Configuration",id:"overriding-configuration",level:4},{value:"Rules for Play Data",id:"stage-rules",level:3},{value:"Conditional Modification",id:"conditional-modification",level:2},{value:"Logging",id:"logging",level:2}];function d(e){let n={a:"a",admonition:"admonition",code:"code",em:"em",h2:"h2",h3:"h3",h4:"h4",h5:"h5",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,t.a)(),...e.components},{Details:i}=n;return i||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,a.jsxs)(a.Fragment,{children:[(0,a.jsxs)(n.p,{children:["Multi-scrobbler configs support the ability to enhance scrobble data in an automated fashion by matching and replacing strings in ",(0,a.jsx)(n.strong,{children:"title, artists, and album"})," at many different times in multi-scrobbler's lifecycle."]}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsx)("summary",{children:"Why Would I Do This?"}),(0,a.jsx)(n.p,{children:'You may need to "clean up" data from a Source or before sending to a scrobble Client due to any number of reasons:'}),(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:["ID3 tags in your music collection are dirty or have repeating garbage IE ",(0,a.jsx)(n.code,{children:"[YourMusicSource.com] My Artist - My Title"})]}),"\n",(0,a.jsxs)(n.li,{children:["A Source's service often incorrectly adds data to some field IE ",(0,a.jsx)(n.code,{children:"My Artist - My Title (Album Version)"})," when the title should just be ",(0,a.jsx)(n.code,{children:"My Title"})]}),"\n",(0,a.jsx)(n.li,{children:"An Artist you listen to often is spelled different between a Source and a Client which causes duplicate scrobbles"}),"\n"]}),(0,a.jsx)(n.p,{children:"In any scenario where a repeating pattern can be found in the data it would be nice to be able to fix it before the data gets downstream or to help prevent duplicate scrobbling. Multi-scrobbler can help you do this."})]}),"\n",(0,a.jsx)(n.h2,{id:"journey-of-a-scrobble",children:"Journey of a Scrobble"}),"\n",(0,a.jsx)(n.p,{children:"First, let's recap the lifecycle of a scrobble in multi-scrobbler:"}),"\n",(0,a.jsxs)(n.p,{children:[(0,a.jsx)(n.strong,{children:"Sources"})," are the beginning of the journey for a ",(0,a.jsx)(n.strong,{children:"Play"})," (song you've listened to long enough to be scrobblable)"]}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:["A Source finds a new valid ",(0,a.jsx)(n.strong,{children:"Play"})]}),"\n",(0,a.jsxs)(n.li,{children:["The Source ",(0,a.jsx)(n.strong,{children:"compares"})," this new Play to all the other Plays it has already seen, if the Play is unique (title/artist/album/listened datetime) then..."]}),"\n",(0,a.jsxs)(n.li,{children:["The Source ",(0,a.jsx)(n.strong,{children:"discovers"})," the Play, adds it to Plays it has seen already, and broadcasts the Play should be scrobbled to all Clients"]}),"\n"]}),"\n",(0,a.jsxs)(n.p,{children:["Scrobble ",(0,a.jsx)(n.strong,{children:"Clients"})," listen for discovered Plays from Sources, then..."]}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:["A Client receives a ",(0,a.jsx)(n.strong,{children:"Play"})," from a Source"]}),"\n",(0,a.jsxs)(n.li,{children:["The Client ",(0,a.jsx)(n.strong,{children:"compares"})," this Play to all the other scrobbles it has already seen, if the Play is unique (title/artist/album/listened datetime) then..."]}),"\n",(0,a.jsxs)(n.li,{children:["The Client ",(0,a.jsx)(n.strong,{children:"scrobbles"})," the Play downstream to the scrobble service and adds it as a Scrobble it has seen already"]}),"\n"]}),"\n",(0,a.jsx)(n.h2,{id:"lifecyle-hooks",children:"Lifecyle Hooks"}),"\n",(0,a.jsx)(n.p,{children:"You'll notice there is a pattern above that looks like this:"}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.strong,{children:"Before"})," data is compared"]}),"\n",(0,a.jsxs)(n.li,{children:["Data is ",(0,a.jsx)(n.strong,{children:"compared"})]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.strong,{children:"After"})," data is compared"]}),"\n"]}),"\n",(0,a.jsx)(n.p,{children:"These points, during both Source and Client processes, are when you can hook into the scrobble lifecycle and modify it."}),"\n",(0,a.jsx)(n.h5,{id:"tldr",children:"TLDR"}),"\n",(0,a.jsxs)(n.p,{children:["In more concrete terms this is the structure of hooks within a configuration (can be used in any ",(0,a.jsx)(n.strong,{children:"Source"})," or ",(0,a.jsx)(n.strong,{children:"Client"}),"):"]}),"\n",(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json" {10-14}',children:'[\n {\n "name": "myLastFm",\n "enable": true,\n "configureAs": "source",\n "data": {\n // ...\n },\n "options": {\n "playTransform": {\n "preCompare": [/* ... */],\n "compare": [/* ... */],\n "postCompare": [/* ... */]\n }\n }\n }\n]\n'})}),"\n",(0,a.jsx)(n.h3,{id:"hook",children:"Hook"}),"\n",(0,a.jsxs)(n.p,{children:["For ",(0,a.jsx)(n.strong,{children:"Sources"}),":"]}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"preCompare"})," - modify Play data immediately when received"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"compare"})," - temporarily modify Play data when it is being compared to see if Play was already discovered"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"postCompare"})," - modify Play data before sending to scrobble ",(0,a.jsx)(n.strong,{children:"Clients"})]}),"\n"]}),"\n",(0,a.jsxs)(n.p,{children:["For ",(0,a.jsx)(n.strong,{children:"Clients"}),":"]}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"preCompare"})," - modify Play data immediately when received"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"compare"})," - temporarily modify Play data when it is being compared to see if it was already scrobbled"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"postCompare"})," - modify Play data before scrobbling it to downstream service and adding to already seen scrobbles"]}),"\n"]}),"\n",(0,a.jsxs)(n.admonition,{type:"tip",children:[(0,a.jsxs)(n.p,{children:["Keep in mind that modifying Scrobble/Play data earlier in the lifecycle will affect that data at all times later in the lifecycle (except when using the ",(0,a.jsx)(n.strong,{children:"compare"})," hook)."]}),(0,a.jsxs)(n.p,{children:["For example, to modify the track so it's the same anywhere it is processed in multi-scrobbler you only need to modify it in the ",(0,a.jsx)(n.strong,{children:"Source's"})," ",(0,a.jsx)(n.code,{children:"preCompare"})," hook because all later processes will receive the data with the modified track."]})]}),"\n",(0,a.jsx)(n.admonition,{title:"TLDR",type:"tip",children:(0,a.jsx)(n.p,{children:(0,a.jsxs)(n.strong,{children:["To modify a scrobble coming from one of your Sources use the ",(0,a.jsx)(n.code,{children:"preCompare"})," hook."]})})}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsxs)("summary",{children:["Using ",(0,a.jsx)(n.code,{children:"compare"})," hook"]}),(0,a.jsxs)(n.p,{children:["The ",(0,a.jsx)(n.code,{children:"compare"})," ",(0,a.jsx)(n.a,{href:"#hook",children:"hook"})," is slightly different than ",(0,a.jsx)(n.code,{children:"preCompare"})," and ",(0,a.jsx)(n.code,{children:"postCompare"}),". It consists of an object where you define which side(s) of the comparison should be modified. It also ",(0,a.jsx)(n.strong,{children:"does not modify downstream data!"})," Instead, the modifications are made only for use in the comparison."]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json"',children:'[\n {\n "name": "myLastFm",\n // ...\n "options": {\n "playTransform": {\n "compare": [\n {\n "candidate": {/* ... */}, // modify the "new" Play being compared\n "existing": {/* ... */}, // modify all "existing" Play/Scrobbles the new Play is being compared against\n }\n ],\n }\n }\n }\n]\n'})})]}),"\n",(0,a.jsx)(n.h2,{id:"stage",children:"Modification Stage"}),"\n",(0,a.jsxs)(n.p,{children:["Each ",(0,a.jsx)(n.a,{href:"#hook",children:(0,a.jsx)(n.strong,{children:"hook"})})," is made up of one or more ",(0,a.jsx)(n.strong,{children:"Stages"}),". A Stage is a self-contained, unique way of enhancing or modifying the Play data. Some examples of a Stage:"]}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:["The ",(0,a.jsx)(n.a,{href:"/configuration/transforms/user",children:"User"})," Stage allows a user to define search-and-replace terms for Artist/Title/Album"]}),"\n",(0,a.jsxs)(n.li,{children:["The ",(0,a.jsx)(n.a,{href:"/configuration/transforms/native",children:"Native"})," Stage uses MS's built-in heuristics to extract Artists from a single Artist string"]}),"\n",(0,a.jsxs)(n.li,{children:["The ",(0,a.jsx)(n.a,{href:"/configuration/transforms/musicbrainz",children:"Musicbrainz"})," Stage tries to match Play data with the Musicbrainz database and to standardize the Artist/Title/Album data"]}),"\n"]}),"\n",(0,a.jsx)(n.p,{children:"Each Stage in a Hook receives Play data from the previous Stage."}),"\n",(0,a.jsxs)(n.p,{children:["Within a hook, each Stage minimally consists of a ",(0,a.jsx)(n.code,{children:"type"})," to identify what Stage it is along with any other data specific to that stage:"]}),"\n",(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n "type": "native"\n // optional, stage specific data here...\n}\n'})}),"\n",(0,a.jsx)(n.h3,{id:"configuring-stages",children:"Configuring Stages"}),"\n",(0,a.jsxs)(n.p,{children:["Stages may be globally configured using ",(0,a.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"})," ",(0,a.jsx)(n.code,{children:"config.json"})," file in the top-level ",(0,a.jsx)(n.code,{children:"transformers"})," block."]}),"\n",(0,a.jsx)(n.p,{children:"Each Stage consists of:"}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"type"})," the type of Stage"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"name"})," a unique name for the Stage, to be (potentially) used with hooks"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"defaults"})," - An object defining default configuration for this stage, when used in a Hook."]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:"data"})," - An object containing any data required to initially configure the stage itself (Example: API URL, username, password, etc...)"]}),"\n"]}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsx)("summary",{children:"Example"}),(0,a.jsxs)(n.p,{children:["Your ",(0,a.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "native",\n "name": "MyNativeTransformer",\n "defaults": {\n // default delimiters when this Stage is used in a hook\n "delimiters": [\n "\u2022"\n ],\n // default delimiters when this Stage is used in a hook\n "artistsParseFrom": ["artists"]\n }\n }\n ]\n}\n'})}),(0,a.jsxs)(n.p,{children:["In a ",(0,a.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,a.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native"\n // when "name" is not defined, uses first found "native" transformer\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,a.jsx)(n.p,{children:"Multiple stages of the same type may be configured, allowing you to define several sets of default behavior."}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsx)("summary",{children:"Example"}),(0,a.jsxs)(n.p,{children:["Your ",(0,a.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "native",\n "name": "DotTransformer",\n "defaults": {\n "delimiters": [\n "\u2022"\n ],\n "artistsParseFrom": ["artists"]\n }\n },\n {\n "type": "native",\n "name": "TitleOnly",\n "defaults": {\n // extracts and uses *only* artists found in title string\n "artistsParseFrom": ["title"]\n }\n }\n ]\n}\n'})}),(0,a.jsxs)(n.p,{children:["In a ",(0,a.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,a.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native"\n "name": "DotTransformer"\n }\n ]\n }\n }\n }\n]\n'})}),(0,a.jsxs)(n.p,{children:["In a ",(0,a.jsx)(n.a,{href:"/configuration/sources/vlc",children:"VLC"})," ",(0,a.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="vlc.json"',children:'[\n { \n "name": "MyVLC",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native"\n "name": "TitleOnly"\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,a.jsx)(n.h4,{id:"overriding-configuration",children:"Overriding Configuration"}),"\n",(0,a.jsx)(n.p,{children:"The default configuration you set for your Stage may be overridden in any usage of the Stage within a Hook."}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsx)("summary",{children:"Example"}),(0,a.jsxs)(n.p,{children:["Your ",(0,a.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "native",\n "name": "MyNativeTransformer",\n "defaults": {\n // default delimiters when this Stage is used in a hook\n "delimiters": [\n "\u2022"\n ],\n // default delimiters when this Stage is used in a hook\n "artistsParseFrom": ["artists"]\n }\n }\n ]\n}\n'})}),(0,a.jsxs)(n.p,{children:["In a ",(0,a.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,a.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native"\n "name": "MyNativeTransformer",\n // overrides property from "defaults"\n "artistsParseFrom": ["artists", "title"]\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,a.jsx)(n.h3,{id:"stage-rules",children:"Rules for Play Data"}),"\n",(0,a.jsxs)(n.p,{children:["Each ",(0,a.jsx)(n.a,{href:"#stage",children:"Stage"})," may specify whether it should apply the resulting transformation to different parts of the Play data by specifying ",(0,a.jsx)(n.code,{children:"title"}),", ",(0,a.jsx)(n.code,{children:"artists"})," and/or ",(0,a.jsx)(n.code,{children:"album"})," in the Stage object."]}),"\n",(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n "type": "native",\n // ...\n "title": false, // will not apply any changes to Play title\n "artists": {\n "when": {/* ... */}, // will only apply changes to Play artists if "when" is satisfied\n /* ... */\n },\n "albumArtists": true, // will always apply changes to Play album artists\n "album": true, // will always apply changes to Play album\n "duration": true, // will always apply changes to Play duration (length of track)\n "meta": true, // will always apply changes to Play meta (MBIDs, spotify links, etc...)\n}\n'})}),"\n",(0,a.jsx)(n.p,{children:"The actual value of each property may be different for each Stage. Check the docs for the Stage you want to use to see its usage of each."}),"\n",(0,a.jsxs)(n.p,{children:["Generically, though, each property may be some value ",(0,a.jsx)(n.strong,{children:"or"})," an object combining a ",(0,a.jsxs)(n.a,{href:"#conditional-modification",children:[(0,a.jsx)(n.code,{children:"when"})," condition"]})," and that value."]}),"\n",(0,a.jsx)(n.p,{children:"If none of the properties are specified in the stage then it's assumed all transformed data should be used."}),"\n",(0,a.jsx)(n.admonition,{type:"note",children:(0,a.jsxs)(n.p,{children:["Specifying these Rules is ",(0,a.jsx)(n.strong,{children:"not"})," the same as ",(0,a.jsx)(n.a,{href:"#configuring-stages",children:"configuring the Stage"}),". Rules only determine if the ",(0,a.jsx)(n.em,{children:"result"})," of the transformation should be used (replace) the existing Play Data."]})}),"\n",(0,a.jsx)(n.h2,{id:"conditional-modification",children:"Conditional Modification"}),"\n",(0,a.jsxs)(n.p,{children:[(0,a.jsx)(n.a,{href:"#stage",children:"Stages"})," within a ",(0,a.jsx)(n.a,{href:"#hook",children:"Hook"}),", and ",(0,a.jsx)(n.a,{href:"#stage-rules",children:"Rules"})," within each Stage, support a ",(0,a.jsx)(n.code,{children:"when"})," object for testing ",(0,a.jsx)(n.strong,{children:"if they should be run."})]}),"\n",(0,a.jsxs)(n.p,{children:["The ",(0,a.jsx)(n.code,{children:"when"})," object may have propertes for rule. Each property may be a string or regular expression. The value of the property is used to match the ",(0,a.jsx)(n.strong,{children:"pre-transformation"})," values from Play data."]}),"\n",(0,a.jsxs)(n.p,{children:["All parts of an individual ",(0,a.jsx)(n.code,{children:"when"}),' clause must test true to "pass" but if ',(0,a.jsx)(n.strong,{children:"any"})," ",(0,a.jsx)(n.code,{children:"when"})," clauses pass the Stage/Rule is processed."]}),"\n",(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n "when":\n {\n "artist": "Elephant Gym", // Play must have an artist matching "Elephant Gym" (AND)\n "album": "Dreams" // Play object must have an album matching "Dreams" (AND)\n }\n}\n'})}),"\n",(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n "when": [\n {\n "artist": "Elephant Gym", // Play must have an artist matching "Elephant Gym" (AND)\n "album": "Dreams" // Play object must have an album matching "Dreams" (AND)\n },\n // OR\n {\n "title": "/(Remastered)$/", // Play title must match regular expression (AND)\n "album": "Various Artists" // Play album must match "Various Artists" (AND)\n }\n ]\n}\n'})}),"\n",(0,a.jsx)(n.p,{children:"More succinctly:"}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:["All parts (",(0,a.jsx)(n.code,{children:"artist"})," ",(0,a.jsx)(n.code,{children:"album"})," ",(0,a.jsx)(n.code,{children:"albumArtist"})," ",(0,a.jsx)(n.code,{children:"duration"})," ",(0,a.jsx)(n.code,{children:"meta"})," ",(0,a.jsx)(n.code,{children:"title"}),") of a ",(0,a.jsx)(n.code,{children:"when"})," are ",(0,a.jsx)(n.code,{children:"AND"})," conditions"]}),"\n",(0,a.jsxs)(n.li,{children:["All part-objects in the ",(0,a.jsx)(n.code,{children:"when"})," array are ",(0,a.jsx)(n.code,{children:"OR"})," conditions"]}),"\n"]}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsxs)("summary",{children:["Example of Stage with ",(0,a.jsx)(n.code,{children:"when"})," condition"]}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n // IF the artist is Elephant Gym \n // THEN Run native stage\n "playTransform": {\n "preCompare": [\n {\n "type": "native",\n "when": [\n {\n "artist": "/Elephant Gym/"\n }\n ]\n }\n ],\n }\n}\n'})})]}),"\n",(0,a.jsxs)(i,{children:[(0,a.jsx)("summary",{children:"Example of individual rule with when condition"}),(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n // Always run native Stage\n //\n // IF artist matches "Elephant Gym"\n // THEN use result of native stage for "artists" of Play data\n "playTransform": {\n "preCompare": {\n "type": "native",\n "artists":\n {\n "when": [\n {\n "artist": "/Elephant Gym/"\n }\n ]\n },\n }\n }\n}\n'})})]}),"\n",(0,a.jsx)(n.h2,{id:"logging",children:"Logging"}),"\n",(0,a.jsxs)(n.p,{children:["MS can log the output of Stage transformations if/when they occur. In the ",(0,a.jsx)(n.code,{children:"playTransform"})," object of a Source/Client config use ",(0,a.jsx)(n.code,{children:"log"}),":"]}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:'"log": true'})," => Output original play + final transformed output of last Stage in the array"]}),"\n",(0,a.jsxs)(n.li,{children:[(0,a.jsx)(n.code,{children:'"log": "all"'})," => Output original play + final transformed output of ",(0,a.jsx)(n.strong,{children:"each"})," Stage in the array"]}),"\n"]}),"\n",(0,a.jsx)(n.pre,{children:(0,a.jsx)(n.code,{className:"language-json5",children:'{\n "name": "myThing",\n "data": {/*...*/},\n "options": {\n "playTransform": {\n "preCompare": {/*...*/},\n "log": true\n }\n }\n}\n'})})]})}function h(e={}){let{wrapper:n}={...(0,t.a)(),...e.components};return n?(0,a.jsx)(n,{...e,children:(0,a.jsx)(d,{...e})}):d(e)}}}]);
-1
assets/js/0ce74438.5ed305d3.js
···11-(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["3385"],{66210:function(e,t,i){"use strict";i.d(t,{Z:()=>f}),i(67294);var s=i(646),r=JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"sourceDefaults":{"$ref":"#/definitions/SourceDefaults"},"clientDefaults":{"$ref":"#/definitions/ClientDefaults"},"sources":{"type":"array","items":{"$ref":"#/definitions/SourceAIOConfig"}},"clients":{"type":"array","items":{"$ref":"#/definitions/ClientAIOConfig"}},"webhooks":{"type":"array","items":{"$ref":"#/definitions/WebhookConfig"}},"port":{"type":"number","description":"Set the port the multi-scrobbler UI will be served from","default":9078,"examples":[9078]},"baseUrl":{"type":"string","description":"Set the Base URL the application should assume the UI is served from.\\n\\nThis will affect how default redirect URLs are generated (spotify, lastfm, deezer) and some logging messages.\\n\\nIt will NOT set the actual interface/IP that the application is listening on.\\n\\nThis can also be set using the BASE_URL environmental variable.","default":"http://localhost","examples":["http://localhost","http://192.168.0.101","https://ms.myDomain.tld"]},"logging":{"$ref":"#/definitions/LogOptions"},"disableWeb":{"type":"boolean","description":"Disable web server from running/listening on port.\\n\\nThis will also make any ingress sources (Plex, Jellyfin, Tautulli, etc...) unusable"},"debugMode":{"type":"boolean","description":"Enables ALL relevant logging and debug options for all sources/clients, when none are defined.\\n\\nThis is a convenience shortcut for enabling all output needed to troubleshoot an issue and does not need to be on for normal operation.\\n\\nIt can also be enabled with the environmental variable DEBUG_MODE=true","default":false,"examples":[false]},"cache":{"$ref":"#/definitions/CacheConfigOptions"}},"definitions":{"SourceDefaults":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"SourceDefaults"},"LogLevel":{"type":"string","enum":["silent","fatal","error","warn","info","log","verbose","debug"],"description":"Names of log levels that can be invoked on the logger\\n\\nFrom lowest to highest:\\n\\n* `debug`\\n* `verbose`\\n* `log`\\n* `info`\\n* `warn`\\n* `error`\\n* `fatal`\\n* `silent` (will never output anything)\\n\\nWhen used in `LogOptions` specifies the **minimum** level the output should log at.","title":"LogLevel"},"FileLogOptions":{"type":"object","properties":{"timestamp":{"type":"string","enum":["unix","iso","auto"],"description":"For rolling log files\\n\\nWhen\\n* value passed to rolling destination is a string (`path` from LogOptions is a string) and\\n* `frequency` is defined\\n\\nThis determines the format of the datetime inserted into the log file name:\\n\\n* `unix` - unix epoch timestamp in milliseconds\\n* `iso` - Full [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) datetime IE \'2024-03-07T20:11:34Z\'\\n* `auto`\\n * When frequency is `daily` only inserts date IE YYYY-MM-DD\\n * Otherwise inserts full ISO8601 datetime","default":"auto"},"size":{"type":["number","string"],"description":"The maximum size of a given rolling log file.\\n\\nCan be combined with frequency. Use k, m and g to express values in KB, MB or GB.\\n\\nNumerical values will be considered as MB.","default":"10MB"},"frequency":{"anyOf":[{"type":"string","enum":["daily"]},{"type":"string","enum":["hourly"]},{"type":"number"}],"description":"The amount of time a given rolling log file is used. Can be combined with size.\\n\\nUse `daily` or `hourly` to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used.\\n\\nNumerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.","default":"daily"},"path":{"anyOf":[{"type":"string"},{"$comment":"() => string"}],"description":"The path and filename to use for log files.\\n\\nIf using rolling files the filename will be appended with `.N` (a number) BEFORE the extension based on rolling status.\\n\\nMay also be specified using env LOG_PATH or a function that returns a string.\\n\\nIf path is relative the absolute path will be derived from `logBaseDir` (in `LoggerAppExtras`) which defaults to CWD","default":"./logs/app.log"},"level":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false}],"description":"Specify the minimum log level to output to rotating files. If `false` no log files will be created."}},"title":"FileLogOptions"},"ScrobbleThresholds":{"type":"object","properties":{"duration":{"type":["number","null"],"description":"The number of seconds a track has been listened to before it should be considered scrobbled.\\n\\nSet to null to disable.","default":240,"examples":[240]},"percent":{"type":["number","null"],"description":"The percentage (as an integer) of a track that should have been seen played before it should be scrobbled. Only used if the Source provides information about how long the track is.\\n\\nSet to null to disable.\\n\\nNOTE: This should be used with care when the Source is a \\"polling\\" type (has an \'interval\' property). If the track is short and the interval is too high MS may ignore the track if percentage is high because it had not \\"seen\\" the track for long enough from first discovery, even if you have been playing the track for longer.","default":50,"examples":[50]}},"title":"ScrobbleThresholds"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<SearchAndReplaceTerm>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<SearchAndReplaceTerm>"},"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>"},"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"artists":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"album":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"type":{"$ref":"#/definitions/StageTypeMetadata"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"artists":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"album":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"type":{"$ref":"#/definitions/StageTypeUser"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"album":{}},"required":["album","artists","title"]}],"title":"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"album":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"StageTypeMetadata":{"type":"string","enum":["spotify","listenbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"search":{},"replace":{}},"required":["search","replace"],"title":"ConditionalSearchAndReplaceTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"ClientDefaults":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"ClientDefaults"},"MatchLoggingOptions":{"type":"object","properties":{"onNoMatch":{"type":"boolean","description":"Log to DEBUG when a new track does NOT match an existing scrobble","default":false,"examples":[false]},"onMatch":{"type":"boolean","description":"Log to DEBUG when a new track DOES match an existing scrobble","default":false,"examples":[false]},"confidenceBreakdown":{"type":"boolean","description":"Include confidence breakdowns in track match logging, if applicable","default":false,"examples":[false]}},"description":"Scrobble matching (between new source track and existing client scrobbles) logging options. Used for debugging.","title":"MatchLoggingOptions"},"SourceAIOConfig":{"anyOf":[{"$ref":"#/definitions/SpotifySourceAIOConfig"},{"$ref":"#/definitions/PlexSourceAIOConfig"},{"$ref":"#/definitions/PlexApiSourceAIOConfig"},{"$ref":"#/definitions/TautulliSourceAIOConfig"},{"$ref":"#/definitions/DeezerSourceAIOConfig"},{"$ref":"#/definitions/DeezerInternalAIOConfig"},{"$ref":"#/definitions/ListenbrainzEndpointSourceAIOConfig"},{"$ref":"#/definitions/LastFMEndpointSourceAIOConfig"},{"$ref":"#/definitions/SubsonicSourceAIOConfig"},{"$ref":"#/definitions/JellySourceAIOConfig"},{"$ref":"#/definitions/JellyApiSourceAIOConfig"},{"$ref":"#/definitions/LastFmSouceAIOConfig"},{"$ref":"#/definitions/YTMusicSourceAIOConfig"},{"$ref":"#/definitions/MPRISSourceAIOConfig"},{"$ref":"#/definitions/MopidySourceAIOConfig"},{"$ref":"#/definitions/ListenBrainzSourceAIOConfig"},{"$ref":"#/definitions/JRiverSourceAIOConfig"},{"$ref":"#/definitions/KodiSourceAIOConfig"},{"$ref":"#/definitions/WebScrobblerSourceAIOConfig"},{"$ref":"#/definitions/ChromecastSourceAIOConfig"},{"$ref":"#/definitions/MalojaSourceAIOConfig"},{"$ref":"#/definitions/MusikcubeSourceAIOConfig"},{"$ref":"#/definitions/MusicCastSourceAIOConfig"},{"$ref":"#/definitions/MPDSourceAIOConfig"},{"$ref":"#/definitions/VLCSourceAIOConfig"},{"$ref":"#/definitions/IcecastSourceAIOConfig"},{"$ref":"#/definitions/AzuracastSourceAIOConfig"},{"$ref":"#/definitions/KoitoSourceAIOConfig"},{"$ref":"#/definitions/TealSourceAIOConfig"},{"$ref":"#/definitions/RockskySourceAIOConfig"}],"title":"SourceAIOConfig"},"SpotifySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SpotifySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["spotify"]}},"required":["data","type"],"title":"SpotifySourceAIOConfig"},"SpotifySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)\\n\\nIt is unlikely you should need to change this unless you scrobble many very short tracks often\\n\\nReading:\\n* https://developer.spotify.com/documentation/web-api/guides/rate-limits/\\n* https://medium.com/mendix/limiting-your-amount-of-calls-in-mendix-most-of-the-time-rest-835dde55b10e\\n * Rate limit may ~180 req/min\\n* https://community.spotify.com/t5/Spotify-for-Developers/Web-API-ratelimit/m-p/5503150/highlight/true#M7930\\n * Informally indicated as 20 req/sec? Probably for burstiness","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"spotify client id","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"clientSecret":{"type":"string","description":"spotify client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"spotify redirect URI -- required only if not the default shown here. URI must end in \\"callback\\"","default":"http://localhost:9078/callback","examples":["http://localhost:9078/callback"]}},"required":["clientId","clientSecret"],"title":"SpotifySourceData"},"CommonSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonSourceOptions"},"PlexSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","type"],"title":"PlexSourceAIOConfig"},"PlexSourceData":{"type":"object","properties":{"user":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\\n\\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"libraries":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of libraries to scrobble tracks from\\n\\nIf none are provided tracks from all libraries will be scrobbled","examples":[["Audio","Music"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\\n\\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName"]]}},"title":"PlexSourceData"},"PlexApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/PlexApiOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","options","type"],"title":"PlexApiSourceAIOConfig"},"PlexApiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"token":{"type":"string"},"url":{"type":"string","description":"http(s)://HOST:PORT of the Plex server to connect to"},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\\n\\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"}},"required":["url"],"title":"PlexApiData"},"PlexApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"ignoreInvalidCert":{"type":"boolean","description":"Ignore invalid cert errors when connecting to Plex\\n\\nUseful for Plex servers using \\"Required\\" Secure Connections with self-signed certificates\\n\\nDo not enable unless you know you need this.","default":false}},"title":"PlexApiOptions"},"TautulliSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["tautulli"]}},"required":["data","type"],"title":"TautulliSourceAIOConfig"},"DeezerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerSourceAIOConfig"},"DeezerData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"deezer client id","examples":["a89cba1569901a0671d5a9875fed4be1"]},"clientSecret":{"type":"string","description":"deezer client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"deezer redirect URI -- required only if not the default shown here. URI must end in \\"callback\\"","default":"http://localhost:9078/deezer/callback","examples":["http://localhost:9078/deezer/callback"]}},"required":["clientId","clientSecret"],"title":"DeezerData"},"DeezerInternalAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerInternalData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/DeezerInternalSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerInternalAIOConfig"},"DeezerInternalData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"arl":{"type":"string","description":"ARL retrieved from Deezer response header"},"userAgent":{"type":"string","description":"User agent","default":"Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"}},"required":["arl"],"title":"DeezerInternalData"},"DeezerInternalSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"fuzzyDiscoveryIgnore":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["aggressive"]}]}},"title":"DeezerInternalSourceOptions"},"ListenbrainzEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenbrainzEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlz"]}},"required":["type"],"title":"ListenbrainzEndpointSourceAIOConfig"},"ListenbrainzEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\\n\\nIf you are using multiple Listenbrainz endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\\n\\nExample:\\n\\n* slug: \'usera\' => API URL: http://localhost:9078/api/listenbrainz/usera\\n* slug: \'originb\' => API URL: http://localhost:9078/api/listenbrainz/originb\\n\\nIf no slug is found from an extension\'s incoming webhook event the first Listenbrainz source without a slug will be used"},"token":{"type":["string","null"],"description":"If an LZ submission request contains this token in the Authorization Header it will be used to match the submission with this Source\\n\\nSee: https://listenbrainz.readthedocs.io/en/latest/users/api/index.html#add-the-user-token-to-your-requests"}},"title":"ListenbrainzEndpointData"},"LastFMEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFMEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlfm"]}},"required":["type"],"title":"LastFMEndpointSourceAIOConfig"},"LastFMEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\\n\\nIf you are using multiple Last.fm endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\\n\\nExample:\\n\\n* slug: \'usera\' => API URL: http://localhost:9078/api/lastfm/usera\\n* slug: \'originb\' => API URL: http://localhost:9078/api/lastfm/originb\\n\\nIf no slug is found from an extension\'s incoming webhook event the first Last.fm source without a slug will be used"}},"title":"LastFMEndpointData"},"SubsonicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SubsonicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["subsonic"]}},"required":["data","type"],"title":"SubsonicSourceAIOConfig"},"SubsonicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the subsonic media server to query","examples":["http://airsonic.local"]},"user":{"type":"string","description":"Username to login to the server with","examples":[["MyUser"]]},"password":{"type":"string","description":"Password for the user to login to the server with","examples":["MyPassword"]},"ignoreTlsErrors":{"type":"boolean","description":"If your subsonic server is using self-signed certs you may need to disable TLS errors in order to get a connection\\n\\nWARNING: This should be used with caution as your traffic may not be encrypted.","default":false},"legacyAuthentication":{"type":"boolean","description":"Older Subsonic versions, and some badly implemented servers (Nextcloud), use legacy authentication which sends your password in CLEAR TEXT. This is less secure than the newer, recommended hashing authentication method but in some cases it is needed. See \\"Authentication\\" section here => https://www.subsonic.org/pages/api.jsp\\n\\nIf this option is not specified it will be turned on if the subsonic server responds with error code 41 \\"Token authentication not supported for LDAP users.\\" -- See Error Handling section => https://www.subsonic.org/pages/api.jsp","default":false},"usersAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\\n\\nIf undefined or an empty string/list MS will scrobble activity from all users"}},"required":["url","user","password"],"title":"SubsonicData"},"JellySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","type"],"title":"JellySourceAIOConfig"},"JellyData":{"type":"object","properties":{"users":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\\n\\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\\n\\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName1"]]}},"title":"JellyData"},"JellyApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/JellyApiOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","options","type"],"title":"JellyApiSourceAIOConfig"},"JellyApiData":{"type":"object","properties":{"url":{"type":"string","description":"HOST:PORT of the Jellyfin server to connect to"},"user":{"type":"string","description":"The username of the user to authenticate for or track scrobbles for"},"password":{"type":"string","description":"Password of the username to authenticate for\\n\\nRequired if `apiKey` is not provided."},"apiKey":{"type":"string","description":"API Key to authenticate with.\\n\\nRequired if `password` is not provided."},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\\n\\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"},"additionalAllowedLibraryTypes":{"type":"array","items":{},"description":"Allow MS to scrobble audio media in libraries classified other than \'music\'\\n\\n`librariesAllow` will achieve the same result as this but this is more convenient if you do not want to explicitly list every library name or are only using `librariesBlock`"},"allowUnknown":{"type":"boolean","description":"Force media with a type of \\"Unknown\\" to be counted as Audio","default":false},"frontendUrlOverride":{"type":"string","description":"HOST:PORT of the Jellyfin server that your browser will be able to access from the frontend (and thus load images and links from)\\nIf unspecified it will use the normal server HOST and PORT from the `url`\\nNecessary if you are using a reverse proxy or other network configuration that prevents the frontend from accessing the server directly\\n\\nENV: JELLYFIN_FRONTEND_URL_OVERRIDE"}},"required":["url","user"],"title":"JellyApiData"},"JellyApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"JellyApiOptions"},"LastFmSouceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFmSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `lastfm.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","type"],"title":"LastFmSouceAIOConfig"},"LastFmSourceData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \\"lastfm/callback\\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]},"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"}},"required":["apiKey","secret"],"title":"LastFmSourceData"},"YTMusicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/YTMusicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"type":"object","properties":{"logAuth":{"type":"boolean","description":"When true MS will log to DEBUG all of the credentials data it receives from YTM"},"logDiff":{"type":"boolean","description":"Always log history diff\\n\\nBy default MS will log to `WARN` if history diff is inconsistent but does not log if diff is expected (on new tracks found)\\nSet this to `true` to ALWAYS log diff on new tracks. Expected diffs will log to `DEBUG` and inconsistent diffs will continue to log to `WARN`","default":false},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}}},"type":{"type":"string","enum":["ytmusic"]}},"required":["type"],"title":"YTMusicSourceAIOConfig"},"YTMusicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"cookie":{"type":"string","description":"The cookie retrieved from the Request Headers of music.youtube.com after logging in.\\n\\nSee https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers for how to retrieve this value.","examples":["VISITOR_INFO1_LIVE=jMp2xA1Xz2_PbVc; __Secure-3PAPISID=3AxsXpy0M/AkISpjek; ..."]},"clientId":{"type":"string","description":"Google Cloud Console project OAuth Client ID\\n\\nGenerated from a custom OAuth Client, see docs"},"clientSecret":{"type":"string","description":"Google Cloud Console project OAuth Client Secret\\n\\nGenerated from a custom OAuth Client, see docs"},"redirectUri":{"type":"string","description":"Google Cloud Console project OAuth Client Authorized redirect URI\\n\\nGenerated from a custom OAuth Client, see docs. multi-scrobbler will generate a default based on BASE_URL.\\nOnly specify this if the default does not work for you."},"innertubeOptions":{"$ref":"#/definitions/InnertubeOptions","description":"Additional options for authorization and tailoring YTM client"}},"title":"YTMusicData"},"InnertubeOptions":{"type":"object","properties":{"po_token":{"type":"string","description":"Proof of Origin token\\n\\nMay be required if YTM starts returning 403"},"visitor_data":{"type":"string","description":"Visitor ID value found in VISITOR_INFO1_LIVE or visitorData cookie\\n\\nMay be required if YTM starts returning 403"},"account_index":{"type":"number","description":"If account login results in being able to choose multiple account, use a zero-based index to choose which one to monitor","examples":[0,1]},"location":{"type":"string"},"lang":{"type":"string"},"generate_session_locally":{"type":"boolean"},"device_category":{"type":"string"},"client_type":{"type":"string"},"timezone":{"type":"string"}},"title":"InnertubeOptions"},"MPRISSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPRISData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mpris"]}},"required":["data","type"],"title":"MPRISSourceAIOConfig"},"MPRISData":{"type":"object","properties":{"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any players that START WITH these values, case-insensitive","examples":[["spotify","vlc"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY from any players that START WITH these values, case-insensitive\\n\\nIf whitelist is present then blacklist is ignored","examples":[["spotify","vlc"]]}},"title":"MPRISData"},"MopidySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MopidyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mopidy"]}},"required":["data","type"],"title":"MopidySourceAIOConfig"},"MopidyData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Mopidy HTTP server to connect to\\n\\nYou MUST have Mopidy-HTTP extension enabled: https://mopidy.com/ext/http\\n\\nmulti-scrobbler connects to the WebSocket endpoint that ultimately looks like this => `ws://localhost:6680/mopidy/ws/`\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `ws://`\\n* Hostname => `localhost`\\n* Port => `6680`\\n* Path => `/mopidy/ws/`","examples":["ws://localhost:6680/mopidy/ws/"],"default":"ws://localhost:6680/mopidy/ws/"},"uriBlacklist":{"type":"array","items":{"type":"string"},"description":"Do not scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\\n\\nEX: Don\'t scrobble tracks from soundcloud by adding \'soundcloud\' to this list.\\n\\nList is ignored if uriWhitelist is used."},"uriWhitelist":{"type":"array","items":{"type":"string"},"description":"Only scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\\n\\nEX: Only scrobble tracks from soundcloud by adding \'soundcloud\' to this list."},"albumBlacklist":{"type":"array","items":{"type":"string"},"description":"Remove album data that matches any case-insensitive string from this list when scrobbling,\\n\\nFor certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \\"Soundcloud\\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake name to this list. Multi-scrobbler will still scrobble the track, just without the bad data.","examples":[["Soundcloud","Mixcloud"]],"default":["Soundcloud"]}},"title":"MopidyData"},"ListenBrainzSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenBrainzSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `listenbrainz.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","type"],"title":"ListenBrainzSourceAIOConfig"},"ListenBrainzSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzSourceData"},"JRiverSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JRiverData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jriver"]}},"required":["data","type"],"title":"JRiverSourceAIOConfig"},"JRiverData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the JRiver HTTP server to connect to\\n\\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:52199/MCWS/v1/`\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `http://`\\n* Hostname => `localhost`\\n* Port => `52199`\\n* Path => `/MCWS/v1/`","examples":["http://localhost:52199/MCWS/v1/"],"default":"http://localhost:52199/MCWS/v1/"},"username":{"type":"string","description":"If you have enabled authentication, the username you set"},"password":{"type":"string","description":"If you have enabled authentication, the password you set"}},"required":["url"],"title":"JRiverData"},"KodiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KodiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["kodi"]}},"required":["data","type"],"title":"KodiSourceAIOConfig"},"KodiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Kodi HTTP server to connect to\\n\\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:8080/jsonrpc`\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `http://`\\n* Hostname => `localhost`\\n* Port => `8080`\\n* Path => `/jsonrpc`","examples":["http://localhost:8080/jsonrpc"],"default":"http://localhost:8080/jsonrpc"},"username":{"type":"string","description":"The username set for Remote Control via Web Sever"},"password":{"type":"string","description":"The password set for Remote Control via Web Sever"}},"required":["url","username","password"],"title":"KodiData"},"WebScrobblerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/WebScrobblerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["webscrobbler"]}},"required":["type"],"title":"WebScrobblerSourceAIOConfig"},"WebScrobblerData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\\n\\nIn WebScrobbler\'s Webhook you must set an \'API URL\'. All MS WebScrobbler sources must start like:\\n\\nhttp://localhost:9078/api/webscrobbler\\n\\nIf you are using multiple WebScrobbler sources (scrobbles for many users) you must use a slug to match Sources with each users extension.\\n\\nExample:\\n\\n* slug: \'usera\' => API URL: http://localhost:9078/api/webscrobbler/usera\\n* slug: \'userb\' => API URL: http://localhost:9078/api/webscrobbler/userb\\n\\nIf no slug is found from an extension\'s incoming webhook event the first WebScrobbler source without a slug will be used"},"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Block scrobbling from specific WebScrobbler Connectors","examples":[["youtube"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only allow scrobbling from specific WebScrobbler Connectors","examples":[["mixcloud","soundcloud","bandcamp"]]}},"title":"WebScrobblerData"},"ChromecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ChromecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["chromecast"]}},"required":["data","type"],"title":"ChromecastSourceAIOConfig"},"ChromecastData":{"type":"object","properties":{"blacklistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any cast devices that START WITH these values, case-insensitive\\n\\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"whitelistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any cast device that START WITH these values, case-insensitive\\n\\nIf whitelist is present then blacklist is ignored\\n\\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"blacklistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any application that START WITH these values, case-insensitive","examples":[["spotify","pandora"]]},"whitelistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any application that START WITH these values, case-insensitive\\n\\nIf whitelist is present then blacklist is ignored","examples":[["spotify","pandora"]]},"useAvahi":{"type":"boolean","description":"Try to use Avahi and avahi-browse to resolve mDNS devices instead of native mDNS querying\\n\\nUseful for docker (alpine) container where mDNS resolution is not yet supported. Avahi socket must be exposed to the container and avahi-tools must be installed.","default":false},"useAutoDiscovery":{"type":"boolean","description":"Use mDNS to discovery Google Cast devices on your next automatically?\\n\\nIf not explicitly set then it is TRUE if `devices` is not set"},"devices":{"type":"array","items":{"$ref":"#/definitions/ChromecastDeviceInfo"},"description":"A list of Google Cast devices to monitor\\n\\nIf this is used then `useAutoDiscovery` is set to FALSE, if not explicitly set"},"allowUnknownMedia":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Chromecast Apps report a \\"media type\\" in the status info returned for whatever is currently playing\\n\\n* If set to TRUE then Music AND Generic/Unknown media will be tracked for ALL APPS\\n* If set to FALSE then only media explicitly typed as Music will be tracked for ALL APPS\\n* If set to a list then only Apps whose name contain one of these values, case-insensitive, will have Music AND Generic/Unknown tracked\\n\\nSee https://developers.google.com/cast/docs/media/messages#MediaInformation \\"metadata\\" property","default":false},"forceMediaRecognitionOn":{"type":"array","items":{"type":"string"},"description":"Media provided by any App whose name is listed here will ALWAYS be tracked, regardless of the \\"media type\\" reported\\n\\nApps will be recognized if they CONTAIN any of these values, case-insensitive"}},"title":"ChromecastData"},"ChromecastDeviceInfo":{"type":"object","properties":{"name":{"type":"string","description":"A friendly name to identify this device","examples":["MySmartTV"]},"address":{"type":"string","description":"The IP address of the device","examples":["192.168.0.115"]}},"required":["name","address"],"title":"ChromecastDeviceInfo"},"MalojaSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MalojaSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `maloja.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","type"],"title":"MalojaSourceAIOConfig"},"MalojaSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaSourceData"},"MusikcubeSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusikcubeData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musikcube"]}},"required":["data","type"],"title":"MusikcubeSourceAIOConfig"},"MusikcubeData":{"type":"object","properties":{"url":{"type":"string","description":"URL of the Musikcube Websocket (Metadata) server to connect to\\n\\nYou MUST have enabled \'metadata\' server and set a password: https://github.com/clangen/musikcube/wiki/remote-api-documentation\\n * musikcube -> settings -> server setup\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `ws://`\\n* Hostname => `localhost`\\n* Port => `7905`","examples":["ws://localhost:7905"],"default":"ws://localhost:7905"},"password":{"type":"string","description":"Password set in Musikcube https://github.com/clangen/musikcube/wiki/remote-api-documentation\\n\\n* musikcube -> settings -> server setup -> password"},"device_id":{"type":"string"}},"required":["password"],"title":"MusikcubeData"},"MusicCastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusicCastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musiccast"]}},"required":["data","type"],"title":"MusicCastSourceAIOConfig"},"MusicCastData":{"type":"object","properties":{"url":{"type":"string","description":"The host or URL of the YamahaExtendedControl endpoint to use","examples":[["192.168.0.101","http://192.168.0.101/YamahaExtendedControl"]]}},"required":["url"],"title":"MusicCastData"},"MPDSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPDData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/MPDSourceOptions"},"type":{"type":"string","enum":["mpd"]}},"required":["data","options","type"],"title":"MPDSourceAIOConfig"},"MPDData":{"type":"object","properties":{"url":{"type":"string","description":"URL:PORT of the MPD server to connect to\\n\\nTo use this you must have TCP connections enabled for your MPD server https://mpd.readthedocs.io/en/stable/user.html#client-connections","examples":["localhost:6600"],"default":"localhost:6600"},"path":{"type":"string","description":"If using socket specify the path instead of url.\\n\\ntrailing `~` is replaced by your home directory"},"password":{"type":"string","description":"Password for the server, if set https://mpd.readthedocs.io/en/stable/user.html#permissions-and-passwords"}},"title":"MPDData"},"MPDSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"MPDSourceOptions"},"VLCSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/VLCData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/VLCSourceOptions"},"type":{"type":"string","enum":["vlc"]}},"required":["data","type"],"title":"VLCSourceAIOConfig"},"VLCData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL:PORT of the VLC server to connect to\\n\\nTo use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc","examples":["localhost:8080"],"default":"localhost:8080"},"password":{"type":"string","description":"Password for the server"}},"required":["password"],"title":"VLCData"},"VLCSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"filenamePatterns":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"A list of regular expressions to use to extract metadata (title, album, artist) from a filename\\n\\nUsed when VLC reports only the filename for the current audio track"},"logFilenamePatterns":{"type":"boolean","description":"Log to DEBUG when a filename-only track is matched or not matched by filenamePatterns","default":false},"dumpVlcMetadata":{"type":"boolean","description":"Dump all the metadata VLC reports for an audio track to DEBUG.\\n\\nUse this if reporting an issue with VLC not correctly capturing metadata for a track.","default":false}},"title":"VLCSourceOptions"},"IcecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/IcecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/IcecastSourceOptions"},"type":{"type":"string","enum":["icecast"]}},"required":["data","type"],"title":"IcecastSourceAIOConfig"},"IcecastData":{"type":"object","properties":{"sources":{"type":"array","items":{"$ref":"#/definitions/IcecastSource"}},"icestatsEndpoint":{"type":"string"},"statsEndpoint":{"type":"string"},"nextsongsEndpoint":{"type":"string"},"sevenhtmlEndpoint":{"type":"string"},"icyMetaInt":{"type":"number"},"url":{"type":"string","description":"The Icecast stream URL"}},"required":["url"],"title":"IcecastData"},"IcecastSource":{"type":"string","enum":["icy","ogg","icestats","stats","sevenhtml","nextsongs"],"title":"IcecastSource"},"IcecastSourceOptions":{"type":"object","properties":{"systemScrobble":{"type":"boolean","description":"For Sources that support manual listening, should MS default to scrobbling when no user interaction has occurred?\\n\\nIf not specified MS will use a Source\'s specific behavior, see Source\'s documentation."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"IcecastSourceOptions"},"AzuracastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/AzuracastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["azuracast"]}},"required":["data","type"],"title":"AzuracastSourceAIOConfig"},"AzuracastData":{"type":"object","properties":{"url":{"type":"string","description":"Base URL of the Azuracast instance\\n\\nThis does NOT include the station. If a station is included it will be ignored. Use `station` field to specify station, if necessary","examples":["https://radio.mydomain.tld","http://localhost:80"]},"station":{"type":"string","description":"The specific station to monitor\\n\\nScrobbling will only occur if any of the monitor conditions are met AND the station is ONLINE.\\n\\nTo monitor multiple stations create a Source for each station.","examples":["my-station-1"]},"monitorWhenListeners":{"type":["boolean","number"],"description":"Only activate scrobble monitoring if station\\n\\n* `true` => has any current listeners\\n* `number` => has EQUAL TO or MORE THAN X number of listeners"},"monitorWhenLive":{"type":"boolean","description":"Only activate scrobble monitoring if station has a live DJ/Streamer","default":true},"apiKey":{"type":"string","description":"API Key used to access data about private streams\\n\\nhttps://www.azuracast.com/docs/developers/apis/#api-authentication"}},"required":["url","station"],"title":"AzuracastData"},"KoitoSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KoitoSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `koito.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["koito"]}},"required":["data","type"],"title":"KoitoSourceAIOConfig"},"KoitoSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoSourceData"},"TealSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/TealSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/TealSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"Should always be `souce` when using Tealfm as a Source","default":"source","examples":["source"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","type"],"title":"TealSourceAIOConfig"},"TealSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\\n\\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\\n\\n* For **App Password** Auth - your email\\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\\n\\nThis is created under https://bsky.app/settings/app-passwords\\n\\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealSourceData"},"TealSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealSourceOptions"},"RockskySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/RockskySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/RockskySourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `rocksky.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","type"],"title":"RockskySourceAIOConfig"},"RockskySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\\n\\n* alice.bsky.social\\n* foxxmd.com\\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockskySourceData"},"RockskySourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockskySourceOptions"},"ClientAIOConfig":{"anyOf":[{"$ref":"#/definitions/MalojaClientAIOConfig"},{"$ref":"#/definitions/LastfmClientAIOConfig"},{"$ref":"#/definitions/ListenBrainzClientAIOConfig"},{"$ref":"#/definitions/KoitoClientAIOConfig"},{"$ref":"#/definitions/TealClientAIOConfig"},{"$ref":"#/definitions/RockSkyClientAIOConfig"}],"title":"ClientAIOConfig"},"MalojaClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/MalojaClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Maloja as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","name","type"],"title":"MalojaClientAIOConfig"},"MalojaClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaClientData"},"CommonClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonClientOptions"},"LastfmClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/LastfmData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/LastfmClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using LastFM as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","name","type"],"title":"LastfmClientAIOConfig"},"LastfmData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \\"lastfm/callback\\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]}},"required":["apiKey","secret"],"title":"LastfmData"},"LastfmClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\\n\\n* `true` (default) => Report Now Playing from any eligible Source. \\n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\\n* `false` => Do not report Now Playing\\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"LastfmClientOptions"},"ListenBrainzClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/ListenBrainzClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Listenbrainz as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","name","type"],"title":"ListenBrainzClientAIOConfig"},"ListenBrainzClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzClientData"},"KoitoClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/KoitoClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Koito as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["koito"]}},"required":["data","name","type"],"title":"KoitoClientAIOConfig"},"KoitoClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoClientData"},"TealClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/TealClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/TealClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Tealfm as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","name","type"],"title":"TealClientAIOConfig"},"TealClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\\n\\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\\n\\n* For **App Password** Auth - your email\\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\\n\\nThis is created under https://bsky.app/settings/app-passwords\\n\\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealClientData"},"TealClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealClientOptions"},"RockSkyClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/RockSkyClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/RockSkyClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using RockSky as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","name","type"],"title":"RockSkyClientAIOConfig"},"RockSkyClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\\n\\n* alice.bsky.social\\n* foxxmd.com\\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockSkyClientData"},"RockSkyClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\\n\\n* `true` (default) => Report Now Playing from any eligible Source. \\n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\\n* `false` => Do not report Now Playing\\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockSkyClientOptions"},"WebhookConfig":{"anyOf":[{"$ref":"#/definitions/GotifyConfig"},{"$ref":"#/definitions/NtfyConfig"},{"$ref":"#/definitions/AppriseConfig"}],"title":"WebhookConfig"},"GotifyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\\n\\n* gotify\\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Gotify server. Same URL that would be used to reach the Gotify UI","examples":["http://192.168.0.100:8078"]},"token":{"type":"string","description":"The token created for this Application in Gotify","examples":["AQZI58fA.rfSZbm"]},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\\n\\n* Info -> 5\\n* Warn -> 7\\n* Error -> 10"}},"required":["token","type","url"],"title":"GotifyConfig"},"PrioritiesConfig":{"type":"object","properties":{"info":{"type":"number","examples":[5]},"warn":{"type":"number","examples":[7]},"error":{"type":"number","examples":[10]}},"required":["info","warn","error"],"title":"PrioritiesConfig"},"NtfyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\\n\\n* gotify\\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Ntfy server","examples":["http://192.168.0.100:8078"]},"topic":{"type":"string","description":"The topic mutli-scrobbler should POST to"},"username":{"type":"string","description":"Required if topic is protected"},"password":{"type":"string","description":"Required if topic is protected"},"token":{"type":"string","description":"Use instead of username/password, required if topic is protected"},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\\n\\n* Info -> 3\\n* Warn -> 4\\n* Error -> 5"}},"required":["topic","type","url"],"title":"NtfyConfig"},"AppriseConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\\n\\n* gotify\\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"host":{"type":"string","description":"The URL of the apprise-api server","examples":["http://192.168.0.100:8078"]},"urls":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Stateless Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution) the Apprise config URL(s) to send"},"keys":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Persistent Store Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution) the Configuration ID(s) to send to\\n\\nNote: If multiple keys are defined then MS will attempt to POST to each one individually"},"tags":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Optional [tag(s)](https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging) to send in the notification payload"}},"required":["host","type"],"title":"AppriseConfig"},"LogOptions":{"type":"object","properties":{"level":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level for all log outputs without their own level specified.\\n\\nDefaults to env `LOG_LEVEL` or `info` if not specified.","default":"info"},"file":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false},{"$ref":"#/definitions/FileLogOptions"}],"description":"Specify the minimum log level to output to rotating files or file output options. If `false` no log files will be created."},"console":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level streamed to the console (or docker container)"}},"description":"Configure log levels and file options for an AppLogger.\\n\\n```ts\\nconst infoLogger = loggerApp({\\n level: \'info\' // console and file will log any levels `info` and above\\n});\\n\\nconst logger = loggerApp({\\n console: \'debug\', // console will log `debug` and higher\\n file: \'warn\' // file will log `warn` and higher\\n});\\n\\nconst fileLogger = loggerRollingApp({\\n console: \'debug\', // console will log `debug` and higher\\n file: {\\n level: \'warn\', // file will log `warn` and higher\\n path: \'/my/cool/path/output.log\', // optionally, output to log file at this path\\n frequency: \'hourly\', // optionally, rotate hourly\\n }\\n});\\n```","title":"LogOptions"},"CacheConfigOptions":{"type":"object","properties":{"metadata":{"$ref":"#/definitions/CacheMetadataConfig"},"scrobble":{"$ref":"#/definitions/CacheScrobbleConfig"},"auth":{"$ref":"#/definitions/CacheAuthConfig"}},"title":"CacheConfigOptions"},"CacheMetadataConfig":{"$ref":"#/definitions/CacheConfig%3CCacheMetadataProvider%3E","title":"CacheMetadataConfig"},"CacheConfig<CacheMetadataProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheMetadataProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheMetadataProvider>"},"CacheMetadataProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheMetadataProvider"},"CacheProvider":{"type":["string","boolean"],"enum":["memory","valkey","file",false],"title":"CacheProvider"},"CacheScrobbleConfig":{"$ref":"#/definitions/CacheConfig%3CCacheScrobbleProvider%3E","title":"CacheScrobbleConfig"},"CacheConfig<CacheScrobbleProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheScrobbleProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheScrobbleProvider>"},"CacheScrobbleProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheScrobbleProvider"},"CacheAuthConfig":{"$ref":"#/definitions/CacheConfig%3CCacheAuthProvider%3E","title":"CacheAuthConfig"},"CacheConfig<CacheAuthProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheAuthProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheAuthProvider>"},"CacheAuthProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheAuthProvider"}}}'),o=JSON.parse('{"sourceDefaults":{"maxPollRetries":0,"maxRequestRetries":1,"retryMultiplier":1.5},"clientDefaults":{"maxRequestRetries":1,"retryMultiplier":1.5},"baseUrl":"http://localhost","sources":[{"type":"spotify","clients":["myConfig"],"name":"mySpotifySource","data":{"clientId":"a89cba1569901a0671d5a9875fed4be1","clientSecret":"ec42e09d5ae0ee0f0816ca151008412a","redirectUri":"http://localhost:9078/callback"}}],"clients":[{"type":"maloja","name":"myConfig","data":{"url":"http://localhost:42010","apiKey":"myMalojaKey"}}],"webhooks":[{"name":"FirstGotifyServer","type":"gotify","url":"http://localhost:8070","token":"MyGotifyToken","priorities":{"info":5,"warn":7,"error":10}},{"type":"ntfy","name":"MyNtfyFriendlyNameForLogs","url":"http://localhost:9991","topic":"MyMultiScrobblerTopic","username":"Optional","password":"Optional","priorities":{"info":3,"warn":4,"error":5}}]}'),n=i(27722),a=i.n(n),l=i(1184),c=i.n(l),p=i(35283),d=i(85893);function u(){let{colorMode:e}=(0,p.I)();return(0,d.jsx)("div",{style:{display:"flex",flexDirection:"column",overflowY:"hidden",overflowX:"hidden"},children:(0,d.jsxs)("div",{style:{display:"flex",flexDirection:"row",justifyContent:"space-between"},children:[(0,d.jsx)("div",{style:{width:"50%"},children:(0,d.jsx)(a(),{schema:r,showExamples:!0})}),(0,d.jsx)("div",{style:{boxSizing:"border-box",width:"50%"},children:(0,d.jsx)(c(),{value:JSON.stringify(o,null," "),theme:"dark"===e?"vs-dark":"vs",schema:r,height:"70vh"})})]})})}function f(){return(0,d.jsx)(s.default,{fallback:(0,d.jsx)("div",{children:"Loading..."}),children:()=>(0,d.jsx)(u,{})})}},46259:function(e,t,i){"use strict";i.r(t),i.d(t,{default:()=>l}),i(67294);var s=i(31026),r=i(646),o=i(77084),n=i(85893);function a(){return(0,n.jsx)(o.default,{fallback:({error:e,tryAgain:t})=>(0,n.jsxs)("div",{children:[(0,n.jsxs)("p",{children:["Playground component crashed because of error: ",e.message,"."]}),(0,n.jsx)("button",{onClick:t,children:"Try Again!"})]}),children:(0,n.jsx)(r.default,{fallback:(0,n.jsx)("div",{children:"Loading..."}),children:()=>{let e=i(66210).Z;return(0,n.jsx)(e,{})}})})}function l(){return(0,n.jsx)(s.Z,{title:"Playground",description:"Playground of docusaurus-json-schema-plugin",children:(0,n.jsx)(a,{})})}},68347:function(e,t,i){var s={"./simpleWorker.js":"18352","./simpleWorker":"18352"};function r(e){return Promise.resolve().then(function(){if(!i.o(s,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return i(s[e])})}r.keys=()=>Object.keys(s),r.id=68347,e.exports=r},37738:function(e,t,i){var s={"./textModelSync/textModelSync.protocol":["23145","5671"],"./treeSitterParserService":["28922"],"./markerDecorations":["36357"],"./languageService.js":["81032"],"./languageService":["81032"],"./markerDecorationsService":["86036"],"./markerDecorationsService.js":["86036"],"./modelService.js":["51200"],"./resolverService":["88216"],"./semanticTokensProviderStyling":["33789"],"./languageFeatureDebounce":["88191"],"./editorSimpleWorker":["87267"],"./textModelSync/textModelSync.impl.js":["49290"],"./modelService":["51200"],"./semanticTokensDto.js":["14704"],"./textModelSync/textModelSync.impl":["49290"],"./model":["73733"],"./treeViewsDnd":["80642"],"./languagesRegistry":["4765"],"./model.js":["73733"],"./findSectionHeaders.js":["72846"],"./editorBaseApi":["20927"],"./treeSitterParserService.js":["28922"],"./resolverService.js":["88216"],"./semanticTokensProviderStyling.js":["33789"],"./getIconClasses.js":["22016"],"./languageFeatures":["71922"],"./semanticTokensDto":["14704"],"./semanticTokensStylingService":["57404"],"./editorBaseApi.js":["20927"],"./textResourceConfiguration":["71765"],"./treeViewsDndService":["58345"],"./semanticTokensStyling":["73343"],"./textResourceConfiguration.js":["71765"],"./treeViewsDnd.js":["80642"],"./editorWorker.js":["85215"],"./unicodeTextModelHighlighter":["31446"],"./unicodeTextModelHighlighter.js":["31446"],"./editorSimpleWorker.js":["87267"],"./languagesAssociations.js":["73536"],"./languageFeatures.js":["71922"],"./treeViewsDndService.js":["58345"],"./languageFeatureDebounce.js":["88191"],"./languageFeaturesService.js":["60662"],"./editorWorker":["85215"],"./textModelSync/textModelSync.protocol.js":["23145","7469"],"./findSectionHeaders":["72846"],"./languageFeaturesService":["60662"],"./semanticTokensStyling.js":["73343"],"./languagesAssociations":["73536"],"./editorWorkerHost":["98008"],"./editorWorkerHost.js":["98008"],"./getIconClasses":["22016"],"./languagesRegistry.js":["4765"],"./semanticTokensStylingService.js":["57404"],"./markerDecorations.js":["36357"]};function r(e){if(!i.o(s,e))return Promise.resolve().then(function(){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t});var t=s[e],r=t[0];return Promise.all(t.slice(1).map(i.e)).then(function(){return i(r)})}r.keys=()=>Object.keys(s),r.id=37738,e.exports=r},83596:function(e){function t(e){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}t.keys=()=>[],t.resolve=t,t.id=83596,e.exports=t}}]);
+1
assets/js/0ce74438.e49a9263.js
···11+(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["3385"],{66210:function(e,t,i){"use strict";i.d(t,{Z:()=>f}),i(67294);var s=i(646),r=JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"sourceDefaults":{"$ref":"#/definitions/SourceDefaults"},"clientDefaults":{"$ref":"#/definitions/ClientDefaults"},"sources":{"type":"array","items":{"$ref":"#/definitions/SourceAIOConfig"}},"clients":{"type":"array","items":{"$ref":"#/definitions/ClientAIOConfig"}},"webhooks":{"type":"array","items":{"$ref":"#/definitions/WebhookConfig"}},"port":{"type":"number","description":"Set the port the multi-scrobbler UI will be served from","default":9078,"examples":[9078]},"baseUrl":{"type":"string","description":"Set the Base URL the application should assume the UI is served from.\\n\\nThis will affect how default redirect URLs are generated (spotify, lastfm, deezer) and some logging messages.\\n\\nIt will NOT set the actual interface/IP that the application is listening on.\\n\\nThis can also be set using the BASE_URL environmental variable.","default":"http://localhost","examples":["http://localhost","http://192.168.0.101","https://ms.myDomain.tld"]},"logging":{"$ref":"#/definitions/LogOptions"},"disableWeb":{"type":"boolean","description":"Disable web server from running/listening on port.\\n\\nThis will also make any ingress sources (Plex, Jellyfin, Tautulli, etc...) unusable"},"debugMode":{"type":"boolean","description":"Enables ALL relevant logging and debug options for all sources/clients, when none are defined.\\n\\nThis is a convenience shortcut for enabling all output needed to troubleshoot an issue and does not need to be on for normal operation.\\n\\nIt can also be enabled with the environmental variable DEBUG_MODE=true","default":false,"examples":[false]},"cache":{"$ref":"#/definitions/CacheConfigOptions"},"transformers":{"type":"array","items":{"$ref":"#/definitions/TransformerCommonConfig"}}},"definitions":{"SourceDefaults":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"SourceDefaults"},"LogLevel":{"type":"string","enum":["silent","fatal","error","warn","info","log","verbose","debug"],"description":"Names of log levels that can be invoked on the logger\\n\\nFrom lowest to highest:\\n\\n* `debug`\\n* `verbose`\\n* `log`\\n* `info`\\n* `warn`\\n* `error`\\n* `fatal`\\n* `silent` (will never output anything)\\n\\nWhen used in `LogOptions` specifies the **minimum** level the output should log at.","title":"LogLevel"},"FileLogOptions":{"type":"object","properties":{"timestamp":{"type":"string","enum":["unix","iso","auto"],"description":"For rolling log files\\n\\nWhen\\n* value passed to rolling destination is a string (`path` from LogOptions is a string) and\\n* `frequency` is defined\\n\\nThis determines the format of the datetime inserted into the log file name:\\n\\n* `unix` - unix epoch timestamp in milliseconds\\n* `iso` - Full [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) datetime IE \'2024-03-07T20:11:34Z\'\\n* `auto`\\n * When frequency is `daily` only inserts date IE YYYY-MM-DD\\n * Otherwise inserts full ISO8601 datetime","default":"auto"},"size":{"type":["number","string"],"description":"The maximum size of a given rolling log file.\\n\\nCan be combined with frequency. Use k, m and g to express values in KB, MB or GB.\\n\\nNumerical values will be considered as MB.","default":"10MB"},"frequency":{"anyOf":[{"type":"string","enum":["daily"]},{"type":"string","enum":["hourly"]},{"type":"number"}],"description":"The amount of time a given rolling log file is used. Can be combined with size.\\n\\nUse `daily` or `hourly` to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used.\\n\\nNumerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.","default":"daily"},"path":{"anyOf":[{"type":"string"},{"$comment":"() => string"}],"description":"The path and filename to use for log files.\\n\\nIf using rolling files the filename will be appended with `.N` (a number) BEFORE the extension based on rolling status.\\n\\nMay also be specified using env LOG_PATH or a function that returns a string.\\n\\nIf path is relative the absolute path will be derived from `logBaseDir` (in `LoggerAppExtras`) which defaults to CWD","default":"./logs/app.log"},"level":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false}],"description":"Specify the minimum log level to output to rotating files. If `false` no log files will be created."}},"title":"FileLogOptions"},"ScrobbleThresholds":{"type":"object","properties":{"duration":{"type":["number","null"],"description":"The number of seconds a track has been listened to before it should be considered scrobbled.\\n\\nSet to null to disable.","default":240,"examples":[240]},"percent":{"type":["number","null"],"description":"The percentage (as an integer) of a track that should have been seen played before it should be scrobbled. Only used if the Source provides information about how long the track is.\\n\\nSet to null to disable.\\n\\nNOTE: This should be used with care when the Source is a \\"polling\\" type (has an \'interval\' property). If the track is short and the interval is too high MS may ignore the track if percentage is high because it had not \\"seen\\" the track for long enough from first discovery, even if you have been playing the track for longer.","default":50,"examples":[50]}},"title":"ScrobbleThresholds"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>"},"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeMetadata"},"name":{"type":"string"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"artists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"albumArtists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"album":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"duration":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"meta":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeUser"},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string","enum":["native"]},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{},"name":{},"onSuccess":{},"onFailure":{},"failureReturnPartial":{},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{}},"required":["album","albumArtists","artists","duration","failureReturnPartial","meta","name","onFailure","onSuccess","title","when"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string"},"name":{"type":"string"}},"required":["type"]}],"title":"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"albumArtists":{"type":"string"},"album":{"type":"string"},"duration":{"type":"string"},"meta":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"Whennable":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"title":"Whennable"},"FlowControlTerm":{"type":"string","enum":["continue","stop"],"title":"FlowControlTerm"},"StageTypeMetadata":{"type":"string","enum":["spotify","musicbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"search":{},"replace":{},"when":{}},"required":["search","replace","when"],"title":"ConditionalSearchAndReplaceTerm"},"ExternalMetadataTerm":{"anyOf":[{"type":"boolean"},{"not":{}},{"$ref":"#/definitions/Whennable"}],"title":"ExternalMetadataTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"ClientDefaults":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"ClientDefaults"},"MatchLoggingOptions":{"type":"object","properties":{"onNoMatch":{"type":"boolean","description":"Log to DEBUG when a new track does NOT match an existing scrobble","default":false,"examples":[false]},"onMatch":{"type":"boolean","description":"Log to DEBUG when a new track DOES match an existing scrobble","default":false,"examples":[false]},"confidenceBreakdown":{"type":"boolean","description":"Include confidence breakdowns in track match logging, if applicable","default":false,"examples":[false]}},"description":"Scrobble matching (between new source track and existing client scrobbles) logging options. Used for debugging.","title":"MatchLoggingOptions"},"SourceAIOConfig":{"anyOf":[{"$ref":"#/definitions/SpotifySourceAIOConfig"},{"$ref":"#/definitions/PlexSourceAIOConfig"},{"$ref":"#/definitions/PlexApiSourceAIOConfig"},{"$ref":"#/definitions/TautulliSourceAIOConfig"},{"$ref":"#/definitions/DeezerSourceAIOConfig"},{"$ref":"#/definitions/DeezerInternalAIOConfig"},{"$ref":"#/definitions/ListenbrainzEndpointSourceAIOConfig"},{"$ref":"#/definitions/LastFMEndpointSourceAIOConfig"},{"$ref":"#/definitions/SubsonicSourceAIOConfig"},{"$ref":"#/definitions/JellySourceAIOConfig"},{"$ref":"#/definitions/JellyApiSourceAIOConfig"},{"$ref":"#/definitions/LastFmSouceAIOConfig"},{"$ref":"#/definitions/YTMusicSourceAIOConfig"},{"$ref":"#/definitions/MPRISSourceAIOConfig"},{"$ref":"#/definitions/MopidySourceAIOConfig"},{"$ref":"#/definitions/ListenBrainzSourceAIOConfig"},{"$ref":"#/definitions/JRiverSourceAIOConfig"},{"$ref":"#/definitions/KodiSourceAIOConfig"},{"$ref":"#/definitions/WebScrobblerSourceAIOConfig"},{"$ref":"#/definitions/ChromecastSourceAIOConfig"},{"$ref":"#/definitions/MalojaSourceAIOConfig"},{"$ref":"#/definitions/MusikcubeSourceAIOConfig"},{"$ref":"#/definitions/MusicCastSourceAIOConfig"},{"$ref":"#/definitions/MPDSourceAIOConfig"},{"$ref":"#/definitions/VLCSourceAIOConfig"},{"$ref":"#/definitions/IcecastSourceAIOConfig"},{"$ref":"#/definitions/AzuracastSourceAIOConfig"},{"$ref":"#/definitions/KoitoSourceAIOConfig"},{"$ref":"#/definitions/TealSourceAIOConfig"},{"$ref":"#/definitions/RockskySourceAIOConfig"}],"title":"SourceAIOConfig"},"SpotifySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SpotifySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["spotify"]}},"required":["data","type"],"title":"SpotifySourceAIOConfig"},"SpotifySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)\\n\\nIt is unlikely you should need to change this unless you scrobble many very short tracks often\\n\\nReading:\\n* https://developer.spotify.com/documentation/web-api/guides/rate-limits/\\n* https://medium.com/mendix/limiting-your-amount-of-calls-in-mendix-most-of-the-time-rest-835dde55b10e\\n * Rate limit may ~180 req/min\\n* https://community.spotify.com/t5/Spotify-for-Developers/Web-API-ratelimit/m-p/5503150/highlight/true#M7930\\n * Informally indicated as 20 req/sec? Probably for burstiness","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"spotify client id","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"clientSecret":{"type":"string","description":"spotify client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"spotify redirect URI -- required only if not the default shown here. URI must end in \\"callback\\"","default":"http://localhost:9078/callback","examples":["http://localhost:9078/callback"]}},"required":["clientId","clientSecret"],"title":"SpotifySourceData"},"CommonSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonSourceOptions"},"PlexSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","type"],"title":"PlexSourceAIOConfig"},"PlexSourceData":{"type":"object","properties":{"user":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\\n\\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"libraries":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of libraries to scrobble tracks from\\n\\nIf none are provided tracks from all libraries will be scrobbled","examples":[["Audio","Music"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\\n\\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName"]]}},"title":"PlexSourceData"},"PlexApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/PlexApiOptions"},"type":{"type":"string","enum":["plex"]}},"required":["data","options","type"],"title":"PlexApiSourceAIOConfig"},"PlexApiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"token":{"type":"string"},"url":{"type":"string","description":"http(s)://HOST:PORT of the Plex server to connect to"},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\\n\\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"}},"required":["url"],"title":"PlexApiData"},"PlexApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"ignoreInvalidCert":{"type":"boolean","description":"Ignore invalid cert errors when connecting to Plex\\n\\nUseful for Plex servers using \\"Required\\" Secure Connections with self-signed certificates\\n\\nDo not enable unless you know you need this.","default":false}},"title":"PlexApiOptions"},"TautulliSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["tautulli"]}},"required":["data","type"],"title":"TautulliSourceAIOConfig"},"DeezerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerSourceAIOConfig"},"DeezerData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"deezer client id","examples":["a89cba1569901a0671d5a9875fed4be1"]},"clientSecret":{"type":"string","description":"deezer client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"deezer redirect URI -- required only if not the default shown here. URI must end in \\"callback\\"","default":"http://localhost:9078/deezer/callback","examples":["http://localhost:9078/deezer/callback"]}},"required":["clientId","clientSecret"],"title":"DeezerData"},"DeezerInternalAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerInternalData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/DeezerInternalSourceOptions"},"type":{"type":"string","enum":["deezer"]}},"required":["data","type"],"title":"DeezerInternalAIOConfig"},"DeezerInternalData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"arl":{"type":"string","description":"ARL retrieved from Deezer response header"},"userAgent":{"type":"string","description":"User agent","default":"Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"}},"required":["arl"],"title":"DeezerInternalData"},"DeezerInternalSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"fuzzyDiscoveryIgnore":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["aggressive"]}]}},"title":"DeezerInternalSourceOptions"},"ListenbrainzEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenbrainzEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlz"]}},"required":["type"],"title":"ListenbrainzEndpointSourceAIOConfig"},"ListenbrainzEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\\n\\nIf you are using multiple Listenbrainz endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\\n\\nExample:\\n\\n* slug: \'usera\' => API URL: http://localhost:9078/api/listenbrainz/usera\\n* slug: \'originb\' => API URL: http://localhost:9078/api/listenbrainz/originb\\n\\nIf no slug is found from an extension\'s incoming webhook event the first Listenbrainz source without a slug will be used"},"token":{"type":["string","null"],"description":"If an LZ submission request contains this token in the Authorization Header it will be used to match the submission with this Source\\n\\nSee: https://listenbrainz.readthedocs.io/en/latest/users/api/index.html#add-the-user-token-to-your-requests"}},"title":"ListenbrainzEndpointData"},"LastFMEndpointSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFMEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["endpointlfm"]}},"required":["type"],"title":"LastFMEndpointSourceAIOConfig"},"LastFMEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\\n\\nIf you are using multiple Last.fm endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\\n\\nExample:\\n\\n* slug: \'usera\' => API URL: http://localhost:9078/api/lastfm/usera\\n* slug: \'originb\' => API URL: http://localhost:9078/api/lastfm/originb\\n\\nIf no slug is found from an extension\'s incoming webhook event the first Last.fm source without a slug will be used"}},"title":"LastFMEndpointData"},"SubsonicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SubsonicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["subsonic"]}},"required":["data","type"],"title":"SubsonicSourceAIOConfig"},"SubsonicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the subsonic media server to query","examples":["http://airsonic.local"]},"user":{"type":"string","description":"Username to login to the server with","examples":[["MyUser"]]},"password":{"type":"string","description":"Password for the user to login to the server with","examples":["MyPassword"]},"ignoreTlsErrors":{"type":"boolean","description":"If your subsonic server is using self-signed certs you may need to disable TLS errors in order to get a connection\\n\\nWARNING: This should be used with caution as your traffic may not be encrypted.","default":false},"legacyAuthentication":{"type":"boolean","description":"Older Subsonic versions, and some badly implemented servers (Nextcloud), use legacy authentication which sends your password in CLEAR TEXT. This is less secure than the newer, recommended hashing authentication method but in some cases it is needed. See \\"Authentication\\" section here => https://www.subsonic.org/pages/api.jsp\\n\\nIf this option is not specified it will be turned on if the subsonic server responds with error code 41 \\"Token authentication not supported for LDAP users.\\" -- See Error Handling section => https://www.subsonic.org/pages/api.jsp","default":false},"usersAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\\n\\nIf undefined or an empty string/list MS will scrobble activity from all users"}},"required":["url","user","password"],"title":"SubsonicData"},"JellySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","type"],"title":"JellySourceAIOConfig"},"JellyData":{"type":"object","properties":{"users":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\\n\\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\\n\\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName1"]]}},"title":"JellyData"},"JellyApiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/JellyApiOptions"},"type":{"type":"string","enum":["jellyfin"]}},"required":["data","options","type"],"title":"JellyApiSourceAIOConfig"},"JellyApiData":{"type":"object","properties":{"url":{"type":"string","description":"HOST:PORT of the Jellyfin server to connect to"},"user":{"type":"string","description":"The username of the user to authenticate for or track scrobbles for"},"password":{"type":"string","description":"Password of the username to authenticate for\\n\\nRequired if `apiKey` is not provided."},"apiKey":{"type":"string","description":"API Key to authenticate with.\\n\\nRequired if `password` is not provided."},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\\n\\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"},"additionalAllowedLibraryTypes":{"type":"array","items":{},"description":"Allow MS to scrobble audio media in libraries classified other than \'music\'\\n\\n`librariesAllow` will achieve the same result as this but this is more convenient if you do not want to explicitly list every library name or are only using `librariesBlock`"},"allowUnknown":{"type":"boolean","description":"Force media with a type of \\"Unknown\\" to be counted as Audio","default":false},"frontendUrlOverride":{"type":"string","description":"HOST:PORT of the Jellyfin server that your browser will be able to access from the frontend (and thus load images and links from)\\nIf unspecified it will use the normal server HOST and PORT from the `url`\\nNecessary if you are using a reverse proxy or other network configuration that prevents the frontend from accessing the server directly\\n\\nENV: JELLYFIN_FRONTEND_URL_OVERRIDE"}},"required":["url","user"],"title":"JellyApiData"},"JellyApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"JellyApiOptions"},"LastFmSouceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFmSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `lastfm.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","type"],"title":"LastFmSouceAIOConfig"},"LastFmSourceData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \\"lastfm/callback\\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]},"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"}},"required":["apiKey","secret"],"title":"LastFmSourceData"},"YTMusicSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/YTMusicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"type":"object","properties":{"logAuth":{"type":"boolean","description":"When true MS will log to DEBUG all of the credentials data it receives from YTM"},"logDiff":{"type":"boolean","description":"Always log history diff\\n\\nBy default MS will log to `WARN` if history diff is inconsistent but does not log if diff is expected (on new tracks found)\\nSet this to `true` to ALWAYS log diff on new tracks. Expected diffs will log to `DEBUG` and inconsistent diffs will continue to log to `WARN`","default":false},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}}},"type":{"type":"string","enum":["ytmusic"]}},"required":["type"],"title":"YTMusicSourceAIOConfig"},"YTMusicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"cookie":{"type":"string","description":"The cookie retrieved from the Request Headers of music.youtube.com after logging in.\\n\\nSee https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers for how to retrieve this value.","examples":["VISITOR_INFO1_LIVE=jMp2xA1Xz2_PbVc; __Secure-3PAPISID=3AxsXpy0M/AkISpjek; ..."]},"clientId":{"type":"string","description":"Google Cloud Console project OAuth Client ID\\n\\nGenerated from a custom OAuth Client, see docs"},"clientSecret":{"type":"string","description":"Google Cloud Console project OAuth Client Secret\\n\\nGenerated from a custom OAuth Client, see docs"},"redirectUri":{"type":"string","description":"Google Cloud Console project OAuth Client Authorized redirect URI\\n\\nGenerated from a custom OAuth Client, see docs. multi-scrobbler will generate a default based on BASE_URL.\\nOnly specify this if the default does not work for you."},"innertubeOptions":{"$ref":"#/definitions/InnertubeOptions","description":"Additional options for authorization and tailoring YTM client"}},"title":"YTMusicData"},"InnertubeOptions":{"type":"object","properties":{"po_token":{"type":"string","description":"Proof of Origin token\\n\\nMay be required if YTM starts returning 403"},"visitor_data":{"type":"string","description":"Visitor ID value found in VISITOR_INFO1_LIVE or visitorData cookie\\n\\nMay be required if YTM starts returning 403"},"account_index":{"type":"number","description":"If account login results in being able to choose multiple account, use a zero-based index to choose which one to monitor","examples":[0,1]},"location":{"type":"string"},"lang":{"type":"string"},"generate_session_locally":{"type":"boolean"},"device_category":{"type":"string"},"client_type":{"type":"string"},"timezone":{"type":"string"}},"title":"InnertubeOptions"},"MPRISSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPRISData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mpris"]}},"required":["data","type"],"title":"MPRISSourceAIOConfig"},"MPRISData":{"type":"object","properties":{"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any players that START WITH these values, case-insensitive","examples":[["spotify","vlc"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY from any players that START WITH these values, case-insensitive\\n\\nIf whitelist is present then blacklist is ignored","examples":[["spotify","vlc"]]}},"title":"MPRISData"},"MopidySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MopidyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["mopidy"]}},"required":["data","type"],"title":"MopidySourceAIOConfig"},"MopidyData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Mopidy HTTP server to connect to\\n\\nYou MUST have Mopidy-HTTP extension enabled: https://mopidy.com/ext/http\\n\\nmulti-scrobbler connects to the WebSocket endpoint that ultimately looks like this => `ws://localhost:6680/mopidy/ws/`\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `ws://`\\n* Hostname => `localhost`\\n* Port => `6680`\\n* Path => `/mopidy/ws/`","examples":["ws://localhost:6680/mopidy/ws/"],"default":"ws://localhost:6680/mopidy/ws/"},"uriBlacklist":{"type":"array","items":{"type":"string"},"description":"Do not scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\\n\\nEX: Don\'t scrobble tracks from soundcloud by adding \'soundcloud\' to this list.\\n\\nList is ignored if uriWhitelist is used."},"uriWhitelist":{"type":"array","items":{"type":"string"},"description":"Only scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\\n\\nEX: Only scrobble tracks from soundcloud by adding \'soundcloud\' to this list."},"albumBlacklist":{"type":"array","items":{"type":"string"},"description":"Remove album data that matches any case-insensitive string from this list when scrobbling,\\n\\nFor certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \\"Soundcloud\\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake name to this list. Multi-scrobbler will still scrobble the track, just without the bad data.","examples":[["Soundcloud","Mixcloud"]],"default":["Soundcloud"]}},"title":"MopidyData"},"ListenBrainzSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenBrainzSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `listenbrainz.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","type"],"title":"ListenBrainzSourceAIOConfig"},"ListenBrainzSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzSourceData"},"JRiverSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JRiverData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["jriver"]}},"required":["data","type"],"title":"JRiverSourceAIOConfig"},"JRiverData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the JRiver HTTP server to connect to\\n\\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:52199/MCWS/v1/`\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `http://`\\n* Hostname => `localhost`\\n* Port => `52199`\\n* Path => `/MCWS/v1/`","examples":["http://localhost:52199/MCWS/v1/"],"default":"http://localhost:52199/MCWS/v1/"},"username":{"type":"string","description":"If you have enabled authentication, the username you set"},"password":{"type":"string","description":"If you have enabled authentication, the password you set"}},"required":["url"],"title":"JRiverData"},"KodiSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KodiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["kodi"]}},"required":["data","type"],"title":"KodiSourceAIOConfig"},"KodiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Kodi HTTP server to connect to\\n\\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:8080/jsonrpc`\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `http://`\\n* Hostname => `localhost`\\n* Port => `8080`\\n* Path => `/jsonrpc`","examples":["http://localhost:8080/jsonrpc"],"default":"http://localhost:8080/jsonrpc"},"username":{"type":"string","description":"The username set for Remote Control via Web Sever"},"password":{"type":"string","description":"The password set for Remote Control via Web Sever"}},"required":["url","username","password"],"title":"KodiData"},"WebScrobblerSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/WebScrobblerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["webscrobbler"]}},"required":["type"],"title":"WebScrobblerSourceAIOConfig"},"WebScrobblerData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\\n\\nIn WebScrobbler\'s Webhook you must set an \'API URL\'. All MS WebScrobbler sources must start like:\\n\\nhttp://localhost:9078/api/webscrobbler\\n\\nIf you are using multiple WebScrobbler sources (scrobbles for many users) you must use a slug to match Sources with each users extension.\\n\\nExample:\\n\\n* slug: \'usera\' => API URL: http://localhost:9078/api/webscrobbler/usera\\n* slug: \'userb\' => API URL: http://localhost:9078/api/webscrobbler/userb\\n\\nIf no slug is found from an extension\'s incoming webhook event the first WebScrobbler source without a slug will be used"},"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Block scrobbling from specific WebScrobbler Connectors","examples":[["youtube"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only allow scrobbling from specific WebScrobbler Connectors","examples":[["mixcloud","soundcloud","bandcamp"]]}},"title":"WebScrobblerData"},"ChromecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ChromecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["chromecast"]}},"required":["data","type"],"title":"ChromecastSourceAIOConfig"},"ChromecastData":{"type":"object","properties":{"blacklistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any cast devices that START WITH these values, case-insensitive\\n\\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"whitelistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any cast device that START WITH these values, case-insensitive\\n\\nIf whitelist is present then blacklist is ignored\\n\\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"blacklistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any application that START WITH these values, case-insensitive","examples":[["spotify","pandora"]]},"whitelistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any application that START WITH these values, case-insensitive\\n\\nIf whitelist is present then blacklist is ignored","examples":[["spotify","pandora"]]},"useAvahi":{"type":"boolean","description":"Try to use Avahi and avahi-browse to resolve mDNS devices instead of native mDNS querying\\n\\nUseful for docker (alpine) container where mDNS resolution is not yet supported. Avahi socket must be exposed to the container and avahi-tools must be installed.","default":false},"useAutoDiscovery":{"type":"boolean","description":"Use mDNS to discovery Google Cast devices on your next automatically?\\n\\nIf not explicitly set then it is TRUE if `devices` is not set"},"devices":{"type":"array","items":{"$ref":"#/definitions/ChromecastDeviceInfo"},"description":"A list of Google Cast devices to monitor\\n\\nIf this is used then `useAutoDiscovery` is set to FALSE, if not explicitly set"},"allowUnknownMedia":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Chromecast Apps report a \\"media type\\" in the status info returned for whatever is currently playing\\n\\n* If set to TRUE then Music AND Generic/Unknown media will be tracked for ALL APPS\\n* If set to FALSE then only media explicitly typed as Music will be tracked for ALL APPS\\n* If set to a list then only Apps whose name contain one of these values, case-insensitive, will have Music AND Generic/Unknown tracked\\n\\nSee https://developers.google.com/cast/docs/media/messages#MediaInformation \\"metadata\\" property","default":false},"forceMediaRecognitionOn":{"type":"array","items":{"type":"string"},"description":"Media provided by any App whose name is listed here will ALWAYS be tracked, regardless of the \\"media type\\" reported\\n\\nApps will be recognized if they CONTAIN any of these values, case-insensitive"}},"title":"ChromecastData"},"ChromecastDeviceInfo":{"type":"object","properties":{"name":{"type":"string","description":"A friendly name to identify this device","examples":["MySmartTV"]},"address":{"type":"string","description":"The IP address of the device","examples":["192.168.0.115"]}},"required":["name","address"],"title":"ChromecastDeviceInfo"},"MalojaSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MalojaSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `maloja.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","type"],"title":"MalojaSourceAIOConfig"},"MalojaSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaSourceData"},"MusikcubeSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusikcubeData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musikcube"]}},"required":["data","type"],"title":"MusikcubeSourceAIOConfig"},"MusikcubeData":{"type":"object","properties":{"url":{"type":"string","description":"URL of the Musikcube Websocket (Metadata) server to connect to\\n\\nYou MUST have enabled \'metadata\' server and set a password: https://github.com/clangen/musikcube/wiki/remote-api-documentation\\n * musikcube -> settings -> server setup\\n\\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\\n\\nParts => [default value]\\n\\n* Protocol => `ws://`\\n* Hostname => `localhost`\\n* Port => `7905`","examples":["ws://localhost:7905"],"default":"ws://localhost:7905"},"password":{"type":"string","description":"Password set in Musikcube https://github.com/clangen/musikcube/wiki/remote-api-documentation\\n\\n* musikcube -> settings -> server setup -> password"},"device_id":{"type":"string"}},"required":["password"],"title":"MusikcubeData"},"MusicCastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusicCastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["musiccast"]}},"required":["data","type"],"title":"MusicCastSourceAIOConfig"},"MusicCastData":{"type":"object","properties":{"url":{"type":"string","description":"The host or URL of the YamahaExtendedControl endpoint to use","examples":[["192.168.0.101","http://192.168.0.101/YamahaExtendedControl"]]}},"required":["url"],"title":"MusicCastData"},"MPDSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPDData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/MPDSourceOptions"},"type":{"type":"string","enum":["mpd"]}},"required":["data","options","type"],"title":"MPDSourceAIOConfig"},"MPDData":{"type":"object","properties":{"url":{"type":"string","description":"URL:PORT of the MPD server to connect to\\n\\nTo use this you must have TCP connections enabled for your MPD server https://mpd.readthedocs.io/en/stable/user.html#client-connections","examples":["localhost:6600"],"default":"localhost:6600"},"path":{"type":"string","description":"If using socket specify the path instead of url.\\n\\ntrailing `~` is replaced by your home directory"},"password":{"type":"string","description":"Password for the server, if set https://mpd.readthedocs.io/en/stable/user.html#permissions-and-passwords"}},"title":"MPDData"},"MPDSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"MPDSourceOptions"},"VLCSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/VLCData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/VLCSourceOptions"},"type":{"type":"string","enum":["vlc"]}},"required":["data","type"],"title":"VLCSourceAIOConfig"},"VLCData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL:PORT of the VLC server to connect to\\n\\nTo use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc","examples":["localhost:8080"],"default":"localhost:8080"},"password":{"type":"string","description":"Password for the server"}},"required":["password"],"title":"VLCData"},"VLCSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"filenamePatterns":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"A list of regular expressions to use to extract metadata (title, album, artist) from a filename\\n\\nUsed when VLC reports only the filename for the current audio track"},"logFilenamePatterns":{"type":"boolean","description":"Log to DEBUG when a filename-only track is matched or not matched by filenamePatterns","default":false},"dumpVlcMetadata":{"type":"boolean","description":"Dump all the metadata VLC reports for an audio track to DEBUG.\\n\\nUse this if reporting an issue with VLC not correctly capturing metadata for a track.","default":false}},"title":"VLCSourceOptions"},"IcecastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/IcecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/IcecastSourceOptions"},"type":{"type":"string","enum":["icecast"]}},"required":["data","type"],"title":"IcecastSourceAIOConfig"},"IcecastData":{"type":"object","properties":{"sources":{"type":"array","items":{"$ref":"#/definitions/IcecastSource"}},"icestatsEndpoint":{"type":"string"},"statsEndpoint":{"type":"string"},"nextsongsEndpoint":{"type":"string"},"sevenhtmlEndpoint":{"type":"string"},"icyMetaInt":{"type":"number"},"url":{"type":"string","description":"The Icecast stream URL"}},"required":["url"],"title":"IcecastData"},"IcecastSource":{"type":"string","enum":["icy","ogg","icestats","stats","sevenhtml","nextsongs"],"title":"IcecastSource"},"IcecastSourceOptions":{"type":"object","properties":{"systemScrobble":{"type":"boolean","description":"For Sources that support manual listening, should MS default to scrobbling when no user interaction has occurred?\\n\\nIf not specified MS will use a Source\'s specific behavior, see Source\'s documentation."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"IcecastSourceOptions"},"AzuracastSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/AzuracastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"type":{"type":"string","enum":["azuracast"]}},"required":["data","type"],"title":"AzuracastSourceAIOConfig"},"AzuracastData":{"type":"object","properties":{"url":{"type":"string","description":"Base URL of the Azuracast instance\\n\\nThis does NOT include the station. If a station is included it will be ignored. Use `station` field to specify station, if necessary","examples":["https://radio.mydomain.tld","http://localhost:80"]},"station":{"type":"string","description":"The specific station to monitor\\n\\nScrobbling will only occur if any of the monitor conditions are met AND the station is ONLINE.\\n\\nTo monitor multiple stations create a Source for each station.","examples":["my-station-1"]},"monitorWhenListeners":{"type":["boolean","number"],"description":"Only activate scrobble monitoring if station\\n\\n* `true` => has any current listeners\\n* `number` => has EQUAL TO or MORE THAN X number of listeners"},"monitorWhenLive":{"type":"boolean","description":"Only activate scrobble monitoring if station has a live DJ/Streamer","default":true},"apiKey":{"type":"string","description":"API Key used to access data about private streams\\n\\nhttps://www.azuracast.com/docs/developers/apis/#api-authentication"}},"required":["url","station"],"title":"AzuracastData"},"KoitoSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KoitoSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `koito.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["koito"]}},"required":["data","type"],"title":"KoitoSourceAIOConfig"},"KoitoSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoSourceData"},"TealSourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/TealSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/TealSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"Should always be `souce` when using Tealfm as a Source","default":"source","examples":["source"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","type"],"title":"TealSourceAIOConfig"},"TealSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\\n\\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\\n\\n* For **App Password** Auth - your email\\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\\n\\nThis is created under https://bsky.app/settings/app-passwords\\n\\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealSourceData"},"TealSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealSourceOptions"},"RockskySourceAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/RockskySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/RockskySourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `rocksky.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","type"],"title":"RockskySourceAIOConfig"},"RockskySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\\n\\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\\n* If the player has an existing session w/ track then MS attempts to scrobble it\\n\\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\\n\\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\\n\\n* The current Player session is ended and the Player is removed from MS\\n* MS attempts to scrobble, if the Player has an existing session w/ track\\n\\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\\n\\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\\n\\n* alice.bsky.social\\n* foxxmd.com\\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockskySourceData"},"RockskySourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\\n\\n* `false` => do not log\\n* `debug` => log to DEBUG level\\n* `warn` => log to WARN level (default)\\n\\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\\n\\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\\n\\n* supports fetching a listen history\\n* and this option is enabled\\n\\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \\"scrobbable\\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\\n\\n* Only applies if this source supports fetching a listen history\\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockskySourceOptions"},"ClientAIOConfig":{"anyOf":[{"$ref":"#/definitions/MalojaClientAIOConfig"},{"$ref":"#/definitions/LastfmClientAIOConfig"},{"$ref":"#/definitions/ListenBrainzClientAIOConfig"},{"$ref":"#/definitions/KoitoClientAIOConfig"},{"$ref":"#/definitions/TealClientAIOConfig"},{"$ref":"#/definitions/RockSkyClientAIOConfig"}],"title":"ClientAIOConfig"},"MalojaClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/MalojaClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Maloja as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["maloja"]}},"required":["data","name","type"],"title":"MalojaClientAIOConfig"},"MalojaClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaClientData"},"CommonClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonClientOptions"},"LastfmClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/LastfmData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/LastfmClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using LastFM as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["lastfm"]}},"required":["data","name","type"],"title":"LastfmClientAIOConfig"},"LastfmData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \\"lastfm/callback\\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]}},"required":["apiKey","secret"],"title":"LastfmData"},"LastfmClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\\n\\n* `true` (default) => Report Now Playing from any eligible Source. \\n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\\n* `false` => Do not report Now Playing\\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"LastfmClientOptions"},"ListenBrainzClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/ListenBrainzClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Listenbrainz as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["listenbrainz"]}},"required":["data","name","type"],"title":"ListenBrainzClientAIOConfig"},"ListenBrainzClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzClientData"},"KoitoClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/KoitoClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Koito as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["koito"]}},"required":["data","name","type"],"title":"KoitoClientAIOConfig"},"KoitoClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoClientData"},"TealClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/TealClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/TealClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Tealfm as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["tealfm"]}},"required":["data","name","type"],"title":"TealClientAIOConfig"},"TealClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\\n\\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\\n\\n* For **App Password** Auth - your email\\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\\n\\nThis is created under https://bsky.app/settings/app-passwords\\n\\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealClientData"},"TealClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealClientOptions"},"RockSkyClientAIOConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/RockSkyClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/RockSkyClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using RockSky as a client","default":"client","examples":["client"]},"type":{"type":"string","enum":["rocksky"]}},"required":["data","name","type"],"title":"RockSkyClientAIOConfig"},"RockSkyClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\\n\\n* alice.bsky.social\\n* foxxmd.com\\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockSkyClientData"},"RockSkyClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\\n\\n* `true` (default) => Report Now Playing from any eligible Source. \\n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\\n* `false` => Do not report Now Playing\\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\\n\\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\\n\\nThis setting should only be changed in specific scenarios where MS is handling multiple \\"relaying\\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\\n\\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \\"new\\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockSkyClientOptions"},"WebhookConfig":{"anyOf":[{"$ref":"#/definitions/GotifyConfig"},{"$ref":"#/definitions/NtfyConfig"},{"$ref":"#/definitions/AppriseConfig"}],"title":"WebhookConfig"},"GotifyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\\n\\n* gotify\\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Gotify server. Same URL that would be used to reach the Gotify UI","examples":["http://192.168.0.100:8078"]},"token":{"type":"string","description":"The token created for this Application in Gotify","examples":["AQZI58fA.rfSZbm"]},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\\n\\n* Info -> 5\\n* Warn -> 7\\n* Error -> 10"}},"required":["token","type","url"],"title":"GotifyConfig"},"PrioritiesConfig":{"type":"object","properties":{"info":{"type":"number","examples":[5]},"warn":{"type":"number","examples":[7]},"error":{"type":"number","examples":[10]}},"required":["info","warn","error"],"title":"PrioritiesConfig"},"NtfyConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\\n\\n* gotify\\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"url":{"type":"string","description":"The URL of the Ntfy server","examples":["http://192.168.0.100:8078"]},"topic":{"type":"string","description":"The topic mutli-scrobbler should POST to"},"username":{"type":"string","description":"Required if topic is protected"},"password":{"type":"string","description":"Required if topic is protected"},"token":{"type":"string","description":"Use instead of username/password, required if topic is protected"},"priorities":{"$ref":"#/definitions/PrioritiesConfig","description":"Priority of messages\\n\\n* Info -> 3\\n* Warn -> 4\\n* Error -> 5"}},"required":["topic","type","url"],"title":"NtfyConfig"},"AppriseConfig":{"type":"object","properties":{"type":{"type":"string","enum":["gotify","ntfy","apprise"],"description":"Webhook type. Valid values are:\\n\\n* gotify\\n* ntfy","examples":["gotify"]},"name":{"type":"string","description":"A friendly name used to identify webhook config in logs"},"host":{"type":"string","description":"The URL of the apprise-api server","examples":["http://192.168.0.100:8078"]},"urls":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Stateless Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#stateless-solution) the Apprise config URL(s) to send"},"keys":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"If using [Persistent Store Endpoints](https://github.com/caronc/apprise-api?tab=readme-ov-file#persistent-storage-solution) the Configuration ID(s) to send to\\n\\nNote: If multiple keys are defined then MS will attempt to POST to each one individually"},"tags":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Optional [tag(s)](https://github.com/caronc/apprise-api?tab=readme-ov-file#tagging) to send in the notification payload"}},"required":["host","type"],"title":"AppriseConfig"},"LogOptions":{"type":"object","properties":{"level":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level for all log outputs without their own level specified.\\n\\nDefaults to env `LOG_LEVEL` or `info` if not specified.","default":"info"},"file":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false},{"$ref":"#/definitions/FileLogOptions"}],"description":"Specify the minimum log level to output to rotating files or file output options. If `false` no log files will be created."},"console":{"$ref":"#/definitions/LogLevel","description":"Specify the minimum log level streamed to the console (or docker container)"}},"description":"Configure log levels and file options for an AppLogger.\\n\\n```ts\\nconst infoLogger = loggerApp({\\n level: \'info\' // console and file will log any levels `info` and above\\n});\\n\\nconst logger = loggerApp({\\n console: \'debug\', // console will log `debug` and higher\\n file: \'warn\' // file will log `warn` and higher\\n});\\n\\nconst fileLogger = loggerRollingApp({\\n console: \'debug\', // console will log `debug` and higher\\n file: {\\n level: \'warn\', // file will log `warn` and higher\\n path: \'/my/cool/path/output.log\', // optionally, output to log file at this path\\n frequency: \'hourly\', // optionally, rotate hourly\\n }\\n});\\n```","title":"LogOptions"},"CacheConfigOptions":{"type":"object","properties":{"metadata":{"$ref":"#/definitions/CacheMetadataConfig"},"scrobble":{"$ref":"#/definitions/CacheScrobbleConfig"},"auth":{"$ref":"#/definitions/CacheAuthConfig"},"regex":{"type":"number","description":"Number of regex functions to cache (LRU)","default":200}},"title":"CacheConfigOptions"},"CacheMetadataConfig":{"$ref":"#/definitions/CacheConfig%3CCacheMetadataProvider%3E","title":"CacheMetadataConfig"},"CacheConfig<CacheMetadataProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheMetadataProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheMetadataProvider>"},"CacheMetadataProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheMetadataProvider"},"CacheProvider":{"type":["string","boolean"],"enum":["memory","valkey","file",false],"title":"CacheProvider"},"CacheScrobbleConfig":{"$ref":"#/definitions/CacheConfig%3CCacheScrobbleProvider%3E","title":"CacheScrobbleConfig"},"CacheConfig<CacheScrobbleProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheScrobbleProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheScrobbleProvider>"},"CacheScrobbleProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheScrobbleProvider"},"CacheAuthConfig":{"$ref":"#/definitions/CacheConfig%3CCacheAuthProvider%3E","title":"CacheAuthConfig"},"CacheConfig<CacheAuthProvider>":{"type":"object","properties":{"provider":{"$ref":"#/definitions/CacheAuthProvider"},"connection":{"type":"string"}},"required":["provider"],"title":"CacheConfig<CacheAuthProvider>"},"CacheAuthProvider":{"$ref":"#/definitions/CacheProvider","title":"CacheAuthProvider"},"TransformerCommonConfig":{"type":"object","properties":{"defaults":{"type":"object"},"data":{"type":"object"},"type":{"type":"string"},"name":{"type":"string"},"options":{"$ref":"#/definitions/TransformOptions"}},"required":["type"],"title":"TransformerCommonConfig"},"TransformOptions":{"type":"object","properties":{"failOnFetch":{"type":"boolean"},"throwOnFailure":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string","enum":["artists","title","albumArtists","album","duration","meta"]}}]},"ttl":{"type":"string"}},"title":"TransformOptions"}}}'),n=JSON.parse('{"sourceDefaults":{"maxPollRetries":0,"maxRequestRetries":1,"retryMultiplier":1.5},"clientDefaults":{"maxRequestRetries":1,"retryMultiplier":1.5},"baseUrl":"http://localhost","sources":[{"type":"spotify","clients":["myConfig"],"name":"mySpotifySource","data":{"clientId":"a89cba1569901a0671d5a9875fed4be1","clientSecret":"ec42e09d5ae0ee0f0816ca151008412a","redirectUri":"http://localhost:9078/callback"}}],"clients":[{"type":"maloja","name":"myConfig","data":{"url":"http://localhost:42010","apiKey":"myMalojaKey"}}],"webhooks":[{"name":"FirstGotifyServer","type":"gotify","url":"http://localhost:8070","token":"MyGotifyToken","priorities":{"info":5,"warn":7,"error":10}},{"type":"ntfy","name":"MyNtfyFriendlyNameForLogs","url":"http://localhost:9991","topic":"MyMultiScrobblerTopic","username":"Optional","password":"Optional","priorities":{"info":3,"warn":4,"error":5}}]}'),o=i(27722),a=i.n(o),l=i(1184),c=i.n(l),p=i(35283),d=i(85893);function u(){let{colorMode:e}=(0,p.I)();return(0,d.jsx)("div",{style:{display:"flex",flexDirection:"column",overflowY:"hidden",overflowX:"hidden"},children:(0,d.jsxs)("div",{style:{display:"flex",flexDirection:"row",justifyContent:"space-between"},children:[(0,d.jsx)("div",{style:{width:"50%"},children:(0,d.jsx)(a(),{schema:r,showExamples:!0})}),(0,d.jsx)("div",{style:{boxSizing:"border-box",width:"50%"},children:(0,d.jsx)(c(),{value:JSON.stringify(n,null," "),theme:"dark"===e?"vs-dark":"vs",schema:r,height:"70vh"})})]})})}function f(){return(0,d.jsx)(s.default,{fallback:(0,d.jsx)("div",{children:"Loading..."}),children:()=>(0,d.jsx)(u,{})})}},46259:function(e,t,i){"use strict";i.r(t),i.d(t,{default:()=>l}),i(67294);var s=i(31026),r=i(646),n=i(77084),o=i(85893);function a(){return(0,o.jsx)(n.default,{fallback:({error:e,tryAgain:t})=>(0,o.jsxs)("div",{children:[(0,o.jsxs)("p",{children:["Playground component crashed because of error: ",e.message,"."]}),(0,o.jsx)("button",{onClick:t,children:"Try Again!"})]}),children:(0,o.jsx)(r.default,{fallback:(0,o.jsx)("div",{children:"Loading..."}),children:()=>{let e=i(66210).Z;return(0,o.jsx)(e,{})}})})}function l(){return(0,o.jsx)(s.Z,{title:"Playground",description:"Playground of docusaurus-json-schema-plugin",children:(0,o.jsx)(a,{})})}},68347:function(e,t,i){var s={"./simpleWorker.js":"18352","./simpleWorker":"18352"};function r(e){return Promise.resolve().then(function(){if(!i.o(s,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return i(s[e])})}r.keys=()=>Object.keys(s),r.id=68347,e.exports=r},37738:function(e,t,i){var s={"./textModelSync/textModelSync.protocol":["23145","5671"],"./treeSitterParserService":["28922"],"./markerDecorations":["36357"],"./languageService.js":["81032"],"./languageService":["81032"],"./markerDecorationsService":["86036"],"./markerDecorationsService.js":["86036"],"./modelService.js":["51200"],"./resolverService":["88216"],"./semanticTokensProviderStyling":["33789"],"./languageFeatureDebounce":["88191"],"./editorSimpleWorker":["87267"],"./textModelSync/textModelSync.impl.js":["49290"],"./modelService":["51200"],"./semanticTokensDto.js":["14704"],"./textModelSync/textModelSync.impl":["49290"],"./model":["73733"],"./treeViewsDnd":["80642"],"./languagesRegistry":["4765"],"./model.js":["73733"],"./findSectionHeaders.js":["72846"],"./editorBaseApi":["20927"],"./treeSitterParserService.js":["28922"],"./resolverService.js":["88216"],"./semanticTokensProviderStyling.js":["33789"],"./getIconClasses.js":["22016"],"./languageFeatures":["71922"],"./semanticTokensDto":["14704"],"./semanticTokensStylingService":["57404"],"./editorBaseApi.js":["20927"],"./textResourceConfiguration":["71765"],"./treeViewsDndService":["58345"],"./semanticTokensStyling":["73343"],"./textResourceConfiguration.js":["71765"],"./treeViewsDnd.js":["80642"],"./editorWorker.js":["85215"],"./unicodeTextModelHighlighter":["31446"],"./unicodeTextModelHighlighter.js":["31446"],"./editorSimpleWorker.js":["87267"],"./languagesAssociations.js":["73536"],"./languageFeatures.js":["71922"],"./treeViewsDndService.js":["58345"],"./languageFeatureDebounce.js":["88191"],"./languageFeaturesService.js":["60662"],"./editorWorker":["85215"],"./textModelSync/textModelSync.protocol.js":["23145","7469"],"./findSectionHeaders":["72846"],"./languageFeaturesService":["60662"],"./semanticTokensStyling.js":["73343"],"./languagesAssociations":["73536"],"./editorWorkerHost":["98008"],"./editorWorkerHost.js":["98008"],"./getIconClasses":["22016"],"./languagesRegistry.js":["4765"],"./semanticTokensStylingService.js":["57404"],"./markerDecorations.js":["36357"]};function r(e){if(!i.o(s,e))return Promise.resolve().then(function(){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t});var t=s[e],r=t[0];return Promise.all(t.slice(1).map(i.e)).then(function(){return i(r)})}r.keys=()=>Object.keys(s),r.id=37738,e.exports=r},83596:function(e){function t(e){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}t.keys=()=>[],t.resolve=t,t.id=83596,e.exports=t}}]);
+1
assets/js/44b2647e.a253087b.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["3693"],{39167:function(e,n,s){s.r(n),s.d(n,{frontMatter:()=>t,default:()=>h,toc:()=>c,metadata:()=>r,assets:()=>o,contentTitle:()=>l});var r=JSON.parse('{"id":"configuration/transforms/user","title":"User Stage","description":"The User Stage uses search-and-replace expressions, provided by you, to modify/replace parts of Play data.","source":"@site/docs/configuration/transforms/user.mdx","sourceDirName":"configuration/transforms","slug":"/configuration/transforms/user","permalink":"/multi-scrobbler/configuration/transforms/user","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/transforms/user.mdx","tags":[],"version":"current","frontMatter":{"title":"User Stage","toc_min_heading_level":2,"toc_max_heading_level":5},"sidebar":"tutorialSidebar","previous":{"title":"Native Stage","permalink":"/multi-scrobbler/configuration/transforms/native"},"next":{"title":"Development","permalink":"/multi-scrobbler/category/development"}}'),i=s(85893),a=s(50065);let t={title:"User Stage",toc_min_heading_level:2,toc_max_heading_level:5},l=void 0,o={},c=[{value:"Configuration",id:"configuration",level:2},{value:"Default Stage",id:"default-stage",level:4},{value:"Search-And-Replace Expression",id:"search-and-replace-expression",level:3},{value:"Rules",id:"rules",level:3},{value:"Examples",id:"examples",level:2},{value:"Usage with <code>when</code> condition",id:"usage-with-when-condition",level:3},{value:"Remove phrase from Title in all new Plays",id:"remove-phrase-from-title-in-all-new-plays",level:3},{value:"Remove all parenthesized content from the end of a title",id:"remove-all-parenthesized-content-from-the-end-of-a-title",level:3},{value:"Rename misspelled artist in all new Plays",id:"rename-misspelled-artist-in-all-new-plays",level:3},{value:"Remove "Various Artists" albums in all new Plays",id:"remove-various-artists-albums-in-all-new-plays",level:3},{value:"Extract primary Artist from delimited, multi-Artist string",id:"extract-primary-artist-from-delimited-multi-artist-string",level:3}];function d(e){let n={a:"a",admonition:"admonition",code:"code",h2:"h2",h3:"h3",h4:"h4",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,a.a)(),...e.components},{Details:s}=n;return s||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,i.jsxs)(i.Fragment,{children:[(0,i.jsxs)(n.p,{children:["The ",(0,i.jsx)(n.strong,{children:"User"})," ",(0,i.jsx)(n.a,{href:"/configuration/transforms#stage",children:"Stage"})," uses ",(0,i.jsxs)(n.a,{href:"#search-and-replace-expression",children:[(0,i.jsx)(n.strong,{children:"search-and-replace"})," expressions"]}),", provided by you, to modify/replace parts of Play data."]}),"\n",(0,i.jsx)(n.p,{children:"This Stage is most useful for correcting individual instances of bad data, or patterns, in your known data. Example scenarios:"}),"\n",(0,i.jsxs)(n.ul,{children:["\n",(0,i.jsxs)(n.li,{children:["Removing ",(0,i.jsx)(n.code,{children:"(Album Version)"})," from all Titles"]}),"\n",(0,i.jsxs)(n.li,{children:["Removing ",(0,i.jsx)(n.code,{children:"Various Artists"})," from Artist data"]}),"\n",(0,i.jsx)(n.li,{children:"Correcting spelling mistakes for individual Artist names"}),"\n"]}),"\n",(0,i.jsxs)(n.p,{children:["The user ",(0,i.jsxs)(n.a,{href:"/configuration/transforms#stage",children:["Stage ",(0,i.jsx)(n.code,{children:"type"})]})," is ",(0,i.jsx)(n.code,{children:"user"}),"."]}),"\n",(0,i.jsx)(n.h2,{id:"configuration",children:"Configuration"}),"\n",(0,i.jsxs)(n.p,{children:["All ",(0,i.jsx)(n.a,{href:"/configuration/transforms#configuring-stage",children:"Stage Configuration"})," is done using ",(0,i.jsxs)(n.a,{href:"#search-and-replace-expression",children:[(0,i.jsx)(n.strong,{children:"search-and-replace"})," expressions"]})," inside individual ",(0,i.jsx)(n.a,{href:"#rules",children:"rules"}),". Default configuration for all Rules can still be done using Stage ",(0,i.jsx)(n.code,{children:"defaults"}),"."]}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "user",\n "name": "Normalizer",\n "defaults": {\n "title": [\n "(Album Version)"\n ],\n "artists": [\n "Various Artists"\n ]\n }\n }\n ]\n}\n'})})]}),"\n",(0,i.jsx)(n.h4,{id:"default-stage",children:"Default Stage"}),"\n",(0,i.jsxs)(n.p,{children:["For your convenience, if you do not define any User ",(0,i.jsx)(n.a,{href:"/configuration/transforms#configuration",children:"Stage Configurations"})," then multi-scrobbler automatically builds an empty one for you."]}),"\n",(0,i.jsxs)(n.p,{children:["This can be used by omitting the ",(0,i.jsx)(n.code,{children:"name"})," in your ",(0,i.jsx)(n.a,{href:"/configuration/transforms#modification-stage",children:"modification Stage"}),"."]}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsxs)(n.p,{children:["In a ",(0,i.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,i.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "user",\n // do not include name, the default user stage will be used\n "title": [\n // removes badterm from track title\n "badterm"\n ]\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,i.jsx)(n.h3,{id:"search-and-replace-expression",children:"Search-And-Replace Expression"}),"\n",(0,i.jsx)(n.p,{children:"A Search-And-Replace Expression can be a plain string that matches a literal, then removes it:"}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{children:'Expression: "badTerm"\n\n"this is badTerm cool string" => "this is a cool string"\n'})}),"\n",(0,i.jsx)(n.p,{children:"or a regular expression that matches and removes the match:"}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{children:'Expression: "/bad\\w+/i"\n\n"this is badSomething cool string" => "this is a cool string"\n'})}),"\n",(0,i.jsx)(n.p,{children:"Or it may be an object that specifies what to match (using either plain string or regular expression) and what to replace it with:"}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'{\n "search": "anotherBadTerm", // match all instances of \'anotherBadTerm\'\n "replace": "goodTerm" // replace with the string \'goodTerm\'\n}\n'})}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{children:'"this is anotherBadTerm cool string" => "this is goodTerm cool string"\n'})}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'{\n "search": "/^\\(\\w+.com)/i", // matches any string that starts with EX \'(YourMusic.com)\'\n "replace": "[MySite.com]" // replace with the string \'[MySite.com]\'\n}\n'})}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{children:'"(Foo.com) this is a cool string" => "[MySite.com] this is a cool string"\n'})}),"\n",(0,i.jsxs)(n.p,{children:["The ",(0,i.jsx)(n.code,{children:"replace"})," property uses javascript's ",(0,i.jsxs)(n.a,{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace#specifying_a_string_as_the_replacement",children:[(0,i.jsx)(n.code,{children:"replace()"})," function and so can use any special string characters."]})]}),"\n",(0,i.jsx)(n.h3,{id:"rules",children:"Rules"}),"\n",(0,i.jsxs)(n.p,{children:["Each ",(0,i.jsx)(n.a,{href:"/configuration/transforms#stage-rules",children:"Rule"})," must be an array of ",(0,i.jsx)(n.a,{href:"#search-and-replace-expressions",children:"search-and-replace expressions"}),":"]}),"\n",(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json"',children:'[\n {\n "name": "myLastFm",\n "configureAs": "source",\n "data": {\n // ...\n },\n "options": {\n "playTransform": {\n "type": "user",\n "preCompare": [\n {\n "title": [\n // removes "badTerm" from title\n "badTerm",\n {\n // removes "fooTerm" from title and replaces it with "barTerm"\n "search": "fooTerm",\n "replace": "barTerm"\n }\n ]\n }\n ],\n }\n }\n }\n]\n'})}),"\n",(0,i.jsx)(n.admonition,{type:"note",children:(0,i.jsxs)(n.p,{children:["If the value of the field (title, an artist, album) is an empty string after transforming then the field is ",(0,i.jsx)(n.strong,{children:"removed."})]})}),"\n",(0,i.jsx)(n.h2,{id:"examples",children:"Examples"}),"\n",(0,i.jsxs)(n.h3,{id:"usage-with-when-condition",children:["Usage with ",(0,i.jsx)(n.code,{children:"when"})," condition"]}),"\n",(0,i.jsxs)(n.p,{children:["Using ",(0,i.jsx)(n.code,{children:"when"})," for ",(0,i.jsx)(n.a,{href:"/configuration/transforms#conditional-modification",children:"Conditional Modification"})]}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'// On search-replace in title...\n// IF artist matches "Elephant Gym"\n// THEN Run regex search-replace ELSE skip this rule\n//\n// Run live|remastered regex remove on title\n{\n "title": [\n {\n "search": "/\\\\s\\\\-\\\\s\u6EFE\u77F340\\\\s\u6EFE\u77F3\u649E\u6A02\u968A\\\\s40\u5718\u62DA\u7D93\u5178(.+)$/i",\n "replace": "",\n "when": [\n {\n "artist": "/Elephant Gym/"\n }\n ]\n },\n "/(\\\\s\\\\-\\\\s|\\\\s)(feat\\\\.(.+)|live|remastered(.+))$/i"\n ],\n}\n'})})]}),"\n",(0,i.jsx)(n.h3,{id:"remove-phrase-from-title-in-all-new-plays",children:"Remove phrase from Title in all new Plays"}),"\n",(0,i.jsxs)(n.p,{children:["Removes the phrase ",(0,i.jsx)(n.code,{children:"(Album Version)"})," from the Title of a Play"]}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'{\n "title": [\n "(Album Version)"\n ]\n}\n\n'})})]}),"\n",(0,i.jsx)(n.h3,{id:"remove-all-parenthesized-content-from-the-end-of-a-title",children:"Remove all parenthesized content from the end of a title"}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'{\n"compare": {\n "candidate": {\n "title": [\n "/(\\(.+\\))\\s*$/"\n ]\n },\n "existing": {\n "title": [\n "/(\\(.+\\))\\s*$/"\n ]\n },\n },\n}\n'})})]}),"\n",(0,i.jsx)(n.h3,{id:"rename-misspelled-artist-in-all-new-plays",children:"Rename misspelled artist in all new Plays"}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'{\n "artists": [\n {\n "search": "Boz Skaggs",\n "replace": "Boz Scaggs"\n }\n ]\n}\n'})})]}),"\n",(0,i.jsx)(n.h3,{id:"remove-various-artists-albums-in-all-new-plays",children:'Remove "Various Artists" albums in all new Plays'}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json5",children:'{\n "album": [\n {\n "search": "Various Artists",\n "replace": ""\n }\n ]\n}\n'})})]}),"\n",(0,i.jsx)(n.h3,{id:"extract-primary-artist-from-delimited-multi-artist-string",children:"Extract primary Artist from delimited, multi-Artist string"}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)(n.p,{children:"When the Artist string is actually a multi-artist, delimited string, this search-and-replace will replace the string with just the first artist found."}),(0,i.jsx)(n.p,{children:"Ex"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{children:"My Artist One / My Artist Two / Another Guy\nMy Artist One\n"})}),(0,i.jsxs)(n.p,{children:["Artists are delimited with a spaced forward slash (",(0,i.jsx)(n.code,{children:"/"}),") in the regex below. Replace the contents of the ",(0,i.jsx)(n.code,{children:"delim"})," capture group with the delimiter for your use case. Some more common scenarios:"]}),(0,i.jsxs)(n.ul,{children:["\n",(0,i.jsxs)(n.li,{children:[(0,i.jsx)(n.code,{children:"(?<delim>\\\\/)"})," No spaces between slash IE ",(0,i.jsx)(n.code,{children:"My Artist One/My Artist Two/Another Guy"})]}),"\n",(0,i.jsxs)(n.li,{children:[(0,i.jsx)(n.code,{children:"(?<delim>\\\\s*\\\\\\\\\\s*)"})," Backslash instead of forward slash IE ",(0,i.jsx)(n.code,{children:"My Artist One \\ My Artist Two \\ Another Guy"})]}),"\n",(0,i.jsxs)(n.li,{children:[(0,i.jsx)(n.code,{children:"(?<delim>,)"})," Comma IE ",(0,i.jsx)(n.code,{children:"My Artist One, My Artist Two, Another Guy"})]}),"\n"]}),(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"Example"}),(0,i.jsx)(n.pre,{children:(0,i.jsx)(n.code,{className:"language-json",children:'{\n "artists": [\n {\n "search": "(.*?)(?<delim>\\\\s*\\\\/\\\\s*)(.*$)",\n "replace": "$1"\n }\n ]\n}\n'})})]})]})]})}function h(e={}){let{wrapper:n}={...(0,a.a)(),...e.components};return n?(0,i.jsx)(n,{...e,children:(0,i.jsx)(d,{...e})}):d(e)}}}]);
-1
assets/js/4edc808e.ac35797b.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["8005"],{38741:function(e,i,n){n.r(i),n.d(i,{frontMatter:()=>t,default:()=>d,toc:()=>a,metadata:()=>s,assets:()=>c,contentTitle:()=>l});var s=JSON.parse('{"id":"index","title":"Overview","description":"Latest Release","source":"@site/docs/index.mdx","sourceDirName":".","slug":"/","permalink":"/multi-scrobbler/","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/index.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"slug":"/","title":"Overview","sidebar_position":1},"sidebar":"tutorialSidebar","next":{"title":"Quickstart","permalink":"/multi-scrobbler/quickstart"}}'),r=n(85893),o=n(50065);let t={slug:"/",title:"Overview",sidebar_position:1},l=void 0,c={},a=[{value:"How Does multi-scrobbler (MS) Work?",id:"how-does-multi-scrobbler-ms-work",level:2},{value:"Source",id:"source",level:3},{value:"Client",id:"client",level:3},{value:"Quick Start",id:"quick-start",level:2},{value:"Installation",id:"installation",level:2},{value:"Configuration",id:"configuration",level:2},{value:"Usage",id:"usage",level:2},{value:"Help/FAQ",id:"helpfaq",level:2},{value:"Development",id:"development",level:2},{value:"License",id:"license",level:2}];function h(e){let i={a:"a",code:"code",h2:"h2",h3:"h3",img:"img",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,o.a)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(i.p,{children:[(0,r.jsx)(i.img,{src:"https://img.shields.io/github/v/release/foxxmd/multi-scrobbler",alt:"Latest Release"}),"\n",(0,r.jsx)(i.img,{src:"https://img.shields.io/badge/License-MIT-yellow.svg",alt:"License: MIT"}),"\n",(0,r.jsx)(i.img,{src:"https://img.shields.io/docker/pulls/foxxmd/multi-scrobbler",alt:"Docker Pulls"})]}),"\n",(0,r.jsx)("img",{src:n(84858).Z,align:"right",alt:"multi-scrobbler logo",width:"180",height:"180"}),"\n",(0,r.jsxs)(i.p,{children:["A javascript app to scrobble music you listened to, to ",(0,r.jsx)(i.a,{href:"https://github.com/krateng/maloja",children:"Maloja"}),", ",(0,r.jsx)(i.a,{href:"https://www.last.fm",children:"Last.fm"}),", ",(0,r.jsx)(i.a,{href:"https://listenbrainz.org",children:"ListenBrainz"}),", and ",(0,r.jsx)(i.a,{href:"https://koito.io/",children:"Koito"}),"."]}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsxs)(i.li,{children:["Supports scrobbling from many ",(0,r.jsx)(i.a,{href:"/configuration/sources",children:(0,r.jsx)(i.strong,{children:"Sources"})}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/azuracast",children:"Azuracast"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/deezer",children:"Deezer"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/google-cast",children:"Google Cast (Chromecast)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/icecast",children:"Icecast"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/jellyfin",children:"Jellyfin"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/jriver",children:"JRiver"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/kodi",children:"Kodi"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/koito-source",children:"Koito"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/lastfm-source",children:"Last.fm"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/lastfm-endpoint",children:"Last.fm (Endpoint)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/listenbrainz-source",children:"ListenBrainz"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/listenbrainz-endpoint",children:"ListenBrainz (Endpoint)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/maloja",children:"Maloja"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/mopidy",children:"Mopidy"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/mpd",children:"MPD (Music Player Daemon)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/mpris",children:"MPRIS (Linux Desktop)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/musikcube",children:"Musikcube"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/plex",children:"Plex"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/rocksky-source",children:"Rocksky"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/spotify",children:"Spotify"})}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.a,{href:"/configuration/sources/subsonic",children:"Subsonic-compatible APIs"})," (like ",(0,r.jsx)(i.a,{href:"https://airsonic.github.io/",children:"Airsonic"})," and ",(0,r.jsx)(i.a,{href:"https://www.navidrome.org/",children:"Navidrome"}),")"]}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/tealfm-source",children:"teal.fm"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/webscrobbler",children:"WebScrobbler"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/vlc",children:"VLC"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/yamaha-musiccast",children:"Yamaha MusicCast"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/youtube-music",children:"Youtube Music"})}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(i.li,{children:["Supports scrobbling to many ",(0,r.jsx)(i.a,{href:"/configuration/clients",children:(0,r.jsx)(i.strong,{children:"Clients"})}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/koito",children:"Koito"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/lastfm",children:"Last.fm"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/listenbrainz",children:"ListenBrainz"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/maloja",children:"Maloja"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/rocksky",children:"Rocksky"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/tealfm",children:"teal.fm"})}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(i.li,{children:["Monitor status of Sources and Clients using ",(0,r.jsx)(i.a,{href:"/configuration#webhook-configurations",children:"webhooks (Gotify, Ntfy, Apprise)"})," or ",(0,r.jsx)(i.a,{href:"/configuration#health-endpoint",children:"healthcheck endpoint"})]}),"\n",(0,r.jsxs)(i.li,{children:["Supports ",(0,r.jsx)(i.a,{href:"/configuration/clients#now-playing",children:"Now Playing"})," for scrobble Clients"]}),"\n",(0,r.jsx)(i.li,{children:"Supports configuring for single or multiple users (scrobbling for your friends and family!)"}),"\n",(0,r.jsx)(i.li,{children:"Web server interface for stats, basic control, and detailed logs"}),"\n",(0,r.jsx)(i.li,{children:"Graceful network and client failure handling (queued scrobbles that auto-retry)"}),"\n",(0,r.jsx)(i.li,{children:"Smart handling of credentials (persistent, authorization through app)"}),"\n",(0,r.jsxs)(i.li,{children:["Easy configuration through ",(0,r.jsx)(i.a,{href:"/configuration#configuration-types",children:"ENVs or JSON"})]}),"\n",(0,r.jsxs)(i.li,{children:["Modify data before scrobbling with ",(0,r.jsx)(i.a,{href:"/configuration/transforms",children:"regular expression or search patterns"})]}),"\n",(0,r.jsxs)(i.li,{children:["Install using ",(0,r.jsx)(i.a,{href:"/installation#docker",children:"Docker images for x86/ARM"})," or ",(0,r.jsx)(i.a,{href:"/installation#nodejs",children:"locally with NodeJS"})]}),"\n"]}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.a,{href:"/quickstart",children:(0,r.jsx)(i.strong,{children:"Quick Start Guide"})})}),"\n",(0,r.jsx)("img",{src:n(68338).Z,width:"800"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.strong,{children:"Why should I use this over a browser extension and/or mobile app scrobbler?"})}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Platform independent"})," -- Because multi-scrobbler communicates directly with service APIs it will scrobble everything you play regardless of where you play it. No more need for apps on every platform you use!"]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Open-source"})," -- Get peace of mind knowing exactly how your personal data is being handled."]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Track your activity regardless of where you listen"})," -- Scrobble from many Sources to one Client with ease and without duplicating tracks."]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Manage scrobbling for others"})," -- Scrobble for your friends and family without any setup on their part. Easily silo sources to specific clients to keep plays separate."]}),"\n"]}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.strong,{children:"But I already scrobble my music to Last.fm/ListenBrainz, is multi-scrobbler for me?"})}),"\n",(0,r.jsxs)(i.p,{children:["Yes! You can use ",(0,r.jsxs)(i.a,{href:"/configuration/sources/lastfm-source",children:["Last.fm as a ",(0,r.jsx)(i.strong,{children:"Source"})]})," or ",(0,r.jsxs)(i.a,{href:"configuration/sources/listenbrainz-source",children:["Listenbrainz as a ",(0,r.jsx)(i.strong,{children:"Source"})]})," to forward scrobbles from your profile to any other Client! That way you can keep your current scrobble setup as-is but still get the benefit of capturing your data to a self-hosted location."]}),"\n",(0,r.jsx)(i.h2,{id:"how-does-multi-scrobbler-ms-work",children:"How Does multi-scrobbler (MS) Work?"}),"\n",(0,r.jsxs)(i.p,{children:["You set up ",(0,r.jsx)(i.a,{href:"/configuration",children:"configurations"})," for one or more ",(0,r.jsx)(i.a,{href:"/configuration/sources",children:(0,r.jsx)(i.strong,{children:"Sources"})})," and one or more ",(0,r.jsx)(i.a,{href:"/configuration/clients",children:(0,r.jsx)(i.strong,{children:"Clients"})}),". MS monitors all of your configured ",(0,r.jsx)(i.strong,{children:"Sources"}),". When new tracks are played by a Source MS grabs that information and then sends it (scrobbles it) to all ",(0,r.jsx)(i.strong,{children:"Clients"})," that Source is configured to forward to."]}),"\n",(0,r.jsx)(i.h3,{id:"source",children:"Source"}),"\n",(0,r.jsxs)(i.p,{children:["A ",(0,r.jsx)(i.a,{href:"/configuration/sources",children:(0,r.jsx)(i.strong,{children:"Source"})})," is a data source that contains information about music you are playing or have listened to, like a desktop player, web music player, or cloud music service. Examples are ",(0,r.jsx)(i.strong,{children:"Spotify, Jellyfin, Plex, Youtube Music, Navidrome"}),", etc..."]}),"\n",(0,r.jsx)(i.p,{children:"Source configurations consist of:"}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:"A friendly name."}),"\n",(0,r.jsx)(i.li,{children:"Any data needed to communicate or authenticate with the Source."}),"\n",(0,r.jsx)(i.li,{children:"An optional list of Client names that the Source should scrobble to. If omitted the Source also scrobbles to all configured Clients."}),"\n"]}),"\n",(0,r.jsx)(i.h3,{id:"client",children:"Client"}),"\n",(0,r.jsxs)(i.p,{children:["A ",(0,r.jsx)(i.a,{href:"/configuration/clients",children:(0,r.jsx)(i.strong,{children:"Client"})})," is an application that stores the historical information about what music you have played (scrobbles). Examples are ",(0,r.jsx)(i.strong,{children:"Maloja, Last.fm, Listenbrainz"}),"..."]}),"\n",(0,r.jsx)(i.p,{children:"Client configurations consist of:"}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:"A friendly name."}),"\n",(0,r.jsx)(i.li,{children:"Any data needed to communicate or authenticate with the Client."}),"\n"]}),"\n",(0,r.jsx)(i.h2,{id:"quick-start",children:"Quick Start"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsxs)(i.a,{href:"/quickstart",children:["See the ",(0,r.jsx)(i.strong,{children:"Quick Start Guide"})]})}),"\n",(0,r.jsx)(i.h2,{id:"installation",children:"Installation"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsxs)(i.a,{href:"/installation",children:["See the ",(0,r.jsx)(i.strong,{children:"Installation"})," documentation"]})}),"\n",(0,r.jsx)(i.h2,{id:"configuration",children:"Configuration"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsxs)(i.a,{href:"/configuration",children:["See the ",(0,r.jsx)(i.strong,{children:"Configuration"})," documentation"]})}),"\n",(0,r.jsx)(i.h2,{id:"usage",children:"Usage"}),"\n",(0,r.jsx)(i.p,{children:"A status page with statistics, recent logs, and some runtime configuration options can be found at"}),"\n",(0,r.jsx)(i.pre,{children:(0,r.jsx)(i.code,{children:"http://localhost:9078\n"})}),"\n",(0,r.jsx)(i.p,{children:"Output is also provided to stdout/stderr as well as file if specified in configuration."}),"\n",(0,r.jsx)(i.p,{children:"On first startup you may need to authorize Spotify and/or Last.fm by visiting the callback URL (which can also be accessed from the status page). Visit the status page above to find the applicable link to trigger this."}),"\n",(0,r.jsx)(i.h2,{id:"helpfaq",children:"Help/FAQ"}),"\n",(0,r.jsxs)(i.p,{children:["Having issues with connections or configuration? Check the ",(0,r.jsx)(i.a,{href:"/FAQ",children:"FAQ"})," before creating an issue!"]}),"\n",(0,r.jsx)(i.h2,{id:"development",children:"Development"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.a,{href:"/development/dev-common",children:"Detailed architecture and development guides for Sources/Clients"})}),"\n",(0,r.jsx)(i.h2,{id:"license",children:"License"}),"\n",(0,r.jsx)(i.p,{children:"MIT"})]})}function d(e={}){let{wrapper:i}={...(0,o.a)(),...e.components};return i?(0,r.jsx)(i,{...e,children:(0,r.jsx)(h,{...e})}):h(e)}},84858:function(e,i,n){n.d(i,{Z:()=>s});let s=n.p+"assets/images/icon-ae97f2044a6600a69b9c4eeb60cef68e.png"},68338:function(e,i,n){n.d(i,{Z:()=>s});let s=n.p+"assets/images/status-ui-4622935175049ce84685778fe2e4c8d8.png"}}]);
+1
assets/js/4edc808e.e1172d67.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["8005"],{38741:function(e,i,n){n.r(i),n.d(i,{frontMatter:()=>t,default:()=>d,toc:()=>a,metadata:()=>s,assets:()=>c,contentTitle:()=>l});var s=JSON.parse('{"id":"index","title":"Overview","description":"Latest Release","source":"@site/docs/index.mdx","sourceDirName":".","slug":"/","permalink":"/multi-scrobbler/","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/index.mdx","tags":[],"version":"current","sidebarPosition":1,"frontMatter":{"slug":"/","title":"Overview","sidebar_position":1},"sidebar":"tutorialSidebar","next":{"title":"Quickstart","permalink":"/multi-scrobbler/quickstart"}}'),r=n(85893),o=n(50065);let t={slug:"/",title:"Overview",sidebar_position:1},l=void 0,c={},a=[{value:"How Does multi-scrobbler (MS) Work?",id:"how-does-multi-scrobbler-ms-work",level:2},{value:"Source",id:"source",level:3},{value:"Client",id:"client",level:3},{value:"Quick Start",id:"quick-start",level:2},{value:"Installation",id:"installation",level:2},{value:"Configuration",id:"configuration",level:2},{value:"Usage",id:"usage",level:2},{value:"Help/FAQ",id:"helpfaq",level:2},{value:"Development",id:"development",level:2},{value:"License",id:"license",level:2}];function h(e){let i={a:"a",code:"code",h2:"h2",h3:"h3",img:"img",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,o.a)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(i.p,{children:[(0,r.jsx)(i.img,{src:"https://img.shields.io/github/v/release/foxxmd/multi-scrobbler",alt:"Latest Release"}),"\n",(0,r.jsx)(i.img,{src:"https://img.shields.io/badge/License-MIT-yellow.svg",alt:"License: MIT"}),"\n",(0,r.jsx)(i.img,{src:"https://img.shields.io/docker/pulls/foxxmd/multi-scrobbler",alt:"Docker Pulls"})]}),"\n",(0,r.jsx)("img",{src:n(84858).Z,align:"right",alt:"multi-scrobbler logo",width:"180",height:"180"}),"\n",(0,r.jsxs)(i.p,{children:["A javascript app to scrobble music you listened to, to ",(0,r.jsx)(i.a,{href:"https://github.com/krateng/maloja",children:"Maloja"}),", ",(0,r.jsx)(i.a,{href:"https://www.last.fm",children:"Last.fm"}),", ",(0,r.jsx)(i.a,{href:"https://listenbrainz.org",children:"ListenBrainz"}),", and ",(0,r.jsx)(i.a,{href:"https://koito.io/",children:"Koito"}),"."]}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsxs)(i.li,{children:["Supports scrobbling from many ",(0,r.jsx)(i.a,{href:"/configuration/sources",children:(0,r.jsx)(i.strong,{children:"Sources"})}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/azuracast",children:"Azuracast"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/deezer",children:"Deezer"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/google-cast",children:"Google Cast (Chromecast)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/icecast",children:"Icecast"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/jellyfin",children:"Jellyfin"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/jriver",children:"JRiver"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/kodi",children:"Kodi"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/koito-source",children:"Koito"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/lastfm-source",children:"Last.fm"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/lastfm-endpoint",children:"Last.fm (Endpoint)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/listenbrainz-source",children:"ListenBrainz"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/listenbrainz-endpoint",children:"ListenBrainz (Endpoint)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/maloja",children:"Maloja"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/mopidy",children:"Mopidy"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/mpd",children:"MPD (Music Player Daemon)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/mpris",children:"MPRIS (Linux Desktop)"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/musikcube",children:"Musikcube"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/plex",children:"Plex"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/rocksky-source",children:"Rocksky"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/spotify",children:"Spotify"})}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.a,{href:"/configuration/sources/subsonic",children:"Subsonic-compatible APIs"})," (like ",(0,r.jsx)(i.a,{href:"https://airsonic.github.io/",children:"Airsonic"})," and ",(0,r.jsx)(i.a,{href:"https://www.navidrome.org/",children:"Navidrome"}),")"]}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/tealfm-source",children:"teal.fm"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/webscrobbler",children:"WebScrobbler"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/vlc",children:"VLC"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/yamaha-musiccast",children:"Yamaha MusicCast"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/sources/youtube-music",children:"Youtube Music"})}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(i.li,{children:["Supports scrobbling to many ",(0,r.jsx)(i.a,{href:"/configuration/clients",children:(0,r.jsx)(i.strong,{children:"Clients"})}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/koito",children:"Koito"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/lastfm",children:"Last.fm"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/listenbrainz",children:"ListenBrainz"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/maloja",children:"Maloja"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/rocksky",children:"Rocksky"})}),"\n",(0,r.jsx)(i.li,{children:(0,r.jsx)(i.a,{href:"/configuration/clients/tealfm",children:"teal.fm"})}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(i.li,{children:["Enhance/correct scrobble data with ",(0,r.jsx)(i.a,{href:"/configuration/transforms",children:"search patterns"}),", ",(0,r.jsx)(i.a,{href:"/configuration/transforms",children:"built-in corrections"}),", or the ",(0,r.jsx)(i.a,{href:"/configuration/transforms/musicbrainz",children:"Musicbrainz"})," database"]}),"\n",(0,r.jsxs)(i.li,{children:["Monitor status of Sources and Clients using ",(0,r.jsx)(i.a,{href:"/configuration#webhook-configurations",children:"webhooks (Gotify, Ntfy, Apprise)"})," or ",(0,r.jsx)(i.a,{href:"/configuration#health-endpoint",children:"healthcheck endpoint"})]}),"\n",(0,r.jsxs)(i.li,{children:["Supports ",(0,r.jsx)(i.a,{href:"/configuration/clients#now-playing",children:"Now Playing"})," for scrobble Clients"]}),"\n",(0,r.jsx)(i.li,{children:"Supports configuring for single or multiple users (scrobbling for your friends and family!)"}),"\n",(0,r.jsx)(i.li,{children:"Web server interface for stats, basic control, and detailed logs"}),"\n",(0,r.jsx)(i.li,{children:"Graceful network and client failure handling (queued scrobbles that auto-retry)"}),"\n",(0,r.jsx)(i.li,{children:"Smart handling of credentials (persistent, authorization through app)"}),"\n",(0,r.jsxs)(i.li,{children:["Easy configuration through ",(0,r.jsx)(i.a,{href:"/configuration#configuration-types",children:"ENVs or JSON"})]}),"\n",(0,r.jsxs)(i.li,{children:["Install using ",(0,r.jsx)(i.a,{href:"/installation#docker",children:"Docker images for x86/ARM"})," or ",(0,r.jsx)(i.a,{href:"/installation#nodejs",children:"locally with NodeJS"})]}),"\n"]}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.a,{href:"/quickstart",children:(0,r.jsx)(i.strong,{children:"Quick Start Guide"})})}),"\n",(0,r.jsx)("img",{src:n(68338).Z,width:"800"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.strong,{children:"Why should I use this over a browser extension and/or mobile app scrobbler?"})}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Platform independent"})," -- Because multi-scrobbler communicates directly with service APIs it will scrobble everything you play regardless of where you play it. No more need for apps on every platform you use!"]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Open-source"})," -- Get peace of mind knowing exactly how your personal data is being handled."]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Track your activity regardless of where you listen"})," -- Scrobble from many Sources to one Client with ease and without duplicating tracks."]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Manage scrobbling for others"})," -- Scrobble for your friends and family without any setup on their part. Easily silo sources to specific clients to keep plays separate."]}),"\n",(0,r.jsxs)(i.li,{children:[(0,r.jsx)(i.strong,{children:"Standardize your data"})," -- Match your scrobbles with the ",(0,r.jsx)(i.a,{href:"/configuration/transforms/musicbrainz",children:"Musicbrainz"})," database to ensure scrobbled data is as correct and rich as possible."]}),"\n"]}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.strong,{children:"But I already scrobble my music to Last.fm/ListenBrainz, is multi-scrobbler for me?"})}),"\n",(0,r.jsxs)(i.p,{children:["Yes! You can use ",(0,r.jsxs)(i.a,{href:"/configuration/sources/lastfm-source",children:["Last.fm as a ",(0,r.jsx)(i.strong,{children:"Source"})]})," or ",(0,r.jsxs)(i.a,{href:"configuration/sources/listenbrainz-source",children:["Listenbrainz as a ",(0,r.jsx)(i.strong,{children:"Source"})]})," to forward scrobbles from your profile to any other Client! That way you can keep your current scrobble setup as-is but still get the benefit of capturing your data to a self-hosted location."]}),"\n",(0,r.jsxs)(i.p,{children:["Use the ",(0,r.jsx)(i.strong,{children:"Last.fm"})," tab in the ",(0,r.jsx)(i.a,{href:"/quickstart/#setup-sources",children:"Quickstart Sources"})," to get started."]}),"\n",(0,r.jsx)(i.h2,{id:"how-does-multi-scrobbler-ms-work",children:"How Does multi-scrobbler (MS) Work?"}),"\n",(0,r.jsxs)(i.p,{children:["You set up ",(0,r.jsx)(i.a,{href:"/configuration",children:"configurations"})," for one or more ",(0,r.jsx)(i.a,{href:"/configuration/sources",children:(0,r.jsx)(i.strong,{children:"Sources"})})," and one or more ",(0,r.jsx)(i.a,{href:"/configuration/clients",children:(0,r.jsx)(i.strong,{children:"Clients"})}),". MS monitors all of your configured ",(0,r.jsx)(i.strong,{children:"Sources"}),". When new tracks are played by a Source MS grabs that information and then sends it (scrobbles it) to all ",(0,r.jsx)(i.strong,{children:"Clients"})," that Source is configured to forward to."]}),"\n",(0,r.jsx)(i.h3,{id:"source",children:"Source"}),"\n",(0,r.jsxs)(i.p,{children:["A ",(0,r.jsx)(i.a,{href:"/configuration/sources",children:(0,r.jsx)(i.strong,{children:"Source"})})," is a data source that contains information about music you are playing or have listened to, like a desktop player, web music player, or cloud music service. Examples are ",(0,r.jsx)(i.strong,{children:"Spotify, Jellyfin, Plex, Youtube Music, Navidrome"}),", etc..."]}),"\n",(0,r.jsx)(i.p,{children:"Source configurations consist of:"}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:"A friendly name."}),"\n",(0,r.jsx)(i.li,{children:"Any data needed to communicate or authenticate with the Source."}),"\n",(0,r.jsx)(i.li,{children:"An optional list of Client names that the Source should scrobble to. If omitted the Source also scrobbles to all configured Clients."}),"\n"]}),"\n",(0,r.jsx)(i.h3,{id:"client",children:"Client"}),"\n",(0,r.jsxs)(i.p,{children:["A ",(0,r.jsx)(i.a,{href:"/configuration/clients",children:(0,r.jsx)(i.strong,{children:"Client"})})," is an application that stores the historical information about what music you have played (scrobbles). Examples are ",(0,r.jsx)(i.strong,{children:"Maloja, Last.fm, Listenbrainz"}),"..."]}),"\n",(0,r.jsx)(i.p,{children:"Client configurations consist of:"}),"\n",(0,r.jsxs)(i.ul,{children:["\n",(0,r.jsx)(i.li,{children:"A friendly name."}),"\n",(0,r.jsx)(i.li,{children:"Any data needed to communicate or authenticate with the Client."}),"\n"]}),"\n",(0,r.jsx)(i.h2,{id:"quick-start",children:"Quick Start"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsxs)(i.a,{href:"/quickstart",children:["See the ",(0,r.jsx)(i.strong,{children:"Quick Start Guide"})]})}),"\n",(0,r.jsx)(i.h2,{id:"installation",children:"Installation"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsxs)(i.a,{href:"/installation",children:["See the ",(0,r.jsx)(i.strong,{children:"Installation"})," documentation"]})}),"\n",(0,r.jsx)(i.h2,{id:"configuration",children:"Configuration"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsxs)(i.a,{href:"/configuration",children:["See the ",(0,r.jsx)(i.strong,{children:"Configuration"})," documentation"]})}),"\n",(0,r.jsx)(i.h2,{id:"usage",children:"Usage"}),"\n",(0,r.jsx)(i.p,{children:"A status page with statistics, recent logs, and some runtime configuration options can be found at"}),"\n",(0,r.jsx)(i.pre,{children:(0,r.jsx)(i.code,{children:"http://localhost:9078\n"})}),"\n",(0,r.jsx)(i.p,{children:"Output is also provided to stdout/stderr as well as file if specified in configuration."}),"\n",(0,r.jsx)(i.p,{children:"On first startup you may need to authorize Spotify and/or Last.fm by visiting the callback URL (which can also be accessed from the status page). Visit the status page above to find the applicable link to trigger this."}),"\n",(0,r.jsx)(i.h2,{id:"helpfaq",children:"Help/FAQ"}),"\n",(0,r.jsxs)(i.p,{children:["Having issues with connections or configuration? Check the ",(0,r.jsx)(i.a,{href:"/FAQ",children:"FAQ"})," before creating an issue!"]}),"\n",(0,r.jsx)(i.h2,{id:"development",children:"Development"}),"\n",(0,r.jsx)(i.p,{children:(0,r.jsx)(i.a,{href:"/development/dev-common",children:"Detailed architecture and development guides for Sources/Clients"})}),"\n",(0,r.jsx)(i.h2,{id:"license",children:"License"}),"\n",(0,r.jsx)(i.p,{children:"MIT"})]})}function d(e={}){let{wrapper:i}={...(0,o.a)(),...e.components};return i?(0,r.jsx)(i,{...e,children:(0,r.jsx)(h,{...e})}):h(e)}},84858:function(e,i,n){n.d(i,{Z:()=>s});let s=n.p+"assets/images/icon-ae97f2044a6600a69b9c4eeb60cef68e.png"},68338:function(e,i,n){n.d(i,{Z:()=>s});let s=n.p+"assets/images/status-ui-4622935175049ce84685778fe2e4c8d8.png"}}]);
+1
assets/js/74876495.519782eb.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["7631"],{73699:function(e,r,n){n.r(r),n.d(r,{frontMatter:()=>c,default:()=>m,toc:()=>h,metadata:()=>s,assets:()=>d,contentTitle:()=>a});var s=JSON.parse('{"id":"quickstart","title":"Quickstart","description":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have:","source":"@site/docs/quickstart.mdx","sourceDirName":".","slug":"/quickstart","permalink":"/multi-scrobbler/quickstart","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/quickstart.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"Quickstart","sidebar_position":2},"sidebar":"tutorialSidebar","previous":{"title":"Overview","permalink":"/multi-scrobbler/"},"next":{"title":"Overview","permalink":"/multi-scrobbler/installation/"}}'),i=n(85893),t=n(50065),o=n(703),l=n(73752);let c={title:"Quickstart",sidebar_position:2},a=void 0,d={},h=[{value:"Create Docker Compose File",id:"create-docker-compose-file",level:2},{value:"Setup Sources",id:"setup-sources",level:2},{value:"Create Listenbrainz Endpoint Source",id:"create-listenbrainz-endpoint-source",level:4},{value:"Configure Navidrome",id:"configure-navidrome",level:4},{value:"Setup Clients",id:"setup-clients",level:2},{value:"Start Multi-Scrobbler",id:"start-multi-scrobbler",level:2},{value:"Next Steps",id:"next-steps",level:2}];function u(e){let r={a:"a",admonition:"admonition",code:"code",h2:"h2",h4:"h4",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,t.a)(),...e.components},{Details:n}=r;return n||function(e,r){throw Error("Expected "+(r?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,i.jsxs)(i.Fragment,{children:[(0,i.jsxs)(r.p,{children:["This guide will get you up and running with multi-scrobbler using ",(0,i.jsx)(r.a,{href:"https://www.docker.com/",children:"Docker"})," and ",(0,i.jsx)(r.a,{href:"https://docs.docker.com/compose/",children:(0,i.jsx)(r.code,{children:"docker compose"})}),". At the end of the guide you will have:"]}),"\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["the dashboard served on port ",(0,i.jsx)(r.code,{children:"9078"})," of a host machine which has an IP of ",(0,i.jsx)(r.code,{children:"192.168.0.100"})]}),"\n",(0,i.jsxs)(r.li,{children:["data saved to the same directory as the ",(0,i.jsx)(r.code,{children:"docker-compose.yml"})," file"]}),"\n",(0,i.jsxs)(r.li,{children:["multi-scrobbler monitoring ",(0,i.jsx)(r.a,{href:"/configuration/sources/spotify",children:"Spotify"}),", ",(0,i.jsx)(r.a,{href:"/configuration/sources/jellyfin",children:"Jellyfin"}),", Navidrome, ",(0,i.jsx)(r.a,{href:"/configuration/sources/plex",children:"Plex"}),", and/or ",(0,i.jsx)(r.a,{href:"/configurations/sources/lastfm",children:"Last.fm"})," for listening activity"]}),"\n",(0,i.jsxs)(r.li,{children:["multi-scrobbler scrobbling to ",(0,i.jsx)(r.a,{href:"/configuration/clients/lastfm",children:"Lastfm"}),", ",(0,i.jsx)(r.a,{href:"/configuration/clients/maloja",children:"Maloja"}),", and/or ",(0,i.jsx)(r.a,{href:"/configuration/clients/koito",children:"Koito"})]}),"\n"]}),"\n",(0,i.jsx)(r.admonition,{type:"note",children:(0,i.jsxs)(r.p,{children:["If the multi-scrobbler container is on the same machine you will be viewing the dashboard from (IE ",(0,i.jsx)(r.code,{children:"localhost"}),") you can remove and ignore ",(0,i.jsx)(r.code,{children:"BASE_URL"})," usage below. Additionally, replace usage of ",(0,i.jsx)(r.code,{children:"192.168.0.100"})," with ",(0,i.jsx)(r.code,{children:"localhost"}),"."]})}),"\n",(0,i.jsx)(r.h2,{id:"create-docker-compose-file",children:"Create Docker Compose File"}),"\n",(0,i.jsxs)(r.p,{children:["Create a new folder for multi-scrobbler related data and then create ",(0,i.jsx)(r.code,{children:"docker-compose.yml"})," with this content:"]}),"\n",(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:'services:\n multi-scrobbler:\n image: foxxmd/multi-scrobbler\n container_name: multi-scrobbler\n environment:\n - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\n - BASE_URL=http://192.168.0.100:9078\n # all Environmental Variables in below examples go here!\n\n volumes:\n - "./config:/config"\n ports:\n - "9078:9078"\n restart: unless-stopped\n'})}),"\n",(0,i.jsx)(r.h2,{id:"setup-sources",children:"Setup Sources"}),"\n",(0,i.jsxs)(r.p,{children:[(0,i.jsx)(r.a,{href:"/configuration/sources",children:(0,i.jsx)(r.strong,{children:"Sources"})})," are the services/music players multi-scrobbler monitors to look for listening activity."]}),"\n",(0,i.jsxs)(o.default,{children:[(0,i.jsxs)(l.default,{value:"jellyfin",label:"Jellyfin",children:[(0,i.jsxs)(r.p,{children:["Follow the Jellyfin configuration ",(0,i.jsxs)(r.a,{href:"/configuration/sources/jellyfin",children:["instructions for setting up an ",(0,i.jsx)(r.strong,{children:"API Key"}),"."]})]}),(0,i.jsxs)(r.p,{children:["Then, add these values to the ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- JELLYFIN_URL=192.168.0.110:8096 # URL to Jellyfin UI\n- JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b # Api Key created in previous step\n- JELLYFIN_USER=MyUser # Your username in Jellyfin\n"})})]}),(0,i.jsxs)(l.default,{value:"spotify",label:"Spotify",children:[(0,i.jsxs)(r.p,{children:["To access your Spotify activity you must ",(0,i.jsx)(r.a,{href:"https://developer.spotify.com/dashboard",children:"create a Spotify App"})," to get a\n",(0,i.jsx)(r.strong,{children:"Client ID/Secret"})," and set a valid ",(0,i.jsx)(r.strong,{children:"Redirect URI"}),"."]}),(0,i.jsxs)(r.p,{children:["Refer to the ",(0,i.jsx)(r.a,{href:"/configuration/sources/spotify#authenticate-spotify-with-multi-scrobbler",children:"Spotify Authentication instructions in the docs."})]}),(0,i.jsxs)(r.p,{children:["Assuming you used the ",(0,i.jsx)(r.strong,{children:"HTTPS"})," method for your ",(0,i.jsx)(r.strong,{children:"Redirect URI"})," from the instructions above...after the application is created add these values to the ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- SPOTIFY_CLIENT_ID=yourClientId\n- SPOTIFY_CLIENT_SECRET=yourClientSecret\n- SPOTIFY_REDIRECT_URI=https://multi-scrobbler.mydomain.com/callback\n"})}),(0,i.jsxs)(r.p,{children:["Later, after ",(0,i.jsx)(r.a,{href:"#start-multi-scrobbler",children:"starting multi-scrobbler"}),", visit the dashboard at ",(0,i.jsx)(r.code,{children:"http://192.168.0.100:9078"})," and click ",(0,i.jsx)(r.strong,{children:"(Re)authenticate"})," on the Spotify card to authorize multi-scrobbler to use your account. Monitoring will begin automatically after authorization is complete."]})]}),(0,i.jsxs)(l.default,{value:"navidrome",label:"Navidrome",children:[(0,i.jsxs)(r.p,{children:["Navidrome supports ",(0,i.jsx)(r.a,{href:"https://www.navidrome.org/docs/usage/scrobbling/#listenbrainz",children:"scrobbling using Listenbrainz"}),". You should use this, rather than a ",(0,i.jsx)(r.a,{href:"/configuration/sources/subsonic",children:"Subsonic Source"})," because Navidrome's internal scrobbling functionality supports providing multiple artists and offline scrobbling while the Subsonic Source does not."]}),(0,i.jsx)(r.p,{children:"To setup Navidrome to scrobble to multi-scrobbler via the Listenbrainz option:"}),(0,i.jsx)(r.h4,{id:"create-listenbrainz-endpoint-source",children:"Create Listenbrainz Endpoint Source"}),(0,i.jsxs)(r.p,{children:["Create a new ",(0,i.jsx)(r.a,{href:"/configuration/sources/listenbrainz-endpoint",children:"Listenbrainz Endpoint"})," ",(0,i.jsx)(r.a,{href:"/configuration/sources",children:"Source"})," in multi-scrobbler by creating a token to use with the endpoint via ",(0,i.jsx)(r.a,{href:"/configuration?configType=env#configuration-types",children:"ENV Config"})," in ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- LZE_TOKEN=myCoolToken\n"})}),(0,i.jsxs)(r.p,{children:["The token can be anything. ",(0,i.jsx)(r.a,{href:"#start-multi-scrobbler",children:"(Re)start multi-scrobbler"})," after making this change."]}),(0,i.jsx)(r.h4,{id:"configure-navidrome",children:"Configure Navidrome"}),(0,i.jsxs)(r.p,{children:["Set the ",(0,i.jsx)(r.a,{href:"https://www.navidrome.org/docs/usage/configuration-options/#advanced-configuration",children:(0,i.jsx)(r.strong,{children:"ListenBrainz.BaseURL"})})," (env ",(0,i.jsx)(r.code,{children:"ND_LISTENBRAINZ_BASEURL"}),") to ",(0,i.jsx)(r.code,{children:"http://myMultiScrobblerIP:9078/1/"})," in your Navidrome installation. Assuming you are using the ",(0,i.jsx)(r.a,{href:"https://www.navidrome.org/docs/installation/docker/",children:"docker installation"}),", modify ",(0,i.jsx)(r.code,{children:"environment"})," to add:"]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="docker-compose.yml"',children:"- ND_LISTENBRAINZ_BASEURL=http://192.168.0.100:9078/1/\n"})}),(0,i.jsxs)(r.p,{children:["Restart Navidrome after making this change. Then, ",(0,i.jsx)(r.a,{href:"https://www.navidrome.org/docs/usage/scrobbling/#listenbrainz",children:"follow the directions for enabling Listenbrainz scrobbling in Navidrome"}),". The ",(0,i.jsx)(r.strong,{children:"Listenbrainz user token"})," is the token you created for ",(0,i.jsx)(r.code,{children:"LZE_TOKEN"})," earlier."]})]}),(0,i.jsxs)(l.default,{value:"plex",label:"Plex",children:[(0,i.jsxs)(r.p,{children:["Find your ",(0,i.jsx)(r.a,{href:"https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/",children:(0,i.jsx)(r.strong,{children:"Plex Token"})})," and make note of the ",(0,i.jsx)(r.strong,{children:"URL"})," and ",(0,i.jsx)(r.strong,{children:"Port"})," used to connect to your Plex instance."]}),(0,i.jsxs)(r.p,{children:["Add these values to the ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- PLEX_URL=http://192.168.0.101:32400\n- PLEX_TOKEN=6c0ihz8j7__f5r18oa0zm8\n# optional, restrict scrobbling to a list of comma-delimited users\n#- PLEX_USERS_ALLOW=myPlexUsername\n"})}),(0,i.jsxs)(r.p,{children:[(0,i.jsx)(r.a,{href:"#start-multi-scrobbler",children:"Restart multi-scrobbler"})," to create the new Source. You may wish to refer to the ",(0,i.jsx)(r.a,{href:"/configuration/sources/plex",children:"User and Library defaults/filtering"})," in the Plex Source docs for a more granular setup."]})]}),(0,i.jsxs)(l.default,{value:"lastfm",label:"Last.fm",children:[(0,i.jsxs)(r.p,{children:["If you are already scrobbling to Last.fm and wish to mirror your scrobbling activity to one or more other ",(0,i.jsx)(r.a,{href:"#setup-clients",children:"Clients"}),", use this Source."]}),(0,i.jsxs)(r.p,{children:["If, instead, you want to scrobble ",(0,i.jsx)(r.strong,{children:"from"})," multi-scrobbler ",(0,i.jsx)(r.strong,{children:"to"})," Last.fm then see the Last.fm tab in the ",(0,i.jsx)(r.a,{href:"#setup-clients",children:"Setup Clients"})," section below."]}),(0,i.jsx)(r.p,{children:(0,i.jsx)(r.a,{href:"https://www.last.fm/api/account/create",children:"Register for an API account at Last.fm."})}),(0,i.jsxs)(r.p,{children:["Use the following for ",(0,i.jsx)(r.strong,{children:"Callback URL"}),":"]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{children:"http://192.168.0.100:9078/lastfm/callback\n"})}),(0,i.jsxs)(r.p,{children:["After account creation make note of the ",(0,i.jsx)(r.strong,{children:"Api Key"})," and ",(0,i.jsx)(r.strong,{children:"Secret"})," that are displayed."]}),(0,i.jsxs)(r.p,{children:["Create a new ",(0,i.jsx)(r.a,{href:"/configuration?configType=file#configuration-types",children:"File"})," named ",(0,i.jsx)(r.code,{children:"lastfm.json"})," in the ",(0,i.jsx)(r.code,{children:"./config"})," directory that will be used with your ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," stack"]})," and copy the below contents, replacing placeholders with the data you got from Last.fm API account creation:"]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-json",metastring:'title="~/msData/config/lastfm.json"',children:'[\n {\n "name": "myLastFmSource",\n "configureAs": "source",\n "data": {\n "apiKey": "MY_API_KEY_PLACEDHOLDER",\n "secret": "MY_SECRET_PLACEHOLDER",\n "redirectUri": "http://192.168.0.100:9078/lastfm/callback"\n }\n }\n]\n'})}),(0,i.jsxs)(r.p,{children:["Later, after ",(0,i.jsx)(r.a,{href:"#start-multi-scrobbler",children:"starting multi-scrobbler"}),", visit the dashboard at ",(0,i.jsx)(r.code,{children:"http://192.168.0.100:9078"})," and click ",(0,i.jsx)(r.strong,{children:"(Re)authenticate"})," on the ",(0,i.jsx)(r.strong,{children:"Last.fm (Source)"})," card to authorize multi-scrobbler to use your account. Monitoring will begin automatically after authorization is complete."]})]})]}),"\n",(0,i.jsx)(r.h2,{id:"setup-clients",children:"Setup Clients"}),"\n",(0,i.jsxs)(r.p,{children:[(0,i.jsx)(r.a,{href:"/configuration/clients",children:(0,i.jsx)(r.strong,{children:"Clients"})})," are services that store scrobbles. Multi-scrobbler will scrobble all listening activity from the ",(0,i.jsx)(r.strong,{children:"Sources"})," you configured to all ",(0,i.jsx)(r.strong,{children:"Clients"})," you configure here."]}),"\n",(0,i.jsxs)(o.default,{children:[(0,i.jsxs)(l.default,{value:"maloja",label:"Maloja",children:[(0,i.jsxs)(r.p,{children:["Setup a ",(0,i.jsx)(r.a,{href:"https://github.com/krateng/maloja?tab=readme-ov-file#how-to-install",children:"Maloja server"})," if you have not already done this."]}),(0,i.jsxs)(n,{children:[(0,i.jsx)("summary",{children:"Maloja Setup Intructions"}),(0,i.jsxs)(r.p,{children:["Using Maloja's example ",(0,i.jsx)(r.code,{children:"docker-compose.yml"}),":"]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'reference title="~/malojaData/docker-compose.yml"',children:"https://github.com/krateng/maloja/blob/master/example-compose.yml\n"})}),(0,i.jsxs)(r.p,{children:["Uncomment ",(0,i.jsx)(r.code,{children:"environment"})," and add ",(0,i.jsx)(r.code,{children:"MALOJA_FORCE_PASSWORD=CHANGE_ME"})," to set an admin password"]}),(0,i.jsx)(r.p,{children:"Start the container:"}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-shell",metastring:'title="~/malojaData"',children:"docker compose up -d\n"})})]}),(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["Navigate to the Admin Panel (Cog in upper-right corner) -> API Keys (or at ",(0,i.jsx)(r.a,{href:"http://192.168.0.100:42010/admin_apikeys",children:"http://192.168.0.100:42010/admin_apikeys"}),")","\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["Create a ",(0,i.jsx)(r.strong,{children:"New Key"})," and then copy the generated key value"]}),"\n"]}),"\n"]}),"\n"]}),(0,i.jsxs)(r.p,{children:["Finally, add these values to the ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created for multi-scrobbler earlier."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- MALOJA_URL=http://192.168.0.100:42010\n- MALOJA_API_KEY=myApiKey\n"})})]}),(0,i.jsxs)(l.default,{value:"lastfm",label:"Last.fm",children:[(0,i.jsx)(r.p,{children:(0,i.jsx)(r.a,{href:"https://www.last.fm/api/account/create",children:"Register for an API account at Last.fm."})}),(0,i.jsxs)(r.p,{children:["Use the following for ",(0,i.jsx)(r.strong,{children:"Callback URL"}),":"]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{children:"http://192.168.0.100:9078/lastfm/callback\n"})}),(0,i.jsxs)(r.p,{children:["After account creation use the displayed information and add these values to the ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created for multi-scrobbler earlier."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- LASTFM_API_KEY=myApiKey\n- LASTFM_SECRET=myApiSecret\n"})})]}),(0,i.jsxs)(l.default,{value:"koito",label:"Koito",children:[(0,i.jsxs)(r.p,{children:["Setup a ",(0,i.jsx)(r.a,{href:"https://koito.io/guides/installation/",children:"Koito server"})," if you have not already done this."]}),(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:[(0,i.jsx)(r.a,{href:"https://koito.io/guides/scrobbler/",children:"Create (or get) an API Key"}),"\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["From your Koito server dashboard navigate to ",(0,i.jsx)(r.strong,{children:"Settings"})," (bottom-left icon) => ",(0,i.jsx)(r.strong,{children:"API Keys"})]}),"\n",(0,i.jsxs)(r.li,{children:["Create a new Key (or use an existing) and Copy the key using the copy icon to the right of the key","\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["EX ",(0,i.jsx)(r.code,{children:"pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"})]}),"\n"]}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,i.jsxs)(r.li,{children:["Take note of your Koito username (used below as ",(0,i.jsx)(r.code,{children:"myUser"}),")"]}),"\n",(0,i.jsxs)(r.li,{children:["Determine your Koito URL","\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsx)(r.li,{children:"This is the URL you use to access your Koito dashboard OR whatever URL is accessible from your multi-scrobbler instance."}),"\n",(0,i.jsxs)(r.li,{children:["EX dashboard at ",(0,i.jsx)(r.code,{children:"http://192.168.0.100:4110"})," => replace ",(0,i.jsx)(r.code,{children:"myURL"})," below with ",(0,i.jsx)(r.code,{children:"http://192.168.0.100:4110"})]}),"\n",(0,i.jsx)(r.li,{children:(0,i.jsx)(r.a,{href:"/configuration/clients/koito",children:"More info on the URL to use is the full docs"})}),"\n"]}),"\n"]}),"\n"]}),(0,i.jsxs)(r.p,{children:["Add/Substitute values above into these examples values and add them to the ",(0,i.jsx)(r.code,{children:"environment"})," section in the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created for multi-scrobbler earlier."]})]}),(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- KOTIO_TOKEN=myToken\n- KOTIO_USER=myUser\n- KOITO_URL=myURL\n"})}),(0,i.jsx)(r.admonition,{type:"tip",children:(0,i.jsxs)(r.p,{children:["Ensure that Koito is configured to allow requests from multi-scrobbler! In Koito config set ",(0,i.jsx)(r.a,{href:"https://koito.io/reference/configuration/#koito_allowed_hosts",children:(0,i.jsx)(r.code,{children:"KOITO_ALLOWED_HOSTS"})})," to the IP the multi-scrobbler dashboard is accessible from."]})})]})]}),"\n",(0,i.jsx)(r.h2,{id:"start-multi-scrobbler",children:"Start Multi-Scrobbler"}),"\n",(0,i.jsx)(r.admonition,{type:"tip",children:(0,i.jsxs)(r.p,{children:["If you are running your multi-scrobbler container on a Linux host see ",(0,i.jsx)(r.a,{href:"/installation#linux-host",children:"these instructions for setting proper file permissions."})]})}),"\n",(0,i.jsxs)(r.p,{children:["From the same directory as the ",(0,i.jsxs)(r.a,{href:"#create-docker-compose-file",children:[(0,i.jsx)(r.code,{children:"docker-compose.yml"})," you created earlier"]})," start the container:"]}),"\n",(0,i.jsx)(r.pre,{children:(0,i.jsx)(r.code,{className:"language-shell",metastring:'title="~/msData"',children:"docker compose up -d\n"})}),"\n",(0,i.jsx)(r.p,{children:"You're done! Multi-scrobbler is now running. It will monitor the sources you configured and scrobble to clients you set up."}),"\n",(0,i.jsxs)(r.p,{children:["Visit ",(0,i.jsx)(r.code,{children:"http://192.168.0.100:9078"})," to see the dashboard where"]}),"\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["configured Sources/Clients","\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsx)(r.li,{children:"show current status and authentication options"}),"\n",(0,i.jsx)(r.li,{children:"display statistics about discovered/scrobbled tracks and Now Playing status"}),"\n"]}),"\n"]}),"\n",(0,i.jsx)(r.li,{children:"a real-time log shows multi-scrobbler's activity"}),"\n"]}),"\n",(0,i.jsx)(r.h2,{id:"next-steps",children:"Next Steps"}),"\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsxs)(r.li,{children:["See more advanced docker options as well as other install methods in the ",(0,i.jsx)(r.a,{href:"/installation#docker",children:(0,i.jsx)(r.strong,{children:"Installation"})})," docs"]}),"\n",(0,i.jsxs)(r.li,{children:["Review the ",(0,i.jsx)(r.a,{href:"/configuration",children:(0,i.jsx)(r.strong,{children:"Configuration"})})," docs","\n",(0,i.jsxs)(r.ul,{children:["\n",(0,i.jsx)(r.li,{children:"Learn about how to configure multi-scrobbler using files for more complicated Source/Client scenarios"}),"\n",(0,i.jsxs)(r.li,{children:["See all available ",(0,i.jsx)(r.a,{href:"/configuration/sources",children:(0,i.jsx)(r.strong,{children:"Sources"})})," and ",(0,i.jsx)(r.a,{href:"/configuration/clients",children:(0,i.jsx)(r.strong,{children:"Clients"})})," alongside configuration examples"]}),"\n",(0,i.jsxs)(r.li,{children:["Learn how to set up ",(0,i.jsx)(r.a,{href:"/configuration#webhook-configurations",children:"notification webhooks"})]}),"\n",(0,i.jsxs)(r.li,{children:["Check out the ",(0,i.jsx)(r.a,{href:"/configuration/kitchensink",children:"kitchensink example"})]}),"\n"]}),"\n"]}),"\n",(0,i.jsxs)(r.li,{children:["Setup ",(0,i.jsx)(r.a,{href:"/configuration/transforms",children:"Scrobble Enhancements"})," with ",(0,i.jsx)(r.a,{href:"/configuration/transforms/musicbrainz",children:"Musicbrainz"})," to automatically correct and fill in missing track information for your scrobbles"]}),"\n",(0,i.jsxs)(r.li,{children:["Consult the ",(0,i.jsx)(r.a,{href:"/FAQ",children:(0,i.jsx)(r.strong,{children:"FAQ"})})," for solutions to common problems"]}),"\n"]})]})}function m(e={}){let{wrapper:r}={...(0,t.a)(),...e.components};return r?(0,i.jsx)(r,{...e,children:(0,i.jsx)(u,{...e})}):u(e)}}}]);
-1
assets/js/74876495.f3b1f4cd.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["7631"],{73699:function(e,s,i){i.r(s),i.d(s,{frontMatter:()=>c,default:()=>m,toc:()=>h,metadata:()=>n,assets:()=>d,contentTitle:()=>a});var n=JSON.parse('{"id":"quickstart","title":"Quickstart","description":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have:","source":"@site/docs/quickstart.mdx","sourceDirName":".","slug":"/quickstart","permalink":"/multi-scrobbler/quickstart","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/quickstart.mdx","tags":[],"version":"current","sidebarPosition":2,"frontMatter":{"title":"Quickstart","sidebar_position":2},"sidebar":"tutorialSidebar","previous":{"title":"Overview","permalink":"/multi-scrobbler/"},"next":{"title":"Overview","permalink":"/multi-scrobbler/installation/"}}'),r=i(85893),t=i(50065),o=i(703),l=i(73752);let c={title:"Quickstart",sidebar_position:2},a=void 0,d={},h=[{value:"Create Docker Compose File",id:"create-docker-compose-file",level:2},{value:"Setup Sources",id:"setup-sources",level:2},{value:"Setup Clients",id:"setup-clients",level:2},{value:"Start Multi-Scrobbler",id:"start-multi-scrobbler",level:2},{value:"Next Steps",id:"next-steps",level:2}];function u(e){let s={a:"a",admonition:"admonition",code:"code",h2:"h2",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,t.a)(),...e.components},{Details:i}=s;return i||function(e,s){throw Error("Expected "+(s?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(s.p,{children:["This guide will get you up and running with multi-scrobbler using ",(0,r.jsx)(s.a,{href:"https://www.docker.com/",children:"Docker"})," and ",(0,r.jsx)(s.a,{href:"https://docs.docker.com/compose/",children:(0,r.jsx)(s.code,{children:"docker compose"})}),". At the end of the guide you will have:"]}),"\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["the dashboard served on port ",(0,r.jsx)(s.code,{children:"9078"})," of a host machine which has an IP of ",(0,r.jsx)(s.code,{children:"192.168.0.100"})]}),"\n",(0,r.jsxs)(s.li,{children:["data saved to the same directory as the ",(0,r.jsx)(s.code,{children:"docker-compose.yml"})," file"]}),"\n",(0,r.jsxs)(s.li,{children:["multi-scrobbler monitoring ",(0,r.jsx)(s.a,{href:"/configuration/sources/spotify",children:"Spotify"})," and/or ",(0,r.jsx)(s.a,{href:"/configuration/sources/jellyfin",children:"Jellyfin"})," for listening activity"]}),"\n",(0,r.jsxs)(s.li,{children:["multi-scrobbler scrobbling to ",(0,r.jsx)(s.a,{href:"/configuration/clients/lastfm",children:"Lastfm"})," and/or ",(0,r.jsx)(s.a,{href:"/configuration/clients/maloja",children:"Maloja"})]}),"\n"]}),"\n",(0,r.jsx)(s.admonition,{type:"note",children:(0,r.jsxs)(s.p,{children:["If the multi-scrobbler container is on the same machine you will be viewing the dashboard from (IE ",(0,r.jsx)(s.code,{children:"localhost"}),") you can remove and ignore ",(0,r.jsx)(s.code,{children:"BASE_URL"})," usage below. Additionally, replace usage of ",(0,r.jsx)(s.code,{children:"192.168.0.100"})," with ",(0,r.jsx)(s.code,{children:"localhost"}),"."]})}),"\n",(0,r.jsx)(s.h2,{id:"create-docker-compose-file",children:"Create Docker Compose File"}),"\n",(0,r.jsxs)(s.p,{children:["Create a new folder for multi-scrobbler related data and then create ",(0,r.jsx)(s.code,{children:"docker-compose.yml"})," with this content:"]}),"\n",(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:'services:\n multi-scrobbler:\n image: foxxmd/multi-scrobbler\n container_name: multi-scrobbler\n environment:\n - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\n - BASE_URL=http://192.168.0.100:9078\n # all Environmental Variables in below examples go here!\n\n volumes:\n - "./config:/config"\n ports:\n - "9078:9078"\n restart: unless-stopped\n'})}),"\n",(0,r.jsx)(s.h2,{id:"setup-sources",children:"Setup Sources"}),"\n",(0,r.jsxs)(s.p,{children:[(0,r.jsx)(s.a,{href:"/configuration/sources",children:(0,r.jsx)(s.strong,{children:"Sources"})})," are the services/music players multi-scrobbler monitors to look for listening activity."]}),"\n",(0,r.jsxs)(o.default,{children:[(0,r.jsxs)(l.default,{value:"jellyfin",label:"Jellyfin",children:[(0,r.jsxs)(s.p,{children:["Follow the Jellyfin configuration ",(0,r.jsxs)(s.a,{href:"/configuration/sources/jellyfin",children:["instructions for setting up an ",(0,r.jsx)(s.strong,{children:"API Key"}),"."]})]}),(0,r.jsxs)(s.p,{children:["Then, add these values to the ",(0,r.jsx)(s.code,{children:"environment"})," section in the ",(0,r.jsxs)(s.a,{href:"#create-docker-compose-file",children:[(0,r.jsx)(s.code,{children:"docker-compose.yml"})," you created."]})]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- JELLYFIN_URL=192.168.0.110:8096 # URL to Jellyfin UI\n- JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b # Api Key created in previous step\n- JELLYFIN_USER=MyUser # Your username in Jellyfin\n"})})]}),(0,r.jsxs)(l.default,{value:"spotify",label:"Spotify",children:[(0,r.jsxs)(s.p,{children:["To access your Spotify activity you must ",(0,r.jsx)(s.a,{href:"https://developer.spotify.com/dashboard",children:"create a Spotify App"})," to get a\n",(0,r.jsx)(s.strong,{children:"Client ID/Secret"})," and set a valid ",(0,r.jsx)(s.strong,{children:"Redirect URI"}),"."]}),(0,r.jsxs)(s.p,{children:["Refer to the ",(0,r.jsx)(s.a,{href:"/configuration/sources/spotify#authenticate-spotify-with-multi-scrobbler",children:"Spotify Authentication instructions in the docs."})]}),(0,r.jsxs)(s.p,{children:["Assuming you used the ",(0,r.jsx)(s.strong,{children:"HTTPS"})," method for your ",(0,r.jsx)(s.strong,{children:"Redirect URI"})," from the instructions above...after the application is created add these values to the ",(0,r.jsx)(s.code,{children:"environment"})," section in the ",(0,r.jsxs)(s.a,{href:"#create-docker-compose-file",children:[(0,r.jsx)(s.code,{children:"docker-compose.yml"})," you created."]})]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- SPOTIFY_CLIENT_ID=yourClientId\n- SPOTIFY_CLIENT_SECRET=yourClientSecret\n- SPOTIFY_REDIRECT_URI=https://multi-scrobbler.mydomain.com/callback\n"})}),(0,r.jsxs)(s.p,{children:["Later, after ",(0,r.jsx)(s.a,{href:"#start-multi-scrobbler",children:"starting multi-scrobbler"}),", visit the dashboard at ",(0,r.jsx)(s.code,{children:"http://192.168.0.100:9078"})," and click ",(0,r.jsx)(s.strong,{children:"(Re)authenticate"})," on the Spotify card to authorize multi-scrobbler to use your account. Monitoring will begin automatically after authorization is complete."]})]})]}),"\n",(0,r.jsx)(s.h2,{id:"setup-clients",children:"Setup Clients"}),"\n",(0,r.jsxs)(s.p,{children:[(0,r.jsx)(s.a,{href:"/configuration/clients",children:(0,r.jsx)(s.strong,{children:"Clients"})})," are services that store scrobbles. Multi-scrobbler will scrobble all listening activity from the ",(0,r.jsx)(s.strong,{children:"Sources"})," you configured to all ",(0,r.jsx)(s.strong,{children:"Clients"})," you configure here."]}),"\n",(0,r.jsxs)(o.default,{children:[(0,r.jsxs)(l.default,{value:"maloja",label:"Maloja",children:[(0,r.jsxs)(s.p,{children:["Setup a ",(0,r.jsx)(s.a,{href:"https://github.com/krateng/maloja?tab=readme-ov-file#how-to-install",children:"Maloja server"})," if you have not already done this."]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Maloja Setup Intructions"}),(0,r.jsxs)(s.p,{children:["Using Maloja's example ",(0,r.jsx)(s.code,{children:"docker-compose.yml"}),":"]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'reference title="~/malojaData/docker-compose.yml"',children:"https://github.com/krateng/maloja/blob/master/example-compose.yml\n"})}),(0,r.jsxs)(s.p,{children:["Uncomment ",(0,r.jsx)(s.code,{children:"environment"})," and add ",(0,r.jsx)(s.code,{children:"MALOJA_FORCE_PASSWORD=CHANGE_ME"})," to set an admin password"]}),(0,r.jsx)(s.p,{children:"Start the container:"}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-shell",metastring:'title="~/malojaData"',children:"docker compose up -d\n"})})]}),(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["Navigate to the Admin Panel (Cog in upper-right corner) -> API Keys (or at ",(0,r.jsx)(s.a,{href:"http://192.168.0.100:42010/admin_apikeys",children:"http://192.168.0.100:42010/admin_apikeys"}),")","\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["Create a ",(0,r.jsx)(s.strong,{children:"New Key"})," and then copy the generated key value"]}),"\n"]}),"\n"]}),"\n"]}),(0,r.jsxs)(s.p,{children:["Finally, add these values to the ",(0,r.jsx)(s.code,{children:"environment"})," section in the ",(0,r.jsxs)(s.a,{href:"#create-docker-compose-file",children:[(0,r.jsx)(s.code,{children:"docker-compose.yml"})," you created for multi-scrobbler earlier."]})]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- MALOJA_URL=http://192.168.0.100:42010\n- MALOJA_API_KEY=myApiKey\n"})})]}),(0,r.jsxs)(l.default,{value:"lastfm",label:"Last.fm",children:[(0,r.jsx)(s.p,{children:(0,r.jsx)(s.a,{href:"https://www.last.fm/api/account/create",children:"Register for an API account at Last.fm."})}),(0,r.jsxs)(s.p,{children:["Use the following for ",(0,r.jsx)(s.strong,{children:"Callback URL"}),":"]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{children:"http://192.168.0.100:9078/lastfm/callback\n"})}),(0,r.jsxs)(s.p,{children:["After account creation use the displayed information and add these values to the ",(0,r.jsx)(s.code,{children:"environment"})," section in the ",(0,r.jsxs)(s.a,{href:"#create-docker-compose-file",children:[(0,r.jsx)(s.code,{children:"docker-compose.yml"})," you created for multi-scrobbler earlier."]})]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- LASTFM_API_KEY=myApiKey\n- LASTFM_SECRET=myApiSecret\n"})})]}),(0,r.jsxs)(l.default,{value:"koito",label:"Koito",children:[(0,r.jsxs)(s.p,{children:["Setup a ",(0,r.jsx)(s.a,{href:"https://koito.io/guides/installation/",children:"Koito server"})," if you have not already done this."]}),(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:[(0,r.jsx)(s.a,{href:"https://koito.io/guides/scrobbler/",children:"Create (or get) an API Key"}),"\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["From your Koito server dashboard navigate to ",(0,r.jsx)(s.strong,{children:"Settings"})," (bottom-left icon) => ",(0,r.jsx)(s.strong,{children:"API Keys"})]}),"\n",(0,r.jsxs)(s.li,{children:["Create a new Key (or use an existing) and Copy the key using the copy icon to the right of the key","\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["EX ",(0,r.jsx)(s.code,{children:"pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"})]}),"\n"]}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(s.li,{children:["Take note of your Koito username (used below as ",(0,r.jsx)(s.code,{children:"myUser"}),")"]}),"\n",(0,r.jsxs)(s.li,{children:["Determine your Koito URL","\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsx)(s.li,{children:"This is the URL you use to access your Koito dashboard OR whatever URL is accessible from your multi-scrobbler instance."}),"\n",(0,r.jsxs)(s.li,{children:["EX dashboard at ",(0,r.jsx)(s.code,{children:"http://192.168.0.100:4110"})," => replace ",(0,r.jsx)(s.code,{children:"myURL"})," below with ",(0,r.jsx)(s.code,{children:"http://192.168.0.100:4110"})]}),"\n",(0,r.jsx)(s.li,{children:(0,r.jsx)(s.a,{href:"/configuration/clients/koito",children:"More info on the URL to use is the full docs"})}),"\n"]}),"\n"]}),"\n"]}),(0,r.jsxs)(s.p,{children:["Add/Substitute values above into these examples values and add them to the ",(0,r.jsx)(s.code,{children:"environment"})," section in the ",(0,r.jsxs)(s.a,{href:"#create-docker-compose-file",children:[(0,r.jsx)(s.code,{children:"docker-compose.yml"})," you created for multi-scrobbler earlier."]})]}),(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-yaml",metastring:'title="~/msData/docker-compose.yml"',children:"- KOTIO_TOKEN=myToken\n- KOTIO_USER=myUser\n- KOITO_URL=myURL\n"})}),(0,r.jsx)(s.admonition,{type:"tip",children:(0,r.jsxs)(s.p,{children:["Ensure that Koito is configured to allow requests from multi-scrobbler! In Koito config set ",(0,r.jsx)(s.a,{href:"https://koito.io/reference/configuration/#koito_allowed_hosts",children:(0,r.jsx)(s.code,{children:"KOITO_ALLOWED_HOSTS"})})," to the IP the multi-scrobbler dashboard is accessible from."]})})]})]}),"\n",(0,r.jsx)(s.h2,{id:"start-multi-scrobbler",children:"Start Multi-Scrobbler"}),"\n",(0,r.jsx)(s.admonition,{type:"tip",children:(0,r.jsxs)(s.p,{children:["If you are running your multi-scrobbler container on a Linux host see ",(0,r.jsx)(s.a,{href:"/installation#linux-host",children:"these instructions for setting proper file permissions."})]})}),"\n",(0,r.jsxs)(s.p,{children:["From the same directory as the ",(0,r.jsxs)(s.a,{href:"#create-docker-compose-file",children:[(0,r.jsx)(s.code,{children:"docker-compose.yml"})," you created earlier"]})," start the container:"]}),"\n",(0,r.jsx)(s.pre,{children:(0,r.jsx)(s.code,{className:"language-shell",metastring:'title="~/msData"',children:"docker compose up -d\n"})}),"\n",(0,r.jsx)(s.p,{children:"You're done! Multi-scrobbler is now running. It will monitor the sources you configured and scrobble to clients you set up."}),"\n",(0,r.jsxs)(s.p,{children:["Visit ",(0,r.jsx)(s.code,{children:"http://192.168.0.100:9078"})," to see the dashboard where"]}),"\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["configured Sources/Clients","\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsx)(s.li,{children:"show current status and authentication options"}),"\n",(0,r.jsx)(s.li,{children:"display statistics about discovered/scrobbled tracks and Now Playing status"}),"\n"]}),"\n"]}),"\n",(0,r.jsx)(s.li,{children:"a real-time log shows multi-scrobbler's activity"}),"\n"]}),"\n",(0,r.jsx)(s.h2,{id:"next-steps",children:"Next Steps"}),"\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsxs)(s.li,{children:["See more advanced docker options as well as other install methods in the ",(0,r.jsx)(s.a,{href:"/installation#docker",children:(0,r.jsx)(s.strong,{children:"Installation"})})," docs"]}),"\n",(0,r.jsxs)(s.li,{children:["Review the ",(0,r.jsx)(s.a,{href:"/configuration",children:(0,r.jsx)(s.strong,{children:"Configuration"})})," docs","\n",(0,r.jsxs)(s.ul,{children:["\n",(0,r.jsx)(s.li,{children:"Learn about how to configure multi-scrobbler using files for more complicated Source/Client scenarios"}),"\n",(0,r.jsxs)(s.li,{children:["See all available ",(0,r.jsx)(s.a,{href:"/configuration/sources",children:(0,r.jsx)(s.strong,{children:"Sources"})})," and ",(0,r.jsx)(s.a,{href:"/configuration/clients",children:(0,r.jsx)(s.strong,{children:"Clients"})})," alongside configuration examples"]}),"\n",(0,r.jsxs)(s.li,{children:["Learn how to set up ",(0,r.jsx)(s.a,{href:"/configuration#webhook-configurations",children:"notification webhooks"})]}),"\n",(0,r.jsxs)(s.li,{children:["Check out the ",(0,r.jsx)(s.a,{href:"/configuration/kitchensink",children:"kitchensink example"})]}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(s.li,{children:["Consult the ",(0,r.jsx)(s.a,{href:"/FAQ",children:(0,r.jsx)(s.strong,{children:"FAQ"})})," for solutions to common problems"]}),"\n"]})]})}function m(e={}){let{wrapper:s}={...(0,t.a)(),...e.components};return s?(0,r.jsx)(s,{...e,children:(0,r.jsx)(u,{...e})}):u(e)}}}]);
···11-(()=>{"use strict";var e,r,t,n,o,s={81005:function(e,r,t){t.d(r,{J:()=>s,_k:()=>n,bJ:()=>u,dK:()=>o,qo:()=>i}),t(31336);let n=[],o=["en"],s="search-index{dir}.json?_=eb70319d",i=8,u=1}},i={};function u(e){var r=i[e];if(void 0!==r)return r.exports;var t=i[e]={exports:{}};return s[e](t,t.exports,u),t.exports}u.m=s,u.x=()=>{var e=u.O(void 0,["842"],function(){return u(75020)});return u.O(e)},u.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return u.d(r,{a:r}),r},u.d=(e,r)=>{for(var t in r)u.o(r,t)&&!u.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},u.f={},u.e=e=>Promise.all(Object.keys(u.f).reduce((r,t)=>(u.f[t](e,r),r),[])),u.u=e=>"assets/js/"+e+".241b89af.js",u.miniCssF=e=>""+e+".css",u.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),e=[],u.O=(r,t,n,o)=>{if(t){o=o||0;for(var s=e.length;s>0&&e[s-1][2]>o;s--)e[s]=e[s-1];e[s]=[t,n,o];return}for(var i=1/0,s=0;s<e.length;s++){for(var t=e[s][0],n=e[s][1],o=e[s][2],a=!0,f=0;f<t.length;f++)(!1&o||i>=o)&&Object.keys(u.O).every(e=>u.O[e](t[f]))?t.splice(f--,1):(a=!1,o<i&&(i=o));if(a){e.splice(s--,1);var p=n();void 0!==p&&(r=p)}}return r},u.p="/multi-scrobbler/",u.rv=()=>"1.4.6",r=u.x,u.x=()=>u.e("842").then(r),u.gca=function(e){return e=({})[e]||e,u.p+u.u(e)},t={7971:1},u.f.i=(e,r)=>{t[e]||importScripts(u.p+u.u(e))},o=(n=self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push.bind(n),n.push=e=>{var r=e[0],n=e[1],s=e[2];for(var i in n)u.o(n,i)&&(u.m[i]=n[i]);for(s&&s(u);r.length;)t[r.pop()]=1;o(e)},u.x()})();11+(()=>{"use strict";var e,r,t,n,o,s={81005:function(e,r,t){t.d(r,{J:()=>s,_k:()=>n,bJ:()=>u,dK:()=>o,qo:()=>i}),t(31336);let n=[],o=["en"],s="search-index{dir}.json?_=37a26185",i=8,u=1}},i={};function u(e){var r=i[e];if(void 0!==r)return r.exports;var t=i[e]={exports:{}};return s[e](t,t.exports,u),t.exports}u.m=s,u.x=()=>{var e=u.O(void 0,["842"],function(){return u(75020)});return u.O(e)},u.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return u.d(r,{a:r}),r},u.d=(e,r)=>{for(var t in r)u.o(r,t)&&!u.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},u.f={},u.e=e=>Promise.all(Object.keys(u.f).reduce((r,t)=>(u.f[t](e,r),r),[])),u.u=e=>"assets/js/"+e+".241b89af.js",u.miniCssF=e=>""+e+".css",u.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),e=[],u.O=(r,t,n,o)=>{if(t){o=o||0;for(var s=e.length;s>0&&e[s-1][2]>o;s--)e[s]=e[s-1];e[s]=[t,n,o];return}for(var i=1/0,s=0;s<e.length;s++){for(var t=e[s][0],n=e[s][1],o=e[s][2],a=!0,f=0;f<t.length;f++)(!1&o||i>=o)&&Object.keys(u.O).every(e=>u.O[e](t[f]))?t.splice(f--,1):(a=!1,o<i&&(i=o));if(a){e.splice(s--,1);var p=n();void 0!==p&&(r=p)}}return r},u.p="/multi-scrobbler/",u.rv=()=>"1.4.6",r=u.x,u.x=()=>u.e("842").then(r),u.gca=function(e){return e=({})[e]||e,u.p+u.u(e)},t={7971:1},u.f.i=(e,r)=>{t[e]||importScripts(u.p+u.u(e))},o=(n=self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push.bind(n),n.push=e=>{var r=e[0],n=e[1],s=e[2];for(var i in n)u.o(n,i)&&(u.m[i]=n[i]);for(s&&s(u);r.length;)t[r.pop()]=1;o(e)},u.x()})();
+1
assets/js/7d837a1d.08c28abc.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["3664"],{67189:function(e){e.exports=JSON.parse('{"version":{"pluginId":"default","version":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","isLast":true,"docsSidebars":{"tutorialSidebar":[{"type":"link","label":"Overview","href":"/multi-scrobbler/","docId":"index","unlisted":false},{"type":"link","label":"Quickstart","href":"/multi-scrobbler/quickstart","docId":"quickstart","unlisted":false},{"type":"category","label":"Installation","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"As a Service","href":"/multi-scrobbler/installation/service","docId":"installation/service","unlisted":false}],"href":"/multi-scrobbler/installation/"},{"type":"category","label":"Updating","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Overview","href":"/multi-scrobbler/updating/","docId":"updating/updating","unlisted":false}],"href":"/multi-scrobbler/category/updating"},{"type":"category","label":"Configuration","collapsible":true,"collapsed":true,"items":[{"type":"category","label":"Scrobble Clients","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Koito","href":"/multi-scrobbler/configuration/clients/koito","docId":"configuration/clients/koito","unlisted":false},{"type":"link","label":"Last.fm","href":"/multi-scrobbler/configuration/clients/lastfm","docId":"configuration/clients/lastfm","unlisted":false},{"type":"link","label":"Listenbrainz","href":"/multi-scrobbler/configuration/clients/listenbrainz","docId":"configuration/clients/listenbrainz","unlisted":false},{"type":"link","label":"Maloja","href":"/multi-scrobbler/configuration/clients/maloja","docId":"configuration/clients/maloja","unlisted":false},{"type":"link","label":"Rocksky","href":"/multi-scrobbler/configuration/clients/rocksky","docId":"configuration/clients/rocksky","unlisted":false},{"type":"link","label":"Teal.fm","href":"/multi-scrobbler/configuration/clients/tealfm","docId":"configuration/clients/tealfm","unlisted":false}],"href":"/multi-scrobbler/configuration/clients/"},{"type":"category","label":"Scrobble Sources","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Azuracast","href":"/multi-scrobbler/configuration/sources/azuracast","docId":"configuration/sources/azuracast","unlisted":false},{"type":"link","label":"Deezer","href":"/multi-scrobbler/configuration/sources/deezer","docId":"configuration/sources/deezer","unlisted":false},{"type":"link","label":"Google Cast (Chromecast)","href":"/multi-scrobbler/configuration/sources/google-cast","docId":"configuration/sources/google-cast","unlisted":false},{"type":"link","label":"Icecast","href":"/multi-scrobbler/configuration/sources/icecast","docId":"configuration/sources/icecast","unlisted":false},{"type":"link","label":"Jellyfin","href":"/multi-scrobbler/configuration/sources/jellyfin","docId":"configuration/sources/jellyfin","unlisted":false},{"type":"link","label":"JRiver","href":"/multi-scrobbler/configuration/sources/jriver","docId":"configuration/sources/jriver","unlisted":false},{"type":"link","label":"Kodi","href":"/multi-scrobbler/configuration/sources/kodi","docId":"configuration/sources/kodi","unlisted":false},{"type":"link","label":"Koito","href":"/multi-scrobbler/configuration/sources/koito-source","docId":"configuration/sources/koito-source","unlisted":false},{"type":"link","label":"Lastfm (Endpoint)","href":"/multi-scrobbler/configuration/sources/lastfm-endpoint","docId":"configuration/sources/lastfm-endpoint","unlisted":false},{"type":"link","label":"Lastfm","href":"/multi-scrobbler/configuration/sources/lastfm-source","docId":"configuration/sources/lastfm-source","unlisted":false},{"type":"link","label":"Listenbrainz (Endpoint)","href":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint","docId":"configuration/sources/listenbrainz-endpoint","unlisted":false},{"type":"link","label":"Listenbrainz","href":"/multi-scrobbler/configuration/sources/listenbrainz-source","docId":"configuration/sources/listenbrainz-source","unlisted":false},{"type":"link","label":"Maloja","href":"/multi-scrobbler/configuration/sources/maloja","docId":"configuration/sources/maloja","unlisted":false},{"type":"link","label":"Mopidy","href":"/multi-scrobbler/configuration/sources/mopidy","docId":"configuration/sources/mopidy","unlisted":false},{"type":"link","label":"MPD (Music Player Daemon)","href":"/multi-scrobbler/configuration/sources/mpd","docId":"configuration/sources/mpd","unlisted":false},{"type":"link","label":"MPRIS","href":"/multi-scrobbler/configuration/sources/mpris","docId":"configuration/sources/mpris","unlisted":false},{"type":"link","label":"Musikcube","href":"/multi-scrobbler/configuration/sources/musikcube","docId":"configuration/sources/musikcube","unlisted":false},{"type":"link","label":"Plex","href":"/multi-scrobbler/configuration/sources/plex","docId":"configuration/sources/plex","unlisted":false},{"type":"link","label":"Rocksky","href":"/multi-scrobbler/configuration/sources/rocksky-source","docId":"configuration/sources/rocksky-source","unlisted":false},{"type":"link","label":"Spotify","href":"/multi-scrobbler/configuration/sources/spotify","docId":"configuration/sources/spotify","unlisted":false},{"type":"link","label":"Subsonic","href":"/multi-scrobbler/configuration/sources/subsonic","docId":"configuration/sources/subsonic","unlisted":false},{"type":"link","label":"Teal.fm","href":"/multi-scrobbler/configuration/sources/tealfm-source","docId":"configuration/sources/tealfm-source","unlisted":false},{"type":"link","label":"VLC","href":"/multi-scrobbler/configuration/sources/vlc","docId":"configuration/sources/vlc","unlisted":false},{"type":"link","label":"Webscrobbler","href":"/multi-scrobbler/configuration/sources/webscrobbler","docId":"configuration/sources/webscrobbler","unlisted":false},{"type":"link","label":"Yamaha MusicCast","href":"/multi-scrobbler/configuration/sources/yamaha-musiccast","docId":"configuration/sources/yamaha-musiccast","unlisted":false},{"type":"link","label":"Youtube Music","href":"/multi-scrobbler/configuration/sources/youtube-music","docId":"configuration/sources/youtube-music","unlisted":false}],"href":"/multi-scrobbler/configuration/sources/"},{"type":"link","label":"Kitchen Sink","href":"/multi-scrobbler/configuration/kitchensink","docId":"configuration/kitchensink","unlisted":false},{"type":"category","label":"Enhance Scrobbles","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Musicbrainz Stage","href":"/multi-scrobbler/configuration/transforms/musicbrainz","docId":"configuration/transforms/musicbrainz","unlisted":false},{"type":"link","label":"Native Stage","href":"/multi-scrobbler/configuration/transforms/native","docId":"configuration/transforms/native","unlisted":false},{"type":"link","label":"User Stage","href":"/multi-scrobbler/configuration/transforms/user","docId":"configuration/transforms/user","unlisted":false}],"href":"/multi-scrobbler/configuration/transforms/"}],"href":"/multi-scrobbler/configuration/"},{"type":"category","label":"Development","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Common Development","href":"/multi-scrobbler/development/dev-common","docId":"development/dev-common","unlisted":false},{"type":"link","label":"Source Development/Tutorial","href":"/multi-scrobbler/development/dev-source","docId":"development/dev-source","unlisted":false},{"type":"link","label":"Client Development/Tutorial","href":"/multi-scrobbler/development/dev-client","docId":"development/dev-client","unlisted":false},{"type":"link","label":"Flatpak","href":"/multi-scrobbler/development/flatpak","docId":"development/flatpak","unlisted":false}],"href":"/multi-scrobbler/category/development"},{"type":"link","label":"FAQ","href":"/multi-scrobbler/FAQ","docId":"FAQ","unlisted":false},{"type":"link","label":"Config Playground","href":"/playground"}]},"docs":{"configuration/clients/clients":{"id":"configuration/clients/clients","title":"Overview","description":"A Client is an application that stores the historical information about what songs you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz...","sidebar":"tutorialSidebar"},"configuration/clients/koito":{"id":"configuration/clients/koito","title":"Koito","description":"To monitor and re-scrobble activity from a Koito account create a Koito (Source)","sidebar":"tutorialSidebar"},"configuration/clients/lastfm":{"id":"configuration/clients/lastfm","title":"Last.fm","description":"* To monitor and re-scrobble activity from your Last.fm account create a Last.fm (Source)","sidebar":"tutorialSidebar"},"configuration/clients/listenbrainz":{"id":"configuration/clients/listenbrainz","title":"Listenbrainz","description":"* To monitor and re-scrobble activity from a Listenbrainz account create a Listenbrainz (Source)","sidebar":"tutorialSidebar"},"configuration/clients/maloja":{"id":"configuration/clients/maloja","title":"Maloja","description":"Setup a Maloja server if you have not already done this.","sidebar":"tutorialSidebar"},"configuration/clients/rocksky":{"id":"configuration/clients/rocksky","title":"Rocksky","description":"To monitor and re-scrobble activity from Rocksky create a Rocksky (Source)","sidebar":"tutorialSidebar"},"configuration/clients/tealfm":{"id":"configuration/clients/tealfm","title":"Teal.fm","description":"To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source)","sidebar":"tutorialSidebar"},"configuration/configuration":{"id":"configuration/configuration","title":"Overview","description":"Check the FAQ if you have any issues after configuration!","sidebar":"tutorialSidebar"},"configuration/kitchensink":{"id":"configuration/kitchensink","title":"Kitchen Sink","description":"Scenario:","sidebar":"tutorialSidebar"},"configuration/sources/azuracast":{"id":"configuration/sources/azuracast","title":"Azuracast","description":"Azuracast may not correctly report track length or position. If this is the case you should reduce the \\"listened to\\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly.","sidebar":"tutorialSidebar"},"configuration/sources/deezer":{"id":"configuration/sources/deezer","title":"Deezer","description":"This Source uses unofficial methods to access Deezer data that are likely in violation of Deezer\'s TOS. Deezer may change or remove these methods at any time, breaking functionality. Use this Source at your own risk.","sidebar":"tutorialSidebar"},"configuration/sources/google-cast":{"id":"configuration/sources/google-cast","title":"Google Cast (Chromecast)","description":"If your media device can be Cast to using this button Chromecast Icon on your phone/computer then multi-scrobbler can monitor it in order to scrobble music you play.","sidebar":"tutorialSidebar"},"configuration/sources/icecast":{"id":"configuration/sources/icecast","title":"Icecast","description":"Parse metadata from any Icecast Station (streams) to use for scrobbling.","sidebar":"tutorialSidebar"},"configuration/sources/jellyfin":{"id":"configuration/sources/jellyfin","title":"Jellyfin","description":"Must be using Jellyfin 10.7 or greater","sidebar":"tutorialSidebar"},"configuration/sources/jriver":{"id":"configuration/sources/jriver","title":"JRiver","description":"In order for multi-scrobbler to communicate with JRiver you must have Web Server Interface enabled. This can can be in the JRiver GUI:","sidebar":"tutorialSidebar"},"configuration/sources/kodi":{"id":"configuration/sources/kodi","title":"Kodi","description":"In order for multi-scrobbler to communicate with Kodi you must have the Web Interface enabled. This can be done in the Kodi GUI:","sidebar":"tutorialSidebar"},"configuration/sources/koito-source":{"id":"configuration/sources/koito-source","title":"Koito","description":"This Source monitors a Koito account\'s scrobble history and then re-scrobbles discovered tracks to configured Clients.","sidebar":"tutorialSidebar"},"configuration/sources/lastfm-endpoint":{"id":"configuration/sources/lastfm-endpoint","title":"Lastfm (Endpoint)","description":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Last.fm server.","sidebar":"tutorialSidebar"},"configuration/sources/lastfm-source":{"id":"configuration/sources/lastfm-source","title":"Lastfm","description":"This Source monitors your Last.fm scrobble history and re-scrobbles new activity to configured Clients.","sidebar":"tutorialSidebar"},"configuration/sources/listenbrainz-endpoint":{"id":"configuration/sources/listenbrainz-endpoint","title":"Listenbrainz (Endpoint)","description":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Listenbrainz server.","sidebar":"tutorialSidebar"},"configuration/sources/listenbrainz-source":{"id":"configuration/sources/listenbrainz-source","title":"Listenbrainz","description":"This Source monitors a Listenbrainz account\'s scrobble history and then re-scrobbles discovered tracks to configured clients.","sidebar":"tutorialSidebar"},"configuration/sources/maloja":{"id":"configuration/sources/maloja","title":"Maloja","description":"To scrobble to a Maloja server, create a Maloja (Client)","sidebar":"tutorialSidebar"},"configuration/sources/mopidy":{"id":"configuration/sources/mopidy","title":"Mopidy","description":"Mopidy is a headless music server that supports playing music from many standard and non-standard sources such as Pandora, Bandcamp, and Tunein.","sidebar":"tutorialSidebar"},"configuration/sources/mpd":{"id":"configuration/sources/mpd","title":"MPD (Music Player Daemon)","description":"MS communicates with MPD using the TCP client connection.","sidebar":"tutorialSidebar"},"configuration/sources/mpris":{"id":"configuration/sources/mpris","title":"MPRIS","description":"MPRIS is a standard interface for communicating with Music Players on linux operating systems.","sidebar":"tutorialSidebar"},"configuration/sources/musikcube":{"id":"configuration/sources/musikcube","title":"Musikcube","description":"In order to use Musikcube configure it to accept websocket connections in server setup:","sidebar":"tutorialSidebar"},"configuration/sources/plex":{"id":"configuration/sources/plex","title":"Plex","description":"Find your Plex Token and make note of the URL and Port used to connect to your Plex instance.","sidebar":"tutorialSidebar"},"configuration/sources/rocksky-source":{"id":"configuration/sources/rocksky-source","title":"Rocksky","description":"To scrobble to* Rocksky, create a Rocksky (Client)","sidebar":"tutorialSidebar"},"configuration/sources/sources":{"id":"configuration/sources/sources","title":"Overview","description":"A Source is a data source that contains information about tracks you are playing like a music player or platform. Examples are Spotify, Jellyfin, Plex, Youtube Music, Airsonic, etc...","sidebar":"tutorialSidebar"},"configuration/sources/spotify":{"id":"configuration/sources/spotify","title":"Spotify","description":"Spotify and Automix","sidebar":"tutorialSidebar"},"configuration/sources/subsonic":{"id":"configuration/sources/subsonic","title":"Subsonic","description":"This Source can be used for any application that implements the Subsonic API and supports the getNowPlaying endpoint (such as Airsonic and Navidrome)","sidebar":"tutorialSidebar"},"configuration/sources/tealfm-source":{"id":"configuration/sources/tealfm-source","title":"Teal.fm","description":"To scrobble to* an ATProto PDS, create a teal.fm (Client)","sidebar":"tutorialSidebar"},"configuration/sources/vlc":{"id":"configuration/sources/vlc","title":"VLC","description":"MS communicates with VLC using the Web (http) interface module","sidebar":"tutorialSidebar"},"configuration/sources/webscrobbler":{"id":"configuration/sources/webscrobbler","title":"Webscrobbler","description":"After installing the Webscrobbler extension open the preferences/settings for it:","sidebar":"tutorialSidebar"},"configuration/sources/yamaha-musiccast":{"id":"configuration/sources/yamaha-musiccast","title":"Yamaha MusicCast","description":"Monitor MusicCast device/receivers for music played on Network/USB/CD inputs.","sidebar":"tutorialSidebar"},"configuration/sources/youtube-music":{"id":"configuration/sources/youtube-music","title":"Youtube Music","description":"Communication with YT Music is unofficial and not supported or endorsed by Google. This means that this integration may stop working at any time if Google decides to change how YT Music works in the browser.","sidebar":"tutorialSidebar"},"configuration/transforms/musicbrainz":{"id":"configuration/transforms/musicbrainz","title":"Musicbrainz Stage","description":"The Musicbrainz Stage matches your Play data with the MusicBrainz database. If the match score is high enough then Multi-Scrobbler uses the match to correct and fill-in missing information in your Play data.","sidebar":"tutorialSidebar"},"configuration/transforms/native":{"id":"configuration/transforms/native","title":"Native Stage","description":"The Native Stage uses built-in heuristics to try to extract Artists from Play artist/track data.","sidebar":"tutorialSidebar"},"configuration/transforms/transforms":{"id":"configuration/transforms/transforms","title":"Enhancing Scrobbles","description":"Multi-scrobbler configs support the ability to enhance scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler\'s lifecycle.","sidebar":"tutorialSidebar"},"configuration/transforms/user":{"id":"configuration/transforms/user","title":"User Stage","description":"The User Stage uses search-and-replace expressions, provided by you, to modify/replace parts of Play data.","sidebar":"tutorialSidebar"},"development/dev-client":{"id":"development/dev-client","title":"Client Development/Tutorial","description":"To do...","sidebar":"tutorialSidebar"},"development/dev-common":{"id":"development/dev-common","title":"Common Development","description":"Start here for MS development","sidebar":"tutorialSidebar"},"development/dev-source":{"id":"development/dev-source","title":"Source Development/Tutorial","description":"This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development.","sidebar":"tutorialSidebar"},"development/flatpak":{"id":"development/flatpak","title":"Flatpak","description":"Building Flatpak App locally","sidebar":"tutorialSidebar"},"FAQ":{"id":"FAQ","title":"FAQ","description":"Connection Issues","sidebar":"tutorialSidebar"},"index":{"id":"index","title":"Overview","description":"Latest Release","sidebar":"tutorialSidebar"},"installation/installation":{"id":"installation/installation","title":"Overview","description":"For the difference between ENV and File examples in this document see Configuration Types.","sidebar":"tutorialSidebar"},"installation/service":{"id":"installation/service","title":"As a Service","description":"If you have multi-scrobbler installed locally you can enable it to run as a background service when you login.","sidebar":"tutorialSidebar"},"quickstart":{"id":"quickstart","title":"Quickstart","description":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have:","sidebar":"tutorialSidebar"},"updating/updating":{"id":"updating/updating","title":"Overview","description":"Updating","sidebar":"tutorialSidebar"}}}}')}}]);
-1
assets/js/7d837a1d.9c075730.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["3664"],{67189:function(e){e.exports=JSON.parse('{"version":{"pluginId":"default","version":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","isLast":true,"docsSidebars":{"tutorialSidebar":[{"type":"link","label":"Overview","href":"/multi-scrobbler/","docId":"index","unlisted":false},{"type":"link","label":"Quickstart","href":"/multi-scrobbler/quickstart","docId":"quickstart","unlisted":false},{"type":"category","label":"Installation","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"As a Service","href":"/multi-scrobbler/installation/service","docId":"installation/service","unlisted":false}],"href":"/multi-scrobbler/installation/"},{"type":"category","label":"Updating","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Overview","href":"/multi-scrobbler/updating/","docId":"updating/updating","unlisted":false}],"href":"/multi-scrobbler/category/updating"},{"type":"category","label":"Configuration","collapsible":true,"collapsed":true,"items":[{"type":"category","label":"Scrobble Clients","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Koito","href":"/multi-scrobbler/configuration/clients/koito","docId":"configuration/clients/koito","unlisted":false},{"type":"link","label":"Last.fm","href":"/multi-scrobbler/configuration/clients/lastfm","docId":"configuration/clients/lastfm","unlisted":false},{"type":"link","label":"Listenbrainz","href":"/multi-scrobbler/configuration/clients/listenbrainz","docId":"configuration/clients/listenbrainz","unlisted":false},{"type":"link","label":"Maloja","href":"/multi-scrobbler/configuration/clients/maloja","docId":"configuration/clients/maloja","unlisted":false},{"type":"link","label":"Rocksky","href":"/multi-scrobbler/configuration/clients/rocksky","docId":"configuration/clients/rocksky","unlisted":false},{"type":"link","label":"Teal.fm","href":"/multi-scrobbler/configuration/clients/tealfm","docId":"configuration/clients/tealfm","unlisted":false}],"href":"/multi-scrobbler/configuration/clients/"},{"type":"category","label":"Scrobble Sources","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Azuracast","href":"/multi-scrobbler/configuration/sources/azuracast","docId":"configuration/sources/azuracast","unlisted":false},{"type":"link","label":"Deezer","href":"/multi-scrobbler/configuration/sources/deezer","docId":"configuration/sources/deezer","unlisted":false},{"type":"link","label":"Google Cast (Chromecast)","href":"/multi-scrobbler/configuration/sources/google-cast","docId":"configuration/sources/google-cast","unlisted":false},{"type":"link","label":"Icecast","href":"/multi-scrobbler/configuration/sources/icecast","docId":"configuration/sources/icecast","unlisted":false},{"type":"link","label":"Jellyfin","href":"/multi-scrobbler/configuration/sources/jellyfin","docId":"configuration/sources/jellyfin","unlisted":false},{"type":"link","label":"JRiver","href":"/multi-scrobbler/configuration/sources/jriver","docId":"configuration/sources/jriver","unlisted":false},{"type":"link","label":"Kodi","href":"/multi-scrobbler/configuration/sources/kodi","docId":"configuration/sources/kodi","unlisted":false},{"type":"link","label":"Koito","href":"/multi-scrobbler/configuration/sources/koito-source","docId":"configuration/sources/koito-source","unlisted":false},{"type":"link","label":"Lastfm (Endpoint)","href":"/multi-scrobbler/configuration/sources/lastfm-endpoint","docId":"configuration/sources/lastfm-endpoint","unlisted":false},{"type":"link","label":"Lastfm","href":"/multi-scrobbler/configuration/sources/lastfm-source","docId":"configuration/sources/lastfm-source","unlisted":false},{"type":"link","label":"Listenbrainz (Endpoint)","href":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint","docId":"configuration/sources/listenbrainz-endpoint","unlisted":false},{"type":"link","label":"Listenbrainz","href":"/multi-scrobbler/configuration/sources/listenbrainz-source","docId":"configuration/sources/listenbrainz-source","unlisted":false},{"type":"link","label":"Maloja","href":"/multi-scrobbler/configuration/sources/maloja","docId":"configuration/sources/maloja","unlisted":false},{"type":"link","label":"Mopidy","href":"/multi-scrobbler/configuration/sources/mopidy","docId":"configuration/sources/mopidy","unlisted":false},{"type":"link","label":"MPD (Music Player Daemon)","href":"/multi-scrobbler/configuration/sources/mpd","docId":"configuration/sources/mpd","unlisted":false},{"type":"link","label":"MPRIS","href":"/multi-scrobbler/configuration/sources/mpris","docId":"configuration/sources/mpris","unlisted":false},{"type":"link","label":"Musikcube","href":"/multi-scrobbler/configuration/sources/musikcube","docId":"configuration/sources/musikcube","unlisted":false},{"type":"link","label":"Plex","href":"/multi-scrobbler/configuration/sources/plex","docId":"configuration/sources/plex","unlisted":false},{"type":"link","label":"Rocksky","href":"/multi-scrobbler/configuration/sources/rocksky-source","docId":"configuration/sources/rocksky-source","unlisted":false},{"type":"link","label":"Spotify","href":"/multi-scrobbler/configuration/sources/spotify","docId":"configuration/sources/spotify","unlisted":false},{"type":"link","label":"Subsonic","href":"/multi-scrobbler/configuration/sources/subsonic","docId":"configuration/sources/subsonic","unlisted":false},{"type":"link","label":"Teal.fm","href":"/multi-scrobbler/configuration/sources/tealfm-source","docId":"configuration/sources/tealfm-source","unlisted":false},{"type":"link","label":"VLC","href":"/multi-scrobbler/configuration/sources/vlc","docId":"configuration/sources/vlc","unlisted":false},{"type":"link","label":"Webscrobbler","href":"/multi-scrobbler/configuration/sources/webscrobbler","docId":"configuration/sources/webscrobbler","unlisted":false},{"type":"link","label":"Yamaha MusicCast","href":"/multi-scrobbler/configuration/sources/yamaha-musiccast","docId":"configuration/sources/yamaha-musiccast","unlisted":false},{"type":"link","label":"Youtube Music","href":"/multi-scrobbler/configuration/sources/youtube-music","docId":"configuration/sources/youtube-music","unlisted":false}],"href":"/multi-scrobbler/configuration/sources/"},{"type":"link","label":"Kitchen Sink","href":"/multi-scrobbler/configuration/kitchensink","docId":"configuration/kitchensink","unlisted":false},{"type":"link","label":"Scrobble Modification","href":"/multi-scrobbler/configuration/transforms","docId":"configuration/transforms","unlisted":false}],"href":"/multi-scrobbler/configuration/"},{"type":"category","label":"Development","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Common Development","href":"/multi-scrobbler/development/dev-common","docId":"development/dev-common","unlisted":false},{"type":"link","label":"Source Development/Tutorial","href":"/multi-scrobbler/development/dev-source","docId":"development/dev-source","unlisted":false},{"type":"link","label":"Client Development/Tutorial","href":"/multi-scrobbler/development/dev-client","docId":"development/dev-client","unlisted":false},{"type":"link","label":"Flatpak","href":"/multi-scrobbler/development/flatpak","docId":"development/flatpak","unlisted":false}],"href":"/multi-scrobbler/category/development"},{"type":"link","label":"FAQ","href":"/multi-scrobbler/FAQ","docId":"FAQ","unlisted":false},{"type":"link","label":"Config Playground","href":"/playground"}]},"docs":{"configuration/clients/clients":{"id":"configuration/clients/clients","title":"Overview","description":"A Client is an application that stores the historical information about what songs you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz...","sidebar":"tutorialSidebar"},"configuration/clients/koito":{"id":"configuration/clients/koito","title":"Koito","description":"To monitor and re-scrobble activity from a Koito account create a Koito (Source)","sidebar":"tutorialSidebar"},"configuration/clients/lastfm":{"id":"configuration/clients/lastfm","title":"Last.fm","description":"* To monitor and re-scrobble activity from your Last.fm account create a Last.fm (Source)","sidebar":"tutorialSidebar"},"configuration/clients/listenbrainz":{"id":"configuration/clients/listenbrainz","title":"Listenbrainz","description":"* To monitor and re-scrobble activity from a Listenbrainz account create a Listenbrainz (Source)","sidebar":"tutorialSidebar"},"configuration/clients/maloja":{"id":"configuration/clients/maloja","title":"Maloja","description":"Setup a Maloja server if you have not already done this.","sidebar":"tutorialSidebar"},"configuration/clients/rocksky":{"id":"configuration/clients/rocksky","title":"Rocksky","description":"To monitor and re-scrobble activity from Rocksky create a Rocksky (Source)","sidebar":"tutorialSidebar"},"configuration/clients/tealfm":{"id":"configuration/clients/tealfm","title":"Teal.fm","description":"To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source)","sidebar":"tutorialSidebar"},"configuration/configuration":{"id":"configuration/configuration","title":"Overview","description":"Check the FAQ if you have any issues after configuration!","sidebar":"tutorialSidebar"},"configuration/kitchensink":{"id":"configuration/kitchensink","title":"Kitchen Sink","description":"Scenario:","sidebar":"tutorialSidebar"},"configuration/sources/azuracast":{"id":"configuration/sources/azuracast","title":"Azuracast","description":"Azuracast may not correctly report track length or position. If this is the case you should reduce the \\"listened to\\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly.","sidebar":"tutorialSidebar"},"configuration/sources/deezer":{"id":"configuration/sources/deezer","title":"Deezer","description":"This Source uses unofficial methods to access Deezer data that are likely in violation of Deezer\'s TOS. Deezer may change or remove these methods at any time, breaking functionality. Use this Source at your own risk.","sidebar":"tutorialSidebar"},"configuration/sources/google-cast":{"id":"configuration/sources/google-cast","title":"Google Cast (Chromecast)","description":"If your media device can be Cast to using this button Chromecast Icon on your phone/computer then multi-scrobbler can monitor it in order to scrobble music you play.","sidebar":"tutorialSidebar"},"configuration/sources/icecast":{"id":"configuration/sources/icecast","title":"Icecast","description":"Parse metadata from any Icecast Station (streams) to use for scrobbling.","sidebar":"tutorialSidebar"},"configuration/sources/jellyfin":{"id":"configuration/sources/jellyfin","title":"Jellyfin","description":"Must be using Jellyfin 10.7 or greater","sidebar":"tutorialSidebar"},"configuration/sources/jriver":{"id":"configuration/sources/jriver","title":"JRiver","description":"In order for multi-scrobbler to communicate with JRiver you must have Web Server Interface enabled. This can can be in the JRiver GUI:","sidebar":"tutorialSidebar"},"configuration/sources/kodi":{"id":"configuration/sources/kodi","title":"Kodi","description":"In order for multi-scrobbler to communicate with Kodi you must have the Web Interface enabled. This can be done in the Kodi GUI:","sidebar":"tutorialSidebar"},"configuration/sources/koito-source":{"id":"configuration/sources/koito-source","title":"Koito","description":"This Source monitors a Koito account\'s scrobble history and then re-scrobbles discovered tracks to configured Clients.","sidebar":"tutorialSidebar"},"configuration/sources/lastfm-endpoint":{"id":"configuration/sources/lastfm-endpoint","title":"Lastfm (Endpoint)","description":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Last.fm server.","sidebar":"tutorialSidebar"},"configuration/sources/lastfm-source":{"id":"configuration/sources/lastfm-source","title":"Lastfm","description":"This Source monitors your Last.fm scrobble history and re-scrobbles new activity to configured Clients.","sidebar":"tutorialSidebar"},"configuration/sources/listenbrainz-endpoint":{"id":"configuration/sources/listenbrainz-endpoint","title":"Listenbrainz (Endpoint)","description":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Listenbrainz server.","sidebar":"tutorialSidebar"},"configuration/sources/listenbrainz-source":{"id":"configuration/sources/listenbrainz-source","title":"Listenbrainz","description":"This Source monitors a Listenbrainz account\'s scrobble history and then re-scrobbles discovered tracks to configured clients.","sidebar":"tutorialSidebar"},"configuration/sources/maloja":{"id":"configuration/sources/maloja","title":"Maloja","description":"To scrobble to a Maloja server, create a Maloja (Client)","sidebar":"tutorialSidebar"},"configuration/sources/mopidy":{"id":"configuration/sources/mopidy","title":"Mopidy","description":"Mopidy is a headless music server that supports playing music from many standard and non-standard sources such as Pandora, Bandcamp, and Tunein.","sidebar":"tutorialSidebar"},"configuration/sources/mpd":{"id":"configuration/sources/mpd","title":"MPD (Music Player Daemon)","description":"MS communicates with MPD using the TCP client connection.","sidebar":"tutorialSidebar"},"configuration/sources/mpris":{"id":"configuration/sources/mpris","title":"MPRIS","description":"MPRIS is a standard interface for communicating with Music Players on linux operating systems.","sidebar":"tutorialSidebar"},"configuration/sources/musikcube":{"id":"configuration/sources/musikcube","title":"Musikcube","description":"In order to use Musikcube configure it to accept websocket connections in server setup:","sidebar":"tutorialSidebar"},"configuration/sources/plex":{"id":"configuration/sources/plex","title":"Plex","description":"Find your Plex Token and make note of the URL and Port used to connect to your Plex instance.","sidebar":"tutorialSidebar"},"configuration/sources/rocksky-source":{"id":"configuration/sources/rocksky-source","title":"Rocksky","description":"To scrobble to* Rocksky, create a Rocksky (Client)","sidebar":"tutorialSidebar"},"configuration/sources/sources":{"id":"configuration/sources/sources","title":"Overview","description":"A Source is a data source that contains information about tracks you are playing like a music player or platform. Examples are Spotify, Jellyfin, Plex, Youtube Music, Airsonic, etc...","sidebar":"tutorialSidebar"},"configuration/sources/spotify":{"id":"configuration/sources/spotify","title":"Spotify","description":"Spotify and Automix","sidebar":"tutorialSidebar"},"configuration/sources/subsonic":{"id":"configuration/sources/subsonic","title":"Subsonic","description":"This Source can be used for any application that implements the Subsonic API and supports the getNowPlaying endpoint (such as Airsonic and Navidrome)","sidebar":"tutorialSidebar"},"configuration/sources/tealfm-source":{"id":"configuration/sources/tealfm-source","title":"Teal.fm","description":"To scrobble to* an ATProto PDS, create a teal.fm (Client)","sidebar":"tutorialSidebar"},"configuration/sources/vlc":{"id":"configuration/sources/vlc","title":"VLC","description":"MS communicates with VLC using the Web (http) interface module","sidebar":"tutorialSidebar"},"configuration/sources/webscrobbler":{"id":"configuration/sources/webscrobbler","title":"Webscrobbler","description":"After installing the Webscrobbler extension open the preferences/settings for it:","sidebar":"tutorialSidebar"},"configuration/sources/yamaha-musiccast":{"id":"configuration/sources/yamaha-musiccast","title":"Yamaha MusicCast","description":"Monitor MusicCast device/receivers for music played on Network/USB/CD inputs.","sidebar":"tutorialSidebar"},"configuration/sources/youtube-music":{"id":"configuration/sources/youtube-music","title":"Youtube Music","description":"Communication with YT Music is unofficial and not supported or endorsed by Google. This means that this integration may stop working at any time if Google decides to change how YT Music works in the browser.","sidebar":"tutorialSidebar"},"configuration/transforms":{"id":"configuration/transforms","title":"Scrobble Modification","description":"Multi-scrobbler configs support the ability to modify scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler\'s lifecycle.","sidebar":"tutorialSidebar"},"development/dev-client":{"id":"development/dev-client","title":"Client Development/Tutorial","description":"To do...","sidebar":"tutorialSidebar"},"development/dev-common":{"id":"development/dev-common","title":"Common Development","description":"Start here for MS development","sidebar":"tutorialSidebar"},"development/dev-source":{"id":"development/dev-source","title":"Source Development/Tutorial","description":"This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development.","sidebar":"tutorialSidebar"},"development/flatpak":{"id":"development/flatpak","title":"Flatpak","description":"Building Flatpak App locally","sidebar":"tutorialSidebar"},"FAQ":{"id":"FAQ","title":"FAQ","description":"Connection Issues","sidebar":"tutorialSidebar"},"index":{"id":"index","title":"Overview","description":"Latest Release","sidebar":"tutorialSidebar"},"installation/installation":{"id":"installation/installation","title":"Overview","description":"For the difference between ENV and File examples in this document see Configuration Types.","sidebar":"tutorialSidebar"},"installation/service":{"id":"installation/service","title":"As a Service","description":"If you have multi-scrobbler installed locally you can enable it to run as a background service when you login.","sidebar":"tutorialSidebar"},"quickstart":{"id":"quickstart","title":"Quickstart","description":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have:","sidebar":"tutorialSidebar"},"updating/updating":{"id":"updating/updating","title":"Overview","description":"Updating","sidebar":"tutorialSidebar"}}}}')}}]);
+1
assets/js/812e048c.8285c4c7.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["6751"],{30341:function(e,t,n){n.d(t,{ZP:()=>a,d$:()=>o});var i=n(85893),s=n(50065),r=n(11753);let o=[];function l(e){let t={a:"a",li:"li",p:"p",ul:"ul",...(0,s.a)(),...e.components};return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsxs)(t.p,{children:["The ",(0,i.jsx)(t.a,{href:"https://docs.bsky.app/docs/advanced-guides/atproto",children:"AT Protocol"})," is a standard to allow different applications to share and interpret your social data."]}),"\n",(0,i.jsxs)(t.p,{children:["Your data is stored in a personal ",(0,i.jsx)(t.a,{href:"https://atproto.com/guides/data-repos",children:"repository"})," in a ",(0,i.jsx)(t.a,{href:"https://github.com/Bluesky-social/pds",children:"PDS (Personal Data Server)"}),", which is data-type agnostic (it's just JSON). Each application defines their own datatypes and pulls data from your repository to render to you, your network, etc..."]}),"\n",(0,i.jsxs)(t.p,{children:["Even though the application and the PDS/repository are independent, all of this is done for you automatically when you create a ",(0,i.jsx)(t.a,{href:"https://bsky.social/about",children:"Bluesky"})," account."]}),"\n",(0,i.jsx)(t.p,{children:"So..."}),"\n",(0,i.jsxs)(t.ul,{children:["\n",(0,i.jsxs)(t.li,{children:['multi-scrobbler "scrobbles" your plays to your repository',"\n",(0,i.jsxs)(t.ul,{children:["\n",(0,i.jsxs)(t.li,{children:["in a JSON data structure which includes ",(0,i.jsxs)(t.a,{href:"https://atproto.com/specs/lexicon",children:[e.name,"'s data type and structure"]})]}),"\n",(0,i.jsxs)(t.li,{children:["at a ",(0,i.jsxs)(t.a,{href:"https://atproto.com/guides/glossary#collection",children:["known location for ",e.name,"'s data"]})," (",(0,i.jsx)(r.Z,{children:e.lexicon}),"), in a list that is appended to as you continue to scrobble"]}),"\n"]}),"\n"]}),"\n",(0,i.jsxs)(t.li,{children:["when accessing ",e.name,", or another application that knows how to read it, your data is pulled from the repository to render the app"]}),"\n"]})]})}function a(e={}){let{wrapper:t}={...(0,s.a)(),...e.components};return t?(0,i.jsx)(t,{...e,children:(0,i.jsx)(l,{...e})}):l(e)}},89589:function(e,t,n){n.r(t),n.d(t,{frontMatter:()=>a,default:()=>p,toc:()=>h,metadata:()=>i,assets:()=>d,contentTitle:()=>c});var i=JSON.parse('{"id":"configuration/clients/tealfm","title":"Teal.fm","description":"To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source)","source":"@site/docs/configuration/clients/tealfm.mdx","sourceDirName":"configuration/clients","slug":"/configuration/clients/tealfm","permalink":"/multi-scrobbler/configuration/clients/tealfm","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/clients/tealfm.mdx","tags":[],"version":"current","frontMatter":{"title":"Teal.fm","toc_min_heading_level":2,"toc_max_heading_level":5},"sidebar":"tutorialSidebar","previous":{"title":"Rocksky","permalink":"/multi-scrobbler/configuration/clients/rocksky"},"next":{"title":"Overview","permalink":"/multi-scrobbler/configuration/sources/"}}'),s=n(85893),r=n(50065);n(703),n(73752),n(75752);var o=n(92183),l=n(30341);let a={title:"Teal.fm",toc_min_heading_level:2,toc_max_heading_level:5},c=void 0,d={},h=[...l.d$,{value:"Setup",id:"setup",level:2},{value:"Bluesky",id:"bluesky",level:4},{value:"Configuration",id:"configuration",level:2},{value:"Identifier",id:"identifier",level:3}];function u(e){let t={a:"a",admonition:"admonition",code:"code",h2:"h2",h3:"h3",h4:"h4",li:"li",p:"p",strong:"strong",table:"table",tbody:"tbody",td:"td",th:"th",thead:"thead",tr:"tr",ul:"ul",...(0,r.a)(),...e.components},{Config:n,Details:i}=t;return n||f("Config",!0),i||f("Details",!0),(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(t.admonition,{title:"Other Uses",type:"tip",children:(0,s.jsxs)(t.p,{children:["To monitor and re-scrobble activity from a ATProto Profile create a ",(0,s.jsx)(t.a,{href:"/configuration/sources/tealfm-source",children:"teal.fm (Source)"})]})}),"\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.a,{href:"https://teal.fm/",children:(0,s.jsx)(t.strong,{children:"teal.fm"})})," is a social discovery and web viewing service for scrobbles stored/available on the ATProto network/your repository in a ",(0,s.jsx)(t.a,{href:"https://github.com/Bluesky-social/pds",children:"PDS (Personal Data Server)"}),"."]}),"\n",(0,s.jsxs)(i,{children:[(0,s.jsx)("summary",{children:"How does that work?"}),(0,s.jsx)(l.ZP,{name:"teal.fm",lexicon:"fm.teal"})]}),"\n",(0,s.jsx)(t.admonition,{type:"warning",children:(0,s.jsxs)(t.p,{children:["The default Bluesky PDS is ",(0,s.jsx)(t.strong,{children:"public"}),", meaning your scrobbles are also public (read-only). This isn't any different than using Last.fm or Listenbrainz, in terms of privacy."]})}),"\n",(0,s.jsxs)(t.admonition,{type:"note",children:[(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.a,{href:"https://notes.teal.fm/3lzlwe6puis2l",children:"teal.fm is still in developement"})," and does not have a public website, yet."]}),(0,s.jsx)(t.p,{children:"To view your teal.fm scrobbles you can:"}),(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:["use ",(0,s.jsx)(t.a,{href:"https://wrapped.baileytownsend.dev/",children:"wrapped.baileytownsend.dev"})," which gives a simple stats overview of your scrobbles"]}),"\n",(0,s.jsxs)(t.li,{children:["use ",(0,s.jsx)(t.a,{href:"https://tealfm-slice.wisp.place/",children:"teal-slice.wisp.place"})," for a preview of teal.fm"]}),"\n",(0,s.jsxs)(t.li,{children:["use ",(0,s.jsx)(t.a,{href:"https://atproto.at",children:"atproto.at"})," to view the raw data (convenience URLs are generated in multi-scrobbler for you to do this)"]}),"\n"]})]}),"\n",(0,s.jsx)(t.h2,{id:"setup",children:"Setup"}),"\n",(0,s.jsx)(t.h4,{id:"bluesky",children:"Bluesky"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:["Create a ",(0,s.jsx)(t.a,{href:"https://bsky.app",children:"Bluesky"})," account, if you don't already have one"]}),"\n",(0,s.jsxs)(t.li,{children:["Navigate to ",(0,s.jsx)(t.a,{href:"https://bsky.app/settings/app-passwords",children:"https://bsky.app/settings/app-passwords"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"Settings -> Privacy and Security -> App passwords"}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["Create a new ",(0,s.jsx)(t.strong,{children:"App Password"})," and save it somewhere, it will not be shown again"]}),"\n"]}),"\n",(0,s.jsx)(t.h2,{id:"configuration",children:"Configuration"}),"\n",(0,s.jsx)(t.h3,{id:"identifier",children:"Identifier"}),"\n",(0,s.jsx)(t.p,{children:"The ATPRoto identifier used with multi-scrobbler should be either:"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:["A valid ",(0,s.jsx)(t.a,{href:"https://atproto.com/specs/did#at-protocol-did-identifier-syntax",children:"DID"}),", starting with ",(0,s.jsx)(t.code,{children:"did:plc:..."})," or ",(0,s.jsx)(t.code,{children:"did:web:..."})]}),"\n",(0,s.jsxs)(t.li,{children:["Your ",(0,s.jsx)(t.strong,{children:"full"})," ATProto handle, including TLD"]}),"\n"]}),"\n",(0,s.jsx)(t.p,{children:"If using a handle:"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:["For regular Bluesky account this will be like: ",(0,s.jsx)(t.code,{children:"alice.bsky.social"})]}),"\n",(0,s.jsxs)(t.li,{children:["For Bluesky accounts that ",(0,s.jsx)(t.a,{href:"https://bsky.social/about/blog/4-28-2023-domain-handle-tutorial",children:"use their domain as their account"})," this is your domain: ",(0,s.jsx)(t.code,{children:"mydomain.com"})]}),"\n",(0,s.jsx)(t.li,{children:"For non-Bluesky-PDS users, you probably already know your handle"}),"\n"]}),"\n",(0,s.jsxs)(t.p,{children:["If your identifier does not look like a DID and does not include a TLD then multi-scrobbler will automatically append ",(0,s.jsx)(t.code,{children:".bsky.social"})," to your handle value."]}),"\n",(0,s.jsx)(n,{config:"TealClientConfig",fileContent:o.Z,client:!0,name:"tealfm",children:(0,s.jsxs)(t.table,{children:[(0,s.jsx)(t.thead,{children:(0,s.jsxs)(t.tr,{children:[(0,s.jsx)(t.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,s.jsx)(t.th,{children:"Required?"}),(0,s.jsx)(t.th,{children:"Default"}),(0,s.jsx)(t.th,{children:"Description"})]})}),(0,s.jsxs)(t.tbody,{children:[(0,s.jsxs)(t.tr,{children:[(0,s.jsx)(t.td,{style:{textAlign:"left"},children:"TEALFM_IDENTIFIER"}),(0,s.jsx)(t.td,{children:"Yes"}),(0,s.jsx)(t.td,{}),(0,s.jsxs)(t.td,{children:["Your ",(0,s.jsx)(t.strong,{children:"full"})," ATProto handle or DID. For Bluesky account this is like ",(0,s.jsx)(t.code,{children:"myUser.bsky.social"})]})]}),(0,s.jsxs)(t.tr,{children:[(0,s.jsx)(t.td,{style:{textAlign:"left"},children:"TEALFM_APP_PW"}),(0,s.jsx)(t.td,{children:"Yes"}),(0,s.jsx)(t.td,{}),(0,s.jsx)(t.td,{children:"Bluesky/ATProto network App Password"})]})]})]})})]})}function p(e={}){let{wrapper:t}={...(0,r.a)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(u,{...e})}):u(e)}function f(e,t){throw Error("Expected "+(t?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}},11753:function(e,t,n){n.d(t,{Z:()=>s}),n(67294);var i=n(85893);function s(e){return(0,i.jsx)("code",{...e})}},92183:function(e,t,n){n.d(t,{Z:()=>i});let i='[\n {\n "name": "myTeal",\n "configureAs": "client",\n "data": {\n "identifier": "alice.bsky.social",\n "appPassword": "twog-phu7-4dhe-y4j3"\n }\n },\n {\n "name": "myTealSource",\n "configureAs": "source",\n "data": {\n "identifier": "alice.bsky.social",\n "appPassword": "twog-phu7-4dhe-y4j3"\n }\n }\n]'}}]);
-1
assets/js/812e048c.dfbe69e8.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["6751"],{30341:function(e,t,n){n.d(t,{ZP:()=>a,d$:()=>o});var s=n(85893),i=n(50065),r=n(11753);let o=[];function l(e){let t={a:"a",li:"li",p:"p",ul:"ul",...(0,i.a)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsxs)(t.p,{children:["The ",(0,s.jsx)(t.a,{href:"https://docs.bsky.app/docs/advanced-guides/atproto",children:"AT Protocol"})," is a standard to allow different applications to share and interpret your social data."]}),"\n",(0,s.jsxs)(t.p,{children:["Your data is stored in a personal ",(0,s.jsx)(t.a,{href:"https://atproto.com/guides/data-repos",children:"repository"})," in a ",(0,s.jsx)(t.a,{href:"https://github.com/Bluesky-social/pds",children:"PDS (Personal Data Server)"}),", which is data-type agnostic (it's just JSON). Each application defines their own datatypes and pulls data from your repository to render to you, your network, etc..."]}),"\n",(0,s.jsxs)(t.p,{children:["Even though the application and the PDS/repository are independent, all of this is done for you automatically when you create a ",(0,s.jsx)(t.a,{href:"https://bsky.social/about",children:"Bluesky"})," account."]}),"\n",(0,s.jsx)(t.p,{children:"So..."}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:['multi-scrobbler "scrobbles" your plays to your repository',"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:["in a JSON data structure which includes ",(0,s.jsxs)(t.a,{href:"https://atproto.com/specs/lexicon",children:[e.name,"'s data type and structure"]})]}),"\n",(0,s.jsxs)(t.li,{children:["at a ",(0,s.jsxs)(t.a,{href:"https://atproto.com/guides/glossary#collection",children:["known location for ",e.name,"'s data"]})," (",(0,s.jsx)(r.Z,{children:e.lexicon}),"), in a list that is appended to as you continue to scrobble"]}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["when accessing ",e.name,", or another application that knows how to read it, your data is pulled from the repository to render the app"]}),"\n"]})]})}function a(e={}){let{wrapper:t}={...(0,i.a)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(l,{...e})}):l(e)}},89589:function(e,t,n){n.r(t),n.d(t,{frontMatter:()=>a,default:()=>p,toc:()=>h,metadata:()=>s,assets:()=>d,contentTitle:()=>c});var s=JSON.parse('{"id":"configuration/clients/tealfm","title":"Teal.fm","description":"To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source)","source":"@site/docs/configuration/clients/tealfm.mdx","sourceDirName":"configuration/clients","slug":"/configuration/clients/tealfm","permalink":"/multi-scrobbler/configuration/clients/tealfm","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/clients/tealfm.mdx","tags":[],"version":"current","frontMatter":{"title":"Teal.fm","toc_min_heading_level":2,"toc_max_heading_level":5},"sidebar":"tutorialSidebar","previous":{"title":"Rocksky","permalink":"/multi-scrobbler/configuration/clients/rocksky"},"next":{"title":"Overview","permalink":"/multi-scrobbler/configuration/sources/"}}'),i=n(85893),r=n(50065);n(703),n(73752),n(75752);var o=n(92183),l=n(30341);let a={title:"Teal.fm",toc_min_heading_level:2,toc_max_heading_level:5},c=void 0,d={},h=[...l.d$,{value:"Setup",id:"setup",level:2},{value:"Bluesky",id:"bluesky",level:4},{value:"Configuration",id:"configuration",level:2},{value:"Handle",id:"handle",level:3}];function u(e){let t={a:"a",admonition:"admonition",code:"code",h2:"h2",h3:"h3",h4:"h4",li:"li",p:"p",strong:"strong",table:"table",tbody:"tbody",td:"td",th:"th",thead:"thead",tr:"tr",ul:"ul",...(0,r.a)(),...e.components},{Config:n,Details:s}=t;return n||f("Config",!0),s||f("Details",!0),(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(t.admonition,{title:"Other Uses",type:"tip",children:(0,i.jsxs)(t.p,{children:["To monitor and re-scrobble activity from a ATProto Profile create a ",(0,i.jsx)(t.a,{href:"/configuration/sources/tealfm-source",children:"teal.fm (Source)"})]})}),"\n",(0,i.jsxs)(t.p,{children:[(0,i.jsx)(t.a,{href:"https://teal.fm/",children:(0,i.jsx)(t.strong,{children:"teal.fm"})})," is a social discovery and web viewing service for scrobbles stored/available on the ATProto network/your repository in a ",(0,i.jsx)(t.a,{href:"https://github.com/Bluesky-social/pds",children:"PDS (Personal Data Server)"}),"."]}),"\n",(0,i.jsxs)(s,{children:[(0,i.jsx)("summary",{children:"How does that work?"}),(0,i.jsx)(l.ZP,{name:"teal.fm",lexicon:"fm.teal"})]}),"\n",(0,i.jsx)(t.admonition,{type:"warning",children:(0,i.jsxs)(t.p,{children:["The default Bluesky PDS is ",(0,i.jsx)(t.strong,{children:"public"}),", meaning your scrobbles are also public (read-only). This isn't any different than using Last.fm or Listenbrainz, in terms of privacy."]})}),"\n",(0,i.jsxs)(t.admonition,{type:"note",children:[(0,i.jsxs)(t.p,{children:[(0,i.jsx)(t.a,{href:"https://notes.teal.fm/3lzlwe6puis2l",children:"teal.fm is still in developement"})," and does not have a public website, yet."]}),(0,i.jsx)(t.p,{children:"To view your teal.fm scrobbles you can:"}),(0,i.jsxs)(t.ul,{children:["\n",(0,i.jsxs)(t.li,{children:["use ",(0,i.jsx)(t.a,{href:"https://wrapped.baileytownsend.dev/",children:"wrapped.baileytownsend.dev"})," which gives a simple stats overview of your scrobbles"]}),"\n",(0,i.jsxs)(t.li,{children:["use ",(0,i.jsx)(t.a,{href:"https://atproto.at",children:"atproto.at"})," to view the raw data (convenience URLs are generated in multi-scrobbler for you to do this)"]}),"\n"]})]}),"\n",(0,i.jsx)(t.h2,{id:"setup",children:"Setup"}),"\n",(0,i.jsx)(t.h4,{id:"bluesky",children:"Bluesky"}),"\n",(0,i.jsxs)(t.ul,{children:["\n",(0,i.jsxs)(t.li,{children:["Create a ",(0,i.jsx)(t.a,{href:"https://bsky.app",children:"Bluesky"})," account, if you don't already have one"]}),"\n",(0,i.jsxs)(t.li,{children:["Navigate to ",(0,i.jsx)(t.a,{href:"https://bsky.app/settings/app-passwords",children:"https://bsky.app/settings/app-passwords"}),"\n",(0,i.jsxs)(t.ul,{children:["\n",(0,i.jsx)(t.li,{children:"Settings -> Privacy and Security -> App passwords"}),"\n"]}),"\n"]}),"\n",(0,i.jsxs)(t.li,{children:["Create a new ",(0,i.jsx)(t.strong,{children:"App Password"})," and save it somewhere, it will not be shown again"]}),"\n"]}),"\n",(0,i.jsx)(t.h2,{id:"configuration",children:"Configuration"}),"\n",(0,i.jsx)(t.h3,{id:"handle",children:"Handle"}),"\n",(0,i.jsxs)(t.p,{children:["The handle used with multi-scrobbler should be your ",(0,i.jsx)(t.strong,{children:"full"})," ATProto handle, including TLD."]}),"\n",(0,i.jsxs)(t.ul,{children:["\n",(0,i.jsxs)(t.li,{children:["For regular Bluesky account this will be like: ",(0,i.jsx)(t.code,{children:"alice.bsky.social"})]}),"\n",(0,i.jsxs)(t.li,{children:["For Bluesky accounts that ",(0,i.jsx)(t.a,{href:"https://bsky.social/about/blog/4-28-2023-domain-handle-tutorial",children:"use their website as their account"})," this is your domain: ",(0,i.jsx)(t.code,{children:"mydomain.com"})]}),"\n",(0,i.jsx)(t.li,{children:"For non-Bluesky users, you probably already know your handle"}),"\n"]}),"\n",(0,i.jsxs)(t.p,{children:["If you do not include a TLD then multi-scrobbler will automatically append ",(0,i.jsx)(t.code,{children:".bsky.social"})," to your handle value."]}),"\n",(0,i.jsx)(n,{config:"TealClientConfig",fileContent:o.Z,client:!0,name:"tealfm",children:(0,i.jsxs)(t.table,{children:[(0,i.jsx)(t.thead,{children:(0,i.jsxs)(t.tr,{children:[(0,i.jsx)(t.th,{style:{textAlign:"left"},children:"Environmental Variable"}),(0,i.jsx)(t.th,{children:"Required?"}),(0,i.jsx)(t.th,{children:"Default"}),(0,i.jsx)(t.th,{children:"Description"})]})}),(0,i.jsxs)(t.tbody,{children:[(0,i.jsxs)(t.tr,{children:[(0,i.jsx)(t.td,{style:{textAlign:"left"},children:"TEALFM_IDENTIFIER"}),(0,i.jsx)(t.td,{children:"Yes"}),(0,i.jsx)(t.td,{}),(0,i.jsxs)(t.td,{children:["Your ",(0,i.jsx)(t.strong,{children:"full"})," ATProto handle. For Bluesky account this is like ",(0,i.jsx)(t.code,{children:"myUser.bsky.social"})]})]}),(0,i.jsxs)(t.tr,{children:[(0,i.jsx)(t.td,{style:{textAlign:"left"},children:"TEALFM_APP_PW"}),(0,i.jsx)(t.td,{children:"Yes"}),(0,i.jsx)(t.td,{}),(0,i.jsx)(t.td,{children:"Bluesky/ATProto network App Password"})]})]})]})})]})}function p(e={}){let{wrapper:t}={...(0,r.a)(),...e.components};return t?(0,i.jsx)(t,{...e,children:(0,i.jsx)(u,{...e})}):u(e)}function f(e,t){throw Error("Expected "+(t?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}},11753:function(e,t,n){n.d(t,{Z:()=>i}),n(67294);var s=n(85893);function i(e){return(0,s.jsx)("code",{...e})}},92183:function(e,t,n){n.d(t,{Z:()=>s});let s='[\n {\n "name": "myTeal",\n "configureAs": "client",\n "data": {\n "identifier": "alice.bsky.social",\n "appPassword": "twog-phu7-4dhe-y4j3"\n }\n },\n {\n "name": "myTealSource",\n "configureAs": "source",\n "data": {\n "identifier": "alice.bsky.social",\n "appPassword": "twog-phu7-4dhe-y4j3"\n }\n }\n]'}}]);
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["6963"],{8609:function(e){e.exports=JSON.parse('{"categoryGeneratedIndex":{"title":"Development","description":"Developing for Multi-Scrobbler and tutorials","slug":"/category/development","permalink":"/multi-scrobbler/category/development","sidebar":"tutorialSidebar","navigation":{"previous":{"title":"Scrobble Modification","permalink":"/multi-scrobbler/configuration/transforms"},"next":{"title":"Common Development","permalink":"/multi-scrobbler/development/dev-common"}}}}')}}]);11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["6963"],{8609:function(e){e.exports=JSON.parse('{"categoryGeneratedIndex":{"title":"Development","description":"Developing for Multi-Scrobbler and tutorials","slug":"/category/development","permalink":"/multi-scrobbler/category/development","sidebar":"tutorialSidebar","navigation":{"previous":{"title":"User Stage","permalink":"/multi-scrobbler/configuration/transforms/user"},"next":{"title":"Common Development","permalink":"/multi-scrobbler/development/dev-common"}}}}')}}]);
-1
assets/js/982d82a4.47094ad4.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["7167"],{95876:function(e,n,s){s.r(n),s.d(n,{frontMatter:()=>t,default:()=>h,toc:()=>c,metadata:()=>i,assets:()=>o,contentTitle:()=>a});var i=JSON.parse('{"id":"configuration/transforms","title":"Scrobble Modification","description":"Multi-scrobbler configs support the ability to modify scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler\'s lifecycle.","source":"@site/docs/configuration/transforms.mdx","sourceDirName":"configuration","slug":"/configuration/transforms","permalink":"/multi-scrobbler/configuration/transforms","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/transforms.mdx","tags":[],"version":"current","sidebarPosition":4,"frontMatter":{"sidebar_position":4,"title":"Scrobble Modification","toc_max_heading_level":4},"sidebar":"tutorialSidebar","previous":{"title":"Kitchen Sink","permalink":"/multi-scrobbler/configuration/kitchensink"},"next":{"title":"Development","permalink":"/multi-scrobbler/category/development"}}'),r=s(85893),l=s(50065);let t={sidebar_position:4,title:"Scrobble Modification",toc_max_heading_level:4},a=void 0,o={},c=[{value:"Why?",id:"why",level:3},{value:"Overview",id:"overview",level:2},{value:"Journey of a Scrobble",id:"journey-of-a-scrobble",level:3},{value:"Lifecyle Hooks",id:"lifecyle-hooks",level:3},{value:"TLDR",id:"tldr",level:4},{value:"Hook",id:"hook",level:5},{value:"Modification Parts",id:"modification-parts",level:3},{value:"Expression",id:"expression",level:5},{value:"Compare Hook",id:"compare-hook",level:4},{value:"Regular Expressions",id:"regular-expressions",level:4},{value:"Conditional Modification",id:"conditional-modification",level:3},{value:""When" Condition",id:"when-condition",level:4},{value:"Top-level Hook array",id:"top-level-hook-array",level:4},{value:"Logging",id:"logging",level:3},{value:"Examples",id:"examples",level:2},{value:"Remove phrase from Title in all new Plays",id:"remove-phrase-from-title-in-all-new-plays",level:3},{value:"Remove all parenthesized content from the end of a title",id:"remove-all-parenthesized-content-from-the-end-of-a-title",level:3},{value:"Rename misspelled artist in all new Plays",id:"rename-misspelled-artist-in-all-new-plays",level:3},{value:"Remove "Various Artists" albums in all new Plays",id:"remove-various-artists-albums-in-all-new-plays",level:3},{value:"Extract primary Artist from delimited, multi-Artist string",id:"extract-primary-artist-from-delimited-multi-artist-string",level:3}];function d(e){let n={a:"a",admonition:"admonition",code:"code",h2:"h2",h3:"h3",h4:"h4",h5:"h5",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,l.a)(),...e.components},{Details:s}=n;return s||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(n.p,{children:["Multi-scrobbler configs support the ability to modify scrobble data in an automated fashion by matching and replacing strings in ",(0,r.jsx)(n.strong,{children:"title, artists, and album"})," at many different times in multi-scrobbler's lifecycle."]}),"\n",(0,r.jsx)(n.h3,{id:"why",children:"Why?"}),"\n",(0,r.jsx)(n.p,{children:'You may need to "clean up" data from a Source or before sending to a scrobble Client due to any number of reasons:'}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["ID3 tags in your music collection are dirty or have repeating garbage IE ",(0,r.jsx)(n.code,{children:"[YourMusicSource.com] My Artist - My Title"})]}),"\n",(0,r.jsxs)(n.li,{children:["A Source's service often incorrectly adds data to some field IE ",(0,r.jsx)(n.code,{children:"My Artist - My Title (Album Version)"})," when the title should just be ",(0,r.jsx)(n.code,{children:"My Title"})]}),"\n",(0,r.jsx)(n.li,{children:"An Artist you listen to often is spelled different between a Source and a Client which causes duplicate scrobbles"}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"In any scenario where a repeating pattern can be found in the data it would be nice to be able to fix it before the data gets downstream or to help prevent duplicate scrobbling. Multi-scrobbler can help you do this."}),"\n",(0,r.jsx)(n.h2,{id:"overview",children:"Overview"}),"\n",(0,r.jsx)(n.h3,{id:"journey-of-a-scrobble",children:"Journey of a Scrobble"}),"\n",(0,r.jsx)(n.p,{children:"First, let's recap the lifecycle of a scrobble in multi-scrobbler:"}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Sources"})," are the beginning of the journey for a ",(0,r.jsx)(n.strong,{children:"Play"})," (song you've listened to long enough to be scrobblable)"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["A Source finds a new valid ",(0,r.jsx)(n.strong,{children:"Play"})]}),"\n",(0,r.jsxs)(n.li,{children:["The Source ",(0,r.jsx)(n.strong,{children:"compares"})," this new Play to all the other Plays it has already seen, if the Play is unique (title/artist/album/listened datetime) then..."]}),"\n",(0,r.jsxs)(n.li,{children:["The Source ",(0,r.jsx)(n.strong,{children:"discovers"})," the Play, adds it to Plays it has seen already, and broadcasts the Play should be scrobbled to all Clients"]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Scrobble ",(0,r.jsx)(n.strong,{children:"Clients"})," listen for discovered Plays from Sources, then..."]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["A Client receives a ",(0,r.jsx)(n.strong,{children:"Play"})," from a Source"]}),"\n",(0,r.jsxs)(n.li,{children:["The Client ",(0,r.jsx)(n.strong,{children:"compares"})," this Play to all the other scrobbles it has already seen, if the Play is unique (title/artist/album/listened datetime) then..."]}),"\n",(0,r.jsxs)(n.li,{children:["The Client ",(0,r.jsx)(n.strong,{children:"scrobbles"})," the Play downstream to the scrobble service and adds it as a Scrobble it has seen already"]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"lifecyle-hooks",children:"Lifecyle Hooks"}),"\n",(0,r.jsx)(n.p,{children:"You'll notice there is a pattern above that looks like this:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.strong,{children:"Before"})," data is compared"]}),"\n",(0,r.jsxs)(n.li,{children:["Data is ",(0,r.jsx)(n.strong,{children:"compared"})]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.strong,{children:"After"})," data is compared"]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"These points, during both Source and Client processes, are when you can hook into the scrobble lifecycle and modify it."}),"\n",(0,r.jsx)(n.h4,{id:"tldr",children:"TLDR"}),"\n",(0,r.jsxs)(n.p,{children:["In more concrete terms this is the structure of hooks within a configuration (can be used in any ",(0,r.jsx)(n.strong,{children:"Source"})," or ",(0,r.jsx)(n.strong,{children:"Client"}),"):"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json" {10-14}',children:'[\n {\n "name": "myLastFm",\n "enable": true,\n "configureAs": "source",\n "data": {\n // ...\n },\n "options": {\n "playTransform": {\n "preCompare": {/* ... */},\n "compare": {/* ... */},\n "postCompare": {/* ... */}\n }\n }\n }\n]\n'})}),"\n",(0,r.jsx)(n.h5,{id:"hook",children:"Hook"}),"\n",(0,r.jsxs)(n.p,{children:["For ",(0,r.jsx)(n.strong,{children:"Sources"}),":"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"preCompare"})," - modify Play data immediately when received"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"compare"})," - temporarily modify Play data when it is being compared to see if Play was already discovered"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"postCompare"})," - modify Play data before sending to scrobble ",(0,r.jsx)(n.strong,{children:"Clients"})]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["For ",(0,r.jsx)(n.strong,{children:"Clients"}),":"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"preCompare"})," - modify Play data immediately when received"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"compare"})," - temporarily modify Play data when it is being compared to see if it was already scrobbled"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"postCompare"})," - modify Play data before scrobbling it to downstream service and adding to already seen scrobbles"]}),"\n"]}),"\n",(0,r.jsxs)(n.admonition,{type:"tip",children:[(0,r.jsx)(n.p,{children:"Keep in mind that modifying Scrobble/Play data earlier in the lifecycle will affect that data at all times later in the lifecycle."}),(0,r.jsxs)(n.p,{children:["For example, to modify the track so it's the same anywhere it is processed in multi-scrobbler you only need to modify it in the ",(0,r.jsx)(n.strong,{children:"Source's"})," ",(0,r.jsx)(n.code,{children:"preCompare"})," hook because all later processes will receive the data with the modified track."]})]}),"\n",(0,r.jsx)(n.h3,{id:"modification-parts",children:"Modification Parts"}),"\n",(0,r.jsxs)(n.p,{children:["Each ",(0,r.jsx)(n.a,{href:"#hook",children:(0,r.jsx)(n.strong,{children:"hook"})})," (",(0,r.jsx)(n.code,{children:"preCompare"})," etc...) is an object that specifies what part of the ",(0,r.jsx)(n.strong,{children:"Play"})," to modify:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n "title": [/* ... */],\n "artists": [/* ... */],\n "album": [/* ... */]\n}\n'})}),"\n",(0,r.jsx)(n.h5,{id:"expression",children:"Expression"}),"\n",(0,r.jsxs)(n.p,{children:["and then a ",(0,r.jsx)(n.strong,{children:"list"})," what pattern/replacements (expressions) to use for the modification by using either simple strings or ",(0,r.jsx)(n.code,{children:"search-replace"})," objects:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'[\n "badTerm", // remove all instances of \'badTerm\'\n {\n "search": "anotherBadTerm", // and also match all instances of \'anotherBadTerm\'\n "replace": "goodTerm" // replace with the string \'goodTerm\'\n }\n]\n'})}),"\n",(0,r.jsx)(n.p,{children:"Putting it all together:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json"',children:'[\n {\n "name": "myLastFm",\n "enable": true,\n "configureAs": "source",\n "data": {\n // ...\n },\n "options": {\n "playTransform": {\n "preCompare": {\n "title": [\n "badTerm",\n {\n "search": "badTerm",\n "replace": "goodTerm"\n }\n ]\n },\n }\n }\n }\n]\n'})}),"\n",(0,r.jsx)(n.admonition,{type:"note",children:(0,r.jsxs)(n.p,{children:["If the value of the field (title, an artist, album) is an empty string after transforming then the field is ",(0,r.jsx)(n.strong,{children:"removed."})]})}),"\n",(0,r.jsxs)(n.admonition,{type:"tip",children:[(0,r.jsxs)(n.p,{children:["Modifications can also be applied to ",(0,r.jsx)(n.strong,{children:"all Sources"})," or ",(0,r.jsx)(n.strong,{children:"all Clients"})," when using the ",(0,r.jsx)(n.a,{href:"/multi-scrobbler/configuration/?configType=aio#configuration-types",children:"AIO Config"})," ",(0,r.jsx)(n.code,{children:"config.json"})," by setting ",(0,r.jsx)(n.code,{children:"playTransform"})," in ",(0,r.jsx)(n.code,{children:"sourceDefaults"})," or ",(0,r.jsx)(n.code,{children:"clientDefaults"}),":"]}),(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sourceDefaults": { // will apply playTransform to all sources\n "playTransform": {\n "preCompare": {\n "title": [\n "(Album Version)"\n ]\n }\n }\n },\n "sources": [/* ... */],\n "clients": [/* ... */]\n}\n'})})]})]}),"\n",(0,r.jsx)(n.h4,{id:"compare-hook",children:"Compare Hook"}),"\n",(0,r.jsxs)(n.p,{children:["The ",(0,r.jsx)(n.code,{children:"compare"})," ",(0,r.jsx)(n.a,{href:"#hook",children:"hook"})," is slightly different than ",(0,r.jsx)(n.code,{children:"preCompare"})," and ",(0,r.jsx)(n.code,{children:"postCompare"}),". It consists of an object where you define which side(s) of the comparison should be modified. It also ",(0,r.jsx)(n.strong,{children:"does not modify downstream data!"})," Instead, the modifications are made only for use in the comparison."]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json"',children:'[\n {\n "name": "myLastFm",\n // ...\n "options": {\n "playTransform": {\n "compare": {\n "candidate": {/* ... */}, // modify the "new" Play being compared\n "existing": {/* ... */}, // modify all "existing" Play/Scrobbles the new Play is being compared against\n },\n }\n }\n }\n]\n'})}),"\n",(0,r.jsx)(n.h4,{id:"regular-expressions",children:"Regular Expressions"}),"\n",(0,r.jsxs)(n.p,{children:["In addition to plain strings ",(0,r.jsx)(n.a,{href:"#expression",children:"expressions"})," that are matched and removed you can also use Regular Expressions. Write your regex like you normally would, but as a string, and it'll automatically be parsed:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'[\n "/^\\(\\w+.com)/i", // matches any string that starts with \'(YourMusic.com)\' and removes it\n {\n "search": "/^\\(\\w+.com)/i", // matches any string that starts with \'(YourMusic.com)\'\n "replace": "[MySite.com]" // replace with the string \'[MySite.com]\'\n }\n]\n'})}),"\n",(0,r.jsxs)(n.p,{children:["The ",(0,r.jsx)(n.code,{children:"replace"})," property uses javascript's ",(0,r.jsxs)(n.a,{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace#specifying_a_string_as_the_replacement",children:[(0,r.jsx)(n.code,{children:"replace()"})," function and so can use any special string characters."]})]}),"\n",(0,r.jsx)(n.h3,{id:"conditional-modification",children:"Conditional Modification"}),"\n",(0,r.jsx)(n.h4,{id:"when-condition",children:'"When" Condition'}),"\n",(0,r.jsxs)(n.p,{children:["Top-level hooks ",(0,r.jsx)(n.strong,{children:"and"})," individual rules also support a ",(0,r.jsx)(n.code,{children:"when"})," key for testing ",(0,r.jsx)(n.strong,{children:"if they should be run."})]}),"\n",(0,r.jsxs)(n.p,{children:["The ",(0,r.jsx)(n.code,{children:"when"})," key is similar to a normal ",(0,r.jsx)(n.a,{href:"#modification-parts",children:"modification"})," except:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"the keys accept a single string instead of an array"}),"\n",(0,r.jsxs)(n.li,{children:["the ",(0,r.jsx)(n.code,{children:"when"})," key data is an array instead of a single object"]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["All parts of an individual ",(0,r.jsx)(n.code,{children:"when"}),' clause must test true to "pass" but if ',(0,r.jsx)(n.strong,{children:"any"})," ",(0,r.jsx)(n.code,{children:"when"})," clauses pass the hook/rule is processed. Example ",(0,r.jsx)(n.code,{children:"when"})," data:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n "when": [\n {\n "artist": "Elephant Gym", // both of these must match the Play object (AND)\n "album": "Dreams" // both of these must match the Play object (AND)\n },\n // OR\n {\n "title": "/(Remastered)$/", // both of these must match the Play object (AND)\n "album": "Various Artists" // both of these must match the Play object (AND)\n }\n ]\n}\n'})}),"\n",(0,r.jsx)(n.p,{children:"More succinctly:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["All parts (",(0,r.jsx)(n.code,{children:"artist"})," ",(0,r.jsx)(n.code,{children:"album"})," ",(0,r.jsx)(n.code,{children:"title"}),") of a ",(0,r.jsx)(n.code,{children:"when"})," are ",(0,r.jsx)(n.code,{children:"AND"})," conditions"]}),"\n",(0,r.jsxs)(n.li,{children:["All part-objects in the ",(0,r.jsx)(n.code,{children:"when"})," array are ",(0,r.jsx)(n.code,{children:"OR"})," conditions"]}),"\n"]}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example of top-level hook with when condition"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n // IF the artist is Elephant Gym \n // THEN Run preCompare hook ELSE skip this hook\n //\n // Run search-replace on album\n // Run regex title remove\n "sourceDefaults": {\n "playTransform": {\n "preCompare": {\n "when": [\n {\n "artist": "/Elephant Gym/"\n }\n ],\n "album": [\n {\n "search": "Dreams",\n "replace": "\u5922\u5883"\n }\n ],\n "title": ["/\\s\\-\\s\u6EFE\u77F340\\s\u6EFE\u77F3\u649E\u6A02\u968A\\s40\u5718\u62DA\u7D93\u5178(.+)$/i"]\n },\n }\n }\n}\n'})})]}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example of individual rule with when condition"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n // Always run preCompare\n //\n // On search-replace in title...\n // IF artist matches "Elephant Gym"\n // THEN Run regex search-replace ELSE skip this rule\n //\n // Run live|remastered regex remove\n "sourceDefaults": {\n "playTransform": {\n "preCompare": {\n "title": [\n {\n "search": "/\\\\s\\\\-\\\\s\u6EFE\u77F340\\\\s\u6EFE\u77F3\u649E\u6A02\u968A\\\\s40\u5718\u62DA\u7D93\u5178(.+)$/i",\n "replace": "",\n "when": [\n {\n "artist": "/Elephant Gym/"\n }\n ]\n },\n "/(\\\\s\\\\-\\\\s|\\\\s)(feat\\\\.(.+)|live|remastered(.+))$/i"\n ],\n }\n }\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h4,{id:"top-level-hook-array",children:"Top-level Hook array"}),"\n",(0,r.jsxs)(n.p,{children:["Top-level hooks can also be an array of hooks. This makes creating multiple scenarios for top-level ",(0,r.jsx)(n.code,{children:"when"}),"-gated hooks easier. All hooks in the array will be run (assuming their ",(0,r.jsx)(n.code,{children:"when"}),"'s pass, if they exist) and their ",(0,r.jsx)(n.strong,{children:"input will be the Play object output of the previous hook in the array."})]}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n "sourceDefaults": {\n "playTransform": {\n "preCompare": [\n // first lifecycle hook of preCompare to run\n {\n "title": [\n {\n "search": "something",\n "replace": "else unique"\n }\n ]\n },\n // second lifecycle hook of preCompare to run\n {\n "title": [\n {\n "search": "else unique",\n "replace": "very demure"\n }\n ]\n },\n ]\n }\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"logging",children:"Logging"}),"\n",(0,r.jsxs)(n.p,{children:["MS can log the output of hook transformations if/when they occur. In the ",(0,r.jsx)(n.code,{children:"playTransform"})," object of a Source/Client config use ",(0,r.jsx)(n.code,{children:"log"}),":"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:'"log": true'})," => Output original play + final transformed output of last hook in the array"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:'"log": "all"'})," => Output original play + final transformed output of ",(0,r.jsx)(n.strong,{children:"each"})," hook in the array"]}),"\n"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n "name": "myThing",\n "data": {/*...*/},\n "options": {\n "playTransform": {\n "preCompare": {/*...*/},\n "log": true\n }\n }\n}\n'})}),"\n",(0,r.jsx)(n.h2,{id:"examples",children:"Examples"}),"\n",(0,r.jsx)(n.h3,{id:"remove-phrase-from-title-in-all-new-plays",children:"Remove phrase from Title in all new Plays"}),"\n",(0,r.jsxs)(n.p,{children:["Removes the phrase ",(0,r.jsx)(n.code,{children:"(Album Version)"})," from the Title of a Play"]}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sourceDefaults": {\n "playTransform": {\n "preCompare": {\n "title": [\n "(Album Version)"\n ]\n }\n }\n }\n}\n\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"remove-all-parenthesized-content-from-the-end-of-a-title",children:"Remove all parenthesized content from the end of a title"}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="lastfm.json"',children:'[\n {\n "name": "myLastFm",\n // ...\n "options": {\n "playTransform": {\n "compare": {\n "candidate": {\n "title": [\n "/(\\(.+\\))\\s*$/"\n ]\n },\n "existing": {\n "title": [\n "/(\\(.+\\))\\s*$/"\n ]\n },\n },\n }\n }\n }\n]\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"rename-misspelled-artist-in-all-new-plays",children:"Rename misspelled artist in all new Plays"}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sourceDefaults": {\n "playTransform": {\n "preCompare": {\n "artists": [\n {\n "search": "Boz Skaggs",\n "replace": "Boz Scaggs"\n }\n ]\n }\n }\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"remove-various-artists-albums-in-all-new-plays",children:'Remove "Various Artists" albums in all new Plays'}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sourceDefaults": {\n "playTransform": {\n "preCompare": {\n "album": [\n {\n "search": "Various Artists",\n "replace": ""\n }\n ]\n }\n }\n }\n}\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"extract-primary-artist-from-delimited-multi-artist-string",children:"Extract primary Artist from delimited, multi-Artist string"}),"\n",(0,r.jsxs)(s,{children:[(0,r.jsx)(n.p,{children:"When the Artist string is actually a multi-artist, delimited string, this search-and-replace will replace the string with just the first artist found."}),(0,r.jsx)(n.p,{children:"Ex"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{children:"My Artist One / My Artist Two / Another Guy\nMy Artist One\n"})}),(0,r.jsxs)(n.p,{children:["Artists are delimited with a spaced forward slash (",(0,r.jsx)(n.code,{children:"/"}),") in the regex below. Replace the contents of the ",(0,r.jsx)(n.code,{children:"delim"})," capture group with the delimiter for your use case. Some more common scenarios:"]}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"(?<delim>\\\\/)"})," No spaces between slash IE ",(0,r.jsx)(n.code,{children:"My Artist One/My Artist Two/Another Guy"})]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"(?<delim>\\\\s*\\\\\\\\\\s*)"})," Backslash instead of forward slash IE ",(0,r.jsx)(n.code,{children:"My Artist One \\ My Artist Two \\ Another Guy"})]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"(?<delim>,)"})," Comma IE ",(0,r.jsx)(n.code,{children:"My Artist One, My Artist Two, Another Guy"})]}),"\n"]}),(0,r.jsxs)(s,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n "sourceDefaults": {\n "playTransform": {\n "preCompare": {\n "artists": [\n {\n "search": "(.*?)(?<delim>\\\\s*\\\\/\\\\s*)(.*$)",\n "replace": "$1"\n }\n ]\n }\n }\n }\n}\n'})})]})]})]})}function h(e={}){let{wrapper:n}={...(0,l.a)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}}}]);
+1
assets/js/dfa6d5b1.81d9ab9f.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["7416"],{42302:function(e,n,s){s.r(n),s.d(n,{frontMatter:()=>o,default:()=>h,toc:()=>c,metadata:()=>i,assets:()=>l,contentTitle:()=>a});var i=JSON.parse('{"id":"configuration/transforms/native","title":"Native Stage","description":"The Native Stage uses built-in heuristics to try to extract Artists from Play artist/track data.","source":"@site/docs/configuration/transforms/native.mdx","sourceDirName":"configuration/transforms","slug":"/configuration/transforms/native","permalink":"/multi-scrobbler/configuration/transforms/native","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/transforms/native.mdx","tags":[],"version":"current","frontMatter":{"title":"Native Stage","toc_min_heading_level":2,"toc_max_heading_level":5},"sidebar":"tutorialSidebar","previous":{"title":"Musicbrainz Stage","permalink":"/multi-scrobbler/configuration/transforms/musicbrainz"},"next":{"title":"User Stage","permalink":"/multi-scrobbler/configuration/transforms/user"}}'),t=s(85893),r=s(50065);let o={title:"Native Stage",toc_min_heading_level:2,toc_max_heading_level:5},a=void 0,l={},c=[{value:"Configuration",id:"configuration",level:2},{value:"Rules",id:"rules",level:3},{value:"Default Stage",id:"default-stage",level:3},{value:"ENV Configuration",id:"env-configuration",level:2},{value:"Examples",id:"examples",level:2},{value:"Parse only artists string using a custom delimiter",id:"parse-only-artists-string-using-a-custom-delimiter",level:3},{value:"Don't parse specific artists",id:"dont-parse-specific-artists",level:3},{value:"Extract Artists from Title but do not modify Title",id:"extract-artists-from-title-but-do-not-modify-title",level:3}];function d(e){let n={a:"a",admonition:"admonition",code:"code",em:"em",h2:"h2",h3:"h3",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,r.a)(),...e.components},{Details:s}=n;return s||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)(n.p,{children:["The ",(0,t.jsx)(n.strong,{children:"Native"})," ",(0,t.jsx)(n.a,{href:"/configuration/transforms#stage",children:"Stage"})," uses ",(0,t.jsx)(n.a,{href:"https://github.com/FoxxMD/multi-scrobbler/blob/master/src/backend/tests/plays/playParsing.test.ts",children:"built-in heuristics"})," to try to extract Artists from Play artist/track data."]}),"\n",(0,t.jsx)(n.p,{children:"This Stage is most useful for Sources that report limited data such as:"}),"\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," - Reports Artists as a single string"]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"A non-exhaustive list of heuristics:"}),"\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:["Splits artists in artist string using common delimiters EX ",(0,t.jsx)(n.code,{children:"Foo Artist, Bar Guy, Baz Band - My Cool Song"}),"\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:["Does not split artists with ",(0,t.jsx)(n.code,{children:"&"})," in name, if other delimiters are present"]}),"\n",(0,t.jsx)(n.li,{children:"Does not split artist name when only one delimiter is present"}),"\n"]}),"\n"]}),"\n",(0,t.jsxs)(n.li,{children:["Splits artists on common joiner phrases (ft. feat. vs. etc...)","\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:["Extracts artists from Play title using joiner phrases EX ",(0,t.jsx)(n.code,{children:"My Cool Song (feat. SomeGuy)"})]}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"A practical example of what the Native Stage will do to Play data:"}),"\n",(0,t.jsxs)(n.p,{children:["This Scrobble from ",(0,t.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})]}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility (feat. Wheatus)",\n "artists": ["Bowling For Soup & Punk Rock Factory"]\n}\n'})}),"\n",(0,t.jsx)(n.p,{children:"Will be transformed into this"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility",\n "artists": ["Bowling For Soup", "Punk Rock Factory", "Wheatus"]\n}\n'})}),"\n",(0,t.jsx)(n.h2,{id:"configuration",children:"Configuration"}),"\n",(0,t.jsxs)(n.p,{children:["Available properties for ",(0,t.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configuration"}),":"]}),"\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.code,{children:"delimitersExtra"})," - A list of string characters that should be considered delimiters for artists ",(0,t.jsx)(n.strong,{children:"in addition to"})," multi-scrobbler's default list (",(0,t.jsx)(n.code,{children:", / \\ "}),")"]}),"\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.code,{children:"delimiters"})," - A list of string characters that should be considered delimiters for artists.","\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.strong,{children:"Replaces"})," all delimiters (MS not use any defaults, only what you give it)"]}),"\n"]}),"\n"]}),"\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.code,{children:"artistsIgnore"})," - a list of strings and/or regular expressions. Any monolothic artist string that matches from the list ",(0,t.jsx)(n.em,{children:"will not be modified."})]}),"\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.code,{children:"artistsParseFrom"})," a list of the properties that should be used to try to extract artists. Can be ",(0,t.jsx)(n.code,{children:"artists"})," ",(0,t.jsx)(n.code,{children:"title"})," or both. Defaults to both when not provided in options ( ",(0,t.jsx)(n.code,{children:'["artists", "title"]'})," )","\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:["When ",(0,t.jsx)(n.code,{children:"artists"})," is present it tries to extract additional artists from artist strings"]}),"\n",(0,t.jsxs)(n.li,{children:["When ",(0,t.jsx)(n.code,{children:"title"})," is present it tries to extract artists from ft. feat. vs. etc... found in the track title"]}),"\n",(0,t.jsxs)(n.li,{children:["Importantly, if ",(0,t.jsx)(n.code,{children:"artists"})," is ",(0,t.jsx)(n.em,{children:"not"})," present in ",(0,t.jsx)(n.code,{children:"artistsParseFrom"})," then ",(0,t.jsx)(n.em,{children:"no artists"})," are used at all (only those from ",(0,t.jsx)(n.code,{children:"title"}),", if present)"]}),"\n"]}),"\n"]}),"\n",(0,t.jsxs)(n.li,{children:[(0,t.jsx)(n.code,{children:"artistsParseMonolithicOnly"})," - boolean value, defaults to ",(0,t.jsx)(n.code,{children:"true"}),". When ",(0,t.jsx)(n.code,{children:"true"})," native tranformer will only attempt to extract artists if the scrobble data has ",(0,t.jsx)(n.em,{children:"only one string for artist"})," (pre-transform)","\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsxs)(n.li,{children:["This means that, for Sources like Spotify/Jellyfin/etc. that provide proper lists of artists in their data ",(0,t.jsx)(n.em,{children:"and the list has more than one string"}),", it will not try to extract artists from their strings"]}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,t.jsxs)(s,{children:[(0,t.jsxs)("summary",{children:["Example of the behavior for ",(0,t.jsx)(n.code,{children:"artistsParseFrom"})]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{children:"The Foos, The Bars - My Cool Track (ft. Frank)\n"})}),(0,t.jsx)(n.p,{children:"Config => extracted artists"}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{children:'"artistsParseFrom": ["artists", "title"] => The Foos, The Bars, Frank\n"artistsParseFrom": ["artists"] => The Foos, The Bars\n"artistsParseFrom": ["title"] => Frank\n"artistsParseFrom": [] =>\n'})})]}),"\n",(0,t.jsx)(n.h3,{id:"rules",children:"Rules"}),"\n",(0,t.jsxs)(n.p,{children:["Each ",(0,t.jsx)(n.a,{href:"/configuration/transforms#stage-rules",children:"Rule"})," should be either a boolean, specifying if the transformed data should be used for this field, or a ",(0,t.jsxs)(n.a,{href:"/configuration/transforms#conditional-moditication",children:[(0,t.jsx)(n.code,{children:"when"})," condition."]}),":"]}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",children:'{\n "type": "native",\n // ...\n "title": false, // will not apply any changes to Play title\n "artists": {\n "when": {/* ... */}, // will only apply changes to Play artists if "when" is satisfied\n /* ... */\n },\n "album": true // will always apply changes to Play album\n}\n'})}),"\n",(0,t.jsxs)(n.p,{children:["If a rule is not present then multi-scrobbler defaults it to ",(0,t.jsx)(n.code,{children:"true"}),"."]}),"\n",(0,t.jsx)(n.h3,{id:"default-stage",children:"Default Stage"}),"\n",(0,t.jsxs)(n.p,{children:["For your convenience, if you do not define any Native ",(0,t.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configurations"})," then multi-scrobbler automatically builds one using the defaults shown in ",(0,t.jsx)(n.a,{href:"#configuration",children:"configuration"}),"."]}),"\n",(0,t.jsxs)(n.p,{children:["This can be used by omitting the ",(0,t.jsx)(n.code,{children:"name"})," in your ",(0,t.jsx)(n.a,{href:"/configuration/transforms#modification-stage",children:"modification Stage"}),"."]}),"\n",(0,t.jsxs)(s,{children:[(0,t.jsx)("summary",{children:"Example"}),(0,t.jsxs)(n.p,{children:["In a ",(0,t.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,t.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native",\n // do not include name, the default native stage will be used\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,t.jsx)(n.h2,{id:"env-configuration",children:"ENV Configuration"}),"\n",(0,t.jsxs)(n.p,{children:["The default configuration shown above can also be applied using ",(0,t.jsx)(n.a,{href:"/configuration?configType=env#configuration-types",children:"ENV Config"})," for individual Sources/Clients."]}),"\n",(0,t.jsxs)(n.p,{children:["Use ENV ",(0,t.jsx)(n.code,{children:"*_TRANSFORMS=native"})," on each Source/Client you wish to apply this stage to. This applies the stage in the ",(0,t.jsxs)(n.a,{href:"#/configuration/transforms#lifecycle-hooks",children:[(0,t.jsx)(n.code,{children:"preTransform"})," Hook"]})," with all ",(0,t.jsx)(n.a,{href:"#rules",children:"Rules"})," enabled."]}),"\n",(0,t.jsxs)(n.p,{children:["The ",(0,t.jsx)(n.code,{children:"*"})," stands for the prefix used for each Source/Client's ENV keys. Refer to the individual Source/Client Configuration sections to find this."]}),"\n",(0,t.jsx)(n.admonition,{type:"tip",children:(0,t.jsxs)(n.p,{children:["Enhancing a scrobble with the ",(0,t.jsx)(n.code,{children:"preTransform"})," hook for a Source means that all Clients that recieve the scrobble get the enhanced version. You only need to apply the transform once, for a Source, to use it everywhere for downstream Clients."]})}),"\n",(0,t.jsxs)(s,{children:[(0,t.jsx)("summary",{children:"Example Full Docker Deploy with ENV Configuration"}),(0,t.jsxs)(n.p,{children:["Using ",(0,t.jsx)(n.a,{href:"/quickstart#create-docker-compose-file",children:"Jellyfin + Maloja"})," example from Quickstart:"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-yaml",children:'services:\n multi-scrobbler:\n image: foxxmd/multi-scrobbler\n container_name: multi-scrobbler\n environment:\n - JELLYFIN_URL=192.168.0.110:8096\n - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b\n - JELLYFIN_USER=MyUser\n - JELLYFIN_TRANSFORMS=native # applies native Stage to preTransform of Jellyfin source\n\n - MALOJA_URL=http://192.168.0.100:42010 # maloja receives enhanced scrobble from Jellyfin\n - MALOJA_API_KEY=myApiKey\n\n\n volumes:\n - "./config:/config"\n ports:\n - "9078:9078"\n restart: unless-stopped\n'})})]}),"\n",(0,t.jsx)(n.h2,{id:"examples",children:"Examples"}),"\n",(0,t.jsx)(n.h3,{id:"parse-only-artists-string-using-a-custom-delimiter",children:"Parse only artists string using a custom delimiter"}),"\n",(0,t.jsxs)(s,{children:[(0,t.jsx)("summary",{children:"Example"}),(0,t.jsxs)(n.p,{children:["Your ",(0,t.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "native",\n "name": "MyNativeTransformer",\n "defaults": {\n // default delimiters when this Stage is used in a hook\n "delimiters": [\n "\u2022"\n ],\n // default delimiters when this Stage is used in a hook\n "artistsParseFrom": ["artists"]\n }\n }\n ]\n}\n'})}),(0,t.jsxs)(n.p,{children:["In a ",(0,t.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,t.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native",\n "name": "MyNativeTransformer"\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,t.jsx)(n.h3,{id:"dont-parse-specific-artists",children:"Don't parse specific artists"}),"\n",(0,t.jsxs)(s,{children:[(0,t.jsx)("summary",{children:"Example"}),(0,t.jsxs)(n.p,{children:["Your ",(0,t.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "native",\n "name": "MyNativeTransformer",\n "defaults": {\n "artistsIgnore": [\n "Crosby, Stills, Nash & Young",\n "Polo & Pan"\n ]\n }\n }\n ]\n}\n'})}),(0,t.jsxs)(n.p,{children:["In a ",(0,t.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,t.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native",\n "name": "MyNativeTransformer"\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,t.jsx)(n.h3,{id:"extract-artists-from-title-but-do-not-modify-title",children:"Extract Artists from Title but do not modify Title"}),"\n",(0,t.jsxs)(n.p,{children:["In the scenario where you want to extract Artists from Track titles with joiners like ",(0,t.jsx)(n.code,{children:"My Cool Track (feat. Foobar)"})," but want to keep the title as-is:"]}),"\n",(0,t.jsxs)(s,{children:[(0,t.jsx)("summary",{children:"Example"}),(0,t.jsxs)(n.p,{children:["No additional ",(0,t.jsx)(n.a,{href:"#configuration",children:"stage configuration"})," is required so we can use the ",(0,t.jsx)(n.a,{href:"#default-stage",children:"default Stage"}),"."]}),(0,t.jsxs)(n.p,{children:["In a ",(0,t.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,t.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "native",\n "title": false // do not modify title\n }\n ]\n }\n }\n }\n]\n'})})]})]})}function h(e={}){let{wrapper:n}={...(0,r.a)(),...e.components};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}}}]);
+1
assets/js/e6ac3f64.2a204e91.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["6922"],{90481:function(e,n,i){i.r(n),i.d(n,{frontMatter:()=>l,default:()=>f,toc:()=>h,metadata:()=>s,assets:()=>d,contentTitle:()=>c});var s=JSON.parse('{"id":"configuration/transforms/musicbrainz","title":"Musicbrainz Stage","description":"The Musicbrainz Stage matches your Play data with the MusicBrainz database. If the match score is high enough then Multi-Scrobbler uses the match to correct and fill-in missing information in your Play data.","source":"@site/docs/configuration/transforms/musicbrainz.mdx","sourceDirName":"configuration/transforms","slug":"/configuration/transforms/musicbrainz","permalink":"/multi-scrobbler/configuration/transforms/musicbrainz","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/transforms/musicbrainz.mdx","tags":[],"version":"current","frontMatter":{"title":"Musicbrainz Stage","toc_min_heading_level":2,"toc_max_heading_level":5},"sidebar":"tutorialSidebar","previous":{"title":"Enhancing Scrobbles","permalink":"/multi-scrobbler/configuration/transforms/"},"next":{"title":"Native Stage","permalink":"/multi-scrobbler/configuration/transforms/native"}}'),r=i(85893),t=i(50065),a=i(703),o=i(73752);let l={title:"Musicbrainz Stage",toc_min_heading_level:2,toc_max_heading_level:5},c=void 0,d={},h=[{value:"Configuration",id:"configuration",level:2},{value:"API Setup",id:"api-setup",level:3},{value:"Stage Configuration",id:"stage-configuration",level:3},{value:"Rules",id:"rules",level:3},{value:"ENV Configuration",id:"env-configuration",level:2},{value:"Matching with Musicbrainz",id:"matching-with-musicbrainz",level:2},{value:"Searching",id:"searching",level:3},{value:"Album Only",id:"album-only",level:4},{value:"Artist Extraction",id:"artist-extraction",level:4},{value:"Free Text",id:"free-text",level:4},{value:"Refining",id:"refining",level:3},{value:"Score",id:"score",level:3},{value:"Filtering",id:"filtering",level:3},{value:"Release Attributes",id:"release-attributes",level:5},{value:"Empty Releases",id:"empty-releases",level:4},{value:"Sorting",id:"sorting",level:3},{value:"Best Practices",id:"best-practices",level:2},{value:"Sensible Default",id:"sensible-default",level:3},{value:"Filter Considerations",id:"filter-considerations",level:3},{value:"Using Partial Match",id:"using-partial-match",level:3},{value:"Logging",id:"logging",level:2},{value:"Examples",id:"examples",level:2},{value:"Minimal",id:"minimal",level:3},{value:"Sensible Default",id:"sensible-default-1",level:3},{value:"Add Metadata Only (No Scrobble Modification)",id:"add-metadata-only-no-scrobble-modification",level:3}];function u(e){let n={a:"a",admonition:"admonition",code:"code",em:"em",h2:"h2",h3:"h3",h4:"h4",h5:"h5",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,t.a)(),...e.components},{Details:i}=n;return i||function(e,n){throw Error("Expected "+(n?"component":"object")+" `"+e+"` to be defined: you likely forgot to import, pass, or provide it.")}("Details",!0),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(n.p,{children:["The ",(0,r.jsx)(n.strong,{children:"Musicbrainz"})," ",(0,r.jsx)(n.a,{href:"/configuration/transforms#stage",children:"Stage"})," matches your Play data with the ",(0,r.jsx)(n.a,{href:"https://musicbrainz.org/",children:"MusicBrainz"})," database. If the match score is high enough then Multi-Scrobbler uses the match to correct and fill-in missing information in your Play data."]}),"\n",(0,r.jsx)(n.p,{children:(0,r.jsx)(n.strong,{children:"This Stage is useful for standardizing your Scrobble's Play data, regardless of the Source it is coming from."})}),"\n",(0,r.jsxs)(n.p,{children:["Even if you have have strong opinions about the way your existing music is already tagged/organized you should consider adding the Musicbrainz Stage to your Sources, if only to benefit from adding ",(0,r.jsx)(n.a,{href:"#using-partial-match",children:"MBIDs to scrobbled metadata."})]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Why Should I Prefer MusicBrainz?"}),(0,r.jsx)("h3",{children:"More Than Mainstream Data"}),(0,r.jsxs)(n.p,{children:["The ",(0,r.jsx)(n.a,{href:"https://musicbrainz.org/statistics",children:"MusicBrainz database contains"})]}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"37 million+ tracks"}),"\n",(0,r.jsx)(n.li,{children:"5 million+ albums"}),"\n",(0,r.jsx)(n.li,{children:"2.7 million+ artists"}),"\n"]}),(0,r.jsx)(n.p,{children:"in over 200 languages, contributed by 10,000+ editors each year with many more users voting on edits."}),(0,r.jsx)(n.p,{children:"The database covers a much wider range of music than most commercial services since it isn't restricted by licensing or incentivized to prioritize mainstream music due to business interests. You are much more likely to find data for obscure, indie, and international artists."}),(0,r.jsx)("h3",{children:"As The Artist Intended"}),(0,r.jsx)(n.p,{children:'While some large services (Spotify) may be more consistent in data structure, the MusicBrainz equivalent data is likely to be more true to the way the Artist originally intended since individuals can devote effort to individual artists. A fan of an artist is much more likely to "get it right" for their favorite band than a corporate business trying to do the least amount of work for the largest result.'})]}),"\n",(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.p,{children:["If you are using ",(0,r.jsx)(n.a,{href:"/configuration?config-type=env#configuration-types",children:"ENV Config"})," for multi-scrobbler and just want a quick and easy setup, skip to ",(0,r.jsx)(n.a,{href:"#env-configuration",children:(0,r.jsx)(n.strong,{children:"ENV Configuration"})}),"."]})}),"\n",(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.p,{children:["Set up ",(0,r.jsx)(n.a,{href:"/configuration?cachedThings=metadata#caching",children:"Valkey Caching"})," to cache Musicbrainz API calls for faster processing."]})}),"\n",(0,r.jsx)(n.h2,{id:"configuration",children:"Configuration"}),"\n",(0,r.jsx)(n.h3,{id:"api-setup",children:"API Setup"}),"\n",(0,r.jsxs)(n.p,{children:["To avoid rate limiting, MusicBrainz requires API users to identify themself using a ",(0,r.jsx)(n.a,{href:"https://wiki.musicbrainz.org/MusicBrainz_API/Rate_Limiting#How_can_I_be_a_good_citizen_and_be_smart_about_using_the_Web_Service?",children:"User-Agent that contains an email or URL."})," You must set this in the ",(0,r.jsx)(n.code,{children:"data"})," for your ",(0,r.jsx)(n.a,{href:"http://localhost:3000/docs/configuration/transforms/#configuring-stages",children:"stage configuration"})," in your ",(0,r.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "data": {\n "apis": [\n {\n "contact": "contact@mydomain.com"\n }\n ]\n },\n }\n ]\n}\n'})}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Additional Musicbrainz Servers"}),(0,r.jsx)(n.p,{children:"Other, or additional, Musicbrainz Servers/Mirrors can be added to the API configuration. If more than one server is defined then multi-scrobbler will round-robin load balance API calls."}),(0,r.jsxs)(n.p,{children:["Use ",(0,r.jsx)(n.code,{children:"url"})," to define the base URL of the Musicbrainz server to use. If ",(0,r.jsx)(n.code,{children:"url"})," is not defined multi-scrobbler assumes it is the primary Musicbrainz server, ",(0,r.jsx)(n.code,{children:"https://musicbrainz.org"}),"."]}),(0,r.jsx)(n.p,{children:"Example of multiple servers:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "data": {\n "apis": [\n {\n "contact": "contact@mydomain.com"\n // uses default Musicbrainz server https://musicbrainz.org\n },\n // additional server\n {\n "contact": "contact@mydomain.com",\n "url": "https://my.mb.mirror.domain.com"\n }\n ]\n },\n }\n ]\n}\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"stage-configuration",children:"Stage Configuration"}),"\n",(0,r.jsxs)(n.p,{children:["All of the properties found in ",(0,r.jsx)(n.a,{href:"#matching-with-musicbrainz",children:(0,r.jsx)(n.strong,{children:"Matching with Musicbrainz"})})," section are configured in ",(0,r.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configuration"})," as ",(0,r.jsx)(n.code,{children:"defaults"}),"."]}),"\n",(0,r.jsx)(n.p,{children:"Example:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "data": {\n "apis": [\n {\n "contact": "contact@mydomain.com"\n }\n ],\n "defaults": {\n "releaseStatusPriority": ["official"],\n "fallbackArtistSearch": "native",\n "releaseAllowEmpty": true\n }\n },\n }\n ]\n}\n'})}),"\n",(0,r.jsx)(n.h3,{id:"rules",children:"Rules"}),"\n",(0,r.jsxs)(n.p,{children:["Each ",(0,r.jsx)(n.a,{href:"/configuration/transforms#stage-rules",children:"Rule"})," should be either a boolean, specifying if the transformed data should be used for this field, or a ",(0,r.jsxs)(n.a,{href:"/configuration/transforms#conditional-moditication",children:[(0,r.jsx)(n.code,{children:"when"})," condition"]}),":"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n "type": "musicbrainz",\n "name": "MyMB"\n // ...\n "title": false, // will not apply any changes to Play title\n "artists": {\n "when": {/* ... */}, // will only apply changes to Play artists if "when" is satisfied\n /* ... */\n },\n "album": true // will always apply changes to Play album\n "meta": true // adds MusicBrainz MBIDs to scrobble data\n}\n'})}),"\n",(0,r.jsx)(n.h2,{id:"env-configuration",children:"ENV Configuration"}),"\n",(0,r.jsxs)(n.p,{children:["The general configuration shown above can also be configured from a selection of ",(0,r.jsx)(n.em,{children:"presets"})," using ",(0,r.jsx)(n.a,{href:"/configuration?configType=env#configuration-types",children:"ENV Config"})," for individual Sources/Clients."]}),"\n",(0,r.jsxs)(n.p,{children:["You must ",(0,r.jsx)(n.strong,{children:"always"})," include the ",(0,r.jsx)(n.code,{children:"MB_CONTACT"})," ENV to ",(0,r.jsx)(n.a,{href:"#api-setup",children:"identify your application"}),":"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-ini",children:"MB_CONTACT=contact@mydomain.com\n"})}),"\n",(0,r.jsxs)(n.p,{children:["To configure ",(0,r.jsx)(n.a,{href:"#stage-configuration",children:"stage defaults"})," use ",(0,r.jsx)(n.code,{children:"MB_PRESETS"})," with a comma-delimited list of presets you wish to apply. More than one preset can be applied, in which case they combine. You must choose at least one of the presets below:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"default"})," - Applies no defaults. This is the same as using no options from ",(0,r.jsx)(n.a,{href:"#matching-with-musicbrainz",children:"Matching With Musicbrainz"})]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"sensible"})," - Applies the ",(0,r.jsx)(n.a,{href:"#sensible-default",children:"Sensible Default"})," configuration for sorting releases"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"native"})," - Applies ",(0,r.jsx)(n.code,{children:"fallbackArtistSearch: native"})," for ",(0,r.jsx)(n.a,{href:"#artist-extraction",children:"Artist Extraction"})," if the first search fails to find matches"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"aggressive"})," - Applies ",(0,r.jsx)(n.a,{href:"#free-text",children:"Free Text Search"})," ",(0,r.jsx)(n.code,{children:"fallbackFreeTextSearch: true"})," if all other searches fail"]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Finally, use ENV ",(0,r.jsx)(n.code,{children:"*_TRANSFORMS=musicbrainz"})," on each Source/Client you wish to apply this stage to. This applies the stage in the ",(0,r.jsxs)(n.a,{href:"#/configuration/transforms#lifecycle-hooks",children:[(0,r.jsx)(n.code,{children:"preTransform"})," Hook"]})," with all ",(0,r.jsx)(n.a,{href:"#rules",children:"Rules"})," enabled."]}),"\n",(0,r.jsxs)(n.p,{children:["The ",(0,r.jsx)(n.code,{children:"*"})," stands for the prefix used for each Source/Client's ENV keys. Refer to the individual Source/Client Configuration sections to find this."]}),"\n",(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsxs)(n.p,{children:["Enhancing a scrobble with the ",(0,r.jsx)(n.code,{children:"preTransform"})," hook for a Source means that all Clients that recieve the scrobble get the enhanced version. You only need to apply the transform once, for a Source, to use it everywhere for downstream Clients."]})}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example Full Docker Deploy with ENV Configuration"}),(0,r.jsxs)(n.p,{children:["Using ",(0,r.jsx)(n.a,{href:"/quickstart#create-docker-compose-file",children:"Jellyfin + Maloja"})," example from Quickstart:"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-yaml",children:'services:\n multi-scrobbler:\n image: foxxmd/multi-scrobbler\n container_name: multi-scrobbler\n environment:\n - MB_CONTACT=contact@mydomain.com\n - MB_PRESETS=sensible,native # creates sensible defaults with native fallback searching\n\n - JELLYFIN_URL=192.168.0.110:8096\n - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b\n - JELLYFIN_USER=MyUser\n - JELLYFIN_TRANSFORMS=musicbrainz # applies musicbrainz Stage to preTransform of Jellyfin source\n\n - MALOJA_URL=http://192.168.0.100:42010 # maloja receives enhanced scrobble from Jellyfin\n - MALOJA_API_KEY=myApiKey\n\n\n volumes:\n - "./config:/config"\n ports:\n - "9078:9078"\n restart: unless-stopped\n'})})]}),"\n",(0,r.jsx)(n.h2,{id:"matching-with-musicbrainz",children:"Matching with Musicbrainz"}),"\n",(0,r.jsxs)(n.admonition,{type:"note",children:[(0,r.jsx)(n.p,{children:(0,r.jsx)(n.strong,{children:"All properties found in this section are optional."})}),(0,r.jsxs)(n.p,{children:["If you just want a sensible default for configuraion refer to the ",(0,r.jsx)(n.a,{href:"#best-practices",children:"Best Practices"})," section."]})]}),"\n",(0,r.jsx)(n.p,{children:"Matching your Scrobble's Play data with a result from Musicbrainz is comprised of two steps:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.a,{href:"#searching",children:(0,r.jsx)(n.strong,{children:"Searching"})})," Musicbrainz using parts of your Scrobble as queries"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.a,{href:"#refining",children:(0,r.jsx)(n.strong,{children:"Refining"})})," matched results to select the desired/allowed match"]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"Both steps have separate configuration."}),"\n",(0,r.jsx)(n.h3,{id:"searching",children:"Searching"}),"\n",(0,r.jsxs)(n.p,{children:["The first step is making ",(0,r.jsx)(n.a,{href:"https://musicbrainz.org/doc/MusicBrainz_API/Search",children:"search queries to the Musicbrainz database"})," to try to get potential candidates. Multi-scrobbler uses the ",(0,r.jsx)(n.strong,{children:"title, artist(s), and album"})," from your Scrobble data to query for matches."]}),"\n",(0,r.jsxs)(n.p,{children:["Musicbrainz agressively normalizes these fields in its database which means that if your Scrobble data contains major innaccuracies or phrases fields in a non-normal way, it's possible Musicbrainz won't find any matches. This is a more common occurrence when trying to match Scrobble data from Sources that don't support multiple artist data, like ",(0,r.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," and ",(0,r.jsx)(n.a,{href:"/configuration/sources/lastfm",children:"Last.fm"}),"."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Examples of Bad Data"}),(0,r.jsx)(n.p,{children:"Last.fm Scrobble returns an Artist in the title and combines two artists into one string:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility (feat. Wheatus)",\n "artists": ["Bowling For Soup & Punk Rock Factory"]\n}\n'})}),(0,r.jsxs)(n.p,{children:["The corresponding ",(0,r.jsx)(n.a,{href:"https://musicbrainz.org/release/85bf284b-8b39-414e-8ad9-61f593072588",children:"Musicbrainz Recording"})," has all artists separated and no artist in the title:"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility",\n "artists": ["Bowling For Soup", "Punk Rock Factory", "Wheatus"]\n}\n'})})]}),"\n",(0,r.jsx)(n.p,{children:(0,r.jsx)(n.strong,{children:"If a normal search using all the fields mentioned above does not return any matches Multi-scrobbler can try additional searches with modified queries:"})}),"\n",(0,r.jsx)(n.h4,{id:"album-only",children:"Album Only"}),"\n",(0,r.jsxs)(n.p,{children:["If your Scrobble data contains a title, artist(s), and an album (all three fields) then Multi-scrobbler will ",(0,r.jsx)(n.strong,{children:"automatically"})," retry the search using only title and album."]}),"\n",(0,r.jsx)(n.h4,{id:"artist-extraction",children:"Artist Extraction"}),"\n",(0,r.jsx)(n.p,{children:"If..."}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.a,{href:"#album-only",children:"Album Only"})," returns no results or did not run due to missing an album"]}),"\n",(0,r.jsxs)(n.li,{children:["Your scrobble data contains only ",(0,r.jsx)(n.strong,{children:"one"})," artist string"]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsx)(n.code,{children:"fallbackArtistSearch"})," is set in ",(0,r.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configuration"})]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Then Multi-scrobbler will attempt to extract multiple artists from your artist and track string. ",(0,r.jsxs)(n.strong,{children:["This is not automatic. You must set ",(0,r.jsx)(n.code,{children:"fallbackArtistSearch"})," to enable this additional search."]})]}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"fallbackArtistSearch"})," can be set to ",(0,r.jsx)(n.strong,{children:"Native"})," or ",(0,r.jsx)(n.strong,{children:"Naive"})," mode:"]}),"\n",(0,r.jsxs)(a.default,{groupId:"fallbackArtist",queryString:!0,children:[(0,r.jsxs)(o.default,{value:"native",label:"Native (Recommended)",children:[(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Native"})," (",(0,r.jsx)(n.code,{children:"native"}),") mode uses an aggressive configuration of the ",(0,r.jsx)(n.a,{href:"/configuration/transforms/native",children:"Native Stage"}),' to extract artists using common delimiters and common "joined" artist patterns from the artist and title string of your Scrobble data.']}),(0,r.jsx)(n.admonition,{type:"tip",children:(0,r.jsx)(n.p,{children:"If you already have a Native Stage configured you should use that instead, running it before the Musicbrainz stage."})}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Native Mode Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility (feat. Wheatus)",\n "artists": ["Bowling For Soup & Punk Rock Factory, My Cool Band"]\n}\n'})}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Extracts ",(0,r.jsx)(n.code,{children:"Bowling For Soup"})," ",(0,r.jsx)(n.code,{children:"Punk Rock Factory"})," ",(0,r.jsx)(n.code,{children:"My Cool Band"})," from artist string"]}),"\n",(0,r.jsxs)(n.li,{children:["Extracts ",(0,r.jsx)(n.code,{children:"Wheatus"})," from title string","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Removes ",(0,r.jsx)(n.code,{children:"(feat. Wheatus)"})," from title string because it found an artist there"]}),"\n"]}),"\n"]}),"\n"]}),(0,r.jsx)(n.p,{children:"Resulting data used for Musicbrainz search:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility",\n "artists": ["Bowling For Soup", "Punk Rock Factory", "My Cool Band", "Wheatus"]\n}\n'})})]}),(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configuration"})," example:"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'// ...\n"defaults": {\n // ...\n "fallbackArtistSearch": "native"\n }\n'})})]}),(0,r.jsxs)(o.default,{value:"naive",label:"Naive",children:[(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Naive"})," (",(0,r.jsx)(n.code,{children:"naive"}),") mode looks for the first found common delimiter in the artist string. If it finds one then it uses the preceding value as the only artist in the Musicbrainz search. It does not try to extract additional artists from the artist string, or extract anything from the title string."]}),(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Naive Mode Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility (feat. Wheatus)",\n "artists": ["Bowling For Soup, Punk Rock Factory & Wheatus"]\n}\n'})}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Finds ",(0,r.jsx)(n.code,{children:"&"}),' as first common delimiter, extracts "Bowling For Soup"']}),"\n"]}),(0,r.jsx)(n.p,{children:"Resulting data used for Musicbrainz search:"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json",children:'{\n "title": "Endless Possibility (feat. Wheatus)",\n "artists": ["Bowling For Soup"]\n}\n'})})]}),(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configuration"})," example:"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'// ...\n"defaults": {\n // ...\n "fallbackArtistSearch": "naive"\n }\n'})})]})]}),"\n",(0,r.jsx)(n.h4,{id:"free-text",children:"Free Text"}),"\n",(0,r.jsxs)(n.p,{children:["If both ",(0,r.jsx)(n.a,{href:"#album-only",children:"Album Only"})," and ",(0,r.jsx)(n.a,{href:"#artist-extraction",children:"Artist Extraction"})," searches fail to return results you can additionally enable ",(0,r.jsx)(n.strong,{children:"Free Text"})," search. This will search Musicbrainz for ",(0,r.jsx)(n.strong,{children:"all"})," text of your Scrobble data artist/title/album, without constraint. ",(0,r.jsxs)(n.strong,{children:["This is not automatic. You must set ",(0,r.jsx)(n.code,{children:"fallbackFreeTextSeach: true"})," to enable this additional search."]})]}),"\n",(0,r.jsxs)(n.admonition,{type:"warning",children:[(0,r.jsxs)(n.p,{children:["Free text search is ",(0,r.jsx)(n.strong,{children:"unconstrained"})," which means that Musicbrainz will match text in ",(0,r.jsx)(n.strong,{children:"any"})," part of a Recording (artist, release, or recording field), regardless of where it is found. This may lead to results that are unexpected and undesired."]}),(0,r.jsx)(n.p,{children:"If you know your Source's Play data is well organized you should not enable this. Free Text search should only be used if:"}),(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"your music is not well organized or"}),"\n",(0,r.jsxs)(n.li,{children:["there may be many alternative titles/artists for the music you listen to (such as with ",(0,r.jsx)(n.a,{href:"https://wiki.musicbrainz.org/Release#Status",children:"psuedo-releases"}),")"]}),"\n",(0,r.jsxs)(n.li,{children:["you can tolerate that matches may not be accurate for releases.","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Generally, if you keep ",(0,r.jsx)(n.a,{href:"#score",children:"score"})," high then matched releases should ",(0,r.jsx)(n.em,{children:"at least"}),' be the right artist or what you would expect within a reason, as a match. The release may not be the one you actually listened to but it would be "close enough".']}),"\n"]}),"\n"]}),"\n"]})]}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.a,{href:"/configuration/transforms#configuring-stages",children:"Stage Configuration"})," example:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'// ...\n"defaults": {\n // ...\n "fallbackFreeTextSearch": true\n }\n'})}),"\n",(0,r.jsx)(n.h3,{id:"refining",children:"Refining"}),"\n",(0,r.jsx)(n.h3,{id:"score",children:"Score"}),"\n",(0,r.jsxs)(n.p,{children:["Each match returned by MusicBrainz contains a numeric score representing how close it was to the search parameters. Set ",(0,r.jsx)(n.code,{children:"score"})," in configuration to set a minimum score that must be met by matches. Default is ",(0,r.jsx)(n.code,{children:"90"}),"."]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n // ...\n "score": 90 // matches must score 90 or higher to be considered\n}\n'})}),"\n",(0,r.jsx)(n.h3,{id:"filtering",children:"Filtering"}),"\n",(0,r.jsxs)(n.p,{children:["There are several attributes associated with the ",(0,r.jsx)(n.a,{href:"https://wiki.musicbrainz.org/Release",children:"Release"})," a ",(0,r.jsx)(n.a,{href:"https://wiki.musicbrainz.org/Recording",children:"Recording"})," (individual Track/song) belongs to that you may be interested in controlling. MS can use these attributes to filter what the final Recording selected to match against your Play data is."]}),"\n",(0,r.jsx)(n.p,{children:"An easy way to think about this:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"Do you prefer Albums, Singles, or EPs?"}),"\n",(0,r.jsx)(n.li,{children:"Do you always want to use an official album release, or are bootleg or cancelled albums okay to use?"}),"\n",(0,r.jsx)(n.li,{children:"Should a track that belongs to a Compilation album be allowed to match?"}),"\n",(0,r.jsx)(n.li,{children:"What country do you prefer an album release to be from?"}),"\n"]}),"\n",(0,r.jsx)(n.h5,{id:"release-attributes",children:"Release Attributes"}),"\n",(0,r.jsxs)(n.p,{children:["These attributes (",(0,r.jsx)(n.code,{children:"attribute_name"})," in config) are:"]}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:[(0,r.jsxs)(n.a,{href:"https://wiki.musicbrainz.org/Release#Status",children:["Release ",(0,r.jsx)(n.strong,{children:"Status"})]})," (",(0,r.jsx)(n.code,{children:"releaseStatus"}),") - Is this release/album/ep official, promotional, bootleg, etc..."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsxs)(n.a,{href:"https://wiki.musicbrainz.org/Release_Group/Type#Primary_types",children:["Release Group ",(0,r.jsx)(n.strong,{children:"Primary Type"})]})," (",(0,r.jsx)(n.code,{children:"releaseGroupPrimaryType"}),") - Is this release an Album, Single, EP, etc..."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsxs)(n.a,{href:"https://wiki.musicbrainz.org/Release_Group/Type#Secondary_types",children:["Release Group ",(0,r.jsx)(n.strong,{children:"Secondary Type"})]})," (",(0,r.jsx)(n.code,{children:"releaseGroupSecondaryType"}),") - Is this release a compilation, soundtrack, remix, etc..."]}),"\n",(0,r.jsxs)(n.li,{children:[(0,r.jsxs)(n.a,{href:"https://beta.musicbrainz.org/doc/Release/Country",children:["Release ",(0,r.jsx)(n.strong,{children:"Country"})]})," (",(0,r.jsx)(n.code,{children:"releaseCountry"}),") - What ISO2 country was this released in? US, GB, MX, etc...","\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["MusicBrainz uses the special code ",(0,r.jsx)(n.code,{children:"XW"}),' to represent a "Worldwide" release AKA release not made specifically for a country']}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Each of the above attributes can be used to ",(0,r.jsx)(n.strong,{children:"filter"})," matches using ",(0,r.jsx)(n.code,{children:"allow"})," (explicitly include) or ",(0,r.jsx)(n.code,{children:"deny"})," (exclude) terms. The correct property name for each is like so:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{children:'[attribute_name]Allow = [...]\n[attribute_name]Deny\n\nEX to explicitly allow only release status "official"\n\n"releaseStatusAllow": ["official"]\n\nEX to exclude compilations\n\n"releaseGroupSecondaryTypeDeny": ["compilation"]\n'})}),"\n",(0,r.jsx)(n.h4,{id:"empty-releases",children:"Empty Releases"}),"\n",(0,r.jsx)(n.p,{children:"Sometimes a Recording may not have any associated Releases. This may be because there is not enough information about the Recording yet, or it was never included on an actual Release."}),"\n",(0,r.jsxs)(n.p,{children:["You may want to filter the majority of your matches by releases but allow matching a Recording that has no releases to begin with. To allow this set ",(0,r.jsx)(n.code,{children:"releaseAllowEmpty"})," to ",(0,r.jsx)(n.code,{children:"true"})," in configuration:"]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'// ...\n"defaults": {\n // ...\n "releaseAllowEmpty": true // don\'t remove a match during filtering just because it has no releases\n}\n'})}),"\n",(0,r.jsx)(n.h3,{id:"sorting",children:"Sorting"}),"\n",(0,r.jsxs)(n.p,{children:["Each ",(0,r.jsx)(n.a,{href:"#release-attribute",children:"Release Attribute"})," has one additional property that can be used to ",(0,r.jsx)(n.strong,{children:"rank"})," releases based on the order of the values you give it. This is the ",(0,r.jsx)(n.code,{children:"priority"})," property."]}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.em,{children:"After"})," matches have been ",(0,r.jsx)(n.a,{href:"#filtering",children:"filtered"}),", the remaining matches will have their releases sorted. Release with an attribute that does not match are ",(0,r.jsx)(n.strong,{children:"not"})," removed, but they are sorted lower than releases that do match."]}),"\n",(0,r.jsxs)(n.p,{children:["Sorting can be a good alternative to filtering: with filters there is a possibility your filters may eliminate all matches; if you want to ensure that ",(0,r.jsx)(n.strong,{children:"some"})," match will be used then sorting can ensure that the ",(0,r.jsx)(n.strong,{children:"best choice"})," out of those given will always be used, without accidentally ending up with ",(0,r.jsx)(n.strong,{children:"no choice"}),"."]}),"\n",(0,r.jsx)(n.p,{children:"Sorting can be used instead of filters, or in conjunction with filters, it's your choice."}),"\n",(0,r.jsx)(n.p,{children:"In configuration:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{children:'[attribute_name]Priority = [...]\n\nEX to prefer "official" releases over everything else\n\n"releaseStatusPriority": ["official"]\n\nEX to prefer albums, then singles, over everything else\n\n"releaseGroupPrimaryTypePriority": ["album", "single"]\n'})}),"\n",(0,r.jsxs)(n.p,{children:["If a rule is not present then multi-scrobbler defaults it to ",(0,r.jsx)(n.code,{children:"true"}),"."]}),"\n",(0,r.jsx)(n.h2,{id:"best-practices",children:"Best Practices"}),"\n",(0,r.jsx)(n.h3,{id:"sensible-default",children:"Sensible Default"}),"\n",(0,r.jsxs)(n.p,{children:["Generally, the Musicbrainz Stage can be used without any of the ",(0,r.jsx)(n.a,{href:"#configuration",children:"optional configuration"})," and you should still see good results from matches. The top ",(0,r.jsx)(n.a,{href:"#score",children:"scored"})," match is, anecdotally, good enough for correcting and filling in surface-level play data like Title and Artist names."]}),"\n",(0,r.jsx)(n.p,{children:"For a more opinionated match that will mirror what you would expect from data from large music services:"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n // use official release over anything else\n "releaseStatusPriority": ["official"],\n // prefer album, then single, then ep\n "releaseGroupPrimaryTypePriority": ["album", "single", "ep"],\n // prefer worldwide release\n "releaseCountryPriority": ["XW"]\n}\n'})}),"\n",(0,r.jsxs)(n.p,{children:["Consider adding ",(0,r.jsx)(n.a,{href:"./?fallbackArtist=native#artist-extraction",children:"Artist Extraction"})," in ",(0,r.jsx)(n.strong,{children:"Native Mode"})," if any of your Sources do not support multiple artists or your music collection is not tagged well."]}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",children:'{\n // add the line below to the sensible defaults above\n // (don\'t forget commas)\n "fallbackArtistSearch": "native"\n}\n'})}),"\n",(0,r.jsx)(n.h3,{id:"filter-considerations",children:"Filter Considerations"}),"\n",(0,r.jsx)(n.p,{children:"When using your own filters consider:"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Prefer ",(0,r.jsx)(n.code,{children:"deny"})," over ",(0,r.jsx)(n.code,{children:"allow"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Releases come in all kinds of formats. Since ",(0,r.jsx)(n.code,{children:"allow"})," is explicit you may filter out your desired match without realizing it (correct data except for release type). Or the Musicbrainz data for a higher scored match may be appropriate but you did not include it, exhaustively."]}),"\n"]}),"\n"]}),"\n",(0,r.jsxs)(n.li,{children:["Prefer ",(0,r.jsx)(n.a,{href:"#sorting",children:"Sorting"})," over ",(0,r.jsx)(n.a,{href:"#filtering",children:"Filtering"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsxs)(n.li,{children:["Sorting does not eliminate any matches. It is, generally, better to get ",(0,r.jsx)(n.strong,{children:"some"})," match than it is to have your Play data completely uncorrected because filtering eliminated all matches"]}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"using-partial-match",children:"Using Partial Match"}),"\n",(0,r.jsxs)(n.p,{children:["Use ",(0,r.jsx)(n.a,{href:"#rules",children:"Rules"})," to apply MusicBrainz match data selectively."]}),"\n",(0,r.jsxs)(n.p,{children:["If you know that your music collection is well organized and you do not want to change the artists/title/album etc... sent to a ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:"Client"}),", you can still benefit from matches by only applying MBIDs using ",(0,r.jsx)(n.code,{children:"meta"})," so that any Client that supports Musicbrainz data (",(0,r.jsx)(n.a,{href:"/configuration/clients/koito",children:"Koito"}),", ",(0,r.jsx)(n.a,{href:"/configuration/clients/tealfm",children:"Tealfm"}),", ",(0,r.jsx)(n.a,{href:"/configuration/clients/listenbrainz",children:"Listenbrainz"}),", ",(0,r.jsx)(n.a,{href:"/configuration/clients/rocksky",children:"Rocksky"}),") can still get that data."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "title": false,\n "artists": false,\n "album": false,\n "albumArtists": false,\n "meta": true\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,r.jsx)(n.h2,{id:"logging",children:"Logging"}),"\n",(0,r.jsx)(n.p,{children:"If"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:"Musicbrainz is not returning matches"}),"\n",(0,r.jsx)(n.li,{children:"Multi-scrobbler is using the wrong match"}),"\n",(0,r.jsx)(n.li,{children:"or the resulting enhanced Scrobble is not what you expected"}),"\n"]}),"\n",(0,r.jsxs)(n.p,{children:["Enable logging by turning on ",(0,r.jsx)(n.a,{href:"/configuration#debug-mode",children:(0,r.jsx)(n.strong,{children:"Debug Mode"})})," to help diagnose any issues with the Musicbrainz API and Scrobble enhancement. ",(0,r.jsx)(n.strong,{children:"Before creating an issue"})," please enable logging and include any logs with your issue as this is needed to debug."]}),"\n",(0,r.jsxs)(n.p,{children:["If you have multiple Modification Stages and need to see the diff for your Play between each Stage, enable ",(0,r.jsx)(n.code,{children:'"log": "all"'})," in the individual ",(0,r.jsx)(n.a,{href:"http://localhost:3000/docs/configuration/transforms/musicbrainz/?fallbackArtist=native#artist-extraction",children:"Modification Stage"}),"."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsxs)(n.p,{children:["In a ",(0,r.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,r.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n // highlight-start\n "log": "all",\n // highlight-end\n "preCompare": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,r.jsx)(n.h2,{id:"examples",children:"Examples"}),"\n",(0,r.jsx)(n.h3,{id:"minimal",children:"Minimal"}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsxs)(n.p,{children:["Your ",(0,r.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "data": {\n "apis": [\n {\n "contact": "contact@mydomain.com"\n }\n ]\n },\n }\n ]\n}\n'})}),(0,r.jsxs)(n.p,{children:["In a ",(0,r.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,r.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "musicbrainz",\n "name": "MyMB"\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"sensible-default-1",children:"Sensible Default"}),"\n",(0,r.jsxs)(n.p,{children:["Using the config shown in ",(0,r.jsx)(n.a,{href:"#sensible-default",children:"Sensible Default"})," with File/AIO config, instead of ",(0,r.jsx)(n.a,{href:"#env-configuration",children:"ENV Config"}),"."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsxs)(n.p,{children:["Your ",(0,r.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "data": {\n "apis": [\n {\n "contact": "contact@mydomain.com"\n }\n ]\n },\n "defaults": {\n "releaseStatusPriority": ["official"],\n "releaseGroupPrimaryTypePriority": ["album", "single", "ep"],\n "releaseCountryPriority": ["XW"],\n "fallbackArtistSearch": "native"\n }\n }\n ]\n}\n'})}),(0,r.jsxs)(n.p,{children:["In a ",(0,r.jsx)(n.a,{href:"/configuration/sources/subsonic",children:"Subsonic"})," ",(0,r.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MySubsonic",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "musicbrainz",\n "name": "MyMB"\n }\n ]\n }\n }\n }\n]\n'})})]}),"\n",(0,r.jsx)(n.h3,{id:"add-metadata-only-no-scrobble-modification",children:"Add Metadata Only (No Scrobble Modification)"}),"\n",(0,r.jsxs)(n.p,{children:["If you do not want your scrobble data to be modified (artists/album/title) but still want to benefit from associating the scrobble with a Musicbrainz match (for Scrobble ",(0,r.jsx)(n.a,{href:"/configuration/clients",children:"Clients"})," like ",(0,r.jsx)(n.a,{href:"/configuration/clients/tealfm",children:"Tealfm"}),", ",(0,r.jsx)(n.a,{href:"/configuration/clients/rocksky",children:"Rocksky"}),", and ",(0,r.jsx)(n.a,{href:"/configuration/clients/koito",children:"Koito"}),"), then use ",(0,r.jsx)(n.a,{href:"#using-partial-match",children:"Partial Match"})," rules to specify only ",(0,r.jsx)(n.code,{children:"meta"})," to be updated."]}),"\n",(0,r.jsxs)(i,{children:[(0,r.jsx)("summary",{children:"Example"}),(0,r.jsxs)(n.p,{children:["Your ",(0,r.jsx)(n.a,{href:"/configuration?configType=aio#configuration-types",children:"AIO Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="config.json"',children:'{\n // ...\n "transformers": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "data": {\n "apis": [\n {\n "contact": "contact@mydomain.com"\n }\n ]\n },\n "defaults": {\n // maybe something like Sensible Default?\n }\n }\n ]\n}\n'})}),(0,r.jsxs)(n.p,{children:["In a ",(0,r.jsx)(n.a,{href:"/configuration/clients/jellyfin",children:"Jellyfin"})," ",(0,r.jsx)(n.a,{href:"/configuration?configType=file#configuration-types",children:"File Config"}),":"]}),(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-json5",metastring:'title="subsonic.json"',children:'[\n { \n "name": "MyJellyfin",\n "data": { /* ... */},\n "options": {\n "playTransform": {\n "preCompare": [\n {\n "type": "musicbrainz",\n "name": "MyMB",\n "title": false,\n "artists": false,\n "album": false,\n "albumArtists": false,\n "meta": true // only update scrobble metadata with MBIDs\n }\n ]\n }\n }\n }\n]\n'})})]})]})}function f(e={}){let{wrapper:n}={...(0,t.a)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(u,{...e})}):u(e)}}}]);
+1
assets/js/e7a53bbd.a8e243cd.js
···11+"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["7073"],{19979:function(n,e,a){a.r(e),a.d(e,{frontMatter:()=>i,default:()=>p,toc:()=>c,metadata:()=>t,assets:()=>l,contentTitle:()=>s});var t=JSON.parse('{"id":"configuration/kitchensink","title":"Kitchen Sink","description":"Scenario:","source":"@site/docs/configuration/kitchensink.mdx","sourceDirName":"configuration","slug":"/configuration/kitchensink","permalink":"/multi-scrobbler/configuration/kitchensink","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/kitchensink.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"sidebar_position":3,"title":"Kitchen Sink"},"sidebar":"tutorialSidebar","previous":{"title":"Youtube Music","permalink":"/multi-scrobbler/configuration/sources/youtube-music"},"next":{"title":"Enhancing Scrobbles","permalink":"/multi-scrobbler/configuration/transforms/"}}'),r=a(85893),o=a(50065);let i={sidebar_position:3,title:"Kitchen Sink"},s="Example Complex Scenario",l={},c=[{value:"All-in-one Config",id:"all-in-one-config",level:3},{value:"Separate JSON files",id:"separate-json-files",level:3}];function d(n){let e={a:"a",code:"code",h1:"h1",h3:"h3",header:"header",li:"li",p:"p",pre:"pre",ul:"ul",...(0,o.a)(),...n.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(e.header,{children:(0,r.jsx)(e.h1,{id:"example-complex-scenario",children:"Example Complex Scenario"})}),"\n",(0,r.jsx)(e.p,{children:"Scenario:"}),"\n",(0,r.jsxs)(e.ul,{children:["\n",(0,r.jsx)(e.li,{children:"You want to scrobble plays for yourself (Foxx), Fred, and Mary"}),"\n",(0,r.jsxs)(e.li,{children:["Each person has their own ",(0,r.jsx)(e.a,{href:"/configuration/clients/maloja",children:"Maloja"})," server"]}),"\n",(0,r.jsx)(e.li,{children:"Each person has their own Spotify account"}),"\n",(0,r.jsxs)(e.li,{children:["You have your own Airsonic (",(0,r.jsx)(e.a,{href:"/configuration/sources/subsonic",children:"subsonic"}),") server you to scrobble from"]}),"\n",(0,r.jsxs)(e.li,{children:["You have your own ",(0,r.jsx)(e.a,{href:"/configuration/soures/youtube-mysic",children:"Youtube Music"})," account you want to scrobble from"]}),"\n",(0,r.jsxs)(e.li,{children:["Mary has her own ",(0,r.jsx)(e.a,{href:"/configuration/clients/lastfm",children:"Last.fm"})," account she also wants to scrobble to"]}),"\n",(0,r.jsxs)(e.li,{children:["Fred has his own ",(0,r.jsx)(e.a,{href:"/configuration/sources/spotify",children:"Spotify"})," application and provides you with just his access and refresh token because he doesn't trust you (wtf Fred)"]}),"\n",(0,r.jsx)(e.li,{children:"Fred has a Plex server and wants to scrobble everything he plays"}),"\n",(0,r.jsxs)(e.li,{children:["Mary uses Fred's Plex server but only wants to scrobble her plays from the ",(0,r.jsx)(e.code,{children:"podcast"})," library"]}),"\n",(0,r.jsxs)(e.li,{children:["The three of you have a shared library on ",(0,r.jsx)(e.a,{href:"/configuration/sources/plex",children:"Plex"})," called ",(0,r.jsx)(e.code,{children:"party"})," that you only play when you are hanging out. You want plays from that library to be scrobbled to everyone's servers."]}),"\n",(0,r.jsxs)(e.li,{children:["Fred also has his own ",(0,r.jsx)(e.a,{href:"/configurion/sources/jellyfin",children:"Jellyfin server"})," and wants to scrobble everything he plays"]}),"\n",(0,r.jsxs)(e.li,{children:["You have an android music app that can scrobble to a ",(0,r.jsx)(e.a,{href:"/configuration/sources/listenbrainz-endpoint",children:"custom listenbrainz server"})]}),"\n"]}),"\n",(0,r.jsx)(e.h3,{id:"all-in-one-config",children:"All-in-one Config"}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/config.json"',children:'{\n "sourceDefaults": {\n "maxPollRetries": 0, // optional, default # of automatic polling restarts on error. can be overridden by property in individual config\n "maxRequestRetries": 1, // optional, default # of http request retries a source can make before error is thrown. can be overridden by property in individual config\n "retryMultiplier": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config\n },\n "clientDefaults": {\n "maxRequestRetries": 1, // optional, default # of http request retries a client can make before error is thrown. can be overridden by property in individual config\n "retryMultiplier": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config\n },\n "sources": [\n {\n "type": "spotify",\n "name": "foxxSpot",\n "clients": ["foxxMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId", \n "clientSecret": "foxxSpotifyAppSecret",\n },\n "options": {\n "maxRequestRetries": 2, // override default max retries because spotify can...spotty\n }\n },\n {\n "type": "spotify",\n "name": "marySpot",\n "clients": ["maryMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId", // only need one application, it can be used by all users of this multi-scrobbler instance \n "clientSecret": "foxxSpotifyAppSecret",\n }\n },\n {\n "type": "spotify",\n "name": "fredSpot",\n "clients": ["fredMaloja"],\n "data": {\n "accessToken": "fredsToken",\n "refreshToken": "fredsRefreshToken",\n "interval": 120, // he also wants a slower check interval because his application already has heavy api usage\n }\n },\n {\n "type": "plex",\n "name": "fredPlex",\n "clients": ["fredMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["fredUser"]\n }\n },\n {\n "type": "plex",\n "name": "maryPlex",\n "clients": ["maryMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["maryUser"], // still need to specify mary as user so not all users who play from \'podcasts\' get scrobbled\n "librariesAllow": ["podcasts"]\n }\n },\n {\n "type": "plex",\n "name": "partyPlex",\n // omitting clients (or making it empty) will make this Source scrobble to all Clients\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "librariesAllow": ["party"]\n }\n },\n {\n "type": "jellyfin",\n "name": "FredJelly",\n // omitting clients (or making it empty) will make this Source scrobble to all Clients\n "data": {\n "url": "http://localhost:8096",\n "user": "FoxxMD",\n "apiKey": "c9fae8756fbf481ebd9c5bb56bd6540c",\n "usersAllow": ["fredUser"]\n }\n },\n {\n "type": "subsonic",\n "name": "foxxAirsonic",\n "clients": ["foxxMaloja"],\n "data": {\n "user": "foxx",\n "password": "foxxPassword",\n "url": "https://airsonic.foxx.example"\n }\n },\n {\n "type": "ytmusic",\n "name": "foxxYoutube",\n "clients": ["foxxMaloja"],\n "data": {\n "cookie": "__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...",\n }\n },\n {\n "type": "endpointlz",\n "name": "listenbrainzfoxx",\n "clients": ["foxxMaloja"],\n "data": {\n "token": "myToken"\n }\n }\n ],\n "clients": [\n {\n "type": "maloja",\n "name": "foxxMaloja",\n "data": {\n "url": "https://maloja.foxx.example",\n "apiKey": "foxxApiKey"\n }\n },\n {\n "type": "maloja",\n "name": "fredMaloja",\n "data": {\n "url": "https://maloja.fred.example",\n "apiKey": "fredApiKey"\n }\n },\n {\n "type": "maloja",\n "name": "maryMaloja",\n "data": {\n "url": "https://maloja.mary.example",\n "apiKey": "maryApiKey"\n }\n },\n {\n "type": "lastfm",\n "name": "maryLFM",\n "data": {\n "apiKey": "maryApiKey",\n "secret": "marySecret",\n "redirectUri": "http://localhost:9078/lastfm/callback"\n }\n }\n ]\n}\n\n'})}),"\n",(0,r.jsx)(e.h3,{id:"separate-json-files",children:"Separate JSON files"}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/spotify.json"',children:'[\n {\n // may omit \'type\' property since app knows this is file is for spotify configs\n "name": "foxxSpot",\n "clients": ["foxxMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId",\n "clientSecret": "foxxSpotifyAppSecret"\n }\n },\n {\n "name": "marySpot",\n "clients": ["maryMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId",\n "clientSecret": "foxxSpotifyAppSecret"\n }\n },\n {\n "name": "fredSpot",\n "clients": ["fredMaloja"],\n "data": {\n "accessToken": "fredsToken",\n "refreshToken": "fredsRefreshToken",\n "interval": 120\n }\n },\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/plex.json"',children:'[\n {\n "name": "fredPlex",\n "clients": ["fredMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["fredUser"]\n }\n },\n {\n "name": "maryPlex",\n "clients": ["maryMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["maryUser"],\n "librariesAllow": ["podcasts"]\n }\n },\n {\n "name": "partyPlex",\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "librariesAllow": ["party"]\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/jellyfin.json"',children:'[\n {\n "name": "FredJelly",\n "data": {\n "url": "http://localhost:8096",\n "user": "FoxxMD",\n "apiKey": "c9fae8756fbf481ebd9c5bb56bd6540c",\n "usersAllow": ["fredUser"]\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/ytmusic.json"',children:'[\n {\n "name": "foxxYoutube",\n "clients": ["foxxMaloja"],\n "data": {\n "cookie": "__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...",\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/endpointlz.json"',children:'[\n {\n "name": "listenbrainzfoxx",\n "clients": ["foxxMaloja"],\n "data": {\n "token": "myToken",\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/maloja.json"',children:'[\n {\n "name": "foxxMaloja",\n "data": {\n "url": "https://maloja.foxx.example",\n "apiKey": "foxxApiKey"\n }\n },\n {\n "name": "fredMaloja",\n "data": {\n "url": "https://maloja.fred.example",\n "apiKey": "fredApiKey"\n }\n },\n {\n "name": "maryMaloja",\n "data": {\n "url": "https://maloja.mary.example",\n "apiKey": "maryApiKey"\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/lastfm.json"',children:'[\n {\n "name": "maryLFM",\n "data": {\n "apiKey": "maryApiKey",\n "secret": "marySecret",\n "redirectUri": "http://localhost:9078/lastfm/callback"\n }\n }\n]\n'})})]})}function p(n={}){let{wrapper:e}={...(0,o.a)(),...n.components};return e?(0,r.jsx)(e,{...n,children:(0,r.jsx)(d,{...n})}):d(n)}}}]);
-1
assets/js/e7a53bbd.e56c867b.js
···11-"use strict";(self.webpackChunkmy_website=self.webpackChunkmy_website||[]).push([["7073"],{19979:function(n,e,a){a.r(e),a.d(e,{frontMatter:()=>i,default:()=>p,toc:()=>c,metadata:()=>t,assets:()=>l,contentTitle:()=>s});var t=JSON.parse('{"id":"configuration/kitchensink","title":"Kitchen Sink","description":"Scenario:","source":"@site/docs/configuration/kitchensink.mdx","sourceDirName":"configuration","slug":"/configuration/kitchensink","permalink":"/multi-scrobbler/configuration/kitchensink","draft":false,"unlisted":false,"editUrl":"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/kitchensink.mdx","tags":[],"version":"current","sidebarPosition":3,"frontMatter":{"sidebar_position":3,"title":"Kitchen Sink"},"sidebar":"tutorialSidebar","previous":{"title":"Youtube Music","permalink":"/multi-scrobbler/configuration/sources/youtube-music"},"next":{"title":"Scrobble Modification","permalink":"/multi-scrobbler/configuration/transforms"}}'),r=a(85893),o=a(50065);let i={sidebar_position:3,title:"Kitchen Sink"},s="Example Complex Scenario",l={},c=[{value:"All-in-one Config",id:"all-in-one-config",level:3},{value:"Separate JSON files",id:"separate-json-files",level:3}];function d(n){let e={a:"a",code:"code",h1:"h1",h3:"h3",header:"header",li:"li",p:"p",pre:"pre",ul:"ul",...(0,o.a)(),...n.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(e.header,{children:(0,r.jsx)(e.h1,{id:"example-complex-scenario",children:"Example Complex Scenario"})}),"\n",(0,r.jsx)(e.p,{children:"Scenario:"}),"\n",(0,r.jsxs)(e.ul,{children:["\n",(0,r.jsx)(e.li,{children:"You want to scrobble plays for yourself (Foxx), Fred, and Mary"}),"\n",(0,r.jsxs)(e.li,{children:["Each person has their own ",(0,r.jsx)(e.a,{href:"/configuration/clients/maloja",children:"Maloja"})," server"]}),"\n",(0,r.jsx)(e.li,{children:"Each person has their own Spotify account"}),"\n",(0,r.jsxs)(e.li,{children:["You have your own Airsonic (",(0,r.jsx)(e.a,{href:"/configuration/sources/subsonic",children:"subsonic"}),") server you to scrobble from"]}),"\n",(0,r.jsxs)(e.li,{children:["You have your own ",(0,r.jsx)(e.a,{href:"/configuration/soures/youtube-mysic",children:"Youtube Music"})," account you want to scrobble from"]}),"\n",(0,r.jsxs)(e.li,{children:["Mary has her own ",(0,r.jsx)(e.a,{href:"/configuration/clients/lastfm",children:"Last.fm"})," account she also wants to scrobble to"]}),"\n",(0,r.jsxs)(e.li,{children:["Fred has his own ",(0,r.jsx)(e.a,{href:"/configuration/sources/spotify",children:"Spotify"})," application and provides you with just his access and refresh token because he doesn't trust you (wtf Fred)"]}),"\n",(0,r.jsx)(e.li,{children:"Fred has a Plex server and wants to scrobble everything he plays"}),"\n",(0,r.jsxs)(e.li,{children:["Mary uses Fred's Plex server but only wants to scrobble her plays from the ",(0,r.jsx)(e.code,{children:"podcast"})," library"]}),"\n",(0,r.jsxs)(e.li,{children:["The three of you have a shared library on ",(0,r.jsx)(e.a,{href:"/configuration/sources/plex",children:"Plex"})," called ",(0,r.jsx)(e.code,{children:"party"})," that you only play when you are hanging out. You want plays from that library to be scrobbled to everyone's servers."]}),"\n",(0,r.jsxs)(e.li,{children:["Fred also has his own ",(0,r.jsx)(e.a,{href:"/configurion/sources/jellyfin",children:"Jellyfin server"})," and wants to scrobble everything he plays"]}),"\n",(0,r.jsxs)(e.li,{children:["You have an android music app that can scrobble to a ",(0,r.jsx)(e.a,{href:"/configuration/sources/listenbrainz-endpoint",children:"custom listenbrainz server"})]}),"\n"]}),"\n",(0,r.jsx)(e.h3,{id:"all-in-one-config",children:"All-in-one Config"}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/config.json"',children:'{\n "sourceDefaults": {\n "maxPollRetries": 0, // optional, default # of automatic polling restarts on error. can be overridden by property in individual config\n "maxRequestRetries": 1, // optional, default # of http request retries a source can make before error is thrown. can be overridden by property in individual config\n "retryMultiplier": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config\n },\n "clientDefaults": {\n "maxRequestRetries": 1, // optional, default # of http request retries a client can make before error is thrown. can be overridden by property in individual config\n "retryMultiplier": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config\n },\n "sources": [\n {\n "type": "spotify",\n "name": "foxxSpot",\n "clients": ["foxxMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId", \n "clientSecret": "foxxSpotifyAppSecret",\n },\n "options": {\n "maxRequestRetries": 2, // override default max retries because spotify can...spotty\n }\n },\n {\n "type": "spotify",\n "name": "marySpot",\n "clients": ["maryMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId", // only need one application, it can be used by all users of this multi-scrobbler instance \n "clientSecret": "foxxSpotifyAppSecret",\n }\n },\n {\n "type": "spotify",\n "name": "fredSpot",\n "clients": ["fredMaloja"],\n "data": {\n "accessToken": "fredsToken",\n "refreshToken": "fredsRefreshToken",\n "interval": 120, // he also wants a slower check interval because his application already has heavy api usage\n }\n },\n {\n "type": "plex",\n "name": "fredPlex",\n "clients": ["fredMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["fredUser"]\n }\n },\n {\n "type": "plex",\n "name": "maryPlex",\n "clients": ["maryMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["maryUser"], // still need to specify mary as user so not all users who play from \'podcasts\' get scrobbled\n "librariesAllow": ["podcasts"]\n }\n },\n {\n "type": "plex",\n "name": "partyPlex",\n // omitting clients (or making it empty) will make this Source scrobble to all Clients\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "librariesAllow": ["party"]\n }\n },\n {\n "type": "jellyfin",\n "name": "FredJelly",\n // omitting clients (or making it empty) will make this Source scrobble to all Clients\n "data": {\n "url": "http://localhost:8096",\n "user": "FoxxMD",\n "apiKey": "c9fae8756fbf481ebd9c5bb56bd6540c",\n "usersAllow": ["fredUser"]\n }\n },\n {\n "type": "subsonic",\n "name": "foxxAirsonic",\n "clients": ["foxxMaloja"],\n "data": {\n "user": "foxx",\n "password": "foxxPassword",\n "url": "https://airsonic.foxx.example"\n }\n },\n {\n "type": "ytmusic",\n "name": "foxxYoutube",\n "clients": ["foxxMaloja"],\n "data": {\n "cookie": "__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...",\n }\n },\n {\n "type": "endpointlz",\n "name": "listenbrainzfoxx",\n "clients": ["foxxMaloja"],\n "data": {\n "token": "myToken"\n }\n }\n ],\n "clients": [\n {\n "type": "maloja",\n "name": "foxxMaloja",\n "data": {\n "url": "https://maloja.foxx.example",\n "apiKey": "foxxApiKey"\n }\n },\n {\n "type": "maloja",\n "name": "fredMaloja",\n "data": {\n "url": "https://maloja.fred.example",\n "apiKey": "fredApiKey"\n }\n },\n {\n "type": "maloja",\n "name": "maryMaloja",\n "data": {\n "url": "https://maloja.mary.example",\n "apiKey": "maryApiKey"\n }\n },\n {\n "type": "lastfm",\n "name": "maryLFM",\n "data": {\n "apiKey": "maryApiKey",\n "secret": "marySecret",\n "redirectUri": "http://localhost:9078/lastfm/callback"\n }\n }\n ]\n}\n\n'})}),"\n",(0,r.jsx)(e.h3,{id:"separate-json-files",children:"Separate JSON files"}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/spotify.json"',children:'[\n {\n // may omit \'type\' property since app knows this is file is for spotify configs\n "name": "foxxSpot",\n "clients": ["foxxMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId",\n "clientSecret": "foxxSpotifyAppSecret"\n }\n },\n {\n "name": "marySpot",\n "clients": ["maryMaloja"],\n "data": {\n "clientId": "foxxSpotifyAppId",\n "clientSecret": "foxxSpotifyAppSecret"\n }\n },\n {\n "name": "fredSpot",\n "clients": ["fredMaloja"],\n "data": {\n "accessToken": "fredsToken",\n "refreshToken": "fredsRefreshToken",\n "interval": 120\n }\n },\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/plex.json"',children:'[\n {\n "name": "fredPlex",\n "clients": ["fredMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["fredUser"]\n }\n },\n {\n "name": "maryPlex",\n "clients": ["maryMaloja"],\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "usersallow": ["maryUser"],\n "librariesAllow": ["podcasts"]\n }\n },\n {\n "name": "partyPlex",\n "data": {\n "token": "JtRnwQWD__XMJF8sT3jc",\n "url": "192.168.0.233:32400",\n "librariesAllow": ["party"]\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/jellyfin.json"',children:'[\n {\n "name": "FredJelly",\n "data": {\n "url": "http://localhost:8096",\n "user": "FoxxMD",\n "apiKey": "c9fae8756fbf481ebd9c5bb56bd6540c",\n "usersAllow": ["fredUser"]\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/ytmusic.json"',children:'[\n {\n "name": "foxxYoutube",\n "clients": ["foxxMaloja"],\n "data": {\n "cookie": "__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...",\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/endpointlz.json"',children:'[\n {\n "name": "listenbrainzfoxx",\n "clients": ["foxxMaloja"],\n "data": {\n "token": "myToken",\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/maloja.json"',children:'[\n {\n "name": "foxxMaloja",\n "data": {\n "url": "https://maloja.foxx.example",\n "apiKey": "foxxApiKey"\n }\n },\n {\n "name": "fredMaloja",\n "data": {\n "url": "https://maloja.fred.example",\n "apiKey": "fredApiKey"\n }\n },\n {\n "name": "maryMaloja",\n "data": {\n "url": "https://maloja.mary.example",\n "apiKey": "maryApiKey"\n }\n }\n]\n'})}),"\n",(0,r.jsx)(e.pre,{children:(0,r.jsx)(e.code,{className:"language-json5",metastring:'title="CONFIG_DIR/lastfm.json"',children:'[\n {\n "name": "maryLFM",\n "data": {\n "apiKey": "maryApiKey",\n "secret": "marySecret",\n "redirectUri": "http://localhost:9078/lastfm/callback"\n }\n }\n]\n'})})]})}function p(n={}){let{wrapper:e}={...(0,o.a)(),...n.components};return e?(0,r.jsx)(e,{...n,children:(0,r.jsx)(d,{...n})}):d(n)}}}]);
···11-{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"$ref":"#/definitions/MalojaClientConfig"},{"$ref":"#/definitions/LastfmClientConfig"},{"$ref":"#/definitions/ListenBrainzClientConfig"},{"$ref":"#/definitions/KoitoClientConfig"},{"$ref":"#/definitions/TealClientConfig"},{"$ref":"#/definitions/RockSkyClientConfig"}],"definitions":{"MalojaClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/MalojaClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Maloja as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"MalojaClientConfig"},"MalojaClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaClientData"},"CommonClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonClientOptions"},"MatchLoggingOptions":{"type":"object","properties":{"onNoMatch":{"type":"boolean","description":"Log to DEBUG when a new track does NOT match an existing scrobble","default":false,"examples":[false]},"onMatch":{"type":"boolean","description":"Log to DEBUG when a new track DOES match an existing scrobble","default":false,"examples":[false]},"confidenceBreakdown":{"type":"boolean","description":"Include confidence breakdowns in track match logging, if applicable","default":false,"examples":[false]}},"description":"Scrobble matching (between new source track and existing client scrobbles) logging options. Used for debugging.","title":"MatchLoggingOptions"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<SearchAndReplaceTerm>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<SearchAndReplaceTerm>"},"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>"},"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"artists":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"album":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"type":{"$ref":"#/definitions/StageTypeMetadata"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"artists":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"album":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"type":{"$ref":"#/definitions/StageTypeUser"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"album":{}},"required":["album","artists","title"]}],"title":"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"album":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"StageTypeMetadata":{"type":"string","enum":["spotify","listenbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"search":{},"replace":{}},"required":["search","replace"],"title":"ConditionalSearchAndReplaceTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"LastfmClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/LastfmData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/LastfmClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using LastFM as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"LastfmClientConfig"},"LastfmData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]}},"required":["apiKey","secret"],"title":"LastfmData"},"LastfmClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"LastfmClientOptions"},"ListenBrainzClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/ListenBrainzClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Listenbrainz as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"ListenBrainzClientConfig"},"ListenBrainzClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzClientData"},"KoitoClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/KoitoClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Koito as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"KoitoClientConfig"},"KoitoClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoClientData"},"TealClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/TealClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/TealClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Tealfm as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"TealClientConfig"},"TealClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealClientData"},"TealClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealClientOptions"},"RockSkyClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/RockSkyClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/RockSkyClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using RockSky as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"RockSkyClientConfig"},"RockSkyClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockSkyClientData"},"RockSkyClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockSkyClientOptions"}}}11+{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"$ref":"#/definitions/MalojaClientConfig"},{"$ref":"#/definitions/LastfmClientConfig"},{"$ref":"#/definitions/ListenBrainzClientConfig"},{"$ref":"#/definitions/KoitoClientConfig"},{"$ref":"#/definitions/TealClientConfig"},{"$ref":"#/definitions/RockSkyClientConfig"}],"definitions":{"MalojaClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/MalojaClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Maloja as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"MalojaClientConfig"},"MalojaClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaClientData"},"CommonClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonClientOptions"},"MatchLoggingOptions":{"type":"object","properties":{"onNoMatch":{"type":"boolean","description":"Log to DEBUG when a new track does NOT match an existing scrobble","default":false,"examples":[false]},"onMatch":{"type":"boolean","description":"Log to DEBUG when a new track DOES match an existing scrobble","default":false,"examples":[false]},"confidenceBreakdown":{"type":"boolean","description":"Include confidence breakdowns in track match logging, if applicable","default":false,"examples":[false]}},"description":"Scrobble matching (between new source track and existing client scrobbles) logging options. Used for debugging.","title":"MatchLoggingOptions"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>"},"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeMetadata"},"name":{"type":"string"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"artists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"albumArtists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"album":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"duration":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"meta":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeUser"},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string","enum":["native"]},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{},"name":{},"onSuccess":{},"onFailure":{},"failureReturnPartial":{},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{}},"required":["album","albumArtists","artists","duration","failureReturnPartial","meta","name","onFailure","onSuccess","title","when"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string"},"name":{"type":"string"}},"required":["type"]}],"title":"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"albumArtists":{"type":"string"},"album":{"type":"string"},"duration":{"type":"string"},"meta":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"Whennable":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"title":"Whennable"},"FlowControlTerm":{"type":"string","enum":["continue","stop"],"title":"FlowControlTerm"},"StageTypeMetadata":{"type":"string","enum":["spotify","musicbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"search":{},"replace":{},"when":{}},"required":["search","replace","when"],"title":"ConditionalSearchAndReplaceTerm"},"ExternalMetadataTerm":{"anyOf":[{"type":"boolean"},{"not":{}},{"$ref":"#/definitions/Whennable"}],"title":"ExternalMetadataTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"LastfmClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/LastfmData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/LastfmClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using LastFM as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"LastfmClientConfig"},"LastfmData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]}},"required":["apiKey","secret"],"title":"LastfmData"},"LastfmClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"LastfmClientOptions"},"ListenBrainzClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/ListenBrainzClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Listenbrainz as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"ListenBrainzClientConfig"},"ListenBrainzClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzClientData"},"KoitoClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/KoitoClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/CommonClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Koito as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"KoitoClientConfig"},"KoitoClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoClientData"},"TealClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/TealClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/TealClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using Tealfm as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"TealClientConfig"},"TealClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealClientData"},"TealClientOptions":{"type":"object","properties":{"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealClientOptions"},"RockSkyClientConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this client. Used with sources to restrict where scrobbles are sent.","examples":["MyConfig"]},"data":{"$ref":"#/definitions/RockSkyClientData","description":"Specific data required to configure this client"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"options":{"$ref":"#/definitions/RockSkyClientOptions"},"configureAs":{"type":"string","enum":["client","source"],"description":"Should always be `client` when using RockSky as a client","default":"client","examples":["client"]}},"required":["data","name"],"title":"RockSkyClientConfig"},"RockSkyClientData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockSkyClientData"},"RockSkyClientOptions":{"type":"object","properties":{"nowPlaying":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Configure if this Client should report Now Playing from Sources that can scrobble to it\n\n* `true` (default) => Report Now Playing from any eligible Source. \n * If multiple Sources are Playing then reported Play is based on alphabetical order of Source names\n* `false` => Do not report Now Playing\n* `string` list => list of Source `names` that should be allowed to report Now Playing. Order of list determine priority of Play to Report.","default":true},"refreshEnabled":{"type":"boolean","description":"Try to get fresh scrobble history from client when tracks to be scrobbled are newer than the last scrobble found in client history","default":true,"examples":[true]},"refreshStaleAfter":{"type":"number","description":"Refresh scrobbled plays from upstream service if last refresh was at least X seconds ago\n\n**In most case this setting does NOT need to be changed.** The default value is sufficient for the majority of use-cases. Increasing this setting may increase upstream service load and slow down scrobbles.\n\nThis setting should only be changed in specific scenarios where MS is handling multiple \"relaying\" client-services (IE lfm -> lz -> lfm) and there is the potential for a client to be out of sync after more than a few seconds.","examples":[60],"default":60},"refreshMinInterval":{"type":"number","description":"Minimum time (milliseconds) required to pass before upstream scrobbles can be refreshed.\n\n**In most case this setting does NOT need to be changed.** This will always be equal to or smaller than `refreshStaleAfter`.","default":5000,"examples":[5000]},"refreshInitialCount":{"type":"number","description":"The number of tracks to retrieve on initial refresh (related to scrobbleBacklogCount). If not specified this is the maximum supported by the client in 1 API call."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"checkExistingScrobbles":{"type":"boolean","description":"Check client for an existing scrobble at the same recorded time as the \"new\" track to be scrobbled. If an existing scrobble is found this track is not track scrobbled.","default":true,"examples":[true]},"verbose":{"type":"object","properties":{"match":{"$ref":"#/definitions/MatchLoggingOptions"}},"description":"Options used for increasing verbosity of logging in MS (used for debugging)"},"deadLetterRetries":{"type":"number","description":"Number of times MS should automatically retry scrobbles in dead letter queue","default":1,"examples":[1]},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockSkyClientOptions"}}}
···55<meta name="generator" content="Docusaurus v3.8.1">
66<title data-rh="true">Source Development/Tutorial | Multi-Scrobbler</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://foxxmd.github.io/multi-scrobbler/img/icon.png"><meta data-rh="true" name="twitter:image" content="https://foxxmd.github.io/multi-scrobbler/img/icon.png"><meta data-rh="true" property="og:url" content="https://foxxmd.github.io/multi-scrobbler/development/dev-source/"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Source Development/Tutorial | Multi-Scrobbler"><meta data-rh="true" name="description" content="This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development."><meta data-rh="true" property="og:description" content="This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development."><link data-rh="true" rel="icon" href="/multi-scrobbler/img/favicon.ico"><link data-rh="true" rel="canonical" href="https://foxxmd.github.io/multi-scrobbler/development/dev-source/"><link data-rh="true" rel="alternate" href="https://foxxmd.github.io/multi-scrobbler/development/dev-source/" hreflang="en"><link data-rh="true" rel="alternate" href="https://foxxmd.github.io/multi-scrobbler/development/dev-source/" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Development","item":"https://foxxmd.github.io/multi-scrobbler/category/development"},{"@type":"ListItem","position":2,"name":"Source Development/Tutorial","item":"https://foxxmd.github.io/multi-scrobbler/development/dev-source"}]}</script><meta name="google-site-verification" content="8hqrPhw4yuoTBM6c3S10aC8L4tu4aIBe8Q-oSP3OES0">
77<script src="https://ry.foxxmd.dev/api/script.js" defer="defer" data-site-id="3" data-session-replay="true"></script><link rel="stylesheet" href="/multi-scrobbler/assets/css/styles.5e084d52.css">
88-<script src="/multi-scrobbler/assets/js/runtime~main.c24199ff.js" defer="defer"></script>
99-<script src="/multi-scrobbler/assets/js/main.f89376eb.js" defer="defer"></script>
88+<script src="/multi-scrobbler/assets/js/runtime~main.bfd6f5fc.js" defer="defer"></script>
99+<script src="/multi-scrobbler/assets/js/main.b53e0ddf.js" defer="defer"></script>
1010</head>
1111<body class="navigation-with-keyboard">
1212<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><defs>
···55<meta name="generator" content="Docusaurus v3.8.1">
66<title data-rh="true">Overview | Multi-Scrobbler</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://foxxmd.github.io/multi-scrobbler/img/icon.png"><meta data-rh="true" name="twitter:image" content="https://foxxmd.github.io/multi-scrobbler/img/icon.png"><meta data-rh="true" property="og:url" content="https://foxxmd.github.io/multi-scrobbler/"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Overview | Multi-Scrobbler"><meta data-rh="true" name="description" content="Latest Release"><meta data-rh="true" property="og:description" content="Latest Release"><link data-rh="true" rel="icon" href="/multi-scrobbler/img/favicon.ico"><link data-rh="true" rel="canonical" href="https://foxxmd.github.io/multi-scrobbler/"><link data-rh="true" rel="alternate" href="https://foxxmd.github.io/multi-scrobbler/" hreflang="en"><link data-rh="true" rel="alternate" href="https://foxxmd.github.io/multi-scrobbler/" hreflang="x-default"><script data-rh="true">function insertBanner(){var n=document.createElement("div");n.id="__docusaurus-base-url-issue-banner-container";n.innerHTML='\n<div id="__docusaurus-base-url-issue-banner" style="border: thick solid red; background-color: rgb(255, 230, 179); margin: 20px; padding: 20px; font-size: 20px;">\n <p style="font-weight: bold; font-size: 30px;">Your Docusaurus site did not load properly.</p>\n <p>A very common reason is a wrong site <a href="https://docusaurus.io/docs/docusaurus.config.js/#baseUrl" style="font-weight: bold;">baseUrl configuration</a>.</p>\n <p>Current configured baseUrl = <span style="font-weight: bold; color: red;">/multi-scrobbler/</span> </p>\n <p>We suggest trying baseUrl = <span id="__docusaurus-base-url-issue-banner-suggestion-container" style="font-weight: bold; color: green;"></span></p>\n</div>\n',document.body.prepend(n);var e=document.getElementById("__docusaurus-base-url-issue-banner-suggestion-container"),s=window.location.pathname,o="/"===s.substr(-1)?s:s+"/";e.innerHTML=o}document.addEventListener("DOMContentLoaded",(function(){void 0===window.docusaurus&&insertBanner()}))</script><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Overview","item":"https://foxxmd.github.io/multi-scrobbler/"}]}</script><meta name="google-site-verification" content="8hqrPhw4yuoTBM6c3S10aC8L4tu4aIBe8Q-oSP3OES0">
77<script src="https://ry.foxxmd.dev/api/script.js" defer="defer" data-site-id="3" data-session-replay="true"></script><link rel="stylesheet" href="/multi-scrobbler/assets/css/styles.5e084d52.css">
88-<script src="/multi-scrobbler/assets/js/runtime~main.c24199ff.js" defer="defer"></script>
99-<script src="/multi-scrobbler/assets/js/main.f89376eb.js" defer="defer"></script>
88+<script src="/multi-scrobbler/assets/js/runtime~main.bfd6f5fc.js" defer="defer"></script>
99+<script src="/multi-scrobbler/assets/js/main.b53e0ddf.js" defer="defer"></script>
1010</head>
1111<body class="navigation-with-keyboard">
1212<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><defs>
···5858<li><a href="/multi-scrobbler/configuration/clients/tealfm/">teal.fm</a></li>
5959</ul>
6060</li>
6161+<li>Enhance/correct scrobble data with <a href="/multi-scrobbler/configuration/transforms/">search patterns</a>, <a href="/multi-scrobbler/configuration/transforms/">built-in corrections</a>, or the <a href="/multi-scrobbler/configuration/transforms/musicbrainz/">Musicbrainz</a> database</li>
6162<li>Monitor status of Sources and Clients using <a href="/multi-scrobbler/configuration/#webhook-configurations">webhooks (Gotify, Ntfy, Apprise)</a> or <a href="/multi-scrobbler/configuration/#health-endpoint">healthcheck endpoint</a></li>
6263<li>Supports <a href="/multi-scrobbler/configuration/clients/#now-playing">Now Playing</a> for scrobble Clients</li>
6364<li>Supports configuring for single or multiple users (scrobbling for your friends and family!)</li>
···6566<li>Graceful network and client failure handling (queued scrobbles that auto-retry)</li>
6667<li>Smart handling of credentials (persistent, authorization through app)</li>
6768<li>Easy configuration through <a href="/multi-scrobbler/configuration/#configuration-types">ENVs or JSON</a></li>
6868-<li>Modify data before scrobbling with <a href="/multi-scrobbler/configuration/transforms/">regular expression or search patterns</a></li>
6969<li>Install using <a href="/multi-scrobbler/installation/#docker">Docker images for x86/ARM</a> or <a href="/multi-scrobbler/installation/#nodejs">locally with NodeJS</a></li>
7070</ul>
7171<p><a href="/multi-scrobbler/quickstart/"><strong>Quick Start Guide</strong></a></p>
···7676<li><strong>Open-source</strong> -- Get peace of mind knowing exactly how your personal data is being handled.</li>
7777<li><strong>Track your activity regardless of where you listen</strong> -- Scrobble from many Sources to one Client with ease and without duplicating tracks.</li>
7878<li><strong>Manage scrobbling for others</strong> -- Scrobble for your friends and family without any setup on their part. Easily silo sources to specific clients to keep plays separate.</li>
7979+<li><strong>Standardize your data</strong> -- Match your scrobbles with the <a href="/multi-scrobbler/configuration/transforms/musicbrainz/">Musicbrainz</a> database to ensure scrobbled data is as correct and rich as possible.</li>
7980</ul>
8081<p><strong>But I already scrobble my music to Last.fm/ListenBrainz, is multi-scrobbler for me?</strong></p>
8182<p>Yes! You can use <a href="/multi-scrobbler/configuration/sources/lastfm-source/">Last.fm as a <strong>Source</strong></a> or <a href="/multi-scrobbler/configuration/sources/listenbrainz-source/">Listenbrainz as a <strong>Source</strong></a> to forward scrobbles from your profile to any other Client! That way you can keep your current scrobble setup as-is but still get the benefit of capturing your data to a self-hosted location.</p>
8383+<p>Use the <strong>Last.fm</strong> tab in the <a href="/multi-scrobbler/quickstart/#setup-sources">Quickstart Sources</a> to get started.</p>
8284<h2 class="anchor anchorWithHideOnScrollNavbar_WYt5" id="how-does-multi-scrobbler-ms-work">How Does multi-scrobbler (MS) Work?<a href="#how-does-multi-scrobbler-ms-work" class="hash-link" aria-label="Direct link to How Does multi-scrobbler (MS) Work?" title="Direct link to How Does multi-scrobbler (MS) Work?"></a></h2>
8385<p>You set up <a href="/multi-scrobbler/configuration/">configurations</a> for one or more <a href="/multi-scrobbler/configuration/sources/"><strong>Sources</strong></a> and one or more <a href="/multi-scrobbler/configuration/clients/"><strong>Clients</strong></a>. MS monitors all of your configured <strong>Sources</strong>. When new tracks are played by a Source MS grabs that information and then sends it (scrobbles it) to all <strong>Clients</strong> that Source is configured to forward to.</p>
8486<h3 class="anchor anchorWithHideOnScrollNavbar_WYt5" id="source">Source<a href="#source" class="hash-link" aria-label="Direct link to Source" title="Direct link to Source"></a></h3>
···55<meta name="generator" content="Docusaurus v3.8.1">
66<title data-rh="true">As a Service | Multi-Scrobbler</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://foxxmd.github.io/multi-scrobbler/img/icon.png"><meta data-rh="true" name="twitter:image" content="https://foxxmd.github.io/multi-scrobbler/img/icon.png"><meta data-rh="true" property="og:url" content="https://foxxmd.github.io/multi-scrobbler/installation/service/"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="As a Service | Multi-Scrobbler"><meta data-rh="true" name="description" content="If you have multi-scrobbler installed locally you can enable it to run as a background service when you login."><meta data-rh="true" property="og:description" content="If you have multi-scrobbler installed locally you can enable it to run as a background service when you login."><link data-rh="true" rel="icon" href="/multi-scrobbler/img/favicon.ico"><link data-rh="true" rel="canonical" href="https://foxxmd.github.io/multi-scrobbler/installation/service/"><link data-rh="true" rel="alternate" href="https://foxxmd.github.io/multi-scrobbler/installation/service/" hreflang="en"><link data-rh="true" rel="alternate" href="https://foxxmd.github.io/multi-scrobbler/installation/service/" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Installation","item":"https://foxxmd.github.io/multi-scrobbler/installation/"},{"@type":"ListItem","position":2,"name":"As a Service","item":"https://foxxmd.github.io/multi-scrobbler/installation/service"}]}</script><meta name="google-site-verification" content="8hqrPhw4yuoTBM6c3S10aC8L4tu4aIBe8Q-oSP3OES0">
77<script src="https://ry.foxxmd.dev/api/script.js" defer="defer" data-site-id="3" data-session-replay="true"></script><link rel="stylesheet" href="/multi-scrobbler/assets/css/styles.5e084d52.css">
88-<script src="/multi-scrobbler/assets/js/runtime~main.c24199ff.js" defer="defer"></script>
99-<script src="/multi-scrobbler/assets/js/main.f89376eb.js" defer="defer"></script>
88+<script src="/multi-scrobbler/assets/js/runtime~main.bfd6f5fc.js" defer="defer"></script>
99+<script src="/multi-scrobbler/assets/js/main.b53e0ddf.js" defer="defer"></script>
1010</head>
1111<body class="navigation-with-keyboard">
1212<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><defs>
···11-[{"documents":[{"i":1,"t":"Overview","u":"/multi-scrobbler/configuration/clients/","b":["Docs","Configuration","Scrobble Clients"]},{"i":10,"t":"Last.fm","u":"/multi-scrobbler/configuration/clients/lastfm/","b":["Docs","Configuration","Scrobble Clients"]},{"i":14,"t":"Overview","u":"/multi-scrobbler/configuration/","b":["Docs","Configuration"]},{"i":36,"t":"Koito","u":"/multi-scrobbler/configuration/clients/koito/","b":["Docs","Configuration","Scrobble Clients"]},{"i":40,"t":"Maloja","u":"/multi-scrobbler/configuration/clients/maloja/","b":["Docs","Configuration","Scrobble Clients"]},{"i":44,"t":"Listenbrainz","u":"/multi-scrobbler/configuration/clients/listenbrainz/","b":["Docs","Configuration","Scrobble Clients"]},{"i":48,"t":"Rocksky","u":"/multi-scrobbler/configuration/clients/rocksky/","b":["Docs","Configuration","Scrobble Clients"]},{"i":55,"t":"Teal.fm","u":"/multi-scrobbler/configuration/clients/tealfm/","b":["Docs","Configuration","Scrobble Clients"]},{"i":62,"t":"Overview","u":"/multi-scrobbler/configuration/sources/","b":["Docs","Configuration","Scrobble Sources"]},{"i":77,"t":"Azuracast","u":"/multi-scrobbler/configuration/sources/azuracast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":81,"t":"Deezer","u":"/multi-scrobbler/configuration/sources/deezer/","b":["Docs","Configuration","Scrobble Sources"]},{"i":89,"t":"Icecast","u":"/multi-scrobbler/configuration/sources/icecast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":93,"t":"Google Cast (Chromecast)","u":"/multi-scrobbler/configuration/sources/google-cast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":97,"t":"Jellyfin","u":"/multi-scrobbler/configuration/sources/jellyfin/","b":["Docs","Configuration","Scrobble Sources"]},{"i":99,"t":"JRiver","u":"/multi-scrobbler/configuration/sources/jriver/","b":["Docs","Configuration","Scrobble Sources"]},{"i":105,"t":"Kodi","u":"/multi-scrobbler/configuration/sources/kodi/","b":["Docs","Configuration","Scrobble Sources"]},{"i":111,"t":"Example Complex Scenario","u":"/multi-scrobbler/configuration/kitchensink/","b":["Docs","Configuration"]},{"i":117,"t":"Lastfm (Endpoint)","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","b":["Docs","Configuration","Scrobble Sources"]},{"i":123,"t":"Listenbrainz (Endpoint)","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","b":["Docs","Configuration","Scrobble Sources"]},{"i":131,"t":"Listenbrainz","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":135,"t":"Maloja","u":"/multi-scrobbler/configuration/sources/maloja/","b":["Docs","Configuration","Scrobble Sources"]},{"i":139,"t":"Lastfm","u":"/multi-scrobbler/configuration/sources/lastfm-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":143,"t":"Koito","u":"/multi-scrobbler/configuration/sources/koito-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":145,"t":"Mopidy","u":"/multi-scrobbler/configuration/sources/mopidy/","b":["Docs","Configuration","Scrobble Sources"]},{"i":153,"t":"MPD (Music Player Daemon)","u":"/multi-scrobbler/configuration/sources/mpd/","b":["Docs","Configuration","Scrobble Sources"]},{"i":157,"t":"MPRIS","u":"/multi-scrobbler/configuration/sources/mpris/","b":["Docs","Configuration","Scrobble Sources"]},{"i":161,"t":"Rocksky","u":"/multi-scrobbler/configuration/sources/rocksky-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":167,"t":"Plex","u":"/multi-scrobbler/configuration/sources/plex/","b":["Docs","Configuration","Scrobble Sources"]},{"i":169,"t":"Spotify","u":"/multi-scrobbler/configuration/sources/spotify/","b":["Docs","Configuration","Scrobble Sources"]},{"i":173,"t":"Teal.fm","u":"/multi-scrobbler/configuration/sources/tealfm-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":179,"t":"Musikcube","u":"/multi-scrobbler/configuration/sources/musikcube/","b":["Docs","Configuration","Scrobble Sources"]},{"i":183,"t":"Yamaha MusicCast","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":187,"t":"Subsonic","u":"/multi-scrobbler/configuration/sources/subsonic/","b":["Docs","Configuration","Scrobble Sources"]},{"i":191,"t":"Youtube Music","u":"/multi-scrobbler/configuration/sources/youtube-music/","b":["Docs","Configuration","Scrobble Sources"]},{"i":195,"t":"Client Development/Tutorial","u":"/multi-scrobbler/development/dev-client/","b":["Docs","Development"]},{"i":197,"t":"VLC","u":"/multi-scrobbler/configuration/sources/vlc/","b":["Docs","Configuration","Scrobble Sources"]},{"i":201,"t":"Webscrobbler","u":"/multi-scrobbler/configuration/sources/webscrobbler/","b":["Docs","Configuration","Scrobble Sources"]},{"i":209,"t":"Development","u":"/multi-scrobbler/development/dev-common/","b":["Docs","Development"]},{"i":226,"t":"Systemd","u":"/multi-scrobbler/installation/service/","b":["Docs","Installation"]},{"i":234,"t":"Flatpak","u":"/multi-scrobbler/development/flatpak/","b":["Docs","Development"]},{"i":247,"t":"FAQ","u":"/multi-scrobbler/FAQ/","b":["Docs"]},{"i":269,"t":"Quickstart","u":"/multi-scrobbler/quickstart/","b":["Docs"]},{"i":281,"t":"Overview","u":"/multi-scrobbler/updating/","b":["Docs","Updating"]},{"i":288,"t":"Overview","u":"/multi-scrobbler/","b":["Docs"]},{"i":310,"t":"Overview","u":"/multi-scrobbler/installation/","b":["Docs","Installation"]},{"i":322,"t":"Source Development/Tutorial","u":"/multi-scrobbler/development/dev-source/","b":["Docs","Development"]},{"i":344,"t":"Scrobble Modification","u":"/multi-scrobbler/configuration/transforms/","b":["Docs","Configuration"]}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/1",[0,2.207]],["t/10",[1,3.825]],["t/14",[0,2.207]],["t/36",[2,3.261]],["t/40",[3,3.261]],["t/44",[4,2.89]],["t/48",[5,3.261]],["t/55",[6,3.261]],["t/62",[0,2.207]],["t/77",[7,3.825]],["t/81",[8,3.825]],["t/89",[9,3.825]],["t/93",[10,2.256,11,2.256,12,2.256]],["t/97",[13,3.825]],["t/99",[14,3.825]],["t/105",[15,3.825]],["t/111",[16,2.256,17,2.256,18,2.256]],["t/117",[19,2.419,20,2.419]],["t/123",[4,2.144,20,2.419]],["t/131",[4,2.89]],["t/135",[3,3.261]],["t/139",[19,3.261]],["t/143",[2,3.261]],["t/145",[21,3.825]],["t/153",[22,1.872,23,1.596,24,1.872,25,1.872]],["t/157",[26,3.825]],["t/161",[5,3.261]],["t/167",[27,3.825]],["t/169",[28,3.825]],["t/173",[6,3.261]],["t/179",[29,3.825]],["t/183",[30,2.838,31,2.838]],["t/187",[32,3.825]],["t/191",[23,2.419,33,2.838]],["t/195",[34,2.838,35,2.419]],["t/197",[36,3.825]],["t/201",[37,3.825]],["t/209",[38,3.825]],["t/226",[39,3.825]],["t/234",[40,3.825]],["t/247",[41,3.825]],["t/269",[42,3.825]],["t/281",[0,2.207]],["t/288",[0,2.207]],["t/310",[0,2.207]],["t/322",[35,2.419,43,2.838]],["t/344",[44,2.838,45,2.838]]],"invertedIndex":[["azuracast",{"_index":7,"t":{"77":{"position":[[0,9]]}}}],["cast",{"_index":11,"t":{"93":{"position":[[7,4]]}}}],["chromecast",{"_index":12,"t":{"93":{"position":[[12,12]]}}}],["client",{"_index":34,"t":{"195":{"position":[[0,6]]}}}],["complex",{"_index":17,"t":{"111":{"position":[[8,7]]}}}],["daemon",{"_index":25,"t":{"153":{"position":[[18,7]]}}}],["deezer",{"_index":8,"t":{"81":{"position":[[0,6]]}}}],["develop",{"_index":38,"t":{"209":{"position":[[0,11]]}}}],["development/tutori",{"_index":35,"t":{"195":{"position":[[7,20]]},"322":{"position":[[7,20]]}}}],["endpoint",{"_index":20,"t":{"117":{"position":[[7,10]]},"123":{"position":[[13,10]]}}}],["exampl",{"_index":16,"t":{"111":{"position":[[0,7]]}}}],["faq",{"_index":41,"t":{"247":{"position":[[0,3]]}}}],["flatpak",{"_index":40,"t":{"234":{"position":[[0,7]]}}}],["googl",{"_index":10,"t":{"93":{"position":[[0,6]]}}}],["icecast",{"_index":9,"t":{"89":{"position":[[0,7]]}}}],["jellyfin",{"_index":13,"t":{"97":{"position":[[0,8]]}}}],["jriver",{"_index":14,"t":{"99":{"position":[[0,6]]}}}],["kodi",{"_index":15,"t":{"105":{"position":[[0,4]]}}}],["koito",{"_index":2,"t":{"36":{"position":[[0,5]]},"143":{"position":[[0,5]]}}}],["last.fm",{"_index":1,"t":{"10":{"position":[[0,7]]}}}],["lastfm",{"_index":19,"t":{"117":{"position":[[0,6]]},"139":{"position":[[0,6]]}}}],["listenbrainz",{"_index":4,"t":{"44":{"position":[[0,12]]},"123":{"position":[[0,12]]},"131":{"position":[[0,12]]}}}],["maloja",{"_index":3,"t":{"40":{"position":[[0,6]]},"135":{"position":[[0,6]]}}}],["modif",{"_index":45,"t":{"344":{"position":[[9,12]]}}}],["mopidi",{"_index":21,"t":{"145":{"position":[[0,6]]}}}],["mpd",{"_index":22,"t":{"153":{"position":[[0,3]]}}}],["mpri",{"_index":26,"t":{"157":{"position":[[0,5]]}}}],["music",{"_index":23,"t":{"153":{"position":[[4,6]]},"191":{"position":[[8,5]]}}}],["musiccast",{"_index":31,"t":{"183":{"position":[[7,9]]}}}],["musikcub",{"_index":29,"t":{"179":{"position":[[0,9]]}}}],["overview",{"_index":0,"t":{"1":{"position":[[0,8]]},"14":{"position":[[0,8]]},"62":{"position":[[0,8]]},"281":{"position":[[0,8]]},"288":{"position":[[0,8]]},"310":{"position":[[0,8]]}}}],["player",{"_index":24,"t":{"153":{"position":[[11,6]]}}}],["plex",{"_index":27,"t":{"167":{"position":[[0,4]]}}}],["quickstart",{"_index":42,"t":{"269":{"position":[[0,10]]}}}],["rockski",{"_index":5,"t":{"48":{"position":[[0,7]]},"161":{"position":[[0,7]]}}}],["scenario",{"_index":18,"t":{"111":{"position":[[16,8]]}}}],["scrobbl",{"_index":44,"t":{"344":{"position":[[0,8]]}}}],["sourc",{"_index":43,"t":{"322":{"position":[[0,6]]}}}],["spotifi",{"_index":28,"t":{"169":{"position":[[0,7]]}}}],["subson",{"_index":32,"t":{"187":{"position":[[0,8]]}}}],["systemd",{"_index":39,"t":{"226":{"position":[[0,7]]}}}],["teal.fm",{"_index":6,"t":{"55":{"position":[[0,7]]},"173":{"position":[[0,7]]}}}],["vlc",{"_index":36,"t":{"197":{"position":[[0,3]]}}}],["webscrobbl",{"_index":37,"t":{"201":{"position":[[0,12]]}}}],["yamaha",{"_index":30,"t":{"183":{"position":[[0,6]]}}}],["youtub",{"_index":33,"t":{"191":{"position":[[0,7]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":3,"t":"Clients","u":"/multi-scrobbler/configuration/clients/","h":"#clients","p":1},{"i":5,"t":"Features","u":"/multi-scrobbler/configuration/clients/","h":"#features","p":1},{"i":6,"t":"Dead Scrobbles","u":"/multi-scrobbler/configuration/clients/","h":"#dead-scrobbles","p":1},{"i":8,"t":"Now Playing","u":"/multi-scrobbler/configuration/clients/","h":"#now-playing","p":1},{"i":12,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/lastfm/","h":"#configuration","p":10},{"i":16,"t":"Configuration Types","u":"/multi-scrobbler/configuration/","h":"#configuration-types","p":14},{"i":18,"t":"Setup Sources and Clients","u":"/multi-scrobbler/configuration/","h":"#setup-sources-and-clients","p":14},{"i":20,"t":"Application Options","u":"/multi-scrobbler/configuration/","h":"#application-options","p":14},{"i":22,"t":"Base URL","u":"/multi-scrobbler/configuration/","h":"#base-url","p":14},{"i":24,"t":"Caching","u":"/multi-scrobbler/configuration/","h":"#caching","p":14},{"i":26,"t":"Debug Mode","u":"/multi-scrobbler/configuration/","h":"#debug-mode","p":14},{"i":28,"t":"Disable Web","u":"/multi-scrobbler/configuration/","h":"#disable-web","p":14},{"i":30,"t":"Monitoring","u":"/multi-scrobbler/configuration/","h":"#monitoring","p":14},{"i":32,"t":"Webhook Configurations","u":"/multi-scrobbler/configuration/","h":"#webhook-configurations","p":14},{"i":34,"t":"Health Endpoint","u":"/multi-scrobbler/configuration/","h":"#health-endpoint","p":14},{"i":38,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/koito/","h":"#configuration","p":36},{"i":42,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/maloja/","h":"#configuration","p":40},{"i":46,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/listenbrainz/","h":"#configuration","p":44},{"i":50,"t":"Setup","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#setup","p":48},{"i":52,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#configuration","p":48},{"i":53,"t":"Handle","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#handle","p":48},{"i":57,"t":"Setup","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#setup","p":55},{"i":59,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#configuration","p":55},{"i":60,"t":"Handle","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#handle","p":55},{"i":64,"t":"Sources","u":"/multi-scrobbler/configuration/sources/","h":"#sources","p":62},{"i":66,"t":"Features","u":"/multi-scrobbler/configuration/sources/","h":"#features","p":62},{"i":67,"t":"Types of Sources","u":"/multi-scrobbler/configuration/sources/","h":"#types-of-sources","p":62},{"i":69,"t":"Multi-Device/User","u":"/multi-scrobbler/configuration/sources/","h":"#multi-deviceuser","p":62},{"i":71,"t":"Limiting Scrobble Destination","u":"/multi-scrobbler/configuration/sources/","h":"#limiting-scrobble-destination","p":62},{"i":73,"t":"Scrobble Thresholds","u":"/multi-scrobbler/configuration/sources/","h":"#scrobble-thresholds","p":62},{"i":75,"t":"Should Scrobble Behavior","u":"/multi-scrobbler/configuration/sources/","h":"#should-scrobble-behavior","p":62},{"i":79,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/azuracast/","h":"#configuration","p":77},{"i":83,"t":"Retrieve ARL","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#retrieve-arl","p":81},{"i":85,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#configuration","p":81},{"i":87,"t":"Duplicate detection","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#duplicate-detection","p":81},{"i":91,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/icecast/","h":"#configuration","p":89},{"i":95,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/google-cast/","h":"#configuration","p":93},{"i":101,"t":"URL","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#url","p":99},{"i":103,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#configuration","p":99},{"i":107,"t":"URL","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#url","p":105},{"i":109,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#configuration","p":105},{"i":113,"t":"All-in-one Config","u":"/multi-scrobbler/configuration/kitchensink/","h":"#all-in-one-config","p":111},{"i":115,"t":"Separate JSON files","u":"/multi-scrobbler/configuration/kitchensink/","h":"#separate-json-files","p":111},{"i":119,"t":"URL","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#url","p":117},{"i":121,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#configuration","p":117},{"i":125,"t":"URL","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#url","p":123},{"i":127,"t":"Token","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#token","p":123},{"i":129,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#configuration","p":123},{"i":133,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","h":"#configuration","p":131},{"i":137,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/maloja/","h":"#configuration","p":135},{"i":141,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-source/","h":"#configuration","p":139},{"i":147,"t":"URI Blacklist/Whitelist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#uri-blacklistwhitelist","p":145},{"i":149,"t":"Album Blacklist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#album-blacklist","p":145},{"i":151,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#configuration","p":145},{"i":155,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/mpd/","h":"#configuration","p":153},{"i":159,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/mpris/","h":"#configuration","p":157},{"i":163,"t":"Setup","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#setup","p":161},{"i":165,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#configuration","p":161},{"i":171,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/spotify/","h":"#configuration","p":169},{"i":175,"t":"Setup","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#setup","p":173},{"i":177,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#configuration","p":173},{"i":181,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/musikcube/","h":"#configuration","p":179},{"i":185,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","h":"#configuration","p":183},{"i":189,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/subsonic/","h":"#configuration","p":187},{"i":193,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/youtube-music/","h":"#configuration","p":191},{"i":199,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/vlc/","h":"#configuration","p":197},{"i":203,"t":"Multiple Users","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#multiple-users","p":201},{"i":205,"t":"Connectors Black/Whitelist","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#connectors-blackwhitelist","p":201},{"i":207,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#configuration","p":201},{"i":210,"t":"Architecture","u":"/multi-scrobbler/development/dev-common/","h":"#architecture","p":209},{"i":212,"t":"Project Setup","u":"/multi-scrobbler/development/dev-common/","h":"#project-setup","p":209},{"i":214,"t":"VSCode","u":"/multi-scrobbler/development/dev-common/","h":"#vscode","p":209},{"i":216,"t":"Common Development","u":"/multi-scrobbler/development/dev-common/","h":"#common-development","p":209},{"i":218,"t":"Config","u":"/multi-scrobbler/development/dev-common/","h":"#config","p":209},{"i":220,"t":"Concrete Class","u":"/multi-scrobbler/development/dev-common/","h":"#concrete-class","p":209},{"i":222,"t":"Play Object","u":"/multi-scrobbler/development/dev-common/","h":"#play-object","p":209},{"i":224,"t":"Creating Clients and Sources","u":"/multi-scrobbler/development/dev-common/","h":"#creating-clients-and-sources","p":209},{"i":228,"t":"Create A Unit File","u":"/multi-scrobbler/installation/service/","h":"#create-a-unit-file","p":226},{"i":230,"t":"Start the Service","u":"/multi-scrobbler/installation/service/","h":"#start-the-service","p":226},{"i":232,"t":"Other Service Methods","u":"/multi-scrobbler/installation/service/","h":"","p":226},{"i":235,"t":"Install Requirements","u":"/multi-scrobbler/development/flatpak/","h":"#install-requirements","p":234},{"i":236,"t":"Flatpak and flatpak-builder","u":"/multi-scrobbler/development/flatpak/","h":"#flatpak-and-flatpak-builder","p":234},{"i":238,"t":"Update Project source","u":"/multi-scrobbler/development/flatpak/","h":"#update-project-source","p":234},{"i":240,"t":"Generate Sources and Build","u":"/multi-scrobbler/development/flatpak/","h":"#generate-sources-and-build","p":234},{"i":241,"t":"Use Setup Script","u":"/multi-scrobbler/development/flatpak/","h":"#use-setup-script","p":234},{"i":243,"t":"Manual Setup","u":"/multi-scrobbler/development/flatpak/","h":"#manual-setup","p":234},{"i":245,"t":"Run App","u":"/multi-scrobbler/development/flatpak/","h":"","p":234},{"i":248,"t":"Connection Issues","u":"/multi-scrobbler/FAQ/","h":"#connection-issues","p":247},{"i":249,"t":"Webscrobbler/Listenbrainz Endpoint doesn't connect","u":"/multi-scrobbler/FAQ/","h":"#ingress-connection","p":247},{"i":251,"t":"Spotify/Deezer/LastFM won't authenticate","u":"/multi-scrobbler/FAQ/","h":"#spotifydeezerlastfm-wont-authenticate","p":247},{"i":253,"t":"Youtube Music fails after some time","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-fails-after-some-time","p":247},{"i":255,"t":"Configuration Issues","u":"/multi-scrobbler/FAQ/","h":"#configuration-issues","p":247},{"i":256,"t":"Config could not be parsed","u":"/multi-scrobbler/FAQ/","h":"#config-could-not-be-parsed","p":247},{"i":258,"t":"Scrobbling Issues","u":"/multi-scrobbler/FAQ/","h":"#scrobbling-issues","p":247},{"i":259,"t":"Last.fm does not scrobble tracks with multiple artists correctly","u":"/multi-scrobbler/FAQ/","h":"#lastfm-does-not-scrobble-tracks-with-multiple-artists-correctly","p":247},{"i":261,"t":"Google Cast track information is missing/incorrect or MS player has weird times","u":"/multi-scrobbler/FAQ/","h":"#google-cast-track-information-is-missingincorrect-or-ms-player-has-weird-times","p":247},{"i":263,"t":"Google Cast device does not track media","u":"/multi-scrobbler/FAQ/","h":"#google-cast-device-does-not-track-media","p":247},{"i":265,"t":"VLC is not scrobbling fields correctly","u":"/multi-scrobbler/FAQ/","h":"#vlc-is-not-scrobbling-fields-correctly","p":247},{"i":267,"t":"Youtube Music misses or duplicates scrobbles","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-misses-or-duplicates-scrobbles","p":247},{"i":271,"t":"Create Docker Compose File","u":"/multi-scrobbler/quickstart/","h":"#create-docker-compose-file","p":269},{"i":273,"t":"Setup Sources","u":"/multi-scrobbler/quickstart/","h":"#setup-sources","p":269},{"i":275,"t":"Setup Clients","u":"/multi-scrobbler/quickstart/","h":"#setup-clients","p":269},{"i":277,"t":"Start Multi-Scrobbler","u":"/multi-scrobbler/quickstart/","h":"#start-multi-scrobbler","p":269},{"i":279,"t":"Next Steps","u":"/multi-scrobbler/quickstart/","h":"#next-steps","p":269},{"i":282,"t":"Updating","u":"/multi-scrobbler/updating/","h":"#updating","p":281},{"i":284,"t":"Docker","u":"/multi-scrobbler/updating/","h":"#docker","p":281},{"i":286,"t":"Nodejs","u":"/multi-scrobbler/updating/","h":"#nodejs","p":281},{"i":290,"t":"How Does multi-scrobbler (MS) Work?","u":"/multi-scrobbler/","h":"#how-does-multi-scrobbler-ms-work","p":288},{"i":292,"t":"Source","u":"/multi-scrobbler/","h":"#source","p":288},{"i":294,"t":"Client","u":"/multi-scrobbler/","h":"#client","p":288},{"i":296,"t":"Quick Start","u":"/multi-scrobbler/","h":"#quick-start","p":288},{"i":298,"t":"Installation","u":"/multi-scrobbler/","h":"#installation","p":288},{"i":300,"t":"Configuration","u":"/multi-scrobbler/","h":"#configuration","p":288},{"i":302,"t":"Usage","u":"/multi-scrobbler/","h":"#usage","p":288},{"i":304,"t":"Help/FAQ","u":"/multi-scrobbler/","h":"#helpfaq","p":288},{"i":306,"t":"Development","u":"/multi-scrobbler/","h":"#development","p":288},{"i":308,"t":"License","u":"/multi-scrobbler/","h":"#license","p":288},{"i":312,"t":"Docker","u":"/multi-scrobbler/installation/","h":"#docker","p":310},{"i":314,"t":"Docker Usage Example","u":"/multi-scrobbler/installation/","h":"#docker-usage-example","p":310},{"i":316,"t":"Local Installation","u":"/multi-scrobbler/installation/","h":"#local-installation","p":310},{"i":318,"t":"Nodejs","u":"/multi-scrobbler/installation/","h":"#nodejs","p":310},{"i":320,"t":"Flatpak","u":"/multi-scrobbler/installation/","h":"#flatpak","p":310},{"i":324,"t":"Scenario","u":"/multi-scrobbler/development/dev-source/","h":"#scenario","p":322},{"i":326,"t":"Minimal Implementation","u":"/multi-scrobbler/development/dev-source/","h":"#minimal-implementation","p":322},{"i":327,"t":"Define and Implement Config","u":"/multi-scrobbler/development/dev-source/","h":"#define-and-implement-config","p":322},{"i":329,"t":"Create CoolPlayer Source","u":"/multi-scrobbler/development/dev-source/","h":"#create-coolplayer-source","p":322},{"i":331,"t":"Initialize Source from Config","u":"/multi-scrobbler/development/dev-source/","h":"#initialize-source-from-config","p":322},{"i":333,"t":"Implement Play Object Transform","u":"/multi-scrobbler/development/dev-source/","h":"#implement-play-object-transform","p":322},{"i":335,"t":"Implement Stages","u":"/multi-scrobbler/development/dev-source/","h":"#implement-stages","p":322},{"i":337,"t":"Implement Polling","u":"/multi-scrobbler/development/dev-source/","h":"#implement-polling","p":322},{"i":339,"t":"Further Implementation","u":"/multi-scrobbler/development/dev-source/","h":"#further-implementation","p":322},{"i":340,"t":"Backlog","u":"/multi-scrobbler/development/dev-source/","h":"#backlog","p":322},{"i":342,"t":"Other Source Types","u":"/multi-scrobbler/development/dev-source/","h":"#other-source-types","p":322},{"i":346,"t":"Why?","u":"/multi-scrobbler/configuration/transforms/","h":"#why","p":344},{"i":348,"t":"Overview","u":"/multi-scrobbler/configuration/transforms/","h":"#overview","p":344},{"i":349,"t":"Journey of a Scrobble","u":"/multi-scrobbler/configuration/transforms/","h":"#journey-of-a-scrobble","p":344},{"i":351,"t":"Lifecyle Hooks","u":"/multi-scrobbler/configuration/transforms/","h":"#lifecyle-hooks","p":344},{"i":353,"t":"Modification Parts","u":"/multi-scrobbler/configuration/transforms/","h":"#modification-parts","p":344},{"i":355,"t":"Conditional Modification","u":"/multi-scrobbler/configuration/transforms/","h":"#conditional-modification","p":344},{"i":357,"t":"Logging","u":"/multi-scrobbler/configuration/transforms/","h":"#logging","p":344},{"i":359,"t":"Examples","u":"/multi-scrobbler/configuration/transforms/","h":"#examples","p":344},{"i":360,"t":"Remove phrase from Title in all new Plays","u":"/multi-scrobbler/configuration/transforms/","h":"#remove-phrase-from-title-in-all-new-plays","p":344},{"i":362,"t":"Remove all parenthesized content from the end of a title","u":"/multi-scrobbler/configuration/transforms/","h":"#remove-all-parenthesized-content-from-the-end-of-a-title","p":344},{"i":364,"t":"Rename misspelled artist in all new Plays","u":"/multi-scrobbler/configuration/transforms/","h":"#rename-misspelled-artist-in-all-new-plays","p":344},{"i":366,"t":"Remove \"Various Artists\" albums in all new Plays","u":"/multi-scrobbler/configuration/transforms/","h":"#remove-various-artists-albums-in-all-new-plays","p":344},{"i":368,"t":"Extract primary Artist from delimited, multi-Artist string","u":"/multi-scrobbler/configuration/transforms/","h":"#extract-primary-artist-from-delimited-multi-artist-string","p":344}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/3",[0,4.101]],["t/5",[1,5.085]],["t/6",[2,4.533,3,2.708]],["t/8",[4,4.533,5,3.083]],["t/12",[6,1.846]],["t/16",[6,1.462,7,3.695]],["t/18",[0,2.689,8,2.16,9,2.085]],["t/20",[10,4.533,11,4.533]],["t/22",[12,4.533,13,3.248]],["t/24",[14,5.723]],["t/26",[15,4.533,16,4.533]],["t/28",[17,4.533,18,4.533]],["t/30",[19,5.723]],["t/32",[6,1.462,20,4.533]],["t/34",[21,4.533,22,4.028]],["t/38",[6,1.846]],["t/42",[6,1.846]],["t/46",[6,1.846]],["t/50",[8,3.294]],["t/52",[6,1.846]],["t/53",[23,5.085]],["t/57",[8,3.294]],["t/59",[6,1.846]],["t/60",[23,5.085]],["t/64",[9,3.18]],["t/66",[1,5.085]],["t/67",[7,3.695,9,2.519]],["t/69",[24,3.447,25,4.533]],["t/71",[3,2.242,26,3.753,27,3.753]],["t/73",[3,2.708,28,4.533]],["t/75",[3,2.708,29,4.533]],["t/79",[6,1.846]],["t/83",[30,4.533,31,4.533]],["t/85",[6,1.846]],["t/87",[32,4.028,33,4.533]],["t/91",[6,1.846]],["t/95",[6,1.846]],["t/101",[13,4.101]],["t/103",[6,1.846]],["t/107",[13,4.101]],["t/109",[6,1.846]],["t/113",[34,4.533,35,3.248]],["t/115",[36,3.753,37,3.753,38,3.059]],["t/119",[13,4.101]],["t/121",[6,1.846]],["t/125",[13,4.101]],["t/127",[39,5.723]],["t/129",[6,1.846]],["t/133",[6,1.846]],["t/137",[6,1.846]],["t/141",[6,1.846]],["t/147",[40,4.533,41,4.533]],["t/149",[42,4.028,43,4.533]],["t/151",[6,1.846]],["t/155",[6,1.846]],["t/159",[6,1.846]],["t/163",[8,3.294]],["t/165",[6,1.846]],["t/171",[6,1.846]],["t/175",[8,3.294]],["t/177",[6,1.846]],["t/181",[6,1.846]],["t/185",[6,1.846]],["t/189",[6,1.846]],["t/193",[6,1.846]],["t/199",[6,1.846]],["t/203",[44,4.028,45,4.533]],["t/205",[46,4.533,47,4.533]],["t/207",[6,1.846]],["t/210",[48,5.723]],["t/212",[8,2.609,49,4.028]],["t/214",[50,5.723]],["t/216",[51,4.533,52,4.028]],["t/218",[35,4.101]],["t/220",[53,4.533,54,4.533]],["t/222",[5,3.083,55,4.028]],["t/224",[0,2.689,9,2.085,56,2.853]],["t/228",[38,3.059,56,2.853,57,3.753]],["t/230",[58,3.695,59,4.028]],["t/232",[59,4.028,60,4.533]],["t/235",[61,3.695,62,4.533]],["t/236",[63,4.861,64,3.753]],["t/238",[9,2.085,49,3.334,65,3.334]],["t/240",[9,2.085,66,3.753,67,3.753]],["t/241",[8,2.16,68,3.753,69,3.753]],["t/243",[8,2.609,70,4.533]],["t/245",[71,4.533,72,4.533]],["t/248",[73,4.028,74,3.695]],["t/249",[22,2.845,73,2.845,75,3.201,76,3.201]],["t/251",[77,3.753,78,3.753,79,3.753]],["t/253",[80,2.845,81,2.845,82,3.201,83,2.845]],["t/255",[6,1.462,74,3.695]],["t/256",[35,3.248,84,4.533]],["t/258",[3,2.708,74,3.695]],["t/259",[3,1.478,44,2.199,85,2.475,86,2.017,87,1.882,88,2.199]],["t/261",[83,1.64,86,1.505,89,1.64,90,1.64,91,1.846,92,1.846,93,1.64,94,1.846,95,1.846]],["t/263",[86,2.276,89,2.481,90,2.481,96,2.792,97,2.792]],["t/265",[3,1.913,88,2.845,98,3.201,99,3.201]],["t/267",[3,1.668,32,2.481,80,2.481,81,2.481,100,2.792]],["t/271",[38,2.61,56,2.434,101,2.434,102,3.201]],["t/273",[8,2.609,9,2.519]],["t/275",[0,3.248,8,2.609]],["t/277",[24,2.853,58,3.059,103,3.334]],["t/279",[104,4.533,105,4.533]],["t/282",[65,5.085]],["t/284",[101,4.351]],["t/286",[106,5.085]],["t/290",[24,2.434,93,2.845,103,2.845,107,3.201]],["t/292",[9,3.18]],["t/294",[0,4.101]],["t/296",[58,3.695,108,4.533]],["t/298",[61,4.665]],["t/300",[6,1.846]],["t/302",[109,5.085]],["t/304",[110,5.723]],["t/306",[52,5.085]],["t/308",[111,5.723]],["t/312",[101,4.351]],["t/314",[101,2.853,109,3.334,112,3.334]],["t/316",[61,3.695,113,4.533]],["t/318",[106,5.085]],["t/320",[63,5.085]],["t/324",[114,5.723]],["t/326",[115,4.533,116,3.083]],["t/327",[35,2.689,116,2.552,117,3.753]],["t/329",[9,2.085,56,2.853,118,3.753]],["t/331",[9,2.085,35,2.689,119,3.753]],["t/333",[5,2.178,55,2.845,116,2.178,120,3.201]],["t/335",[116,3.083,121,4.533]],["t/337",[116,3.083,122,4.533]],["t/339",[116,3.083,123,4.533]],["t/340",[124,5.723]],["t/342",[7,3.695,9,2.519]],["t/346",[]],["t/348",[125,5.723]],["t/349",[3,2.708,126,4.533]],["t/351",[127,4.533,128,4.533]],["t/353",[129,4.028,130,4.533]],["t/355",[129,4.028,131,4.533]],["t/357",[132,5.723]],["t/359",[112,5.085]],["t/360",[5,1.899,133,2.276,134,2.792,135,2.481,136,2.276]],["t/362",[133,2.276,135,2.481,137,2.792,138,2.792,139,2.792]],["t/364",[5,1.899,87,2.123,136,2.276,140,2.792,141,2.792]],["t/366",[5,1.683,42,2.199,87,1.882,133,2.017,136,2.017,142,2.475]],["t/368",[24,1.69,87,2.77,143,2.222,144,2.222,145,2.222,146,2.222]]],"invertedIndex":[["album",{"_index":42,"t":{"149":{"position":[[0,5]]},"366":{"position":[[25,6]]}}}],["app",{"_index":72,"t":{"245":{"position":[[4,3]]}}}],["applic",{"_index":10,"t":{"20":{"position":[[0,11]]}}}],["architectur",{"_index":48,"t":{"210":{"position":[[0,12]]}}}],["arl",{"_index":31,"t":{"83":{"position":[[9,3]]}}}],["artist",{"_index":87,"t":{"259":{"position":[[47,7]]},"364":{"position":[[18,6]]},"366":{"position":[[16,8]]},"368":{"position":[[16,6],[45,6]]}}}],["authent",{"_index":79,"t":{"251":{"position":[[28,12]]}}}],["backlog",{"_index":124,"t":{"340":{"position":[[0,7]]}}}],["base",{"_index":12,"t":{"22":{"position":[[0,4]]}}}],["behavior",{"_index":29,"t":{"75":{"position":[[16,8]]}}}],["black/whitelist",{"_index":47,"t":{"205":{"position":[[11,15]]}}}],["blacklist",{"_index":43,"t":{"149":{"position":[[6,9]]}}}],["blacklist/whitelist",{"_index":41,"t":{"147":{"position":[[4,19]]}}}],["build",{"_index":67,"t":{"240":{"position":[[21,5]]}}}],["builder",{"_index":64,"t":{"236":{"position":[[20,7]]}}}],["cach",{"_index":14,"t":{"24":{"position":[[0,7]]}}}],["cast",{"_index":90,"t":{"261":{"position":[[7,4]]},"263":{"position":[[7,4]]}}}],["class",{"_index":54,"t":{"220":{"position":[[9,5]]}}}],["client",{"_index":0,"t":{"3":{"position":[[0,7]]},"18":{"position":[[18,7]]},"224":{"position":[[9,7]]},"275":{"position":[[6,7]]},"294":{"position":[[0,6]]}}}],["common",{"_index":51,"t":{"216":{"position":[[0,6]]}}}],["compos",{"_index":102,"t":{"271":{"position":[[14,7]]}}}],["concret",{"_index":53,"t":{"220":{"position":[[0,8]]}}}],["condit",{"_index":131,"t":{"355":{"position":[[0,11]]}}}],["config",{"_index":35,"t":{"113":{"position":[[11,6]]},"218":{"position":[[0,6]]},"256":{"position":[[0,6]]},"327":{"position":[[21,6]]},"331":{"position":[[23,6]]}}}],["configur",{"_index":6,"t":{"12":{"position":[[0,13]]},"16":{"position":[[0,13]]},"32":{"position":[[8,14]]},"38":{"position":[[0,13]]},"42":{"position":[[0,13]]},"46":{"position":[[0,13]]},"52":{"position":[[0,13]]},"59":{"position":[[0,13]]},"79":{"position":[[0,13]]},"85":{"position":[[0,13]]},"91":{"position":[[0,13]]},"95":{"position":[[0,13]]},"103":{"position":[[0,13]]},"109":{"position":[[0,13]]},"121":{"position":[[0,13]]},"129":{"position":[[0,13]]},"133":{"position":[[0,13]]},"137":{"position":[[0,13]]},"141":{"position":[[0,13]]},"151":{"position":[[0,13]]},"155":{"position":[[0,13]]},"159":{"position":[[0,13]]},"165":{"position":[[0,13]]},"171":{"position":[[0,13]]},"177":{"position":[[0,13]]},"181":{"position":[[0,13]]},"185":{"position":[[0,13]]},"189":{"position":[[0,13]]},"193":{"position":[[0,13]]},"199":{"position":[[0,13]]},"207":{"position":[[0,13]]},"255":{"position":[[0,13]]},"300":{"position":[[0,13]]}}}],["connect",{"_index":73,"t":{"248":{"position":[[0,10]]},"249":{"position":[[43,7]]}}}],["connector",{"_index":46,"t":{"205":{"position":[[0,10]]}}}],["content",{"_index":138,"t":{"362":{"position":[[25,7]]}}}],["coolplay",{"_index":118,"t":{"329":{"position":[[7,10]]}}}],["correctli",{"_index":88,"t":{"259":{"position":[[55,9]]},"265":{"position":[[29,9]]}}}],["creat",{"_index":56,"t":{"224":{"position":[[0,8]]},"228":{"position":[[0,6]]},"271":{"position":[[0,6]]},"329":{"position":[[0,6]]}}}],["dead",{"_index":2,"t":{"6":{"position":[[0,4]]}}}],["debug",{"_index":15,"t":{"26":{"position":[[0,5]]}}}],["defin",{"_index":117,"t":{"327":{"position":[[0,6]]}}}],["delimit",{"_index":145,"t":{"368":{"position":[[28,10]]}}}],["destin",{"_index":27,"t":{"71":{"position":[[18,11]]}}}],["detect",{"_index":33,"t":{"87":{"position":[[10,9]]}}}],["develop",{"_index":52,"t":{"216":{"position":[[7,11]]},"306":{"position":[[0,11]]}}}],["devic",{"_index":96,"t":{"263":{"position":[[12,6]]}}}],["device/us",{"_index":25,"t":{"69":{"position":[[6,11]]}}}],["disabl",{"_index":17,"t":{"28":{"position":[[0,7]]}}}],["docker",{"_index":101,"t":{"271":{"position":[[7,6]]},"284":{"position":[[0,6]]},"312":{"position":[[0,6]]},"314":{"position":[[0,6]]}}}],["doesn't",{"_index":76,"t":{"249":{"position":[[35,7]]}}}],["duplic",{"_index":32,"t":{"87":{"position":[[0,9]]},"267":{"position":[[24,10]]}}}],["end",{"_index":139,"t":{"362":{"position":[[42,3]]}}}],["endpoint",{"_index":22,"t":{"34":{"position":[[7,8]]},"249":{"position":[[26,8]]}}}],["exampl",{"_index":112,"t":{"314":{"position":[[13,7]]},"359":{"position":[[0,8]]}}}],["extract",{"_index":143,"t":{"368":{"position":[[0,7]]}}}],["fail",{"_index":82,"t":{"253":{"position":[[14,5]]}}}],["featur",{"_index":1,"t":{"5":{"position":[[0,8]]},"66":{"position":[[0,8]]}}}],["field",{"_index":99,"t":{"265":{"position":[[22,6]]}}}],["file",{"_index":38,"t":{"115":{"position":[[14,5]]},"228":{"position":[[14,4]]},"271":{"position":[[22,4]]}}}],["flatpak",{"_index":63,"t":{"236":{"position":[[0,7],[12,7]]},"320":{"position":[[0,7]]}}}],["further",{"_index":123,"t":{"339":{"position":[[0,7]]}}}],["gener",{"_index":66,"t":{"240":{"position":[[0,8]]}}}],["googl",{"_index":89,"t":{"261":{"position":[[0,6]]},"263":{"position":[[0,6]]}}}],["handl",{"_index":23,"t":{"53":{"position":[[0,6]]},"60":{"position":[[0,6]]}}}],["health",{"_index":21,"t":{"34":{"position":[[0,6]]}}}],["help/faq",{"_index":110,"t":{"304":{"position":[[0,8]]}}}],["hook",{"_index":128,"t":{"351":{"position":[[9,5]]}}}],["implement",{"_index":116,"t":{"326":{"position":[[8,14]]},"327":{"position":[[11,9]]},"333":{"position":[[0,9]]},"335":{"position":[[0,9]]},"337":{"position":[[0,9]]},"339":{"position":[[8,14]]}}}],["inform",{"_index":91,"t":{"261":{"position":[[18,11]]}}}],["initi",{"_index":119,"t":{"331":{"position":[[0,10]]}}}],["instal",{"_index":61,"t":{"235":{"position":[[0,7]]},"298":{"position":[[0,12]]},"316":{"position":[[6,12]]}}}],["issu",{"_index":74,"t":{"248":{"position":[[11,6]]},"255":{"position":[[14,6]]},"258":{"position":[[11,6]]}}}],["journey",{"_index":126,"t":{"349":{"position":[[0,7]]}}}],["json",{"_index":37,"t":{"115":{"position":[[9,4]]}}}],["last.fm",{"_index":85,"t":{"259":{"position":[[0,7]]}}}],["licens",{"_index":111,"t":{"308":{"position":[[0,7]]}}}],["lifecyl",{"_index":127,"t":{"351":{"position":[[0,8]]}}}],["limit",{"_index":26,"t":{"71":{"position":[[0,8]]}}}],["local",{"_index":113,"t":{"316":{"position":[[0,5]]}}}],["log",{"_index":132,"t":{"357":{"position":[[0,7]]}}}],["manual",{"_index":70,"t":{"243":{"position":[[0,6]]}}}],["media",{"_index":97,"t":{"263":{"position":[[34,5]]}}}],["method",{"_index":60,"t":{"232":{"position":[[14,7]]}}}],["minim",{"_index":115,"t":{"326":{"position":[[0,7]]}}}],["miss",{"_index":100,"t":{"267":{"position":[[14,6]]}}}],["missing/incorrect",{"_index":92,"t":{"261":{"position":[[33,17]]}}}],["misspel",{"_index":141,"t":{"364":{"position":[[7,10]]}}}],["mode",{"_index":16,"t":{"26":{"position":[[6,4]]}}}],["modif",{"_index":129,"t":{"353":{"position":[[0,12]]},"355":{"position":[[12,12]]}}}],["monitor",{"_index":19,"t":{"30":{"position":[[0,10]]}}}],["ms",{"_index":93,"t":{"261":{"position":[[54,2]]},"290":{"position":[[25,4]]}}}],["multi",{"_index":24,"t":{"69":{"position":[[0,5]]},"277":{"position":[[6,5]]},"290":{"position":[[9,5]]},"368":{"position":[[39,5]]}}}],["multipl",{"_index":44,"t":{"203":{"position":[[0,8]]},"259":{"position":[[38,8]]}}}],["music",{"_index":81,"t":{"253":{"position":[[8,5]]},"267":{"position":[[8,5]]}}}],["new",{"_index":136,"t":{"360":{"position":[[32,3]]},"364":{"position":[[32,3]]},"366":{"position":[[39,3]]}}}],["next",{"_index":104,"t":{"279":{"position":[[0,4]]}}}],["nodej",{"_index":106,"t":{"286":{"position":[[0,6]]},"318":{"position":[[0,6]]}}}],["now",{"_index":4,"t":{"8":{"position":[[0,3]]}}}],["object",{"_index":55,"t":{"222":{"position":[[5,6]]},"333":{"position":[[15,6]]}}}],["on",{"_index":34,"t":{"113":{"position":[[7,3]]}}}],["option",{"_index":11,"t":{"20":{"position":[[12,7]]}}}],["overview",{"_index":125,"t":{"348":{"position":[[0,8]]}}}],["parenthes",{"_index":137,"t":{"362":{"position":[[11,13]]}}}],["pars",{"_index":84,"t":{"256":{"position":[[20,6]]}}}],["part",{"_index":130,"t":{"353":{"position":[[13,5]]}}}],["phrase",{"_index":134,"t":{"360":{"position":[[7,6]]}}}],["play",{"_index":5,"t":{"8":{"position":[[4,7]]},"222":{"position":[[0,4]]},"333":{"position":[[10,4]]},"360":{"position":[[36,5]]},"364":{"position":[[36,5]]},"366":{"position":[[43,5]]}}}],["player",{"_index":94,"t":{"261":{"position":[[57,6]]}}}],["poll",{"_index":122,"t":{"337":{"position":[[10,7]]}}}],["primari",{"_index":144,"t":{"368":{"position":[[8,7]]}}}],["project",{"_index":49,"t":{"212":{"position":[[0,7]]},"238":{"position":[[7,7]]}}}],["quick",{"_index":108,"t":{"296":{"position":[[0,5]]}}}],["remov",{"_index":133,"t":{"360":{"position":[[0,6]]},"362":{"position":[[0,6]]},"366":{"position":[[0,6]]}}}],["renam",{"_index":140,"t":{"364":{"position":[[0,6]]}}}],["requir",{"_index":62,"t":{"235":{"position":[[8,12]]}}}],["retriev",{"_index":30,"t":{"83":{"position":[[0,8]]}}}],["run",{"_index":71,"t":{"245":{"position":[[0,3]]}}}],["scenario",{"_index":114,"t":{"324":{"position":[[0,8]]}}}],["script",{"_index":69,"t":{"241":{"position":[[10,6]]}}}],["scrobbl",{"_index":3,"t":{"6":{"position":[[5,9]]},"71":{"position":[[9,8]]},"73":{"position":[[0,8]]},"75":{"position":[[7,8]]},"258":{"position":[[0,10]]},"259":{"position":[[17,8]]},"265":{"position":[[11,10]]},"267":{"position":[[35,9]]},"349":{"position":[[13,8]]}}}],["scrobbler",{"_index":103,"t":{"277":{"position":[[12,9]]},"290":{"position":[[15,9]]}}}],["separ",{"_index":36,"t":{"115":{"position":[[0,8]]}}}],["servic",{"_index":59,"t":{"230":{"position":[[10,7]]},"232":{"position":[[6,7]]}}}],["setup",{"_index":8,"t":{"18":{"position":[[0,5]]},"50":{"position":[[0,5]]},"57":{"position":[[0,5]]},"163":{"position":[[0,5]]},"175":{"position":[[0,5]]},"212":{"position":[[8,5]]},"241":{"position":[[4,5]]},"243":{"position":[[7,5]]},"273":{"position":[[0,5]]},"275":{"position":[[0,5]]}}}],["sourc",{"_index":9,"t":{"18":{"position":[[6,7]]},"64":{"position":[[0,7]]},"67":{"position":[[9,7]]},"224":{"position":[[21,7]]},"238":{"position":[[15,6]]},"240":{"position":[[9,7]]},"273":{"position":[[6,7]]},"292":{"position":[[0,6]]},"329":{"position":[[18,6]]},"331":{"position":[[11,6]]},"342":{"position":[[6,6]]}}}],["spotify/deezer/lastfm",{"_index":77,"t":{"251":{"position":[[0,21]]}}}],["stage",{"_index":121,"t":{"335":{"position":[[10,6]]}}}],["start",{"_index":58,"t":{"230":{"position":[[0,5]]},"277":{"position":[[0,5]]},"296":{"position":[[6,5]]}}}],["step",{"_index":105,"t":{"279":{"position":[[5,5]]}}}],["string",{"_index":146,"t":{"368":{"position":[[52,6]]}}}],["threshold",{"_index":28,"t":{"73":{"position":[[9,10]]}}}],["time",{"_index":83,"t":{"253":{"position":[[31,4]]},"261":{"position":[[74,5]]}}}],["titl",{"_index":135,"t":{"360":{"position":[[19,5]]},"362":{"position":[[51,5]]}}}],["token",{"_index":39,"t":{"127":{"position":[[0,5]]}}}],["track",{"_index":86,"t":{"259":{"position":[[26,6]]},"261":{"position":[[12,5]]},"263":{"position":[[28,5]]}}}],["transform",{"_index":120,"t":{"333":{"position":[[22,9]]}}}],["type",{"_index":7,"t":{"16":{"position":[[14,5]]},"67":{"position":[[0,5]]},"342":{"position":[[13,5]]}}}],["unit",{"_index":57,"t":{"228":{"position":[[9,4]]}}}],["updat",{"_index":65,"t":{"238":{"position":[[0,6]]},"282":{"position":[[0,8]]}}}],["uri",{"_index":40,"t":{"147":{"position":[[0,3]]}}}],["url",{"_index":13,"t":{"22":{"position":[[5,3]]},"101":{"position":[[0,3]]},"107":{"position":[[0,3]]},"119":{"position":[[0,3]]},"125":{"position":[[0,3]]}}}],["us",{"_index":68,"t":{"241":{"position":[[0,3]]}}}],["usag",{"_index":109,"t":{"302":{"position":[[0,5]]},"314":{"position":[[7,5]]}}}],["user",{"_index":45,"t":{"203":{"position":[[9,5]]}}}],["variou",{"_index":142,"t":{"366":{"position":[[7,8]]}}}],["vlc",{"_index":98,"t":{"265":{"position":[[0,3]]}}}],["vscode",{"_index":50,"t":{"214":{"position":[[0,6]]}}}],["web",{"_index":18,"t":{"28":{"position":[[8,3]]}}}],["webhook",{"_index":20,"t":{"32":{"position":[[0,7]]}}}],["webscrobbler/listenbrainz",{"_index":75,"t":{"249":{"position":[[0,25]]}}}],["weird",{"_index":95,"t":{"261":{"position":[[68,5]]}}}],["won't",{"_index":78,"t":{"251":{"position":[[22,5]]}}}],["work",{"_index":107,"t":{"290":{"position":[[30,5]]}}}],["youtub",{"_index":80,"t":{"253":{"position":[[0,7]]},"267":{"position":[[0,7]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":1,"t":"A Client is an application that stores the historical information about what songs you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz...","s":"Overview","u":"/multi-scrobbler/configuration/clients/","p":1},{"i":10,"t":"* To monitor and re-scrobble activity from your Last.fm account create a Last.fm (Source)","s":"Last.fm","u":"/multi-scrobbler/configuration/clients/lastfm/","p":10},{"i":14,"t":"Check the FAQ if you have any issues after configuration!","s":"Overview","u":"/multi-scrobbler/configuration/","p":14},{"i":36,"t":"To monitor and re-scrobble activity from a Koito account create a Koito (Source)","s":"Koito","u":"/multi-scrobbler/configuration/clients/koito/","p":36},{"i":40,"t":"Setup a Maloja server if you have not already done this.","s":"Maloja","u":"/multi-scrobbler/configuration/clients/maloja/","p":40},{"i":44,"t":"* To monitor and re-scrobble activity from a Listenbrainz account create a Listenbrainz (Source)","s":"Listenbrainz","u":"/multi-scrobbler/configuration/clients/listenbrainz/","p":44},{"i":48,"t":"To monitor and re-scrobble activity from Rocksky create a Rocksky (Source)","s":"Rocksky","u":"/multi-scrobbler/configuration/clients/rocksky/","p":48},{"i":55,"t":"To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source)","s":"Teal.fm","u":"/multi-scrobbler/configuration/clients/tealfm/","p":55},{"i":62,"t":"A Source is a data source that contains information about tracks you are playing like a music player or platform. Examples are Spotify, Jellyfin, Plex, Youtube Music, Airsonic, etc...","s":"Overview","u":"/multi-scrobbler/configuration/sources/","p":62},{"i":77,"t":"Azuracast may not correctly report track length or position. If this is the case you should reduce the \"listened to\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly.","s":"Azuracast","u":"/multi-scrobbler/configuration/sources/azuracast/","p":77},{"i":81,"t":"This Source uses unofficial methods to access Deezer data that are likely in violation of Deezer's TOS. Deezer may change or remove these methods at any time, breaking functionality. Use this Source at your own risk.","s":"Deezer","u":"/multi-scrobbler/configuration/sources/deezer/","p":81},{"i":89,"t":"Parse metadata from any Icecast Station (streams) to use for scrobbling.","s":"Icecast","u":"/multi-scrobbler/configuration/sources/icecast/","p":89},{"i":93,"t":"If your media device can be Cast to using this button Chromecast Icon on your phone/computer then multi-scrobbler can monitor it in order to scrobble music you play.","s":"Google Cast (Chromecast)","u":"/multi-scrobbler/configuration/sources/google-cast/","p":93},{"i":97,"t":"Must be using Jellyfin 10.7 or greater","s":"Jellyfin","u":"/multi-scrobbler/configuration/sources/jellyfin/","p":97},{"i":99,"t":"In order for multi-scrobbler to communicate with JRiver you must have Web Server Interface enabled. This can can be in the JRiver GUI:","s":"JRiver","u":"/multi-scrobbler/configuration/sources/jriver/","p":99},{"i":105,"t":"In order for multi-scrobbler to communicate with Kodi you must have the Web Interface enabled. This can be done in the Kodi GUI:","s":"Kodi","u":"/multi-scrobbler/configuration/sources/kodi/","p":105},{"i":111,"t":"Scenario:","s":"Example Complex Scenario","u":"/multi-scrobbler/configuration/kitchensink/","p":111},{"i":117,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Last.fm server.","s":"Lastfm (Endpoint)","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","p":117},{"i":123,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Listenbrainz server.","s":"Listenbrainz (Endpoint)","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","p":123},{"i":131,"t":"This Source monitors a Listenbrainz account's scrobble history and then re-scrobbles discovered tracks to configured clients.","s":"Listenbrainz","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","p":131},{"i":135,"t":"To scrobble to a Maloja server, create a Maloja (Client)","s":"Maloja","u":"/multi-scrobbler/configuration/sources/maloja/","p":135},{"i":139,"t":"This Source monitors your Last.fm scrobble history and re-scrobbles new activity to configured Clients.","s":"Lastfm","u":"/multi-scrobbler/configuration/sources/lastfm-source/","p":139},{"i":143,"t":"This Source monitors a Koito account's scrobble history and then re-scrobbles discovered tracks to configured Clients.","s":"Koito","u":"/multi-scrobbler/configuration/sources/koito-source/","p":143},{"i":145,"t":"Mopidy is a headless music server that supports playing music from many standard and non-standard sources such as Pandora, Bandcamp, and Tunein.","s":"Mopidy","u":"/multi-scrobbler/configuration/sources/mopidy/","p":145},{"i":153,"t":"MS communicates with MPD using the TCP client connection.","s":"MPD (Music Player Daemon)","u":"/multi-scrobbler/configuration/sources/mpd/","p":153},{"i":157,"t":"MPRIS is a standard interface for communicating with Music Players on linux operating systems.","s":"MPRIS","u":"/multi-scrobbler/configuration/sources/mpris/","p":157},{"i":161,"t":"To scrobble to* Rocksky, create a Rocksky (Client)","s":"Rocksky","u":"/multi-scrobbler/configuration/sources/rocksky-source/","p":161},{"i":167,"t":"Find your Plex Token and make note of the URL and Port used to connect to your Plex instance.","s":"Plex","u":"/multi-scrobbler/configuration/sources/plex/","p":167},{"i":169,"t":"Spotify and Automix","s":"Spotify","u":"/multi-scrobbler/configuration/sources/spotify/","p":169},{"i":173,"t":"To scrobble to* an ATProto PDS, create a teal.fm (Client)","s":"Teal.fm","u":"/multi-scrobbler/configuration/sources/tealfm-source/","p":173},{"i":179,"t":"In order to use Musikcube configure it to accept websocket connections in server setup:","s":"Musikcube","u":"/multi-scrobbler/configuration/sources/musikcube/","p":179},{"i":183,"t":"Monitor MusicCast device/receivers for music played on Network/USB/CD inputs.","s":"Yamaha MusicCast","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","p":183},{"i":187,"t":"This Source can be used for any application that implements the Subsonic API and supports the getNowPlaying endpoint (such as Airsonic and Navidrome)","s":"Subsonic","u":"/multi-scrobbler/configuration/sources/subsonic/","p":187},{"i":191,"t":"Communication with YT Music is unofficial and not supported or endorsed by Google. This means that this integration may stop working at any time if Google decides to change how YT Music works in the browser.","s":"Youtube Music","u":"/multi-scrobbler/configuration/sources/youtube-music/","p":191},{"i":195,"t":"To do...","s":"Client Development/Tutorial","u":"/multi-scrobbler/development/dev-client/","p":195},{"i":197,"t":"MS communicates with VLC using the Web (http) interface module","s":"VLC","u":"/multi-scrobbler/configuration/sources/vlc/","p":197},{"i":201,"t":"After installing the Webscrobbler extension open the preferences/settings for it:","s":"Webscrobbler","u":"/multi-scrobbler/configuration/sources/webscrobbler/","p":201},{"i":209,"t":"Start here for MS development","s":"Development","u":"/multi-scrobbler/development/dev-common/","p":209},{"i":226,"t":"If you have multi-scrobbler installed locally you can enable it to run as a background service when you login.","s":"Systemd","u":"/multi-scrobbler/installation/service/","p":226},{"i":234,"t":"Building Flatpak App locally","s":"Flatpak","u":"/multi-scrobbler/development/flatpak/","p":234},{"i":247,"t":"Connection Issues","s":"FAQ","u":"/multi-scrobbler/FAQ/","p":247},{"i":269,"t":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have:","s":"Quickstart","u":"/multi-scrobbler/quickstart/","p":269},{"i":281,"t":"Updating","s":"Overview","u":"/multi-scrobbler/updating/","p":281},{"i":288,"t":"Latest Release","s":"Overview","u":"/multi-scrobbler/","p":288},{"i":310,"t":"For the difference between ENV and File examples in this document see Configuration Types.","s":"Overview","u":"/multi-scrobbler/installation/","p":310},{"i":322,"t":"This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development.","s":"Source Development/Tutorial","u":"/multi-scrobbler/development/dev-source/","p":322},{"i":344,"t":"Multi-scrobbler configs support the ability to modify scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler's lifecycle.","s":"Scrobble Modification","u":"/multi-scrobbler/configuration/transforms/","p":344}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/1",[0,1.547,1,2.116,2,3.097,3,3.097,4,2.641,5,3.097,6,1.936,7,0.852,8,2.34,9,2.34,10,2.116,11,2.116]],["t/10",[7,0.925,10,3.187,12,2.866,13,1.474,14,1.679,15,1.939,16,2.54,17,1.571,18,1.096]],["t/14",[19,4.519,20,4.519,21,3.853,22,2.607]],["t/36",[7,0.966,13,1.54,14,1.754,15,2.026,16,2.653,17,1.641,18,1.145,23,4.1]],["t/40",[9,3.229,24,3.644,25,2.289,26,4.274,27,3.644]],["t/44",[7,0.925,11,3.187,12,2.866,13,1.474,14,1.679,15,1.939,16,2.54,17,1.571,18,1.096]],["t/48",[7,1.011,13,1.612,14,1.836,15,2.12,17,1.718,18,1.199,28,4.229]],["t/55",[7,0.966,13,1.54,14,1.754,15,2.026,17,1.641,18,1.145,29,2.994,30,3.512,31,2.994]],["t/62",[4,2.137,6,1.567,8,1.893,18,1.23,32,1.893,33,2.506,34,1.712,35,2.176,36,2.137,37,2.506,38,2.137,39,2.137,40,2.137,41,2.506,42,2.137,43,2.506]],["t/77",[7,1.063,34,1.768,44,2.589,45,3.865,46,2.589,47,2.589,48,2.589,49,2.589,50,2.589,51,2.589,52,2.589,53,1.005,54,2.589,55,1.21,56,1.21]],["t/81",[18,1.174,32,1.78,53,1.398,57,2.009,58,3.6,59,2.356,60,3.6,61,2.356,62,2.356,63,2.356,64,2.009,65,2.356,66,1.78,67,2.356,68,2.356,69,2.356]],["t/89",[7,1.061,53,1.497,70,3.856,71,3.856,72,3.856,73,3.856,74,3.856]],["t/93",[6,1.732,7,0.762,13,1.215,35,1.598,53,1.076,55,1.295,56,1.295,75,2.771,76,2.771,77,2.771,78,2.771,79,2.771,80,2.771,81,2.771,82,1.892]],["t/97",[39,3.853,53,1.754,83,4.519,84,4.519]],["t/99",[25,1.727,55,1.507,56,1.507,82,2.202,85,1.86,86,4.532,87,2.436,88,2.202,89,2.016,90,2.749]],["t/105",[27,2.749,55,1.507,56,1.507,82,2.202,85,1.86,87,2.436,88,2.202,89,2.016,90,2.749,91,4.532]],["t/111",[92,5.459]],["t/117",[1,2.296,7,0.925,10,2.296,18,1.096,25,1.801,55,1.571,56,1.571,89,2.102,93,2.54,94,2.866]],["t/123",[1,2.296,7,0.925,11,2.296,18,1.096,25,1.801,55,1.571,56,1.571,89,2.102,93,2.54,94,2.866]],["t/131",[0,1.547,7,1.212,11,2.116,13,1.358,14,1.547,18,1.01,22,1.787,34,2.116,95,2.641,96,2.34,97,2.641]],["t/135",[0,2.025,7,1.115,9,3.999,17,1.895,25,2.171]],["t/139",[0,1.611,7,1.247,10,2.202,13,1.414,14,1.611,15,1.86,18,1.052,22,1.86,96,2.436,98,2.749]],["t/143",[0,1.547,7,1.212,13,1.358,14,1.547,18,1.01,22,1.787,23,2.641,34,2.116,95,2.641,96,2.34,97,2.641]],["t/145",[6,1.673,18,0.873,25,1.434,35,2.286,99,2.676,100,2.676,101,1.828,102,2.282,103,3.378,104,2.676,105,2.282,106,2.676,107,2.676,108,2.676]],["t/153",[0,1.926,53,1.497,85,2.224,109,2.633,110,3.856,111,3.856,112,2.633]],["t/157",[35,2.026,36,2.994,85,2.026,88,2.399,103,2.994,113,3.512,114,3.512,115,3.512,116,3.512]],["t/161",[0,2.135,7,1.176,17,1.998,28,4.67]],["t/167",[40,3.864,53,1.252,112,2.202,117,3.224,118,3.224,119,3.224,120,3.224,121,3.224,122,3.224,123,3.224]],["t/169",[38,4.352,124,5.105]],["t/173",[0,2.025,7,1.115,17,1.895,29,3.456,31,3.456,125,4.054]],["t/179",[22,2.026,24,2.994,25,1.881,53,1.363,82,2.399,93,2.653,112,2.399,126,3.512,127,3.512]],["t/183",[6,2.41,13,1.691,35,2.224,128,3.856,129,3.856,130,3.856,131,3.856]],["t/187",[1,2.116,18,1.01,42,2.641,53,1.203,101,2.116,105,2.641,132,2.641,133,3.097,134,3.097,135,3.097,136,3.097,137,3.097]],["t/191",[35,2.125,57,2.071,64,2.071,66,1.835,85,1.401,101,1.659,138,3.684,139,2.429,140,3.684,141,2.429,142,2.429,143,2.429,144,3.684,145,2.429,146,2.429]],["t/195",[]],["t/197",[53,1.427,85,2.12,87,2.777,88,2.51,109,2.51,147,3.676,148,3.676,149,3.676]],["t/201",[150,3.644,151,4.274,152,4.274,153,4.274,154,4.274]],["t/209",[109,3.087,155,4.519,156,4.519,157,3.853]],["t/226",[55,1.641,56,1.641,89,2.195,150,2.994,158,2.994,159,2.994,160,3.512,161,2.994,162,3.512]],["t/234",[158,3.853,163,4.519,164,4.519,165,4.519]],["t/247",[21,4.352,112,3.487]],["t/269",[53,1.252,55,1.507,56,1.507,159,2.749,166,3.864,167,3.224,168,4.532,169,3.224,170,3.224]],["t/281",[171,5.459]],["t/288",[172,5.105,173,5.105]],["t/310",[8,2.653,22,2.026,174,2.994,175,3.512,176,3.512,177,3.512,178,2.994,179,3.512,180,3.512]],["t/322",[17,0.958,18,1.054,53,1.254,98,1.748,109,1.4,132,1.748,157,1.748,161,1.748,166,1.748,178,2.755,181,2.05,182,3.231,183,2.05,184,2.05,185,2.05,186,2.05,187,2.05,188,2.05,189,2.05,190,2.05,191,2.05]],["t/344",[7,0.612,32,1.68,55,1.609,56,1.039,66,1.68,101,1.518,102,1.896,174,1.896,192,2.223,193,2.223,194,2.223,195,2.223,196,2.223,197,2.223,198,2.223,199,2.223,200,2.223,201,2.223,202,2.223,203,2.223,204,2.223]]],"invertedIndex":[["",{"_index":12,"t":{"10":{"position":[[0,1]]},"44":{"position":[[0,1]]}}}],["10.7",{"_index":83,"t":{"97":{"position":[[23,4]]}}}],["abil",{"_index":193,"t":{"344":{"position":[[36,7]]}}}],["accept",{"_index":93,"t":{"117":{"position":[[39,6]]},"123":{"position":[[39,6]]},"179":{"position":[[42,6]]}}}],["access",{"_index":59,"t":{"81":{"position":[[39,6]]}}}],["account",{"_index":16,"t":{"10":{"position":[[56,7]]},"36":{"position":[[49,7]]},"44":{"position":[[58,7]]}}}],["account'",{"_index":95,"t":{"131":{"position":[[36,9]]},"143":{"position":[[29,9]]}}}],["activ",{"_index":15,"t":{"10":{"position":[[29,8]]},"36":{"position":[[27,8]]},"44":{"position":[[29,8]]},"48":{"position":[[27,8]]},"55":{"position":[[27,8]]},"139":{"position":[[72,8]]}}}],["airson",{"_index":42,"t":{"62":{"position":[[167,9]]},"187":{"position":[[126,8]]}}}],["album",{"_index":202,"t":{"344":{"position":[[149,5]]}}}],["alongsid",{"_index":184,"t":{"322":{"position":[[90,9]]}}}],["alreadi",{"_index":26,"t":{"40":{"position":[[38,7]]}}}],["api",{"_index":134,"t":{"187":{"position":[[73,3]]}}}],["app",{"_index":165,"t":{"234":{"position":[[17,3]]}}}],["applic",{"_index":1,"t":{"1":{"position":[[15,11]]},"117":{"position":[[69,12]]},"123":{"position":[[69,12]]},"187":{"position":[[32,11]]}}}],["artist",{"_index":201,"t":{"344":{"position":[[136,8]]}}}],["aspect",{"_index":186,"t":{"322":{"position":[[116,7]]}}}],["atproto",{"_index":29,"t":{"55":{"position":[[43,7]]},"173":{"position":[[19,7]]}}}],["autom",{"_index":195,"t":{"344":{"position":[[74,9]]}}}],["automix",{"_index":124,"t":{"169":{"position":[[12,7]]}}}],["azuracast",{"_index":44,"t":{"77":{"position":[[0,9]]}}}],["background",{"_index":160,"t":{"226":{"position":[[76,10]]}}}],["bandcamp",{"_index":107,"t":{"145":{"position":[[123,9]]}}}],["base",{"_index":188,"t":{"322":{"position":[[161,5]]}}}],["befor",{"_index":189,"t":{"322":{"position":[[191,6]]}}}],["between",{"_index":175,"t":{"310":{"position":[[19,7]]}}}],["break",{"_index":67,"t":{"81":{"position":[[159,8]]}}}],["browser",{"_index":146,"t":{"191":{"position":[[199,8]]}}}],["build",{"_index":163,"t":{"234":{"position":[[0,8]]}}}],["button",{"_index":78,"t":{"93":{"position":[[47,6]]}}}],["case",{"_index":49,"t":{"77":{"position":[[76,4]]}}}],["cast",{"_index":77,"t":{"93":{"position":[[28,4]]}}}],["chang",{"_index":64,"t":{"81":{"position":[[115,6]]},"191":{"position":[[166,6]]}}}],["check",{"_index":19,"t":{"14":{"position":[[0,5]]}}}],["chromecast",{"_index":79,"t":{"93":{"position":[[54,10]]}}}],["client",{"_index":0,"t":{"1":{"position":[[2,6]]},"131":{"position":[[117,8]]},"135":{"position":[[49,8]]},"139":{"position":[[95,8]]},"143":{"position":[[110,8]]},"153":{"position":[[39,6]]},"161":{"position":[[42,8]]},"173":{"position":[[49,8]]}}}],["common",{"_index":191,"t":{"322":{"position":[[236,6]]}}}],["commun",{"_index":85,"t":{"99":{"position":[[32,11]]},"105":{"position":[[32,11]]},"153":{"position":[[3,12]]},"157":{"position":[[34,13]]},"191":{"position":[[0,13]]},"197":{"position":[[3,12]]}}}],["compos",{"_index":169,"t":{"269":{"position":[[84,8]]}}}],["config",{"_index":192,"t":{"344":{"position":[[16,7]]}}}],["configur",{"_index":22,"t":{"14":{"position":[[43,14]]},"131":{"position":[[106,10]]},"139":{"position":[[84,10]]},"143":{"position":[[99,10]]},"179":{"position":[[26,9]]},"310":{"position":[[70,13]]}}}],["connect",{"_index":112,"t":{"153":{"position":[[46,11]]},"167":{"position":[[63,7]]},"179":{"position":[[59,11]]},"247":{"position":[[0,10]]}}}],["contain",{"_index":33,"t":{"62":{"position":[[31,8]]}}}],["correctli",{"_index":45,"t":{"77":{"position":[[18,9],[186,10]]}}}],["creat",{"_index":17,"t":{"10":{"position":[[64,6]]},"36":{"position":[[57,6]]},"44":{"position":[[66,6]]},"48":{"position":[[49,6]]},"55":{"position":[[59,6]]},"135":{"position":[[33,6]]},"161":{"position":[[25,6]]},"173":{"position":[[32,6]]},"322":{"position":[[52,8]]}}}],["data",{"_index":32,"t":{"62":{"position":[[14,4]]},"81":{"position":[[53,4]]},"344":{"position":[[63,4]]}}}],["decid",{"_index":145,"t":{"191":{"position":[[155,7]]}}}],["deezer",{"_index":60,"t":{"81":{"position":[[46,6],[104,6]]}}}],["deezer'",{"_index":62,"t":{"81":{"position":[[90,8]]}}}],["describ",{"_index":185,"t":{"322":{"position":[[100,10]]}}}],["develop",{"_index":157,"t":{"209":{"position":[[18,11]]},"322":{"position":[[243,12]]}}}],["devic",{"_index":76,"t":{"93":{"position":[[14,6]]}}}],["device/receiv",{"_index":129,"t":{"183":{"position":[[18,16]]}}}],["differ",{"_index":174,"t":{"310":{"position":[[8,10]]},"344":{"position":[[163,9]]}}}],["discov",{"_index":97,"t":{"131":{"position":[[85,10]]},"143":{"position":[[78,10]]}}}],["docker",{"_index":168,"t":{"269":{"position":[[66,6],[77,6]]}}}],["document",{"_index":178,"t":{"310":{"position":[[57,8]]},"322":{"position":[[5,8],[209,8]]}}}],["done",{"_index":27,"t":{"40":{"position":[[46,4]]},"105":{"position":[[107,4]]}}}],["durat",{"_index":52,"t":{"77":{"position":[[117,8]]}}}],["enabl",{"_index":89,"t":{"99":{"position":[[91,8]]},"105":{"position":[[86,8]]},"117":{"position":[[12,7]]},"123":{"position":[[12,7]]},"226":{"position":[[54,6]]}}}],["end",{"_index":170,"t":{"269":{"position":[[100,3]]}}}],["endors",{"_index":139,"t":{"191":{"position":[[63,8]]}}}],["endpoint",{"_index":136,"t":{"187":{"position":[[108,8]]}}}],["env",{"_index":176,"t":{"310":{"position":[[27,3]]}}}],["etc",{"_index":43,"t":{"62":{"position":[[177,6]]}}}],["exampl",{"_index":8,"t":{"1":{"position":[[112,8]]},"62":{"position":[[114,8]]},"310":{"position":[[40,8]]}}}],["extens",{"_index":152,"t":{"201":{"position":[[34,9]]}}}],["faq",{"_index":20,"t":{"14":{"position":[[10,3]]}}}],["fashion",{"_index":196,"t":{"344":{"position":[[84,7]]}}}],["file",{"_index":177,"t":{"310":{"position":[[35,4]]}}}],["find",{"_index":117,"t":{"167":{"position":[[0,4]]}}}],["flatpak",{"_index":164,"t":{"234":{"position":[[9,7]]}}}],["function",{"_index":68,"t":{"81":{"position":[[168,14]]}}}],["getnowplay",{"_index":135,"t":{"187":{"position":[[94,13]]}}}],["googl",{"_index":140,"t":{"191":{"position":[[75,7],[148,6]]}}}],["greater",{"_index":84,"t":{"97":{"position":[[31,7]]}}}],["gui",{"_index":90,"t":{"99":{"position":[[130,4]]},"105":{"position":[[124,4]]}}}],["guid",{"_index":166,"t":{"269":{"position":[[5,5],[111,5]]},"322":{"position":[[42,5]]}}}],["headless",{"_index":100,"t":{"145":{"position":[[12,8]]}}}],["here",{"_index":156,"t":{"209":{"position":[[6,4]]}}}],["histor",{"_index":3,"t":{"1":{"position":[[43,10]]}}}],["histori",{"_index":96,"t":{"131":{"position":[[55,7]]},"139":{"position":[[43,7]]},"143":{"position":[[48,7]]}}}],["http",{"_index":148,"t":{"197":{"position":[[39,6]]}}}],["icecast",{"_index":72,"t":{"89":{"position":[[24,7]]}}}],["icon",{"_index":80,"t":{"93":{"position":[[65,4]]}}}],["implement",{"_index":132,"t":{"187":{"position":[[49,10]]},"322":{"position":[[149,11]]}}}],["inform",{"_index":4,"t":{"1":{"position":[[54,11]]},"62":{"position":[[40,11]]}}}],["input",{"_index":131,"t":{"183":{"position":[[70,7]]}}}],["instal",{"_index":150,"t":{"201":{"position":[[6,10]]},"226":{"position":[[28,9]]}}}],["instanc",{"_index":123,"t":{"167":{"position":[[84,9]]}}}],["integr",{"_index":142,"t":{"191":{"position":[[104,11]]}}}],["interfac",{"_index":88,"t":{"99":{"position":[[81,9]]},"105":{"position":[[76,9]]},"157":{"position":[[20,9]]},"197":{"position":[[46,9]]}}}],["issu",{"_index":21,"t":{"14":{"position":[[30,6]]},"247":{"position":[[11,6]]}}}],["jellyfin",{"_index":39,"t":{"62":{"position":[[136,9]]},"97":{"position":[[14,8]]}}}],["jriver",{"_index":86,"t":{"99":{"position":[[49,6],[123,6]]}}}],["kodi",{"_index":91,"t":{"105":{"position":[[49,4],[119,4]]}}}],["koito",{"_index":23,"t":{"36":{"position":[[43,5],[66,5]]},"143":{"position":[[23,5]]}}}],["last.fm",{"_index":10,"t":{"1":{"position":[[133,8]]},"10":{"position":[[48,7],[73,7]]},"117":{"position":[[97,7]]},"139":{"position":[[26,7]]}}}],["latest",{"_index":172,"t":{"288":{"position":[[0,6]]}}}],["length",{"_index":47,"t":{"77":{"position":[[41,6]]}}}],["lifecycl",{"_index":204,"t":{"344":{"position":[[200,10]]}}}],["linux",{"_index":114,"t":{"157":{"position":[[70,5]]}}}],["listen",{"_index":51,"t":{"77":{"position":[[103,9]]}}}],["listenbrainz",{"_index":11,"t":{"1":{"position":[[142,15]]},"44":{"position":[[45,12],[75,12]]},"123":{"position":[[97,12]]},"131":{"position":[[23,12]]}}}],["local",{"_index":158,"t":{"226":{"position":[[38,7]]},"234":{"position":[[21,7]]}}}],["login",{"_index":162,"t":{"226":{"position":[[104,6]]}}}],["make",{"_index":119,"t":{"167":{"position":[[25,4]]}}}],["maloja",{"_index":9,"t":{"1":{"position":[[125,7]]},"40":{"position":[[8,6]]},"135":{"position":[[18,6],[42,6]]}}}],["mani",{"_index":102,"t":{"145":{"position":[[67,4]]},"344":{"position":[[158,4]]}}}],["match",{"_index":197,"t":{"344":{"position":[[95,8]]}}}],["mean",{"_index":141,"t":{"191":{"position":[[88,5]]}}}],["media",{"_index":75,"t":{"93":{"position":[[8,5]]}}}],["metadata",{"_index":71,"t":{"89":{"position":[[6,8]]}}}],["method",{"_index":58,"t":{"81":{"position":[[28,7],[138,7]]}}}],["modifi",{"_index":194,"t":{"344":{"position":[[47,6]]}}}],["modul",{"_index":149,"t":{"197":{"position":[[56,6]]}}}],["monitor",{"_index":13,"t":{"10":{"position":[[5,7]]},"36":{"position":[[3,7]]},"44":{"position":[[5,7]]},"48":{"position":[[3,7]]},"55":{"position":[[3,7]]},"93":{"position":[[118,7]]},"131":{"position":[[12,8]]},"139":{"position":[[12,8]]},"143":{"position":[[12,8]]},"183":{"position":[[0,7]]}}}],["mopidi",{"_index":99,"t":{"145":{"position":[[0,6]]}}}],["mpd",{"_index":110,"t":{"153":{"position":[[21,3]]}}}],["mpri",{"_index":113,"t":{"157":{"position":[[0,5]]}}}],["ms",{"_index":109,"t":{"153":{"position":[[0,2]]},"197":{"position":[[0,2]]},"209":{"position":[[15,2]]},"322":{"position":[[87,2]]}}}],["multi",{"_index":55,"t":{"77":{"position":[[160,5]]},"93":{"position":[[98,5]]},"99":{"position":[[13,5]]},"105":{"position":[[13,5]]},"117":{"position":[[20,5]]},"123":{"position":[[20,5]]},"226":{"position":[[12,5]]},"269":{"position":[[44,5]]},"344":{"position":[[0,5],[182,5]]}}}],["music",{"_index":35,"t":{"62":{"position":[[88,5],[160,6]]},"93":{"position":[[150,5]]},"145":{"position":[[21,5],[56,5]]},"157":{"position":[[53,5]]},"183":{"position":[[39,5]]},"191":{"position":[[22,5],[180,5]]}}}],["musiccast",{"_index":128,"t":{"183":{"position":[[8,9]]}}}],["musikcub",{"_index":126,"t":{"179":{"position":[[16,9]]}}}],["navidrom",{"_index":137,"t":{"187":{"position":[[139,10]]}}}],["need",{"_index":187,"t":{"322":{"position":[[138,4]]}}}],["network/usb/cd",{"_index":130,"t":{"183":{"position":[[55,14]]}}}],["new",{"_index":98,"t":{"139":{"position":[[68,3]]},"322":{"position":[[73,3]]}}}],["non",{"_index":104,"t":{"145":{"position":[[85,3]]}}}],["note",{"_index":120,"t":{"167":{"position":[[30,4]]}}}],["open",{"_index":153,"t":{"201":{"position":[[44,4]]}}}],["oper",{"_index":115,"t":{"157":{"position":[[76,9]]}}}],["order",{"_index":82,"t":{"93":{"position":[[132,5]]},"99":{"position":[[3,5]]},"105":{"position":[[3,5]]},"179":{"position":[[3,5]]}}}],["outsid",{"_index":94,"t":{"117":{"position":[[61,7]]},"123":{"position":[[61,7]]}}}],["pandora",{"_index":106,"t":{"145":{"position":[[114,8]]}}}],["pars",{"_index":70,"t":{"89":{"position":[[0,5]]}}}],["pd",{"_index":125,"t":{"173":{"position":[[27,4]]}}}],["phone/comput",{"_index":81,"t":{"93":{"position":[[78,14]]}}}],["platform",{"_index":37,"t":{"62":{"position":[[104,9]]}}}],["play",{"_index":6,"t":{"1":{"position":[[92,6]]},"62":{"position":[[73,7]]},"93":{"position":[[160,5]]},"145":{"position":[[48,7]]},"183":{"position":[[45,6]]}}}],["player",{"_index":36,"t":{"62":{"position":[[94,6]]},"157":{"position":[[59,7]]}}}],["plex",{"_index":40,"t":{"62":{"position":[[146,5]]},"167":{"position":[[10,4],[79,4]]}}}],["port",{"_index":122,"t":{"167":{"position":[[50,4]]}}}],["posit",{"_index":48,"t":{"77":{"position":[[51,9]]}}}],["preferences/set",{"_index":154,"t":{"201":{"position":[[53,20]]}}}],["profil",{"_index":30,"t":{"55":{"position":[[51,7]]}}}],["provid",{"_index":181,"t":{"322":{"position":[[19,7]]}}}],["re",{"_index":14,"t":{"10":{"position":[[17,2]]},"36":{"position":[[15,2]]},"44":{"position":[[17,2]]},"48":{"position":[[15,2]]},"55":{"position":[[15,2]]},"131":{"position":[[72,2]]},"139":{"position":[[55,2]]},"143":{"position":[[65,2]]}}}],["reduc",{"_index":50,"t":{"77":{"position":[[92,6]]}}}],["releas",{"_index":173,"t":{"288":{"position":[[7,7]]}}}],["remov",{"_index":65,"t":{"81":{"position":[[125,6]]}}}],["replac",{"_index":198,"t":{"344":{"position":[[108,9]]}}}],["report",{"_index":46,"t":{"77":{"position":[[28,6]]}}}],["review",{"_index":190,"t":{"322":{"position":[[229,6]]}}}],["risk",{"_index":69,"t":{"81":{"position":[[211,5]]}}}],["rockski",{"_index":28,"t":{"48":{"position":[[41,7],[58,7]]},"161":{"position":[[16,8],[34,7]]}}}],["run",{"_index":159,"t":{"226":{"position":[[67,3]]},"269":{"position":[[31,7]]}}}],["scenario",{"_index":92,"t":{"111":{"position":[[0,9]]}}}],["scrobbl",{"_index":7,"t":{"1":{"position":[[99,12]]},"10":{"position":[[20,8]]},"36":{"position":[[18,8]]},"44":{"position":[[20,8]]},"48":{"position":[[18,8]]},"55":{"position":[[18,8]]},"77":{"position":[[132,8],[176,9]]},"89":{"position":[[61,11]]},"93":{"position":[[141,8]]},"117":{"position":[[46,9]]},"123":{"position":[[46,9]]},"131":{"position":[[46,8],[75,9]]},"135":{"position":[[4,8]]},"139":{"position":[[34,8],[58,9]]},"143":{"position":[[39,8],[68,9]]},"161":{"position":[[3,8]]},"173":{"position":[[3,8]]},"344":{"position":[[54,8]]}}}],["scrobbler",{"_index":56,"t":{"77":{"position":[[166,9]]},"93":{"position":[[104,9]]},"99":{"position":[[19,9]]},"105":{"position":[[19,9]]},"117":{"position":[[26,9]]},"123":{"position":[[26,9]]},"226":{"position":[[18,9]]},"269":{"position":[[50,9]]},"344":{"position":[[6,9]]}}}],["scrobbler'",{"_index":203,"t":{"344":{"position":[[188,11]]}}}],["see",{"_index":179,"t":{"310":{"position":[[66,3]]}}}],["server",{"_index":25,"t":{"40":{"position":[[15,6]]},"99":{"position":[[74,6]]},"117":{"position":[[105,7]]},"123":{"position":[[110,7]]},"135":{"position":[[25,7]]},"145":{"position":[[27,6]]},"179":{"position":[[74,6]]}}}],["servic",{"_index":161,"t":{"226":{"position":[[87,7]]},"322":{"position":[[174,7]]}}}],["setup",{"_index":24,"t":{"40":{"position":[[0,5]]},"179":{"position":[[81,6]]}}}],["song",{"_index":5,"t":{"1":{"position":[[77,5]]}}}],["sourc",{"_index":18,"t":{"10":{"position":[[81,8]]},"36":{"position":[[72,8]]},"44":{"position":[[88,8]]},"48":{"position":[[66,8]]},"55":{"position":[[76,8]]},"62":{"position":[[2,6],[19,6]]},"81":{"position":[[5,6],[192,6]]},"117":{"position":[[5,6]]},"123":{"position":[[5,6]]},"131":{"position":[[5,6]]},"139":{"position":[[5,6]]},"143":{"position":[[5,6]]},"145":{"position":[[98,7]]},"187":{"position":[[5,6]]},"322":{"position":[[77,6],[131,6]]}}}],["spotifi",{"_index":38,"t":{"62":{"position":[[127,8]]},"169":{"position":[[0,7]]}}}],["standard",{"_index":103,"t":{"145":{"position":[[72,8],[89,8]]},"157":{"position":[[11,8]]}}}],["start",{"_index":155,"t":{"209":{"position":[[0,5]]}}}],["station",{"_index":73,"t":{"89":{"position":[[32,7]]}}}],["step",{"_index":182,"t":{"322":{"position":[[29,4],[37,4]]}}}],["stop",{"_index":143,"t":{"191":{"position":[[120,4]]}}}],["store",{"_index":2,"t":{"1":{"position":[[32,6]]}}}],["stream",{"_index":74,"t":{"89":{"position":[[40,9]]}}}],["string",{"_index":199,"t":{"344":{"position":[[118,7]]}}}],["subson",{"_index":133,"t":{"187":{"position":[[64,8]]}}}],["such",{"_index":105,"t":{"145":{"position":[[106,4]]},"187":{"position":[[117,5]]}}}],["support",{"_index":101,"t":{"145":{"position":[[39,8]]},"187":{"position":[[81,8]]},"191":{"position":[[50,9]]},"344":{"position":[[24,7]]}}}],["system",{"_index":116,"t":{"157":{"position":[[86,8]]}}}],["tcp",{"_index":111,"t":{"153":{"position":[[35,3]]}}}],["teal.fm",{"_index":31,"t":{"55":{"position":[[68,7]]},"173":{"position":[[41,7]]}}}],["threshold",{"_index":54,"t":{"77":{"position":[[141,10]]}}}],["time",{"_index":66,"t":{"81":{"position":[[153,5]]},"191":{"position":[[140,4]]},"344":{"position":[[173,5]]}}}],["titl",{"_index":200,"t":{"344":{"position":[[129,6]]}}}],["to",{"_index":63,"t":{"81":{"position":[[99,4]]}}}],["token",{"_index":118,"t":{"167":{"position":[[15,5]]}}}],["track",{"_index":34,"t":{"62":{"position":[[58,6]]},"77":{"position":[[35,5]]},"131":{"position":[[96,6]]},"143":{"position":[[89,6]]}}}],["trivial",{"_index":183,"t":{"322":{"position":[[63,9]]}}}],["tunein",{"_index":108,"t":{"145":{"position":[[137,7]]}}}],["type",{"_index":180,"t":{"310":{"position":[[84,6]]}}}],["unoffici",{"_index":57,"t":{"81":{"position":[[17,10]]},"191":{"position":[[31,10]]}}}],["up",{"_index":167,"t":{"269":{"position":[[24,2]]}}}],["updat",{"_index":171,"t":{"281":{"position":[[0,8]]}}}],["url",{"_index":121,"t":{"167":{"position":[[42,3]]}}}],["us",{"_index":53,"t":{"77":{"position":[[126,5]]},"81":{"position":[[12,4],[183,3]]},"89":{"position":[[53,3]]},"93":{"position":[[36,5]]},"97":{"position":[[8,5]]},"153":{"position":[[25,5]]},"167":{"position":[[55,4]]},"179":{"position":[[12,3]]},"187":{"position":[[19,4]]},"197":{"position":[[25,5]]},"269":{"position":[[60,5]]},"322":{"position":[[186,4],[198,5]]}}}],["violat",{"_index":61,"t":{"81":{"position":[[77,9]]}}}],["vlc",{"_index":147,"t":{"197":{"position":[[21,3]]}}}],["web",{"_index":87,"t":{"99":{"position":[[70,3]]},"105":{"position":[[72,3]]},"197":{"position":[[35,3]]}}}],["webscrobbl",{"_index":151,"t":{"201":{"position":[[21,12]]}}}],["websocket",{"_index":127,"t":{"179":{"position":[[49,9]]}}}],["work",{"_index":144,"t":{"191":{"position":[[125,7],[186,5]]}}}],["youtub",{"_index":41,"t":{"62":{"position":[[152,7]]}}}],["yt",{"_index":138,"t":{"191":{"position":[[19,2],[177,2]]}}}]],"pipeline":["stemmer"]}},{"documents":[],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[],"invertedIndex":[],"pipeline":["stemmer"]}},{"documents":[{"i":2,"t":"A Client is an application that stores the historical information about what songs you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz...","s":"Overview","u":"/multi-scrobbler/configuration/clients/","h":"","p":1},{"i":4,"t":"Name Now Playing Last.fm ✅ Listenbrainz ✅ Koito ❌ Maloja ❌ Rocksky ❌ Teal.fm ❌","s":"Clients","u":"/multi-scrobbler/configuration/clients/","h":"#clients","p":1},{"i":7,"t":"If multi-scrobbler is unable to submit a scrobble to a Client then it places the scrobble into a queue which is retried every 5 minutes for a number of times before it gives up. After it stops automatically retrying the scrobble still exists and can be retried from the dashboard. Dead scrobbles persist between restart so you will never lose a scrobble that hasn't been successfully submitted yet.","s":"Dead Scrobbles","u":"/multi-scrobbler/configuration/clients/","h":"#dead-scrobbles","p":1},{"i":9,"t":"Multi-scrobbler can report the currently playing tracks it is monitoring to some Scrobble Clients via their individual Now Playing functionality. Now Playing is default enabled for all Clients that support it. The behavior multi-scrobbler uses for determining Now Playing reporting: Now Playing can be explicitly enabled or disabled globally using ENV NOW_PLAYING=true or NOW_PLAYING=false This only affects Clients that don't have behavior set via File/AIO (below) Now Playing will be only be reported to the same Clients a Source is configured to scrobble to A Source's Player status must be Playing, IE active, for reporting to occur This status can be verified via Player UI on the Dashboard If multiple Sources having active Players then the scrobble Client will default to reporting the track based on Source configuration name, alphabetically This is the name property set in File or AIO source configs Clients can customize the Now Playing behavior individually using File or AIO source configs: CONFIG_DIR/lastfm.json [ { \"name\": \"myLastFmClient\", \"configureAs\": \"client\", \"data\": { // ... }, \"options\": { // disable or enable //\"nowPlaying\": true // // OR define a list of Source *config* names that should be allowed to report Now Playing // order of the list determines priority for reporting Now Playing //\"nowPlaying\": [\"mySpotify1\",\"myJellyfin2\"] } }, ]","s":"Now Playing","u":"/multi-scrobbler/configuration/clients/","h":"#now-playing","p":1},{"i":11,"t":"Other Users To monitor and re-scrobble activity from your Last.fm account create a Last.fm (Source) To accept scrobbles from outside applications as if multi-scrobbler was Last.fm, create a Last.fm (Endpoint) Register for an API account here. The Callback URL is actually specified by multi-scrobbler but to keep things consistent you should use http://localhost:9078/lastfm/callback or replace localhost:9078 with your own base URL.","s":"Last.fm","u":"/multi-scrobbler/configuration/clients/lastfm/","h":"","p":10},{"i":13,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LASTFM_API_KEY Yes Api Key from your API Account LASTFM_SECRET Yes Shared secret from your API Account LASTFM_REDIRECT_URI No http://localhost:9078/lastfm/callback Url to use for authentication. Must include lastfm/callback somewhere in it LASTFM_SESSION No Session id. Will be generated by authentication flow if not provided. File Config Type CONFIG/lastfm.json [ { \"name\": \"myLastFmClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myLastFmClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" }, \"type\": \"lastfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/lastfm/","h":"#configuration","p":10},{"i":15,"t":"tip Check the FAQ if you have any issues after configuration!","s":"Overview","u":"/multi-scrobbler/configuration/","h":"","p":14},{"i":17,"t":"Sources and Clients are configured using: environmental (ENV) variables client/source specific json config files an all-in-one json config file MS will parse configuration from all configuration types. You can mix and match configurations but it is generally better to stick to one or the other. ENV File File AIO MS will parse environmental variables present in the OS/container when it is run. This method means MS does not require files to run. Use ENV-based configuration if... You are the only person for whom MS is scrobbling for You have a very simple setup for MS such as one scrobble Client and one Source IE Plex -> Maloja Config Example For Docker container... docker run -e \"SPOTIFY_CLIENT_ID=yourId\" -e \"SPOTIFY_CLIENT_SECRET=yourSecret\" ... For Docker Compose docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler environment: - SPOTIFY_CLIENT_ID=yourId - SPOTIFY_CLIENT_SECRET=yourSecret - MALOJA_URL=http://domain.tld:42010 - MALOJA_API_KEY=1234 # ... # ... For a local/node installation export variables before running... SPOTIFY_CLIENT_ID=yourId SPOTIFY_CLIENT_SECRET=yourSecret npm run start MS will parse configuration files located in the directory specified by the CONFIG_DIR environmental variable. This variable defaults to: Local installation -> PROJECT_DIR/config Docker -> /config (in the container) -- see the install docs for how to configure this correctly Use File-based configuration if... You have many Sources You have many of each type of Source you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x Funkwhale... You have more than one scrobble Client you want to scrobble to IE multiple Maloja servers You want only to scrobble to specific Clients You need to setup more advanced configuration for a Source/Client Most Source/Clients only support basic configuration through ENV, all configuration is possible using File/AIO tip There are example configurations for all Source/Client types and AIO config located in the /config directory of this project. These can be used as-is by renaming them to .json. For docker installations these examples are copied to your configuration directory on first-time use. There is also a kitchensink example that provides examples of using all sources/clients in a complex configuration. Each file is named by the type of the Client/Source found in below sections. Each file as an array of that type of Client/Source. Example directory structure: /CONFIG_DIR plex.json spotify.json maloja.json Config Example CONFIG_DIR/spotify.json [ { \"name\": \"MySpotify\", \"enable\": true, \"clients\": [], \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\", \"interval\": 60 } } ] MS will parse an all-in-one configuration file located in the directory specified by the CONFIG_DIR environmental variable. This variable defaults to: Local installation -> PROJECT_DIR/config/config.json Docker -> /config/config.json (in the container) -- see the install docs for how to configure this correctly Use AIO-based configuration if... You have many Sources You have many of each type of Source you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x Funkwhale... You have more than one scrobble Client you want to scrobble to IE multiple Maloja servers You want only to scrobble to specific Clients You need to setup monitoring/webhooks You want to setup defaults for all Sources/Clients The AIO config also enables setting default options for sources/clients as well as global options for MS itself. tip An example AIO config files can be found in the project directory at /config/config.json.example For docker installations this example is copied to your configuration directory on first-time use. There is also a kitchensink example that provides examples of using all sources/clients in a complex configuration. Explore the schema for this configuration, along with an example generator and validator, here Config Example CONFIG_DIR/config.json { \"debugMode\": false, \"disableWeb\": false, \"sourceDefaults\": { \"logPayload\": false, \"logFilterFailure\": \"warn\", \"logPlayerState\": false, \"scrobbleThresholds\": { \"duration\": 30, \"percent\": 50 }, \"maxPollRetries\": 1, \"maxRequestRetries\": 1, \"retryMultiplier\": 1.5 }, \"clientDefaults\": { \"maxRequestRetries\": 1, \"retryMultiplier\": 1.5 }, \"sources\": [ { \"type\": \"spotify\", \"enable\": true, \"clients\": [\"myConfig\"], \"name\": \"mySpotifySource\", \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\" } } ], \"clients\": [ { \"type\": \"maloja\", \"enable\": true, \"name\": \"myConfig\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ], \"webhooks\": [ { \"name\": \"FirstGotifyServer\", \"type\": \"gotify\", \"url\": \"http://localhost:8070\", \"token\": \"MyGotifyToken\", \"priorities\": { \"info\": 5, \"warn\": 7, \"error\": 10 } }, { \"type\": \"ntfy\", \"name\": \"MyNtfyFriendlyNameForLogs\", \"url\": \"http://localhost:9991\", \"topic\": \"MyMultiScrobblerTopic\", \"username\": \"Optional\", \"password\": \"Optional\", \"priorities\": { \"info\": 3, \"warn\": 4, \"error\": 5 } } ] }","s":"Configuration Types","u":"/multi-scrobbler/configuration/","h":"#configuration-types","p":14},{"i":19,"t":"See the Configuration Types above for your options for creating Source and Client configurations. Reference Scrobble Sources for what Sources are available Reference Scrobble Clients for what Clients are available Each entry for a Source/Client includes a Configuration section that describes how to configure it using a configuration type.","s":"Setup Sources and Clients","u":"/multi-scrobbler/configuration/","h":"#setup-sources-and-clients","p":14},{"i":21,"t":"These options affect multi-scrobbler's behavior and are not specific to any source/client.","s":"Application Options","u":"/multi-scrobbler/configuration/","h":"#application-options","p":14},{"i":23,"t":"Defines the URL that is used to generate default redirect URLs for authentication on spotify and lastfm -- as well as some logging hints. Default => http://localhost:9078 Set with ENV BASE_URL or baseUrl all-in-one configuration If protocol is http or no protocol is specified MS will try to use port 9078 -- to override this explicitly set the port or use https Useful when running with docker so that you do not need to specify redirect URLs for each configuration. Example EX Lastfm Redirect Url is BASE_URL:PORT/lastfm/callback (when no other redirectUri is specified for lastfm configuration) BASE_URL Redirect URL 192.168.0.101 http://192.168.0.101:9078/lastfm/callback http://my.domain.local http://my.domain.local:9078/lastfm/callback http://192.168.0.101/my/subfolder http://192.168.0.101:9078/my/subfolder/lastfm/callback BASE_URL Redirect URL my.domain.local:80 http://192.168.0.101:80/lastfm/callback my.domain.local:9000 http://my.domain.local:9000/lastfm/callback 192.168.0.101:4000/my/subfolder http://192.168.0.101:4000/my/subfolder/lastfm/callback https://192.168.0.101 https://192.168.0.101:443/lastfm/callback","s":"Base URL","u":"/multi-scrobbler/configuration/","h":"#base-url","p":14},{"i":25,"t":"Multi-scrobbler can cache some of its data for the purpose of persisting queued and dead scrobbles after restarting. It supports caching using either: File cache stored in the CONFIG_DIR directory (next to your File/AIO file) Valkey, an open-source fork of Redis. File caching is enabled by default when no other configuration is present. The type of cache used, and it's connection properties, can be configured through ENV or AIO config. Caching Configuration File Valkey File cache is stored in the CONFIG_DIR directory using the pre-defined file name ms-scrobble.cache. It is enabled by default if CACHE_SCROBBLE, or the respective AIO configuration, is not defined. ENV AIO Environmental Variable Required? Default Description CACHE_SCROBBLE No file The cache type to use CACHE_SCROBBLE_CONN No The config directory The directory, within the container, to store the cache file config.json { \"cache\": { \"scrobble\": { \"provider\": \"file\", \"connection\": \"/config\" } }, // ... } ENV AIO Environmental Variable Required? Default Description CACHE_SCROBBLE Yes valkey The cache type to use CACHE_SCROBBLE_CONN Yes The host/IP and port to connect to, prefixed with redis:// -- EX: redis://192.168.0.120:6379 config.json { \"cache\": { \"scrobble\": { \"provider\": \"valkey\", \"connection\": \"redis://192.168.0.120:6379\" } }, // ... }","s":"Caching","u":"/multi-scrobbler/configuration/","h":"#caching","p":14},{"i":27,"t":"Turning on Debug Mode will override and enable all optional \"debugging\" options found in configuration set log output to DEBUG Use this as a shortcut for enabling output that can be used for troubleshooting and issue reporting. Be aware that logs will likely be VERY noisy while Debug Mode is on. You should only have this mode on while gathering logs for troubleshooting and then turn it off afterwards. To set debug mode either add it to AIO config.json config.json { \"debugMode\": true, \"sources\": [...], // ... } or set the ENV DEBUG_MODE=true","s":"Debug Mode","u":"/multi-scrobbler/configuration/","h":"#debug-mode","p":14},{"i":29,"t":"If you do not need the dashboard and/or ingress sources, or have security concerns about ingress and cannot control your hosting environment, the web server and API can be disabled. warning Any ingress-based sources will be unusable (Webscrobbler, etc...) if this is disabled. Disable using either: ENV DISABLE_WEB=true In All-in-One File use the top-level property \"disableWeb\": true","s":"Disable Web","u":"/multi-scrobbler/configuration/","h":"#disable-web","p":14},{"i":31,"t":"Multi-scrobbler supports some common webhooks and a healthcheck endpoint in order to monitor Sources and Clients for errors.","s":"Monitoring","u":"/multi-scrobbler/configuration/","h":"#monitoring","p":14},{"i":33,"t":"Webhooks will push a notification to your configured servers on these events: Source polling started Source polling retry Source polling stopped on error Scrobble client scrobble failure Webhooks are configured in the AIO config.json file under the webhook top-level property. Multiple webhooks may be configured for each webhook type. Example config.json { \"sources\": [ //... ], \"clients\": [ //... ], \"webhooks\": [ { \"name\": \"FirstGotifyServer\", \"type\": \"gotify\", \"url\": \"http://192.168.0.100:8070\", \"token\": \"abcd\" }, { \"name\": \"SecondGotifyServer\", \"type\": \"gotify\", //... }, { \"name\": \"NtfyServerOne\", \"type\": \"ntfy\", //... }, //... ] } Gotify Refer to the config schema for GotifyConfig multi-scrobbler optionally supports setting message notification priority via info warn and error mappings. Example config.json { \"type\": \"gotify\", \"name\": \"MyGotifyFriendlyNameForLogs\", \"url\": \"http://192.168.0.100:8070\", \"token\": \"AQZI58fA.rfSZbm\", \"priorities\": { \"info\": 5, \"warn\": 7, \"error\": 10 } } Ntfy Refer to the config schema for NtfyConfig multi-scrobbler optionally supports setting message notification priority via info warn and error mappings. Example config.json { \"type\": \"ntfy\", \"name\": \"MyNtfyFriendlyNameForLogs\", \"url\": \"http://192.168.0.100:9991\", \"topic\": \"RvOwKJ1XtIVMXGLR\", \"username\": \"Optional\", \"password\": \"Optional\", \"priorities\": { \"info\": 3, \"warn\": 4, \"error\": 5 } } Apprise Refer to the config schema for AppriseConfig multi-scrobbler supports stateless and persistent storage endpoints as well as tags/ Example config.json { \"type\": \"apprise\", \"name\": \"MyAppriseFriendlyNameForLogs\", \"host\": \"http://192.168.0.100:8080\", \"urls\": [\"gotify://192.168.0.101:8070/MyToken\"], // stateless endpoints \"keys\": [\"e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17\"], //persistent storage endpoints \"tags\": [\"my\",\"optional\",\"tags\"] }","s":"Webhook Configurations","u":"/multi-scrobbler/configuration/","h":"#webhook-configurations","p":14},{"i":35,"t":"An endpoint for monitoring the health of sources/clients is available at GET http://YourMultiScrobblerDomain/health Returns 200 OK when everything is working or 500 Internal Server Error if anything is not The plain url (/health) aggregates status of all clients/sources -- so any failing client/source will make status return 500 Use query params type or name to restrict client/sources aggregated IE /health?type=spotify or /health?name=MyMaloja On 500 the response returns a JSON payload with messages array that describes any issues For any clients/sources that require authentication /health will return 500 if they are not authenticated For sources that poll (spotify, yt music, subsonic) /health will 500 if they are not polling","s":"Health Endpoint","u":"/multi-scrobbler/configuration/","h":"#health-endpoint","p":14},{"i":37,"t":"Other Uses To monitor and re-scrobble activity from a Koito account create a Koito (Source) Setup a Koito server if you have not already done this. Create (or get) an API Key From your Koito server dashboard navigate to Settings (bottom-left icon) => API Keys Create a new Key (or use an existing) and Copy the key using the copy icon to the right of the key EX pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL Take note of your Koito username (used below as KOITO_USER) Determine your Koito URL This is the URL you use to access your Koito dashboard OR whatever URL is accessible from your multi-scrobbler instance. EX dashboard at http://192.168.0.100:4110 => KOITO_URL is set to http://192.168.0.100:4110 Koito Base URL Using the URL path /apis/listenbrainz Koito docs describe is not required. The Koito URL used for multi-scrobbler should only be the base URL. Only include a URL path if your Koito base url is not at host:port. See the table below for examples. Base URL Examples KOITO_URL MS Detected Base URL Example Scrobble Api URL http://192.168.0.100:4110 http://192.168.0.100:4110 http://192.168.0.100:4110/apis/listenbrainz/1 https://koito.mydomain.com https://koito.mydomain.com https://koito.mydomain.com/apis/listenbrainz/1 http://192.168.0.100:4110/apis/listenbrainz http://192.168.0.100:4110 http://192.168.0.100:4110/apis/listenbrainz/1 http://192.168.0.100:80/koito http://192.168.0.100:80/koito http://192.168.0.100:80/koito/apis/listenbrainz/1 tip Ensure that Koito is configured to allow requests from multi-scrobbler! In Koito config set KOITO_ALLOWED_HOSTS to the IP the multi-scrobbler dashboard is accessible from.","s":"Koito","u":"/multi-scrobbler/configuration/clients/koito/","h":"","p":36},{"i":39,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description KOITO_TOKEN Yes API Key from your Koito Account KOITO_USER Yes Your Koito username KOITO_URL No The base URL for the Koito server File Config Type CONFIG/koito.json [ { \"name\": \"koito-client\", \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"koito-client\", \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" }, \"type\": \"koito\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/koito/","h":"#configuration","p":36},{"i":41,"t":"Setup a Maloja server if you have not already done this. Maloja Setup Intructions Using Maloja's example docker-compose.yml: ~/malojaData/docker-compose.yml loading... View on GitHub Uncomment environment and add MALOJA_FORCE_PASSWORD=CHANGE_ME to set an admin password Start the container: ~/malojaData docker compose up -d Navigate to the Admin Panel (Cog in upper-right corner) -> API Keys (or at http://myMalojaServerIP/admin_apikeys) Create a New Key and then copy the generated key value Finally, add the Maloja server URL and API Key to the configuration type you choose to use, below.","s":"Maloja","u":"/multi-scrobbler/configuration/clients/maloja/","h":"","p":40},{"i":43,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MALOJA_URL Yes Base URL of your installation MALOJA_API_KEY Yes Api Key File Config Type CONFIG/maloja.json [ { \"name\": \"myMaloja-client\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myMaloja-client\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" }, \"type\": \"maloja\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/maloja/","h":"#configuration","p":40},{"i":45,"t":"Other Users To monitor and re-scrobble activity from a Listenbrainz account create a Listenbrainz (Source) To accept scrobbles from outside applications as if multi-scrobbler was a Listenbrainz server, create a Listenbrainz (Endpoint) You will need to run your own Listenbrainz server or have an account on the official instance On your profile page find your User Token to use in the configuration.","s":"Listenbrainz","u":"/multi-scrobbler/configuration/clients/listenbrainz/","h":"","p":44},{"i":47,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LZ_TOKEN Yes User token from your LZ profile LZ_USER Yes Your LZ username LZ_URL No https://api.listenbrainz.org/ The base URL for the LZ server File Config Type CONFIG/listenbrainz.json [ { \"name\": \"brainzClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"brainzClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" }, \"type\": \"listenbrainz\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/listenbrainz/","h":"#configuration","p":44},{"i":49,"t":"Other Uses To monitor and re-scrobble activity from Rocksky create a Rocksky (Source) Rocksky is music tracking and discovery platform built on the AT Protocol (Bluesky). How does that work? The AT Protocol is a standard to allow different applications to share and interpret your social data. Your data is stored in a personal repository in a PDS (Personal Data Server), which is data-type agnostic (it's just JSON). Each application defines their own datatypes and pulls data from your repository to render to you, your network, etc... Even though the application and the PDS/repository are independent, all of this is done for you automatically when you create a Bluesky account. So... multi-scrobbler \"scrobbles\" your plays to your repository in a JSON data structure which includes Rocksky's data type and structure at a known location for Rocksky's data (app.rocksky), in a list that is appended to as you continue to scrobble when accessing Rocksky, or another application that knows how to read it, your data is pulled from the repository to render the app Public Data The default Bluesky PDS is public, meaning your scrobbles are also public (read-only). This isn't any different than using Last.fm or Listenbrainz, in terms of privacy. No Scrobbling Guarantee Rocksky does not guarantee that every scrobble you send will be persisted. Rocksky's design goal is to store scrobbles with metdata-complete, 3rd party verifiable track information so that it can be a metadata-rich discovery platform, rather than an exhaustive scrobble data source-of-truth. To do this it asynchronously matches your scrobble data against Musicbrainz's and/or Spotify's catalogs, after the scrobble has been submitted. If the scrobble does not end up matching then it is not persisted. If you need your scrobbles to be 100% captured then you should scrobble to an additional Scrobble Client.","s":"Rocksky","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"","p":48},{"i":51,"t":"You will need a Bluesky account to use Rocksky. note Usage is adapted from Rocksky docs on docs.rocksky.app Navigate to rocksky.app and sign up/logn using your Bluesky account Then, navigate to the RockSky developer dashboard and obtain an API Key","s":"Setup","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#setup","p":48},{"i":54,"t":"The handle used with multi-scrobbler should be your full ATProto handle, including TLD. For regular Bluesky account this will be like: alice.bsky.social For Bluesky accounts that use their website as their account this is your domain: mydomain.com For non-Bluesky users, you probably already know your handle If you do not include a TLD then multi-scrobbler will automatically append .bsky.social to your handle value. ENV File AIO ENV Config Type Environmental Variable Required? Default Description ROCKSKY_HANDLE Yes Your full ATProto handle. For Bluesky account this is like myUser.bsky.social ROCKSKY_KEY Yes API Key obtained from Rocksky developer dashboard File Config Type CONFIG/rocksky.json [ { \"name\": \"myRockskyClient\", \"configureAs\": \"client\", \"data\": { \"key\": \"7cdr86vis3mpq5b1pi01md0hkm7ykzzxjy81r\", \"handle\": \"alice.bsky.social\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myRockskyClient\", \"configureAs\": \"client\", \"data\": { \"key\": \"7cdr86vis3mpq5b1pi01md0hkm7ykzzxjy81r\", \"handle\": \"alice.bsky.social\" }, \"type\": \"rocksky\" } ] } or explore the schema with an example and live editor/validator","s":"Handle","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#handle","p":48},{"i":56,"t":"Other Uses To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source) teal.fm is a social discovery and web viewing service for scrobbles stored/available on the ATProto network/your repository in a PDS (Personal Data Server). How does that work? The AT Protocol is a standard to allow different applications to share and interpret your social data. Your data is stored in a personal repository in a PDS (Personal Data Server), which is data-type agnostic (it's just JSON). Each application defines their own datatypes and pulls data from your repository to render to you, your network, etc... Even though the application and the PDS/repository are independent, all of this is done for you automatically when you create a Bluesky account. So... multi-scrobbler \"scrobbles\" your plays to your repository in a JSON data structure which includes teal.fm's data type and structure at a known location for teal.fm's data (fm.teal), in a list that is appended to as you continue to scrobble when accessing teal.fm, or another application that knows how to read it, your data is pulled from the repository to render the app warning The default Bluesky PDS is public, meaning your scrobbles are also public (read-only). This isn't any different than using Last.fm or Listenbrainz, in terms of privacy. note teal.fm is still in developement and does not have a public website, yet. To view your teal.fm scrobbles you can: use wrapped.baileytownsend.dev which gives a simple stats overview of your scrobbles use atproto.at to view the raw data (convenience URLs are generated in multi-scrobbler for you to do this)","s":"Teal.fm","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"","p":55},{"i":58,"t":"Bluesky Create a Bluesky account, if you don't already have one Navigate to https://bsky.app/settings/app-passwords Settings -> Privacy and Security -> App passwords Create a new App Password and save it somewhere, it will not be shown again","s":"Setup","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#setup","p":55},{"i":61,"t":"The handle used with multi-scrobbler should be your full ATProto handle, including TLD. For regular Bluesky account this will be like: alice.bsky.social For Bluesky accounts that use their website as their account this is your domain: mydomain.com For non-Bluesky users, you probably already know your handle If you do not include a TLD then multi-scrobbler will automatically append .bsky.social to your handle value. ENV File AIO ENV Config Type Environmental Variable Required? Default Description TEALFM_IDENTIFIER Yes Your full ATProto handle. For Bluesky account this is like myUser.bsky.social TEALFM_APP_PW Yes Bluesky/ATProto network App Password File Config Type CONFIG/tealfm.json [ { \"name\": \"myTeal\", \"configureAs\": \"client\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myTeal\", \"configureAs\": \"client\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" }, \"type\": \"tealfm\" } ] } or explore the schema with an example and live editor/validator","s":"Handle","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#handle","p":55},{"i":63,"t":"A Source is a data source that contains information about tracks you are playing like a music player or platform. Examples are Spotify, Jellyfin, Plex, Youtube Music, Airsonic, etc...","s":"Overview","u":"/multi-scrobbler/configuration/sources/","h":"","p":62},{"i":65,"t":"Name Networking Scrobble SOT Multi Device/User Scrobble Destination Thresholds Should Scrobble Azuracast Active Activity ❌ ✅ ✅ ✅ Deezer Active History ✅ ✅ ❌ ❌ Google Cast (Chromecast) Active Activity ✅ ✅ ✅ ❌ Icecast Active Activity ❌ ✅ ✅ ✅ Jellyfin Active Activity ✅ ✅ ✅ ❌ JRiver Active Activity ❌ ✅ ✅ ❌ Kodi Active Activity ❌ ✅ ✅ ❌ Koito Active History ❌ ✅ ❌ ❌ Last.fm Active History ❌ ✅ ❌ ❌ Last.fm (Endpoint) Ingress History ❌ ✅ ❌ ❌ ListenBrainz Active History ❌ ✅ ❌ ❌ ListenBrainz (Endpoint) Ingress History ❌ ✅ ❌ ❌ Maloja Active History ❌ ✅ ❌ ❌ Mopidy Active Activity ❌ ✅ ✅ ❌ MPD (Music Player Daemon) Active Activity ❌ ✅ ✅ ❌ Musikcube Active Activity ❌ ✅ ✅ ❌ Plex Active Activity ✅ ✅ ✅ ❌ Rocksky Active History ❌ ✅ ❌ ❌ Spotify Active Activity ✅ ✅ ✅ ❌ Subsonic-compatible APIs Active Activity ✅ ✅ ✅ ❌ teal.fm Active History ❌ ✅ ❌ ❌ WebScrobbler Ingress History ❌ ✅ ❌ ❌ VLC Active Activity ❌ ✅ ✅ ❌ Yamaha MusicCast Active Activity ❌ ✅ ✅ ❌ Youtube Music Active History ❌ ✅ ❌ ❌","s":"Sources","u":"/multi-scrobbler/configuration/sources/","h":"#sources","p":62},{"i":68,"t":"The Sources implemented in multi-scrobbler can be broken down into two categories. By Communication Method How does this Source get data from the service/application? Active Ingress The MS Source makes network requests to the service which returns a response with data MS can use to monitor listening activity or scrobbles. The MS Source waits for the service/application to send data to multi-scrobbler. These types of Sources require that multi-scrobbler is accessible to the service, generally through an open port or reverse proxy. By Data Source of Truth How does MS determine if/when a song has been played and is scrobbable? Listening Activity Listening History These Sources expose some kind of real-time listening data for users, like: player state (paused, stopped, playing) player position (1:50/2:40) current listened duration (Track A playing for 1m:20s) For theses Sources multi-scrobbler keeps track of the real-time state of your activity and scrobbles a track after it meets certain scrobble thresholds. Some Sources expose their own version of \"this track has been scrobbled.\" Listenbrainz, Koito, and Last.fm are all scrobble services that have \"definitive\" histories of scrobbled tracks. For these Sources multi-scrobbler monitors the listening history data and scrobbles when it sees a new entry in the list.","s":"Types of Sources","u":"/multi-scrobbler/configuration/sources/","h":"#types-of-sources","p":62},{"i":70,"t":"Some Sources report which User is playing a track and/or on what device the track is being played. These Sources can be filtered with configuration to only monitor activity for specific devices or users.","s":"Multi-Device/User","u":"/multi-scrobbler/configuration/sources/","h":"#multi-deviceuser","p":62},{"i":72,"t":"To limit which Clients a Source will scrobble to use the clients property in a Source's File/AIO configuration to specify the name property of the Clients that it should scrobble to: jellyfin.json { \"name\": \"MyJellyfin\", \"clients\": [\"myMaloja\",\"koitoA\",\"listenbrainzFoo\"] \"data\": { // ... }, } note If clients is empty (\"clients\": []) or is omitted then the default is for the Source to scrobble to all configured Clients. note If a Client is configured using ENV then it is given a generated name. Check the multi-scrobbler Dashboard to find their name in a subheader under the Client type. Example: Otherwise, use the name property you gave the client in it's File/AIO config.","s":"Limiting Scrobble Destination","u":"/multi-scrobbler/configuration/sources/","h":"#limiting-scrobble-destination","p":62},{"i":74,"t":"A Source that monitors active listening uses one of two metrics to determine if a Song is scrobbable based on your listening: percent of track listened to (50% or more) or amount of time (duration) track was listened to (4 minutes or more) These default values are based on last.fm's scrobble guidance. These values can be customized in the options of Source's file or aio config: spotify.json { \"data\": { // ... }, \"options\": { \"scrobbleThresholds\": { \"duration\": 40, // scrobbable if listened to for 40 seconds or more \"percent\": 20 // scrobbable if listened to for 20% or more of the track's length } } } These can also be configured globally for all Sources using ENVs: SOURCE_SCROBBLE_DURATION=40 SOURCE_SCROBBLE_PERCENT=20","s":"Scrobble Thresholds","u":"/multi-scrobbler/configuration/sources/","h":"#scrobble-thresholds","p":62},{"i":76,"t":"note This feature is currently available only for some Sources. Check each Source's documentation to see if it supported. For most Sources multi-scrobbler can determine if a user is listening and scrobble automatically. For Sources which multi-scrobbler cannot do this or require additional configuration, a user can indicate to MS that it should or should not scrobble. This action can be taken on the Web Dashboard by clicking the link next to Should Scrobble found in each Source's status card. Additionally, for these Sources, the default behavior for Scrobbling can be explicitly set by adding the following value to a Source's options in file or aio config: azuracast.json { \"data\": { // ... }, \"options\": { // set to true to always scrobble automatically // set to false to never scrobble automatically \"systemScrobble\": true } }","s":"Should Scrobble Behavior","u":"/multi-scrobbler/configuration/sources/","h":"#should-scrobble-behavior","p":62},{"i":78,"t":"Scrobbling Threshold Azuracast may not correctly report track length or position. If this is the case you should reduce the \"listened to\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly. The Azuracast server should have Use High-Performance Now Playing Updates enabled in Administration -> System Settings URL The URL used by MS to connect to Azuracast has the syntax: [ws|wss]://HOST:[PORT] MS will automatically add the path required for websockets, /api/live/nowplaying/websocket, to your URL if none is provided. If you use a reverse proxy with a path-based URL or otherwise need a custom path to access the websockets path correctly then explicitly provide it. Examples: URL From Config => MS Uses 'ws://192.168.0.101' => ws://192.168.0.101/api/live/nowplaying/websocket 'ws://azura.mydomain.com' => ws://azura.mydomain.com.com/api/live/nowplaying/websocket 'wss://mydomain.com/custom/azura/ws' => wss://mydomain.com/custom/azura/ws Scrobble Behavior info This Source supports toggling scrobbling on or off manually. This action can be taken on the Web Dashboard by clicking the link next to Should Scrobble found in each Source's status card. Additionally, the default behavior for scrobbling can be explicitly set by adding the following value to a Source's options in file or aio config: azuracast.json { \"data\": { // ... }, \"options\": { // set to true to always scrobble automatically // set to false to never scrobble automatically \"systemScrobble\": true } }} Multi-scrobbler will set the default scrobbling behavior based on if either of these settings is configured: live status (AZURA_LIVE or monitorWhenLive) or listener count (AZURA_LISTENERS_NUM or monitorWhenListeners) If either is configured then MS will automatically scrobble based on when these conditions are met. If neither is configured automatic scrobble defaults to off and you should either manually initiate it or explicitly set the default behavior.","s":"Azuracast","u":"/multi-scrobbler/configuration/sources/azuracast/","h":"","p":77},{"i":80,"t":"ENV File AIO Environmental Variable Required? Default Description AZ_URL Yes Azuracast URL without station name AZ_STATION Yes The station name shown on the public page AZURA_LIVE No Yes Only scrobble when station status is ONLINE AZURA_LISTENERS_NUM No true Only scrobble if station has any listeners (true) or listeners are equal-to/greater-than X CONFIG_DIR/azuracast.json [ { \"type\": \"azuracast\", \"enable\": true, \"name\": \"azura\", \"data\": { \"url\": \"ws://192.168.0.101\", \"station\": \"my-station-name\", \"monitorWhenLive\": true, \"monitorWhenListeners\": 1 } } ] or explore the schema with an example and live editor/validator CONFIG_DIR/config.json { \"sources\": [ { \"type\": \"azuracast\", \"enable\": true, \"name\": \"azura\", \"data\": { \"url\": \"ws://192.168.0.101\", \"station\": \"my-station-name\", \"monitorWhenLive\": true, \"monitorWhenListeners\": 1 } } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/azuracast/","h":"#configuration","p":77},{"i":82,"t":"warning This Source uses unofficial methods to access Deezer data that are likely in violation of Deezer's TOS. Deezer may change or remove these methods at any time, breaking functionality. Use this Source at your own risk. info This Source will work only if you have a Premium Deezer account.","s":"Deezer","u":"/multi-scrobbler/configuration/sources/deezer/","h":"","p":81},{"i":84,"t":"The arl is a browser cookie that Deezer uses to store your login information. Multi-scrobbler uses the arl value to make authorized requests to Deezer's API where it can retrieve listening history. After logging into Deezer, use one of the methods below to retrieve the arl cookie value: Chrome Firefox On deezer.com, press F12 to open the Developer Tools window. Go to the Applications tab. Press the '>>' More tabs icon if it's hidden. Under the Cookies Filter, click deezer.com, then the text bar name arl. Copy all the contents shown in the Cookie Value pane. On deezer.com, hit Ctrl+Shift+I to open Developer Tools Go to the Storage Tab, then expand Cookies in the sidebar and select deezer.com Find the row with arl as the name, then double click the Value column and right click -> copy the value","s":"Retrieve ARL","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#retrieve-arl","p":81},{"i":86,"t":"ENV File AIO Environmental Variable Required? Default Description DEEZER_ARL Yes The ARL cookie value retrieved from your browser CONFIG_DIR/deezer.json [ { \"name\": \"DeezerARL\", \"enable\": true, \"clients\": [], \"data\": { \"arl\": \"UOsRPjT3U5Dhaaup3xQ30DWFoSgqugdSYzL3QE743waaVy2eur2ckyJcZ4RV123Q3PsbKXkLwA6ahc9XmEfev6BtfSP8LujE3JswWRQogZCDUOwVzWO5sAig\", } } ] or explore the schema with an example and live editor/validator CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"DeezerARL\", \"enable\": true, \"clients\": [], \"data\": { \"arl\": \"UOsRPjT3U5Dhaaup3xQ30DWFoSgqugdSYzL3QE743waaVy2eur2ckyJcZ4RV123Q3PsbKXkLwA6ahc9XmEfev6BtfSP8LujE3JswWRQogZCDUOwVzWO5sAig\" }, \"type\": \"deezer\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#configuration","p":81},{"i":88,"t":"Third party integrations with Deezer (Sonos) may cause Deezer to report the same track many times in listening history. If you experience this issue modify your Deezer Source config (file-based only) to include the option \"fuzzyDiscoveryIgnore\": \"aggressive\" deezer.json example deezer.json [ { \"name\": \"MyDeezer\", \"data\": { \"arl\": \"UOsRPjT3U5Dhaaup3x...\", }, \"options\": { \"fuzzyDiscoveryIgnore\": \"aggressive\" } } ] This option comes with some trade-offs: MS will aggressively detect repeated tracks within a window of time that should eliminate all duplicates. However, this will also prevent intentionally repeated tracks from being scrobbled. See this thread for more information on how this works.","s":"Duplicate detection","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#duplicate-detection","p":81},{"i":90,"t":"Parse metadata from any Icecast Station (streams) to use for scrobbling. note There is no standard format for presenting track information in an Icecast stream and the majority of streams that do include metadata only use a single string (StreamTitle) from which metadata can be parsed. Multi-scrobbler will do its best to parse Artist/Album/Track information from this data but the quality and consistency for this is solely based on how the Icecast broadcaster chooses to format their tracks. Scrobbling Behavior Multi-scrobbler cannot automatically determine if you are listening to a Station. Therefore, automatic scrobbling for Icecast Sources is off by default. Use Should Scrobble Behavior to initiate scrobbling or configure automatic scrobble. Scrobbling Threshold Icecast does not report track lengths so multi-scrobbler cannot determine if it should scrobble based on percent played. You should instead set a shorter \"listened to\" duration using Scrobble Thresholds. URL and Sources The URL should be the URL you would use to stream audio. Additional sources are supported based on those found in icecast-metadata-stats. To use these with automatic parsing based on the regular URL include a sources array in your config the same way as shown in icecast-metadata-stats: Example config.json [ { \"name\": \"myIcy\", \"enable\": true, \"data\": { \"url\": \"http://myIcecast.com/radio\", \"sources\": [\"icy\", \"ogg\", \"sevenhtml\"] } } ] To manually set these sources include the same *Endpoint options found in icecast-metadata-stats. If no sources are configured for multi-scrobbler it will automatically try to use icy and ogg.","s":"Icecast","u":"/multi-scrobbler/configuration/sources/icecast/","h":"","p":89},{"i":92,"t":"ENV File AIO Environmental Variable Required? Default Description ICECAST_URL Yes Icecast URL Example CONFIG_DIR/icecast.json [ { \"name\": \"myIcy\", \"enable\": true, \"data\": { \"url\": \"http://myIcecast.com/radio\" } } ] or explore the schema with an example and live editor/validator Example CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myIcy\", \"enable\": true, \"data\": { \"url\": \"http://myIcecast.com/radio\" }, \"type\": \"icecast\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/icecast/","h":"#configuration","p":89},{"i":94,"t":"If your media device can be Cast to using this button on your phone/computer then multi-scrobbler can monitor it in order to scrobble music you play. note Google Cast support is experimental. You may experience crashes and errors while using this Source. Please open an issue if you experience problems and include all information detailed in the issue template to help debug your issue. note This source relies on common, basic music data provided by the cast device which will always be less exhaustive than data parsed from full source integrations. If there is an existing Source it is recommended to configure for it and blacklist the app on Google Cast, rather than relying solely on Google Cast for scrobbling. Connecting Devices Cast devices can be manually configured using file-based configuration OR automatically discovered using mDNS. mDNS Discovery The host machine running multi-scrobbler must be configured to allow mDNS traffic on port 5353/UDP. OS Specific Instructions Linux Windows Docker The host machine must have avahi-daemon running to circumvent limitations with DNS resolution due to musl in Alpine. Most major linux distributions package avahi and many have it built-in. Once avahi is running you must pass D-Bus and the avahi daemon socket to your container like so: docker run ... -v /var/run/dbus:/var/run/dbus -v /var/run/avahi-daemon/socket:/var/run/avahi-daemon/socket ... foxxmd/multi-scrobbler Flatpak/Nodejs No additional steps are required. Docker Unsupported at this time. Nodejs No additional steps are required. What Media Does MS Scrobble? Cast devices report what type of media the current activity is (see metadata property here). The reported type is dependent on the application playing the media to correctly report it, the cast device does not magically know what the media is. If an application does not report a type it is always classified as unknown. By default, MS will only track media that is reported as MusicTrack. Allow Unknown Media Type Media with an Unknown (Generic) media type can be explicitly allowed by setting \"allowUnknownMedia\": true in the file-based configuration. This can also be configured to only allow unknown media types for specific applications by using a list of application names. Example chromecast.json [ { \"name\": \"MyCast\", \"type\": \"chromecast\", \"data\": { // only allow unknown if app name contains any of these phrases \"allowUnknownMedia\": [\"smarttube\", \"default media receiver\"] }, } ] Forcing Media Tracking MS can be forced to track media from an application regardless of media type. This is useful if an application incorrectly reports a media type you are sure should be music. Set \"forceMediaRecognitionOn\" in the file-based configuration to a list of application names that should always be tracked. Example chromecast.json [ { \"name\": \"MyCast\", \"type\": \"chromecast\", \"data\": { // media from applications that contains these phrases will always be tracked, regardless of media type reported \"forceMediaRecognitionOn\": [\"smarttube\", \"default media receiver\"] }, } ] Cast Troubleshooting Please include any/all logs with raw output if there are any errors encountered as this is critical to diagnosing issues. To diagnose bad/incomplete track information or strange MS player behavior please turn on payload logging and include log output of the source running to help diagnose this issue. Either enable in config using the below example OR enable Debug Mode. Example chromecast.json [ { \"name\": \"MyCast\", \"type\": \"chromecast\", \"data\": { //... }, \"options\": { \"logPayload\": true } } ]","s":"Google Cast (Chromecast)","u":"/multi-scrobbler/configuration/sources/google-cast/","h":"","p":93},{"i":96,"t":"ENV File AIO note Manually configuring cast device connections is only available through file-based config. Environmental Variable Required? Default Description CC_ENABLE No Set to 'true' to enable Cast monitoring without needing to define other ENVs CC_WHITELIST_DEVICES No Only scrobble from these Cast devices. Comma-delimited list. EX mini-home, family-tv CC_BLACKLIST_DEVICES No Do not scrobble from these Cast devices. Comma-delimited list CC_WHITELIST_APPS No Only scrobble from these casted Apps. Comma-delimited list. EX spotify, pandora CC_BLACKLIST_APPS No Do not scrobble from these casted Apps. Comma-delimited list Example CONFIG_DIR/chromecast.json [ { \"name\": \"MyCast\", \"data\": { \"blacklistedDevices\": [], \"whitelistedDevices\": [], \"blacklistedApps\": [], \"whitelistedApps\": [] } } ] or explore the schema with an example and live editor/validator Example CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyCast\", \"data\": { \"blacklistedDevices\": [], \"whitelistedDevices\": [], \"blacklistedApps\": [], \"whitelistedApps\": [] }, \"type\": \"chromecast\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/google-cast/","h":"#configuration","p":93},{"i":98,"t":"Must be using Jellyfin 10.7 or greater Create an API Key for multi-scrobbler In the Jellyfin desktop web UI Navigate to -> Administration -> Dashboard -> API Keys (http://YOUR_JELLYIN_URL/web/index.html#!/apikeys.html) Click + button and create a new key with App name multi-scrobbler Copy the created API Key value for use in configuration below It is recommended to use API Key + username but if you are not an admin for your Jellyfin instance you can also authenticate with your Jellyfin username and password. Important Defaults By default... multi-scrobbler will only scrobble for the user authenticated with the API. Allowed Users (usersAllow or JELLYFIN_USERS_ALLOW) are only necessary if you want to scrobble for additional users. multi-scrobbler will only scrobble media found in Jellyfin libraries that were labelled as Music. librariesAllow or JELLYFIN_LIBRARIES_ALLOW will override this OR use additionalAllowedLibraryTypes to allow more types (like mixed or book for audiobooks) multi-scrobbler will only scrobble media Jellyfin detects as Audio. To force multi-scrobbler to scrobble when media is detected as Unknown use \"allowUnknown\": true in file/aio configuration. Configuration ENV File AIO Environmental Variable Required? Default Description JELLYFIN_URL Yes The URL of the Jellyfin server IE http://localhost:8096 JELLYFIN_USER Yes The user to authenticate with the API JELLYFIN_APIKEY No The API Key to use for authentication (Must provide either apikey or password) JELLYFIN_PASSWORD No The password of the user to authenticate for. (Must provide either apikey or password) JELLYFIN_USERS_ALLOW No Comma-separated list of usernames (from Jellyfin) to scrobble for JELLYFIN_USERS_BLOCK No Comma-separated list of usernames (from Jellyfin) to disallow scrobble for JELLYFIN_DEVICES_ALLOW No Comma-separated list of devices to scrobble from JELLYFIN_DEVICES_BLOCK No Comma-separated list of devices to disallow scrobbles from JELLYFIN_LIBRARIES_ALLOW No Comma-separated list of libraries to allow scrobbles from JELLYFIN_LIBRARIES_BLOCK No Comma-separated list of libraries to disallow scrobbles from CONFIG_DIR/jellyfin.json [ { \"name\": \"MyJellyfin\", \"enable\": true, \"clients\": [], \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", // everything below is optional \"usersAllow\": [\"FoxxMD\",\"SomeOtherUser\"], \"usersBlock\": [\"AnotherUser\"], \"devicesAllow\": [\"firefox\"], \"devicesBlock\": [\"google-home\"], \"librariesAllow\": [\"GoodMusic\"], \"librariesBlock\": [\"BadMusic\"], \"additionalAllowedLibraryTypes\": [\"musicvideos\"], \"allowUnknown\": false, }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\" } } ] or explore the schema with an example and live editor/validator CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyJellyfin\", \"enable\": true, \"clients\": [], \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", \"usersAllow\": [ \"FoxxMD\", \"SomeOtherUser\" ], \"usersBlock\": [ \"AnotherUser\" ], \"devicesAllow\": [ \"firefox\" ], \"devicesBlock\": [ \"google-home\" ], \"librariesAllow\": [ \"GoodMusic\" ], \"librariesBlock\": [ \"BadMusic\" ], \"additionalAllowedLibraryTypes\": [ \"musicvideos\" ], \"allowUnknown\": false }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\" }, \"type\": \"jellyfin\" } ] } or explore the schema with an example and live editor/validator","s":"Jellyfin","u":"/multi-scrobbler/configuration/sources/jellyfin/","h":"","p":97},{"i":100,"t":"In order for multi-scrobbler to communicate with JRiver you must have Web Server Interface enabled. This can can be in the JRiver GUI: Tools -> Options -> Media Network Check Use Media Network to share this library... If you have Authentication checked you will need to provide the Username and Password in the ENV/File configuration below.","s":"JRiver","u":"/multi-scrobbler/configuration/sources/jriver/","h":"","p":99},{"i":102,"t":"The URL used to connect to JRiver, set in your file config as url. The URL used to connect ultimately must be formed like this: Syntax => [protocol]://[hostname]:[port]/[path] Default => http://localhost:52199/MCWS/v1/ If any part of this URL is missing multi-scrobbler will use a default value. This also means that if any part of your URL is not standard you must explicitly define it. Jriver Settings Make sure the port number matches what is found in Advanced section in the Media Network options. If your installation is on the same machine but you cannot connect using localhost try 0.0.0.0 instead. URL Transform Examples Examples of a given url in your file config and the final URL multi-scrobbler will use to connect to JRiver: url Transformed URL (none set) http://localhost:52199/MCWS/v1/ jriver.mydomain.com http://jriver.mydomain.com:52199/MCWS/v1/ 192.168.0.101:3456 http://192.168.0.101:3456/MCWS/v1/ mydomain.com:80/jriverReverse/MCWS/v1/ mydomain.com:80/jriverReverse/MCWS/v1/","s":"URL","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#url","p":99},{"i":104,"t":"ENV File AIO ENV Config Type Environmental Variable Required Default Description JRIVER_URL Yes http://localhost:52199/MCWS/v1/ The URL of the JRiver server JRIVER_USERNAME No If authentication is enabled, the username set JRIVER_PASSWORD No If authenticated is enabled, the password set File Config Type CONFIG_DIR/jriver.json [ { \"name\": \"MyJriver\", \"enable\": true, \"data\": { \"url\": \"0.0.0.0\", \"username\": \"auser\", \"password\": \"apassword\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyJriver\", \"enable\": true, \"data\": { \"url\": \"0.0.0.0\", \"username\": \"auser\", \"password\": \"apassword\" }, \"type\": \"jriver\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#configuration","p":99},{"i":106,"t":"In order for multi-scrobbler to communicate with Kodi you must have the Web Interface enabled. This can be done in the Kodi GUI: Settings -> Services -> Control Check Allow remote control via HTTP Ensure you have a Username and Password set, you will need to provide them in the ENV/File configuration below.","s":"Kodi","u":"/multi-scrobbler/configuration/sources/kodi/","h":"","p":105},{"i":108,"t":"The URL used to connect to Kodi, set in your file config as url. The URL used to connect ultimately must be formed like this: Syntax => [protocol]://[hostname]:[port]/[path] Default => http://localhost:8080/jsonrpc If any part of this URL is missing multi-scrobbler will use a default value. This also means that if any part of your URL is not standard you must explicitly define it. Kodi Settings Make sure the port number matches what is found in Port in the Control section mentioned above. If your installation is on the same machine but you cannot connect using localhost try 0.0.0.0 instead. URL Transform Examples Examples of a given url in your file config and the final URL multi-scrobbler will use to connect to Kodi: url Transformed URL (none set) http://localhost:8080/jsonrpc kodi.mydomain.com http://kodi.mydomain.com:8080/jsonrpc 192.168.0.101:3456 http://192.168.0.101:3456/jsonprc mydomain.com:80/kodiReverse/jsonrpc http://mydomain.com:80/kodiReverse/jsonrpc","s":"URL","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#url","p":105},{"i":110,"t":"ENV File AIO ENV Config Type Environmental Variable Required Default Description KODI_URL Yes http://localhost:8080/jsonrpc The URL of the Kodi server KODI_USERNAME No The username set KODI_PASSWORD No The password set File Config Type CONFIG/kodi.json [ { \"name\": \"MyKodi\", \"enable\": true, \"data\": { \"url\": \"http://localhost:8080/jsonrpc\", \"username\": \"myUser\", \"password\": \"myPassword\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyKodi\", \"enable\": true, \"data\": { \"url\": \"http://localhost:8080/jsonrpc\", \"username\": \"myUser\", \"password\": \"myPassword\" }, \"type\": \"kodi\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#configuration","p":105},{"i":112,"t":"Scenario: You want to scrobble plays for yourself (Foxx), Fred, and Mary Each person has their own Maloja server Each person has their own Spotify account You have your own Airsonic (subsonic) server you to scrobble from You have your own Youtube Music account you want to scrobble from Mary has her own Last.fm account she also wants to scrobble to Fred has his own Spotify application and provides you with just his access and refresh token because he doesn't trust you (wtf Fred) Fred has a Plex server and wants to scrobble everything he plays Mary uses Fred's Plex server but only wants to scrobble her plays from the podcast library The three of you have a shared library on Plex called party that you only play when you are hanging out. You want plays from that library to be scrobbled to everyone's servers. Fred also has his own Jellyfin server and wants to scrobble everything he plays You have an android music app that can scrobble to a custom listenbrainz server","s":"Example Complex Scenario","u":"/multi-scrobbler/configuration/kitchensink/","h":"","p":111},{"i":114,"t":"CONFIG_DIR/config.json { \"sourceDefaults\": { \"maxPollRetries\": 0, // optional, default # of automatic polling restarts on error. can be overridden by property in individual config \"maxRequestRetries\": 1, // optional, default # of http request retries a source can make before error is thrown. can be overridden by property in individual config \"retryMultiplier\": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config }, \"clientDefaults\": { \"maxRequestRetries\": 1, // optional, default # of http request retries a client can make before error is thrown. can be overridden by property in individual config \"retryMultiplier\": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config }, \"sources\": [ { \"type\": \"spotify\", \"name\": \"foxxSpot\", \"clients\": [\"foxxMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", \"clientSecret\": \"foxxSpotifyAppSecret\", }, \"options\": { \"maxRequestRetries\": 2, // override default max retries because spotify can...spotty } }, { \"type\": \"spotify\", \"name\": \"marySpot\", \"clients\": [\"maryMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", // only need one application, it can be used by all users of this multi-scrobbler instance \"clientSecret\": \"foxxSpotifyAppSecret\", } }, { \"type\": \"spotify\", \"name\": \"fredSpot\", \"clients\": [\"fredMaloja\"], \"data\": { \"accessToken\": \"fredsToken\", \"refreshToken\": \"fredsRefreshToken\", \"interval\": 120, // he also wants a slower check interval because his application already has heavy api usage } }, { \"type\": \"plex\", \"name\": \"fredPlex\", \"clients\": [\"fredMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"fredUser\"] } }, { \"type\": \"plex\", \"name\": \"maryPlex\", \"clients\": [\"maryMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"maryUser\"], // still need to specify mary as user so not all users who play from 'podcasts' get scrobbled \"librariesAllow\": [\"podcasts\"] } }, { \"type\": \"plex\", \"name\": \"partyPlex\", // omitting clients (or making it empty) will make this Source scrobble to all Clients \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"librariesAllow\": [\"party\"] } }, { \"type\": \"jellyfin\", \"name\": \"FredJelly\", // omitting clients (or making it empty) will make this Source scrobble to all Clients \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", \"usersAllow\": [\"fredUser\"] } }, { \"type\": \"subsonic\", \"name\": \"foxxAirsonic\", \"clients\": [\"foxxMaloja\"], \"data\": { \"user\": \"foxx\", \"password\": \"foxxPassword\", \"url\": \"https://airsonic.foxx.example\" } }, { \"type\": \"ytmusic\", \"name\": \"foxxYoutube\", \"clients\": [\"foxxMaloja\"], \"data\": { \"cookie\": \"__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...\", } }, { \"type\": \"endpointlz\", \"name\": \"listenbrainzfoxx\", \"clients\": [\"foxxMaloja\"], \"data\": { \"token\": \"myToken\" } } ], \"clients\": [ { \"type\": \"maloja\", \"name\": \"foxxMaloja\", \"data\": { \"url\": \"https://maloja.foxx.example\", \"apiKey\": \"foxxApiKey\" } }, { \"type\": \"maloja\", \"name\": \"fredMaloja\", \"data\": { \"url\": \"https://maloja.fred.example\", \"apiKey\": \"fredApiKey\" } }, { \"type\": \"maloja\", \"name\": \"maryMaloja\", \"data\": { \"url\": \"https://maloja.mary.example\", \"apiKey\": \"maryApiKey\" } }, { \"type\": \"lastfm\", \"name\": \"maryLFM\", \"data\": { \"apiKey\": \"maryApiKey\", \"secret\": \"marySecret\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ] }","s":"All-in-one Config","u":"/multi-scrobbler/configuration/kitchensink/","h":"#all-in-one-config","p":111},{"i":116,"t":"CONFIG_DIR/spotify.json [ { // may omit 'type' property since app knows this is file is for spotify configs \"name\": \"foxxSpot\", \"clients\": [\"foxxMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", \"clientSecret\": \"foxxSpotifyAppSecret\" } }, { \"name\": \"marySpot\", \"clients\": [\"maryMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", \"clientSecret\": \"foxxSpotifyAppSecret\" } }, { \"name\": \"fredSpot\", \"clients\": [\"fredMaloja\"], \"data\": { \"accessToken\": \"fredsToken\", \"refreshToken\": \"fredsRefreshToken\", \"interval\": 120 } }, ] CONFIG_DIR/plex.json [ { \"name\": \"fredPlex\", \"clients\": [\"fredMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"fredUser\"] } }, { \"name\": \"maryPlex\", \"clients\": [\"maryMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"maryUser\"], \"librariesAllow\": [\"podcasts\"] } }, { \"name\": \"partyPlex\", \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"librariesAllow\": [\"party\"] } } ] CONFIG_DIR/jellyfin.json [ { \"name\": \"FredJelly\", \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", \"usersAllow\": [\"fredUser\"] } } ] CONFIG_DIR/ytmusic.json [ { \"name\": \"foxxYoutube\", \"clients\": [\"foxxMaloja\"], \"data\": { \"cookie\": \"__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...\", } } ] CONFIG_DIR/endpointlz.json [ { \"name\": \"listenbrainzfoxx\", \"clients\": [\"foxxMaloja\"], \"data\": { \"token\": \"myToken\", } } ] CONFIG_DIR/maloja.json [ { \"name\": \"foxxMaloja\", \"data\": { \"url\": \"https://maloja.foxx.example\", \"apiKey\": \"foxxApiKey\" } }, { \"name\": \"fredMaloja\", \"data\": { \"url\": \"https://maloja.fred.example\", \"apiKey\": \"fredApiKey\" } }, { \"name\": \"maryMaloja\", \"data\": { \"url\": \"https://maloja.mary.example\", \"apiKey\": \"maryApiKey\" } } ] CONFIG_DIR/lastfm.json [ { \"name\": \"maryLFM\", \"data\": { \"apiKey\": \"maryApiKey\", \"secret\": \"marySecret\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ]","s":"Separate JSON files","u":"/multi-scrobbler/configuration/kitchensink/","h":"#separate-json-files","p":111},{"i":118,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Last.fm server. Other Uses To scrobble to Last.fm, create a Last.fm (Client) To monitor and re-scrobble activity from your Last.fm account, create a Last.fm (Source)","s":"Lastfm (Endpoint)","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"","p":117},{"i":120,"t":"If a slug is not provided in configuration then multi-scrobbler will accept Last.fm scrobbles at http://localhost:9078/2.0/ which is the \"standard\" Last.fm server path for scrobbling Use a slug only if you need to setup multiple Last.fm Endpoint sources and cannot use different tokens. If a slug is used then the URL will be: http://localhost:9078/api/lastfm/mySlug","s":"URL","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#url","p":117},{"i":122,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LFMENDPOINT_ENABLE No Use LFM Endpoint as a Source without any other configuration. Only required if slug/token are not provided as ENVs LFM_SLUG No (Optional) The URL suffix to use for accepting LFM scrobbles File Config Type CONFIG/endpointlfm.json [ { \"name\": \"myLfm\", \"enable\": true, \"data\": { \"slug\": \"mySlug\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myLfm\", \"enable\": true, \"data\": { \"slug\": \"mySlug\" }, \"type\": \"endpointlfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#configuration","p":117},{"i":124,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Listenbrainz server. Other Uses To scrobble to Listenbrainz, create a Listenbrainz (Client) To monitor and re-scrobble activity from your Listenbrainz account, create a Listenbrainz (Source)","s":"Listenbrainz (Endpoint)","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"","p":123},{"i":126,"t":"If a slug is not provided in configuration then multi-scrobbler will accept Listenbrainz scrobbles at http://myMultiScrobblerIP:9078/1/submit-listens which is the \"standard\" Listenbrainz server path for scrobbling. In general, you should use http://myMultiScrobblerIP:9078/1/ as the base path when configuring your application to scrobble to multi-scrobbler. URL Setup for Popular Apps Navidrome Set the ListenBrainz.BaseURL (env ND_LISTENBRAINZ_BASEURL) to http://myMultiScrobblerIP:9078/1/ Use a slug only if you need to setup multiple Listenbrainz Endpoint sources and cannot use different tokens. If a slug is used then the URL will be: http://myMultiScrobblerIP:9078/api/listenbrainz/mySlug note Some Listenbrainz applications may require custom Listenbrainz URLs to be a real domain (example.com) and/or use SSL (https://). In this case you should setup multi-scrobbler behind a reverse proxy to support this functionality. It is out of the scope of this project to do this solely within multi-scrobbler.","s":"URL","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#url","p":123},{"i":128,"t":"Most Listenbrainz clients require a token (Authentication Token) to be provided during setup. This value can be anything you want, just make sure to use the same value for token in your multi-scrobbler configuration for the endpoint.","s":"Token","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#token","p":123},{"i":130,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LZENDPOINT_ENABLE No Use LZ Endpoint as a Source without any other configuration. Only required if slug/token are not provided as ENVs LZE_TOKEN No LZ \"Authentication Token\" you provided to the scrobbling application LZE_SLUG No (Optional) The URL suffix to use for accepting LZ scrobbles File Config Type CONFIG/endpointlz.json [ { \"name\": \"myLz\", \"enable\": true, \"data\": { \"token\": \"myToken\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myLz\", \"enable\": true, \"data\": { \"token\": \"myToken\" }, \"type\": \"endpointlz\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#configuration","p":123},{"i":132,"t":"This Source monitors a Listenbrainz account's scrobble history and then re-scrobbles discovered tracks to configured clients. Other Uses To scrobble to a Listenbrainz server, create a Listenbrainz (Client) To accept scrobbles from outside applications as if multi-scrobbler was a Listenbrainz server, create a Listenbrainz (Endpoint) You will need to run your own Listenbrainz server or have an account on the official instance. On your profile page find your User Token to use in the configuration.","s":"Listenbrainz","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","h":"","p":131},{"i":134,"t":"ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Listenbrainz Client config -- multi-scrobbler assumes Listenbrainz ENVs are always used for the client configuration. You must use the File or AIO config to setup Listenbrainz as a Source. File Config Type CONFIG/listenbrainz.json [ { \"name\": \"brainzSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"brainzSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" }, \"type\": \"listenbrainz\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","h":"#configuration","p":131},{"i":136,"t":"Other Uses To scrobble to a Maloja server, create a Maloja (Client) See the Maloja (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\"","s":"Maloja","u":"/multi-scrobbler/configuration/sources/maloja/","h":"","p":135},{"i":138,"t":"ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Maloja Client config -- multi-scrobbler assumes Maloja ENVs are always used for the client configuration. You must use the [File or AIO config to setup Maloja as a Source. File Config Type CONFIG/maloja.json [ { \"name\": \"myMaloja-source\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myMaloja-source\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" }, \"type\": \"maloja\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/maloja/","h":"#configuration","p":135},{"i":140,"t":"This Source monitors your Last.fm scrobble history and re-scrobbles new activity to configured Clients. Other Uses To scrobble to Last.fm, create a Last.fm (Client) To accept scrobbles from outside applications as if multi-scrobbler was Last.fm, create a Last.fm (Endpoint) To configure this Source use the same registration instructions and configuration data shown in Last.fm (Client) with the difference being \"configureAs\": \"source\" defined in the File/AIO configuration below.","s":"Lastfm","u":"/multi-scrobbler/configuration/sources/lastfm-source/","h":"","p":139},{"i":142,"t":"ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Last.fm Client config -- multi-scrobbler assumes Last.fm ENVs are always used for the client configuration. You must use the File or AIO config to setup Last.fm as a Source. File Config Type CONFIG/lastfm.json [ { \"name\": \"myLastFmSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myLastFmSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" }, \"type\": \"lastfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-source/","h":"#configuration","p":139},{"i":144,"t":"This Source monitors a Koito account's scrobble history and then re-scrobbles discovered tracks to configured Clients. Other Uses To scrobble to a Koito server, create a Koito (Client) See the Koito (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\" Configuration ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Koito Client config -- multi-scrobbler assumes Koito ENVs are always used for the client configuration. You must use the File or AIO config to setup Koito as a Source. File Config Type CONFIG/koito.json [ { \"name\": \"koito-source\", \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"koito-source\", \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" }, \"type\": \"koito\" } ] } or explore the schema with an example and live editor/validator","s":"Koito","u":"/multi-scrobbler/configuration/sources/koito-source/","h":"","p":143},{"i":146,"t":"Mopidy is a headless music server that supports playing music from many standard and non-standard sources such as Pandora, Bandcamp, and Tunein. multi-scrobbler can scrobble tracks played from any Mopidy backend source, regardless of where you listen to them. note You must have Mopidy-HTTP extension enabled for this integration to work. URL The URL used to connect to the Mopidy server, set in your file config as url. The URL used to connect ultimately must be formed like this: Syntax => [protocol]://[hostname]:[port]/[path] Default => ws://localhost:6680/mopidy/ws If any part of this URL is missing multi-scrobbler will use a default value. This also means that if any part of your URL is not standard you must explicitly define it. Mopidy Configuration Make sure the hostname and port number match what is found in the Mopidy configuration file mopidy.conf: [http] hostname = localhost port = 6680 URL Transform Examples Examples of a given url in your file config and the final URL multi-scrobbler will use to connect to Mopidy: url Transformed URL (none set) ws://localhost:6680/mopidy/ws mopidy.mydomain.com ws://mopidy.mydomain.com:6680/mopidy/ws/ 192.168.0.101:3456 ws://192.168.0.101:3456/mopidy/ws/ mopidy.mydomain.com:80/MOPWS ws://mopidy.mydomain.com:80/MOPWS","s":"Mopidy","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"","p":145},{"i":148,"t":"If you wish to disallow or only allow scrobbling from some sources played through Mopidy you can specify these using uriBlacklist or uriWhitelist in your config. multi-scrobbler will check the list to see if any string matches the START of the uri on a track. If whitelist is used then blacklist is ignored. All strings are case-insensitive. Example { \"uriBlacklist\": [\"soundcloud\"] } Will prevent multi-scrobbler from scrobbling any Mopidy track that start with a uri like soundcloud:song:MySong-1234","s":"URI Blacklist/Whitelist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#uri-blacklistwhitelist","p":145},{"i":150,"t":"For certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \"Soundcloud\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake Album name to this list. Multi-scrobbler will still scrobble the track, just without the bad data. All strings are case-insensitive. Example { \"albumBlacklist\": [\"SoundCloud\", \"Mixcloud\"] } If a track would be scrobbled like Album: Soundcloud, Track: My Cool Track, Artist: A Cool Artist then multi-scrobbler will instead scrobble Track: My Cool Track, Artist: A Cool Artist","s":"Album Blacklist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#album-blacklist","p":145},{"i":152,"t":"ENV File AIO ENV Config Type No ENV support File Config Type CONFIG/mopidy.json [ { \"name\": \"MyMopidy\", \"enable\": true, \"data\": { \"url\": \"localhost\", \"uriBlacklist\": [], \"uriWhitelist\": [], \"albumBlacklist\": [] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyMopidy\", \"enable\": true, \"data\": { \"url\": \"localhost\", \"uriBlacklist\": [], \"uriWhitelist\": [], \"albumBlacklist\": [] }, \"type\": \"mopidy\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#configuration","p":145},{"i":154,"t":"MS communicates with MPD using the TCP client connection. You should uncomment/create the following settings in your mpd config: bind_to_address \"any\" # or a specific ipv4/v6 address port \"6600\"","s":"MPD (Music Player Daemon)","u":"/multi-scrobbler/configuration/sources/mpd/","h":"","p":153},{"i":156,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MPD_URL No localhost:6600 MPD_PASSWORD No File Config Type CONFIG/mpd.json [ { \"enable\": true, \"name\": \"MyMPD\", \"data\": { \"url\": \"192.168.0.100:6600\", \"password\": \"MY_PASSWORD\" }, \"options\": { \"disableDiscovery\": false } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"enable\": true, \"name\": \"MyMPD\", \"data\": { \"url\": \"192.168.0.100:6600\", \"password\": \"MY_PASSWORD\" }, \"options\": { \"disableDiscovery\": false }, \"type\": \"mpd\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/mpd/","h":"#configuration","p":153},{"i":158,"t":"MPRIS is a standard interface for communicating with Music Players on linux operating systems. If you run Linux and have a notification tray that shows what media you are listening to, you likely have access to MPRIS. multi-scrobbler can listen to this interface and scrobble tracks played by any media player that communicates to the operating system with MPRIS. Host Setup MPRIS communication requires multi-scrobbler to have access to the host's dbus-daemon. Local Docker If multi-scrobbler is running as a Local Installation, directly with node/npm, on the same host as MPRIS then no setup is required. Remote setup is also possible, see the Remote Unix Socket section in the Docker tab. If multi-scrobbler is running as a Docker Container some modifications are required... Local Unix Socket The most secure way is to run a multi-scrobbler container on the same host as MPRIS. In this scenario you can simply mount the user session dbus unix socket into the container. Make sure PUID and PGID ENVs are configured so the container has permissions to access the socket. Then, modify your compose stack with these additional values: docker-compose.yaml environment: - DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/UID/bus volumes: - /run/user/UID/bus:/run/user/UID/bus:ro Remote Unix Socket warning This method is insecure. You should not expose dbus over a network unless access to the port is restricted and the network is trusted. Use socat to bidirectionally relay communication from the host's dbus socket to a listening TCP port. To make dbus for user with uid 1000 available on port 6644: socat TCP-LISTEN:6644,reuseaddr,fork UNIX-CONNECT:/run/user/1000/bus Then, add the following value to multi-scrobbler's ENVs: DBUS_SESSION_BUS_ADDRESS=tcp:host=yourHostIP,port=6644","s":"MPRIS","u":"/multi-scrobbler/configuration/sources/mpris/","h":"","p":157},{"i":160,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MPRIS_ENABLE No Use MPRIS as a Source (useful when you don't need any other options) MPRIS_BLACKLIST No Comma-delimited list of player names not to scrobble from MPRIS_WHITELIST No Comma-delimited list of players names to ONLY scrobble from. Overrides blacklist File Config Type CONFIG/mpris.json [ { \"name\": \"ubuntu\", \"enable\": true, \"data\": { \"whitelist\": [ \"vlc\", \"mpd\" ], \"blacklist\": [ \"spotify\" ] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"ubuntu\", \"enable\": true, \"data\": { \"whitelist\": [ \"vlc\", \"mpd\" ], \"blacklist\": [ \"spotify\" ] }, \"type\": \"mpris\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/mpris/","h":"#configuration","p":157},{"i":162,"t":"Other Uses To scrobble to Rocksky, create a Rocksky (Client) Rocksky is music tracking and discovery platform built on the AT Protocol (Bluesky). This Source monitors the Rocksky scrobbles in your PDS and then re-scrobbles discovered tracks to configured clients. Learn more about how Rocksky scrobbles work in the Rocksky (Client) docs.","s":"Rocksky","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"","p":161},{"i":164,"t":"Follow the Setup instructions in the Rocksky (Client) docs to get access to your Bluesky PDS repository and scrobble data.","s":"Setup","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#setup","p":161},{"i":166,"t":"See the Rocksky (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\" ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Rocksky Client config -- multi-scrobbler assumes Rocksky ENVs are always used for the client configuration. You must use the File or AIO config to setup Rocksky as a Source. File Config Type CONFIG/rocksky.json [ { \"name\": \"myRockskySource\", \"configureAs\": \"source\", \"data\": { \"key\": \"e4xwktm7jxm607x8el1fcda30eu14dzb64h3j\", \"handle\": \"alice.bsky.social\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myRockskySource\", \"configureAs\": \"source\", \"data\": { \"key\": \"e4xwktm7jxm607x8el1fcda30eu14dzb64h3j\", \"handle\": \"alice.bsky.social\" }, \"type\": \"rocksky\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#configuration","p":161},{"i":168,"t":"Find your Plex Token and make note of the URL and Port used to connect to your Plex instance. Allowed Users and Defaults Multi-scrobbler will automatically scrobble for these users by default: The User authenticated with the Plex Token and the Local User The Local User (PLEX_LOCAL_USER) is how Plex identifies anyone directly accessing the Plex UI from a local IP (who does not need to login). To allow MS to scrobble for other users use usersAllow or PLEX_USERS_ALLOW (env) from the below configuration docs. However, because you are overriding the default settings you must also explicitly list the authenticated user and the Local User if you want them to also be able to scrobble. Examples Defaults If usersallow and PLEX_USERS_ALLOW are not defined then the Plex Token authenticated User and Local User will be scrobbled for. Only A Specific User \"usersallow\": [\"SomeUser\"] or PLEX_USERS_ALLOW: SomeUser Only the Plex user SomeUser will be scrobbled for. The Plex Token authenticated user and the Local User will not be scrobbled for. A Specific User + Defaults (Assuming the plex authenticated user is FoxxMD) \"usersallow\": [\"FoxxMD\", \"PLEX_LOCAL_USER\", \"SomeUser\"] or PLEX_USERS_ALLOW: FoxxMD,PLEX_LOCAL_USER,SomeUser The Plex user SomeUser, the Plex Token authenticated user (FoxxMD) and the Local User will be scrobbled for. Allowed Libraries and Defaults By default multi-scrobbler will only scrobble media found in Plex libraries that are labelled as Music. librariesAllow or PLEX_LIBRARIES_ALLOW will override this Configuration ENV File AIO ENV Config Type Environmental Variable Required? Default Description PLEX_URL Yes The URL of the Plex server IE http://localhost:32400 PLEX_TOKEN Yes The Plex Token to use with the API PLEX_USERS_ALLOW No Comma-separated list of usernames (from Plex) to scrobble for PLEX_USERS_BLOCK No Comma-separated list of usernames (from Plex) to disallow scrobble for PLEX_DEVICES_ALLOW No Comma-separated list of devices to scrobble from PLEX_DEVICES_BLOCK No Comma-separated list of devices to disallow scrobbles from PLEX_LIBRARIES_ALLOW No Comma-separated list of libraries to allow scrobbles from PLEX_LIBRARIES_BLOCK No Comma-separated list of libraries to disallow scrobbles from File Config Type CONFIG/plex.json [ { \"name\": \"MyPlexApi\", \"enable\": true, \"clients\": [], \"data\": { \"token\": \"1234\", \"url\": \"http://192.168.0.120:32400\", \"usersAllow\": [ \"FoxxMD\", \"SomeOtherUser\" ], \"usersBlock\": [ \"AnotherUser\" ], \"devicesAllow\": [ \"firefox\" ], \"devicesBlock\": [ \"google-home\" ], \"librariesAllow\": [ \"GoodMusic\" ], \"librariesBlock\": [ \"BadMusic\" ] }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\", \"ignoreInvalidCert\": \"false\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyPlexApi\", \"enable\": true, \"clients\": [], \"data\": { \"token\": \"1234\", \"url\": \"http://192.168.0.120:32400\", \"usersAllow\": [ \"FoxxMD\", \"SomeOtherUser\" ], \"usersBlock\": [ \"AnotherUser\" ], \"devicesAllow\": [ \"firefox\" ], \"devicesBlock\": [ \"google-home\" ], \"librariesAllow\": [ \"GoodMusic\" ], \"librariesBlock\": [ \"BadMusic\" ] }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\", \"ignoreInvalidCert\": \"false\" }, \"type\": \"plex\" } ] } or explore the schema with an example and live editor/validator","s":"Plex","u":"/multi-scrobbler/configuration/sources/plex/","h":"","p":167},{"i":170,"t":"Spotify and Automix If your Spotify player has Automix enabled and Spotify uses it for your playlist/queue then MS cannot accurately determine when a track will end. This is because the track is \"mixed\" in your queue with a shorter play time than its actual length and Spotify does not report this modified play time in its API. This does not affect MS's ability to scrobble from Spotify but it will affect the accuracy of the duration MS reports was played. Authenticate Spotify with Multi-Scrobbler To access your Spotify history you must create a Spotify App to get a Client ID/Secret. Login to https://developer.spotify.com with your existing Spotify account and accept Developer Terms Navigate to your Spotify Developer Dashboard and start the Create App process Determine the correct Redirect URI to use and set it in your App settings Redirect URI Instructions A Redirect URI is the URL that Spotify will navigate your browser to after you complete authorization. The URL will contain the code necessary for multi-scrobbler to get a Spotify access token. Spotify no longer allows insecure URIs (start with http://) unless the address is 127.0.0.1 -- so localhost and internal IPs (192.168.0.xxx) no longer work. Use one of the following methods to specify a valid Redirect URI and complete Spotify authentication with multi-scrobbler: HTTPS Run MS Locally Echo Echo from echo.multi-scrobbler.app Use a domain you control, with SSL certificates/HTTPS enabled, to create a valid redirect URI. For example, if you are already running multi-scrobbler behind a reverse proxy (nginx/traefik/caddy) at https://scrobbler.mydomain.com then set the Spotify Redirect URI for your Spotify App, and multi-scrobbler SPOTIFY_REDIRECT_URI ENV, to https://scrobbler.mydomain.com/callback Alternatively, if multi-scrobbler is not accessible behind your domain, then use the Echo method with your own domain instead of 127.0.0.1. Run multi-scrobbler, configured for a Spotify Source, from the same machine as your browser in order to get credentials. In this scenario you can use http://127.0.0.1:9078/callback as the Spotify Redirect URI and multi-scrobbler SPOTIFY_REDIRECT_URI ENV. After completing authentication, copy the contents of local multi-scrobbler's configuration folder to the final location of where multi-scrobbler will be run. Use a docker container on the same machine your browser is on to \"intercept\" the callback URL from Spotify authentication, then manually finish the process by changing the domain to your multi-scrobbler instance. Create a container on the same machine as your browser using the mendhak/http-https-echo:36 image. This container runs a simple HTTP server that echos back any request it recieves. docker run --rm -p 127.0.0.1:5079:8080 mendhak/http-https-echo:36 Set the Spotify Redirect URI and multi-scrobbler SPOTIFY_REDIRECT_URI ENV as http://127.0.0.1:5079/callback In Authenticate Spotify with Multi-Scrobbler (outside these Redirect Instructions) go to Step 4 and continue the instructions Eventually, Spotify will redirect you to a web page with a URL like http://127.0.0.1:5079/callback?code=xxxxxx... In the URL, replace 127.0.0.1:5079 with the address/IP for your multi-scrobbler instance so the URL is similar to http://192.168.0.101:9078/callback?code=xxxxxx.... Then navigate to this URL to complete authentication. For your convenience, I run the mendhak/http-https-echo:36 container from the Echo approach on a domain I, the multi-scrobbler developer FoxxMD, control and self-host. Please be aware: I do not collect personal data or any querystrings/data sent in requests to this site It's not possible for me to use the code sent by Spotify to this URL without also having your Client ID/Secret However, there is always risk involved with trusting a service you do not control. Evaluate the risk of using this site for yourself. Use the Echo approach, starting from Step 2, with https://echo.multi-scrobbler.app/callback as Spotify Redirect URI and multi-scrobbler SPOTIFY_REDIRECT_URI ENV. Save your new App, then copy the Client ID/Secret from the App's Basic Information page. Add the Client ID, Secret, and Redirect URI to the respective field/ENV in the configuration section below Start multi-scrobbler, then visit the Web Dashboard and click (Re)authenticate on the Spotify card to start the auth process","s":"Spotify","u":"/multi-scrobbler/configuration/sources/spotify/","h":"","p":169},{"i":172,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description SPOTIFY_CLIENT_ID Yes SPOTIFY_CLIENT_SECRET Yes SPOTIFY_REDIRECT_URI No http://localhost:9078/callback URI must end in callback File Config Type CONFIG/spotify.json [ { \"name\": \"MySpotify\", \"enable\": true, \"clients\": [], \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\", \"interval\": 60 } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MySpotify\", \"enable\": true, \"clients\": [], \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\", \"interval\": 60 }, \"type\": \"spotify\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/spotify/","h":"#configuration","p":169},{"i":174,"t":"Other Uses To scrobble to an ATProto PDS, create a teal.fm (Client) teal.fm is a social discovery and web viewing service for scrobbles stored/available on the ATProto network/your repository in a PDS (Personal Data Server). This Source monitors the teal.fm scrobbles in your PDS and then re-scrobbles discovered tracks to configured clients. Learn more about how teal.fm scrobbles work in the teal.fm (Client) docs.","s":"Teal.fm","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"","p":173},{"i":176,"t":"Follow the Setup instructions in the teal.fm (Client) docs to get access to your Bluesky PDS repository and scrobble data.","s":"Setup","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#setup","p":173},{"i":178,"t":"See the teal.fm (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\" ENV File AIO ENV Config Type note You cannot use ENV variables shown in the teal.fm Client config -- multi-scrobbler assumes teal.fm ENVs are always used for the client configuration. You must use the File or AIO config to setup teal.fm as a Source. File Config Type CONFIG/tealfm.json [ { \"name\": \"myTealSource\", \"configureAs\": \"source\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myTealSource\", \"configureAs\": \"source\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" }, \"type\": \"tealfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#configuration","p":173},{"i":180,"t":"In order to use Musikcube configure it to accept websocket connections in server setup: Enable the Metadata Server Set a Password Both of these settings are found in Musikcube -> (s)ettings -> server setup The URL used by MS has the syntax: [ws|wss]://HOST:[PORT] The port is the same as shown in the server setup screenshot from above, under metadata server enabled. If no port is provided to MS it will default to 7905. If no URL is provided to MS it will try to use ws://localhost:7905","s":"Musikcube","u":"/multi-scrobbler/configuration/sources/musikcube/","h":"","p":179},{"i":182,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MC_URL No ws://localhost:7905 Use port set for metadata server MC_PASSWORD Yes File Config Type CONFIG/musikcube.json [ { \"type\": \"musikcube\", \"enable\": true, \"name\": \"musikcube\", \"data\": { \"url\": \"ws://localhost:7905\", \"password\": \"MY_PASSWORD\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"type\": \"musikcube\", \"enable\": true, \"name\": \"musikcube\", \"data\": { \"url\": \"ws://localhost:7905\", \"password\": \"MY_PASSWORD\" } } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/musikcube/","h":"#configuration","p":179},{"i":184,"t":"Monitor MusicCast device/receivers for music played on Network/USB/CD inputs. Scrobbling Threshold Musiccast may not correctly report track length. If this is the case you should reduce the \"listened to\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly. URL If only a domain/IP:PORT is provided to multi-scrobbler it will automatically append the default Musiccast API path. If your Musiccast device is located behind a custom URL (or reverse proxy) you should explicitly provide the base path to use. EX url Transformed URL http://192.168.0.101 http://192.168.0.101/YamahaExtendedControl/v1 http://mydomain.com/reverseProxy/cast http://mydomain.com/reverseProxy/cast","s":"Yamaha MusicCast","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","h":"","p":183},{"i":186,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MCAST_URL Yes The Musiccast device URL File Config Type CONFIG/musiccast.json [ { \"name\": \"myYamaha\", \"enable\": true, \"data\": { \"url\": \"192.168.0.101\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myYamaha\", \"enable\": true, \"data\": { \"url\": \"192.168.0.101\" }, \"type\": \"musiccast\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","h":"#configuration","p":183},{"i":188,"t":"This Source can be used for any application that implements the Subsonic API and supports the getNowPlaying endpoint (such as Airsonic and Navidrome) Known Issues Multiple artists are reported as one value and cannot be separated If using Airsonic Advanced the password used (under Credentials) must be Decodable tip If your serivce supports scrobbling to Listenbrainz (such as Navidrome), considering using a Listenbrainz (Endpoint) Source instead of this one. Service-specific scrobble implementations tend to be more accurate and provide more information (multiple artists) compared to the Subsonic API. Use the optional usersAllow property with File or AIO configuration to restrict scrobbling to a list of defined users.","s":"Subsonic","u":"/multi-scrobbler/configuration/sources/subsonic/","h":"","p":187},{"i":190,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description SUBSONIC_USER Yes SUBSONIC_PASSWORD Yes SUBSONIC_URL Yes Base url of your subsonic-api server File Config Type CONFIG/subsonic.json [ { \"name\": \"MySubsonic\", \"enable\": true, \"data\": { \"url\": \"http://localhost:4040/airsonic\", \"user\": \"yourUser\", \"password\": \"yourPassword\", \"usersAllow\": [ \"yourUser\" ] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MySubsonic\", \"enable\": true, \"data\": { \"url\": \"http://localhost:4040/airsonic\", \"user\": \"yourUser\", \"password\": \"yourPassword\", \"usersAllow\": [ \"yourUser\" ] }, \"type\": \"subsonic\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/subsonic/","h":"#configuration","p":187},{"i":192,"t":"warning Communication with YT Music is unofficial and not supported or endorsed by Google. This means that this integration may stop working at any time if Google decides to change how YT Music works in the browser. Scrobble Troubleshooting Due to monitoring being unofficial, listening history from YTM can be inconsistent and can cause missed scrobbles. See the FAQ for a detailed explanation, how to see more details about MS's detection of tracks, and how to properly report an issue. Authentication Only one of these methods needs to be used. Cookies OAuth Client YoutubeTV Use instructions from https://github.com/patrickkfkan/Volumio-YouTube.js/wiki/How-to-obtain-Cookie or https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers to get the Cookie value from a browser. It is highly recommended to get the cookie from an Incognito/Private Session to limit the chance the session is invalidated from normal browsing. Add the cookie to your ytmusic.json config in data or as an ENV: { \"type\": \"ytmusic\", \"enable\": true, \"name\": \"MyYTM\", \"data\": { \"cookie\": \"__Secure-1PSIDTS=sidts-CjEB3EgAEvCd-......\" }, \"options\": { \"logAuthUpdateChanges\": true, \"logDiff\": true } } If MS gives you authentication errors (session invalidated) at some point in the future follow the same instructions to get new cookies. warning As of Sept 25' OAuth clients no longer seem to have permission to access the YTM service, as reported by the upstream YTM library developer and several other users. If you have existing, working OAuth credentials keep using them but there is no gaurantee they will continue to work. If you are setting up the YTM Source for the first time you should first try to use Cookies. Based on the instructions from here... Login to Google Cloud console (create an account, if necessary) Create a new project Go to APIs and services. Configure the OAuth consent screen Use the old experience if possible If new is unavoidable then do not fill out any branding and under Authorized Domains you can delete the empty one (in order to save) Add yourself as an authorized user Navigate to Credentials Create Credentials -> choose \"OAuth client ID\" Application Type is Web Application Name is whatever you want, leave Authorization Javascript origins blank Authorized redirect URIs This must be exactly the same as what is displayed in MS! For now leave it blank so we can generate it from MS first Create In the newly created client popup save the Client ID and Client Secret, then copy them into ytmusic.json or appropriate ENVs: { \"type\": \"ytmusic\", \"enable\": true, \"name\": \"MyYTM\", \"data\": { \"clientId\": \"8910....6jqupl.apps.googleusercontent.com\", \"clientSecret\": \"GOCSPX-WGXL6BSuQ343...\" }, \"options\": { \"logAuthUpdateChanges\": true, \"logDiff\": true } } Now, start MS and during the YTMusic startup it will log something like this: Will use custom OAuth Client: Client ID: ... Client Secret: ... Redirect URI: http://localhost:9078/api/ytmusic/callback?name=MyYTM If the beginning of the Redirect URI (before api) is EXACTLY how you would reach the MS dashboard from your browser (EX http://localhost:9078) then edit your google oauth client section for Authorized redirect URIs and add the URL MS has displayed. If it is NOT EXACTLY the same you either need to set MS's base url or you can provide your own (Custom) Redirect URI for MS to use by setting it in ytmusic.json or ENV. Using a Custom Redirect URI The three parts of the URL that must be the same: it must start with api (after domain or subdirectory IE my.domain.tld/api... or whatever.tld/subDir/api... it must end in ytmusic/callback It must include name=[NameOfSource] in the query string Remember to add your custom URL to the Authorized redirect URIs section in the google oauth client! { \"type\": \"ytmusic\", \"enable\": true, \"name\": \"MyYTM\", \"data\": { \"clientId\": \"8910....6jqupl.apps.googleusercontent.com\", \"clientSecret\": \"GOCSPX-WGXL6BSuQ343...\", \"redirectUri\": \"http://my.custom.domain/api/ytmusic/callback?name=MyYTM\" }, \"options\": { \"logAuthUpdateChanges\": true, \"logDiff\": true } } AFTER changing the Authorized redirect URIs on Google Cloud console you may need to wait a few minutes for it to take affect. Then restart MS. From the dashboard click (Re)authenticate on the YTmusic source card and follow the auth flow: On the screen about \"testing\" make sure you hit Continue (not Back To Safety) Make sure to select ALL scopes/permissions/grants it asks you about Select what [YourAppName] can access -> Select all Once the flow is finished MS will get the credentials and start polling automatically. You should not need to re-authenticate again after restarting MS as it saves the credentials to the /config folder. warning Using the built-in YoutubeTV authentication is unlikely to work due to Google restricting what permissions TV clients can have. This authentication method should not be used. To authenticate start multi-scrobbler with an empty YT Music configuration. An authentication URL/code will be logged in additon to being available from the dashboard. ERROR: Sign in with the code 'CLV-KFA-BVKY' using the authentication link on the dashboard or https://www.google.com/device Visit the authentication URL and enter the code that was provided (also available on the dashboard). After completing the setup flow MS will log Auth success and the YT Music dashboard card will display as Idle after refreshing. Click the Start link to begin monitoring.","s":"Youtube Music","u":"/multi-scrobbler/configuration/sources/youtube-music/","h":"","p":191},{"i":194,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description YTM_COOKIE No Value for Cookie Authentication YTM_CLIENT_ID No Client ID for OAuth Athentication YTM_CLIENT_SECRET No Client Secret for OAuth Athentication YTM_REDIRECT_URI No A custom redirect URI for OAuth Athentication YTM_LOG_DIFF No false Log YTM history changes File Config Type CONFIG/ytmusic.json [ { \"name\": \"MyYTMusic\", \"enable\": true, \"clients\": [], \"data\": { \"cookie\": \"__Secure-1PSIDTS=sidts-CjEB3EgAEvCd-......\", \"clientId\": \"891098404....apps.googleusercontent.com\", \"clientSecret\": \"GOCS...\" }, \"options\": { \"logDiff\": true } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyYTMusic\", \"enable\": true, \"clients\": [], \"data\": { \"cookie\": \"__Secure-1PSIDTS=sidts-CjEB3EgAEvCd-......\", \"clientId\": \"891098404....apps.googleusercontent.com\", \"clientSecret\": \"GOCS...\" }, \"options\": { \"logDiff\": true }, \"type\": \"ytmusic\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/youtube-music/","h":"#configuration","p":191},{"i":196,"t":"To do...","s":"Client Development/Tutorial","u":"/multi-scrobbler/development/dev-client/","h":"","p":195},{"i":198,"t":"MS communicates with VLC using the Web (http) interface module Enable HTTP Interface Open VLC: Tools Menu -> Preferences In the bottom left change Show Settings from Simple to All In the updated window select Interface -> Main interfaces In the Extra interface modules section enable Web and verify that http is shown in the textbox Select Interface -> Main interfaces -> Lua In Lua HTTP -> Password -> set a password in this box Click Save at the bottom to persist your changes Restart VLC Verify the HTTP interface is accessible by navigating to http://localhost:8080 in your browser If the interface is accessible, after typing in your password, VLC is now ready to be used by MS. Setting VLC Interface and Port These can be set by starting VLC from command line with specific options: vlc --http-host yourHostIp:yourPort or vlc --http-port yourPort or modify the configuration file for VLC by editing keys with the same values as from the command line (http-host and http-port) Filename Parsing If the file being played in VLC does not have ID3 tags/metadata information multi-scrobbler can attempt to extract artist, title, and album information from the raw filename using regular expressions. Mutli-scrobbler will only do this if there is no other information reported by VLC about these fields. To extract this information use named capture groups in your expression matching the field that should be extracted: artist title and/or album. MS accepts multiple expressions, the first one that matches a filename will be used. Example usage in a file-based config: config/vlc.json [ { \"name\": \"MyVlc\", \"enable\": true, \"data\": { // ... }, \"options\": { \"filenamePatterns\": [ // Extracts artist and title from filenames that look like: // My Artist - My Cool title.mp4 \"/^\\\\s*(?<artist>.+?) - (?<title>.+?)\\\\.\\\\w+$/i\" ], // logs to DEBUG when MS tries to extract data from a filename \"logFilenamePatterns\": true, } } ] Vlc Information Reporting If you find that VLC is incorrectly reporting track information (in its interface) but multi-scrobbler is not parsing it correctly it may be due to the name of the fields VLC is reporting. mutli-scrobbler uses the most common field name but does not cover all use cases. Before reporting an issue please turn on metadata logging and include output from your logs while it is turned on: config/vlc.json [ { \"name\": \"MyVlc\", \"enable\": true, \"data\": { // ... }, \"options\": { \"dumpVlcMetadata\": true } } ]","s":"VLC","u":"/multi-scrobbler/configuration/sources/vlc/","h":"","p":197},{"i":200,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description VLC_URL No localhost:8080 VLC_PASSWORD Yes File Config Type CONFIG/vlc.json [ { \"enable\": true, \"name\": \"MyVlc\", \"data\": { \"url\": \"localhost:8080\", \"password\": \"changeme\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"enable\": true, \"name\": \"MyVlc\", \"data\": { \"url\": \"localhost:8080\", \"password\": \"changeme\" }, \"type\": \"vlc\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/vlc/","h":"#configuration","p":197},{"i":202,"t":"After installing the Webscrobbler extension open the preferences/settings for it: Under Accounts Add Webhook API URL: [YourMultiScrobblerInstance]/api/webscrobbler EX http://localhost:9078/api/webscrobbler Application name: (whatever you want) Reload the extension after adding the webhook. note On Firefox - Only FQNs (domain.tld), localhost, and 127.0.0.1 are supported for API URL due to firefox requiring https On Chromium-based Browsers - Any domain will work for API URL All other browsers are untested warning Multi-scrobbler is not designed to be publicly accessible from the internet. To use Webscrobbler outside your local network you should be accessing MS through a VPN or through a reverse proxy with some kind of authentication (though this is still not recommended).","s":"Webscrobbler","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"","p":201},{"i":204,"t":"If you would like use multiple WebScrobbler sources they can be matched using a slug at the end of the API URL. This requires using a file-based config. Example webscrobbler.json [ { \"name\": \"aUserWS\", \"clients\": [ \"client1Maloja\" ], \"data\": { \"slug\": \"usera\" } }, { \"name\": \"bUserWS\", \"clients\": [ \"client2Maloja\" ], \"data\": { \"slug\": \"userb\" } } ] To use aUserWS source set API URL to http://localhost:9078/api/webscrobbler/usera To use bUserWS source set API URL to http://localhost:9078/api/webscrobbler/userb tip http://localhost:9078/api/webscrobbler is matched with the first source that that does not have a slug defined.","s":"Multiple Users","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#multiple-users","p":201},{"i":206,"t":"MS can be configured to only scrobble, or NOT scrobble, from some WS connectors. Use the name of the website from the supported websites or from the Connectors tab in the extension. note This affects only MS's behavior and does not affect the general connector behavior you have configured within the WebScrobbler extension.","s":"Connectors Black/Whitelist","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#connectors-blackwhitelist","p":201},{"i":208,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description WS_ENABLE No Set to 'true' to enable WS without needing to define other ENVs WS_WHITELIST No Only scrobble from these WebScrobbler Connectors. Comma-delimited list WS_BLACKLIST No Do not scrobble from these WebScrobbler Connectors. Comma-delimited list File Config Type CONFIG/webscrobbler.json [ { \"name\": \"MyWebScrobbler\", \"data\": { \"slug\": \"MyOptionalSlug\", \"whitelist\": [], \"blacklist\": [] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyWebScrobbler\", \"data\": { \"slug\": \"MyOptionalSlug\", \"whitelist\": [], \"blacklist\": [] }, \"type\": \"webscrobbler\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#configuration","p":201},{"i":211,"t":"Multi-scrobbler is written entirely in Typescript. It consists of a backend and frontend. The backend handles all Source/Client logic, mounts web server endpoints that listen for Auth callbacks and Source ingress using expressjs, and serves the frontend. The frontend is a standalone Vitejs app that communicates via API to the backend in order to render the dashboard.","s":"Architecture","u":"/multi-scrobbler/development/dev-common/","h":"#architecture","p":209},{"i":213,"t":"Development requires Node v18.19.1 or higher is installed on your system. tip When running locally (not with a devcontainer) you can use nvm to manage the installed node version. Clone this repository somewhere and then install from the working directory git clone https://github.com/FoxxMD/multi-scrobbler.git . cd multi-scrobbler nvm use # optional, sets correct node version when running without devcontainer npm install npm run start","s":"Project Setup","u":"/multi-scrobbler/development/dev-common/","h":"#project-setup","p":209},{"i":215,"t":"This repository contains workspace settings for development with VSCode. These include: Run/Debug Launch configurations for the application and tests Devcontainer for development with all dependencies already installed Useful extensions for linting and running tests To use the Devcontainer simple open the repository in VSCode and \"Use Devcontainer\" when the notification is presented. npm install will be run when a new container is created.","s":"VSCode","u":"/multi-scrobbler/development/dev-common/","h":"#vscode","p":209},{"i":217,"t":"info In this document, when referring to aspects of Sources and Clients that are shared between both, the Source/Client will be referred to as a Component. A Component is composed of two parts: Typescript interfaces describing structure of configuration for that Component A concrete class inheriting from a common \"startup\" abstract class that enforces how the Component is built and operates In both parts Source/Clients share some common properties/behavior before diverging in how they operate.","s":"Common Development","u":"/multi-scrobbler/development/dev-common/","h":"#common-development","p":209},{"i":219,"t":"The configuration for a Component should always have this minimum shape, enforced respectively by the interfaces CommonSourceConfig and CommonClientConfig: interface MyConfig { name: string data?: object options?: object } data contains data that is required for a Component to operate such as credentials, callback urls, api keys, endpoints, etc... options are optional settings that can be used to fine-tune the usage of the Component but are not required or do not majorly affect behavior. EX additional logging toggles","s":"Config","u":"/multi-scrobbler/development/dev-common/","h":"#config","p":209},{"i":221,"t":"Components inherit from an abstract base class, AbstractComponent, that defines different \"stages\" of how a Component is built and initialized when MS first starts as well as when restarting the Component in the event it stops due to an error/network failure/etc... Stages Stages below are invoked in the order listed. All stages are asynchronous to allow fetching network requests or reading files. The stage function (described in each stage below) should return a value or throw: return null if the stage is not required return true if the stage succeeded return a string if the stage succeeded and you wish to append a result to the log output for this stage throw an Exception if the stage failed for any reason and the Component should not continue to run/start up Stage: Build Data This stage should be used to validate user configuration, parse any additional data from async sources (file, network), and finalize the shape of any configuration/data needed for the Component to operate. info Implement doBuildInitData in your child class to invoke this stage. Examples Parse a full URL like http://SOME_IP:7000/subfolder/api from user config containing a base url like data.baseUrl: 'SOME_IP' and then store this in the class config Validate that config data contains required properties user password salt Read stored credentials from ${this.configDir}/currentCreds-MySource-${name}.json; Stage: Check Connection This stage is used to validate that MS can communicate with the service the Component is interacting with. This stage is invoked on MS startup as well as any time the Component tries to restart after a failure. If the Component depends on ingress (like Jellyfin/Plex webhook) this stage is not necessary. info Implement doCheckConnection in your child class to invoke this stage. Examples Make a request to the service's server to ensure it is accessible Open a websocket connection and check for a ping-pong Stage: Test Auth MS determines if Auth is required for a Component based on two class properties. You should set these properties during constructor initialization for your Component class: requiresAuth - (default false) Set to true if MS should check/test Auth for this Component requiresAuthInteraction - (default false) Set to true if user interaction is required to complete auth IE user needs to visit a callback URL If the Component requires authentication in order to communicate with a service then any required data should be built in this stage and a request made to the service to ensure the authentication data is valid. This stage should return: true if auth succeeded false if auth failed without unexpected errors IE the authentication data is not valid and requires user interaction to resolve the failure throw an exception if network failure or unexpected error occurred You should attempt to re-authenticate, if possible. Only throw an exception or return false if there is no way to recover from an authentication failure. info Implement doAuthentication in your child class to invoke this stage. Examples Generate a Bearer Token for Basic Auth from user/password given in config and store in class properties Make a request to a known endpoint with Authorization token from read credentials file to see if succeeds or returns 403 Catch a 403 and attempt to reauthenticate at an auth endpoint with user/password given in config","s":"Concrete Class","u":"/multi-scrobbler/development/dev-common/","h":"#concrete-class","p":209},{"i":223,"t":"The PlayObject is the standard data structure MS uses to store listen (track) information and data required for scrobbling. It consists of: Track Data -- a standard format for storing track, artists, album, track duration, the date the track was played at, etc... Listen Metadata -- Optional but useful data related to the specific play or specifics about the Source/Client context for this play such as Platform specific ID, web URL to track, device/user ID that played this track, etc... Both Sources and Clients use the PlayObject interface. When a Component receives track info from its corresponding service it must transform this data into a PlayObject before it can be interacted with. For more refer to the TS documentation for PlayObject or AmbPlayObject in your project","s":"Play Object","u":"/multi-scrobbler/development/dev-common/","h":"#play-object","p":209},{"i":225,"t":"Source Development and Tutorial Client Development and Tutorial","s":"Creating Clients and Sources","u":"/multi-scrobbler/development/dev-common/","h":"#creating-clients-and-sources","p":209},{"i":227,"t":"Systemd is system and service manager that is used by most popular linux distros including Ubuntu, Fedora, Pop!_OS, Debian, and Arch. This setup will create a user service that runs on login.","s":"Systemd","u":"/multi-scrobbler/installation/service/","h":"","p":226},{"i":229,"t":"Create a new service file for multi-scrobbler under your HOME config: mkdir -p ~/.config/systemd/user touch ~/.config/systemd/user/multi-scrobbler.service In a text editor add contents below to the file you created, multi-scrobbler.service: [Unit] Description=multi-scrobbler After=network.target [Service] Type=simple WorkingDirectory=/path/to/multi-scrobbler/directory ExecStart=npm run start Restart=no [Install] WantedBy=default.target","s":"Create A Unit File","u":"/multi-scrobbler/installation/service/","h":"#create-a-unit-file","p":226},{"i":231,"t":"Save the file then run: systemctl daemon-reload systemctl --user enable multi-scrobbler.service systemctl --user start multi-scrobbler.service This will scan for new services and pickup our multi-scrobbler user service enable the service to run at login automatically start the service now","s":"Start the Service","u":"/multi-scrobbler/installation/service/","h":"#start-the-service","p":226},{"i":233,"t":"Open a PR if you would like to document setting up multi-scrobbler for other service managers!","s":"Other Service Methods","u":"/multi-scrobbler/installation/service/","h":"","p":226},{"i":237,"t":"Install Flatpak Install flatpak-builder flatpak-node-generator Requires python 3.7+, pip/pipx","s":"Flatpak and flatpak-builder","u":"/multi-scrobbler/development/flatpak/","h":"#flatpak-and-flatpak-builder","p":234},{"i":239,"t":"Set the branch tag or commit to use for MS in the source section of io.github.foxxmd.multiscrobbler.yml","s":"Update Project source","u":"/multi-scrobbler/development/flatpak/","h":"#update-project-source","p":234},{"i":242,"t":"A convenience bash script is provided that automates generating offline sources and building the flatpak app for you. This is the recommend method to use. Located in the project at flatpak/setup.sh, run it from the flatpak directory with this syntax: ./setup.sh -o -b /path/to/flatpak/build/dir Args: -o => Delete and overwrite any existing generated sources -b => The absolute path to the directory that should be used for flatpak build/artifacts. If not defined will use `CWD/build` -y => Proceed without confirming settings","s":"Use Setup Script","u":"/multi-scrobbler/development/flatpak/","h":"#use-setup-script","p":234},{"i":244,"t":"If you cannot use setup.sh follow the below to manually generate sources and build the flatpak app: Instructions Use flatpak-node-generator to generate sources First, make sure node_modules is deleted or empty for both the project and docsite directories. Then, from MS project root: PROJECT_DIR flatpak-node-generator npm package-lock.json Move generated-sources.json into PROJECT_DIR/flatpak and rename generated-sources.0.json Then, generate docsite sources: PROJECT_DIR flatpak-node-generator npm docsite/package-lock.json Move generated-sources.json into PROJECT_DIR/flatpak and rename generated-sources.1.json Build flatpak In the below command replace /home/yourUser/multi-scrobbler-flatpak with a directory to use for storing flatpak build/artifacts. PROJECT_DIR/flatpak flatpak-builder --repo=/home/yourUser/multi-scrobbler-flatpak/repo --state-dir=/home/yourUser/multi-scrobbler-flatpak/state /home/yourUser/multi-scrobbler-flatpak/build io.github.foxxmd.multiscrobbler.yml --force-clean info Append --install --user to the above command to have the app installed immediately.","s":"Manual Setup","u":"/multi-scrobbler/development/flatpak/","h":"#manual-setup","p":234},{"i":246,"t":"If built with --install --user (default when using setup.sh) you can now run MS using the command flatpak run -u io.github.foxxmd.multiscrobbler","s":"Run App","u":"/multi-scrobbler/development/flatpak/","h":"","p":234},{"i":250,"t":"These sources are ingress-based which means that multi-scrobbler waits for the Webscrobbler extension or app using Listenbrainz Endpoint to contact multi-scrobbler, as opposed to multi-scrobbler contacting them. multi-scrobbler will log information about any server that connects to it for these services. In the logs it looks something like this: [2025-07-10 12:32:21.417 -0400] INFO : [App] [API] [Ingress] [WebScrobbler] [Ingress] [WebScrobbler] Received request from a new remote address: ::ffff:127.0.0.1 (192.168.0.100) (UA: Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0) [2025-07-10 12:32:21.418 -0400] INFO : [App] [API] [Ingress] [WebScrobbler] [Ingress] [WebScrobbler] ::ffff:127.0.0.1 (192.168.0.100) (UA: Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0) Received data for API URL slug '(none)' for the first time. It also logs if a server tries to connect to a URL that it does not recognize: 2023-02-22T11:16:12-05:00 debug : [App ] Server received POST request from ::ffff:192.168.0.100 (UA: PlexMediaServer/1.24.5.5173-8dcc73a59) to unknown route: /plkex So, if you do not see either of these in your logs then the Source is not able to connect to your multi-scrobbler instance at all. This is not something multi-scrobbler can fix and means you have an issue in your network. Troubleshooting Check or try all these steps before submitting an issue: Turn on Debug Logging First, turn on debug logging for multi-scrobbler by setting the environmental variable DEBUG_MODE=true. Then, check the output for any additional information. Check Host name and URL The URLs examples in the configuration documentation assume you are running Webscrobbler/LFM Endpoint on the same server as multi-scrobbler. If these are not the same machine then you need to determine the IP address or domain name that multi-scrobbler is reachable at and use that instead of localhost when configuring these sources. This is likely the same host name that you would use to access the web interface for multi-scrobbler. EX http://localhost:9078/api/webscrobbler -> http://192.168.0.140:9078/api/webscrobbler Check Firewall and Port Forwarding If the machine multi-scrobbler is running on has a firewall ensure that port 9078 is open. Or if it is in another network entirely make sure your router is forwarding this port and it is open to the correct machine. Check Source Service Logs Webscrobbler See Debugging the extension to get logs which should have information about failed requests.","s":"Webscrobbler/Listenbrainz Endpoint doesn't connect","u":"/multi-scrobbler/FAQ/","h":"#ingress-connection","p":247},{"i":252,"t":"Ensure any client id or secrets are correct in your configuration. The callback/redirect URL for these services must be: the same address you would use to access the multi-scrobbler web interface the web-interface must be accessible from the browser you are completing authentication from. If multi-scrobbler is not running on the same machine your browser is on then the default/example addresses (http://localhost...) will not work. You must determine the address you can reach the web interface at (such as http://192.168.0.140:9078) then use that in place of localhost in the callback URLs. EX http://localhost:9078/lastfm/callback -> http://192.168.0.220:9078/lastfm/callback","s":"Spotify/Deezer/LastFM won't authenticate","u":"/multi-scrobbler/FAQ/","h":"#spotifydeezerlastfm-wont-authenticate","p":247},{"i":254,"t":"If you see errors in multi-scrobbler for YTM that contain 401 or 403 like Error: Could not send the specified request to browse. Status code: 401 then YTM has invalidated your authentication. First, ensure you are NOT using YoutubeTV authentication. If you completed authentication by entering a \"User Code\" you are using YoutubeTV which has stopped working. You should reauthenticate using Cookies or Custom OAuth. When using OAuth Client Authentication Refresh your authentication by using the (Re)authenticate link from MS's web dashboard. When using Cookies Authentication The library MS uses relies on scraping the YTM site by using cookies from your actual browser to pretend it is a browser. It does its best to keep these up to date but since this is not an official way to access the service YTM may invalidate your access to the authenticated session at any time. How this is triggered is unknown and not something multi-scrobbler can control. You can help limit the chance of your session being invalidated by getting the cookie from an Incognito/Private Session and then immediately closing the browser afterwards. To re-authenticate MS follow the YTM instructions to retrieve a new set of cookies for multi-scrobbler and then restart MS to potentially resolve the problem.","s":"Youtube Music fails after some time","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-fails-after-some-time","p":247},{"i":257,"t":"If you see something like this in your logs: 2023-02-19T10:05:42-06:00 warn : [App] App config file exists but could not be parsed! 2023-02-19T10:05:42-06:00 error : [App] Exited with uncaught error 2023-02-19T10:05:42-06:00 error : [App] Error: config.json could not be parsed It means the JSON in your configuration file is not valid. Copy and paste your configuration into a site like JSONLint to find out where errors you have and fix them.","s":"Config could not be parsed","u":"/multi-scrobbler/FAQ/","h":"#config-could-not-be-parsed","p":247},{"i":260,"t":"This is a limitation of the Last.fm API where the artist field is only one string and Last.fm does not recognize (play well) with \"combined\" artists. Multi-scrobbler works the same was the official Spotify-Last.fm integration works -- it only scrobbles the first artist on a multi-artist track.","s":"Last.fm does not scrobble tracks with multiple artists correctly","u":"/multi-scrobbler/FAQ/","h":"#lastfm-does-not-scrobble-tracks-with-multiple-artists-correctly","p":247},{"i":262,"t":"The Google Cast integration relies on a few common fields in the data it receives from your casting device. Every platform that can cast (Spotify, Pandora, etc...) should use these fields the same but there are slight differences between their implementations that may confuse multi-scrobbler. Specific platforms may also return more information in non-common fields that are undocumented. To diagnose these issues you must enable payload logging for your google cast Source, run MS, and then include logs with this output from that run. Without the raw data logged from your cast device it will be nearly impossible to resolve your issue.","s":"Google Cast track information is missing/incorrect or MS player has weird times","u":"/multi-scrobbler/FAQ/","h":"#google-cast-track-information-is-missingincorrect-or-ms-player-has-weird-times","p":247},{"i":264,"t":"It is likely the app playing on the cast device is incorrectly reporting the media type as not music. MS logs will tell you what type the media is reported as with lines like: My Artist - Example Track has 'unknown' media type and allowUnknownMedia=false, will not track Refer to Allow Unknown Media Type section to fix this My Artist - Example Track has 'movie' media type so will not track Refer to Force Media Tracking section to fix this","s":"Google Cast device does not track media","u":"/multi-scrobbler/FAQ/","h":"#google-cast-device-does-not-track-media","p":247},{"i":266,"t":"Before reporting an issue turn on metadata logging in the MS VLC configuration, see the VLC documentation.","s":"VLC is not scrobbling fields correctly","u":"/multi-scrobbler/FAQ/","h":"#vlc-is-not-scrobbling-fields-correctly","p":247},{"i":268,"t":"How MS detects YTM history In order for multi-scrobbler to accurately determine if a song has been scrobbled it needs a source of truth. For YTM this is a \"history\" list scraped from the YTM website. Unfortunately, the data in this list can be (often) inconsistent which makes it hard for multi-scrobbler to \"trust\" that it is correct and determine when/if new scrobbles occur. This inconsistency is not something multi-scrobbler can control -- it is a side-effect of having to use an unofficial method to access YTM (scraping). To compensate for this multi-scrobbler resets when it considers this list the \"source of truth\" based on if the list changes in an inconsistent way between consecutive checks. New scrobbles can only be detected when this list is \"OK\" as a source of truth for N+1 checks. Therefore, any new tracks that appear when the list is inconsistent will be ignored. Duplicate scrobbles can also occur if the change between two checks is technically consistent. For instance, if you listen to a track twice in some period, separated by other music, YTM will sometimes \"remove\" the track from the earlier time (further down in your history) and \"re-add\" it at the top of the history. Reporting YTM scrobble issues If you experience scrobble detection issues you can help improve MS's YTM heureistic by providing thorough feedback as an issue. Please do the following to provide the most useful report: Turn on Change Detection In your YTM configuration (ytmusic.json) add logDiff under options like this: { \"type\": \"ytmusic\", \"name\": \"MyYTM\", \"data\": { ... }, \"options\": { \"logDiff\": true } } or set either ENVs: YTM_LOG_DIFF=true DEBUG_MODE=true This will cause MS to log YTM history changes similar to this: [Ytmusic - MyYTM] Changes from last seen list: 1. (tuhe1CpHRxY) KNOWER - I’m The President --- undefined => Moved - Originally at 6 2. (Mtg8V6Xa2nc) Vulfpeck - Romanian Drinking Song --- Schvitz => Moved - Originally at 1 3. (rxbCaiyYSXM) Nightmares On Wax - You Wish --- In A Space Outta Sound => Moved - Originally at 2 4. (tMt_YXr90AM) Gorillaz - O Green World --- undefined => Moved - Originally at 3 ... Which are essential to troubleshooting this behavior. Turn on File Logging Optionally, if your logs are busy due to many other sources, you can log only YTM logs to a file. Turn this on with the logToFile config option: { \"type\": \"ytmusic\", \"name\": \"MyYTM\", \"data\": { ... }, \"options\": { \"logDiff\": true, \"logToFile\": true } } This will cause MS to write YTM logs to a file in your logs folder named ytmusic-MyYTM.log (based on your source name). Provide Detail and Context Provide a detailed account of how you were using YTM when the issue occurred, including things like: the platform listening on (desktop, mobile, 3rd party client, etc...) any changes in platform I switched from desktop to listening on my phone... how you were listening to music I was playing an album start to finish I listened to two songs in a row, then browsed for a new song in library by artist, then went back to a song in the queue... Explain the expected behavior (it should have scrobbled songs x, y, then z) and what actually happened (it scrobbled songs x, then y, then x again, then z) Provide ALL logs from the time when the issue occurred including logs from BEFORE (ideally 2-3 minutes of logs) and AFTER the issue.","s":"Youtube Music misses or duplicates scrobbles","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-misses-or-duplicates-scrobbles","p":247},{"i":270,"t":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have: the dashboard served on port 9078 of a host machine which has an IP of 192.168.0.100 data saved to the same directory as the docker-compose.yml file multi-scrobbler monitoring Spotify and/or Jellyfin for listening activity multi-scrobbler scrobbling to Lastfm and/or Maloja note If the multi-scrobbler container is on the same machine you will be viewing the dashboard from (IE localhost) you can remove and ignore BASE_URL usage below. Additionally, replace usage of 192.168.0.100 with localhost.","s":"Quickstart","u":"/multi-scrobbler/quickstart/","h":"","p":269},{"i":272,"t":"Create a new folder for multi-scrobbler related data and then create docker-compose.yml with this content: ~/msData/docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones - BASE_URL=http://192.168.0.100:9078 # all Environmental Variables in below examples go here! volumes: - \"./config:/config\" ports: - \"9078:9078\" restart: unless-stopped","s":"Create Docker Compose File","u":"/multi-scrobbler/quickstart/","h":"#create-docker-compose-file","p":269},{"i":274,"t":"Sources are the services/music players multi-scrobbler monitors to look for listening activity. Jellyfin Spotify Follow the Jellyfin configuration instructions for setting up an API Key. Then, add these values to the environment section in the docker-compose.yml you created. ~/msData/docker-compose.yml - JELLYFIN_URL=192.168.0.110:8096 # URL to Jellyfin UI - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b # Api Key created in previous step - JELLYFIN_USER=MyUser # Your username in Jellyfin To access your Spotify activity you must create a Spotify App to get a Client ID/Secret and set a valid Redirect URI. Refer to the Spotify Authentication instructions in the docs. Assuming you used the HTTPS method for your Redirect URI from the instructions above...after the application is created add these values to the environment section in the docker-compose.yml you created. ~/msData/docker-compose.yml - SPOTIFY_CLIENT_ID=yourClientId - SPOTIFY_CLIENT_SECRET=yourClientSecret - SPOTIFY_REDIRECT_URI=https://multi-scrobbler.mydomain.com/callback Later, after starting multi-scrobbler, visit the dashboard at http://192.168.0.100:9078 and click (Re)authenticate on the Spotify card to authorize multi-scrobbler to use your account. Monitoring will begin automatically after authorization is complete.","s":"Setup Sources","u":"/multi-scrobbler/quickstart/","h":"#setup-sources","p":269},{"i":276,"t":"Clients are services that store scrobbles. Multi-scrobbler will scrobble all listening activity from the Sources you configured to all Clients you configure here. Maloja Last.fm Koito Setup a Maloja server if you have not already done this. Maloja Setup Intructions Using Maloja's example docker-compose.yml: ~/malojaData/docker-compose.yml loading... View on GitHub Uncomment environment and add MALOJA_FORCE_PASSWORD=CHANGE_ME to set an admin password Start the container: ~/malojaData docker compose up -d Navigate to the Admin Panel (Cog in upper-right corner) -> API Keys (or at http://192.168.0.100:42010/admin_apikeys) Create a New Key and then copy the generated key value Finally, add these values to the environment section in the docker-compose.yml you created for multi-scrobbler earlier. ~/msData/docker-compose.yml - MALOJA_URL=http://192.168.0.100:42010 - MALOJA_API_KEY=myApiKey Register for an API account at Last.fm. Use the following for Callback URL: http://192.168.0.100:9078/lastfm/callback After account creation use the displayed information and add these values to the environment section in the docker-compose.yml you created for multi-scrobbler earlier. ~/msData/docker-compose.yml - LASTFM_API_KEY=myApiKey - LASTFM_SECRET=myApiSecret Setup a Koito server if you have not already done this. Create (or get) an API Key From your Koito server dashboard navigate to Settings (bottom-left icon) => API Keys Create a new Key (or use an existing) and Copy the key using the copy icon to the right of the key EX pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL Take note of your Koito username (used below as myUser) Determine your Koito URL This is the URL you use to access your Koito dashboard OR whatever URL is accessible from your multi-scrobbler instance. EX dashboard at http://192.168.0.100:4110 => replace myURL below with http://192.168.0.100:4110 More info on the URL to use is the full docs Add/Substitute values above into these examples values and add them to the environment section in the docker-compose.yml you created for multi-scrobbler earlier. ~/msData/docker-compose.yml - KOTIO_TOKEN=myToken - KOTIO_USER=myUser - KOITO_URL=myURL tip Ensure that Koito is configured to allow requests from multi-scrobbler! In Koito config set KOITO_ALLOWED_HOSTS to the IP the multi-scrobbler dashboard is accessible from.","s":"Setup Clients","u":"/multi-scrobbler/quickstart/","h":"#setup-clients","p":269},{"i":278,"t":"tip If you are running your multi-scrobbler container on a Linux host see these instructions for setting proper file permissions. From the same directory as the docker-compose.yml you created earlier start the container: ~/msData docker compose up -d You're done! Multi-scrobbler is now running. It will monitor the sources you configured and scrobble to clients you set up. Visit http://192.168.0.100:9078 to see the dashboard where configured Sources/Clients show current status and authentication options display statistics about discovered/scrobbled tracks and Now Playing status a real-time log shows multi-scrobbler's activity","s":"Start Multi-Scrobbler","u":"/multi-scrobbler/quickstart/","h":"#start-multi-scrobbler","p":269},{"i":280,"t":"See more advanced docker options as well as other install methods in the Installation docs Review the Configuration docs Learn about how to configure multi-scrobbler using files for more complicated Source/Client scenarios See all available Sources and Clients alongside configuration examples Learn how to set up notification webhooks Check out the kitchensink example Consult the FAQ for solutions to common problems","s":"Next Steps","u":"/multi-scrobbler/quickstart/","h":"#next-steps","p":269},{"i":283,"t":"Currently, multi-scrobbler does not have any databases or dependencies that require additional interaction/consideration when updating. The majority of major/minor version releases introduce only new functionality but occasionally may also include breaking changes in behavior or configuration. These changes, and how to update configs accordingly, are detailed in Github Release Notes. It is recommended to check this page before upgrading. Alternatively, multi-scrobbler version can be pinned using git tags or docker image tags that match release versions IE foxxmd/multi-scrobbler:0.9.7","s":"Updating","u":"/multi-scrobbler/updating/","h":"#updating","p":281},{"i":285,"t":"Docker Docker Compose docker image pull foxxmd/multi-scrobbler:latest docker container stop multi-scrobbler docker container rm multi-scrobbler docker run --name multi-scrobbler ... The last command is the same as the command used to initialy run multi-scrobbler. docker compose pull docker compose up -d","s":"Docker","u":"/multi-scrobbler/updating/","h":"#docker","p":281},{"i":287,"t":"Assuming the repository was used for initial installation with git clone, update by pulling the latest commit: git pull and restart multi-scrobbler.","s":"Nodejs","u":"/multi-scrobbler/updating/","h":"#nodejs","p":281},{"i":289,"t":"A javascript app to scrobble music you listened to, to Maloja, Last.fm, ListenBrainz, and Koito. Supports scrobbling from many Sources Azuracast Deezer Google Cast (Chromecast) Icecast Jellyfin JRiver Kodi Koito Last.fm Last.fm (Endpoint) ListenBrainz ListenBrainz (Endpoint) Maloja Mopidy MPD (Music Player Daemon) MPRIS (Linux Desktop) Musikcube Plex Rocksky Spotify Subsonic-compatible APIs (like Airsonic and Navidrome) teal.fm WebScrobbler VLC Yamaha MusicCast Youtube Music Supports scrobbling to many Clients Koito Last.fm ListenBrainz Maloja Rocksky teal.fm Monitor status of Sources and Clients using webhooks (Gotify, Ntfy, Apprise) or healthcheck endpoint Supports Now Playing for scrobble Clients Supports configuring for single or multiple users (scrobbling for your friends and family!) Web server interface for stats, basic control, and detailed logs Graceful network and client failure handling (queued scrobbles that auto-retry) Smart handling of credentials (persistent, authorization through app) Easy configuration through ENVs or JSON Modify data before scrobbling with regular expression or search patterns Install using Docker images for x86/ARM or locally with NodeJS Quick Start Guide Why should I use this over a browser extension and/or mobile app scrobbler? Platform independent -- Because multi-scrobbler communicates directly with service APIs it will scrobble everything you play regardless of where you play it. No more need for apps on every platform you use! Open-source -- Get peace of mind knowing exactly how your personal data is being handled. Track your activity regardless of where you listen -- Scrobble from many Sources to one Client with ease and without duplicating tracks. Manage scrobbling for others -- Scrobble for your friends and family without any setup on their part. Easily silo sources to specific clients to keep plays separate. But I already scrobble my music to Last.fm/ListenBrainz, is multi-scrobbler for me? Yes! You can use Last.fm as a Source or Listenbrainz as a Source to forward scrobbles from your profile to any other Client! That way you can keep your current scrobble setup as-is but still get the benefit of capturing your data to a self-hosted location.","s":"Overview","u":"/multi-scrobbler/","h":"","p":288},{"i":291,"t":"You set up configurations for one or more Sources and one or more Clients. MS monitors all of your configured Sources. When new tracks are played by a Source MS grabs that information and then sends it (scrobbles it) to all Clients that Source is configured to forward to.","s":"How Does multi-scrobbler (MS) Work?","u":"/multi-scrobbler/","h":"#how-does-multi-scrobbler-ms-work","p":288},{"i":293,"t":"A Source is a data source that contains information about music you are playing or have listened to, like a desktop player, web music player, or cloud music service. Examples are Spotify, Jellyfin, Plex, Youtube Music, Navidrome, etc... Source configurations consist of: A friendly name. Any data needed to communicate or authenticate with the Source. An optional list of Client names that the Source should scrobble to. If omitted the Source also scrobbles to all configured Clients.","s":"Source","u":"/multi-scrobbler/","h":"#source","p":288},{"i":295,"t":"A Client is an application that stores the historical information about what music you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz... Client configurations consist of: A friendly name. Any data needed to communicate or authenticate with the Client.","s":"Client","u":"/multi-scrobbler/","h":"#client","p":288},{"i":297,"t":"See the Quick Start Guide","s":"Quick Start","u":"/multi-scrobbler/","h":"#quick-start","p":288},{"i":299,"t":"See the Installation documentation","s":"Installation","u":"/multi-scrobbler/","h":"#installation","p":288},{"i":301,"t":"See the Configuration documentation","s":"Configuration","u":"/multi-scrobbler/","h":"#configuration","p":288},{"i":303,"t":"A status page with statistics, recent logs, and some runtime configuration options can be found at http://localhost:9078 Output is also provided to stdout/stderr as well as file if specified in configuration. On first startup you may need to authorize Spotify and/or Last.fm by visiting the callback URL (which can also be accessed from the status page). Visit the status page above to find the applicable link to trigger this.","s":"Usage","u":"/multi-scrobbler/","h":"#usage","p":288},{"i":305,"t":"Having issues with connections or configuration? Check the FAQ before creating an issue!","s":"Help/FAQ","u":"/multi-scrobbler/","h":"#helpfaq","p":288},{"i":307,"t":"Detailed architecture and development guides for Sources/Clients","s":"Development","u":"/multi-scrobbler/","h":"#development","p":288},{"i":309,"t":"MIT","s":"License","u":"/multi-scrobbler/","h":"#license","p":288},{"i":311,"t":"tip For the difference between ENV and File examples in this document see Configuration Types.","s":"Overview","u":"/multi-scrobbler/installation/","h":"","p":310},{"i":313,"t":"Cross-platform images are built for x86 (Intel/AMD) and ARM64 (IE Raspberry Pi) Available Images Dockerhub Github Packages Repository Page docker.io/foxxmd/multi-scrobbler:latest Repository Page ghcr.io/foxxmd/multi-scrobbler:latest Or use the example docker-compose.yml, found in the repo, after modifying it to fit your configuration: docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones #- JELLYFIN_APIKEY= #- JELLYFIN_URL= #- JELLYFIN_USER= #- MALOJA_URL=http://maloja:42010 #- MALOJA_API_KEY= #- PUID=1000 # required if running docker on linux host, see main README Docker setup instructions #- PGID=1000 # required if running docker on linux host, see main README Docker setup instructions # set if using a source/client with redirect URI that you have not explicitly set and MS is NOT running on the same machine that you will view the dashboard from # EX: You will view MS dashboard at 'http://192.168.0.101:9078' -> set BASE_URL=http://192.168.0.101:9078 #- BASE_URL=http://MyHostIP:9078 volumes: - \"./config:/config\" #networks: # - (optional to add container to the same bridge network that maloja is inside to be able to use docker internal networking & dns to resolve and connect to maloja URL via http://maloja:port) ports: - 9078:9078 # first port is the HOST port multi-scrobbler will serve UI and API on restart: unless-stopped Recommended configuration steps for docker or docker-compose usage: Storage You should bind a host directory into the container for storing configurations and credentials. Otherwise, these will be lost when the container is updated. Example Docker Docker Compose Using -v method for docker: docker run ... -v \"$(pwd)/config:/config\" foxxmd/multi-scrobbler Using docker-compose: docker-compose.yml services: multi-scrobbler: # ... volumes: - \"./config:/config\" Networking If you are using a bridge network (default docker setup) you must map a port to the container in order to access the dashboard and use MS with some sources (Webscrobbler, LFM/LZ Endpoints). The default container port is 9078. Example Docker Docker Compose Docker run publish options: docker run ... -p 9078:9078 foxxmd/multi-scrobbler docker-compose: docker-compose.yml services: multi-scrobbler: # ... ports: - \"9078:9078\" Base URL Optionally, when using a Source or Client that has a \"Redirect URI\" that you have not explicitly defined and using a bridge network or installing MS on a different machine than the one used to view the dashboard set the Base URL as the IP of the host machine. (This is the IP you would use to view the dashboard in a browser) Example Docker Docker Compose docker run ... -e BASE_URL=\"http://hostMachineIP\" foxxmd/multi-scrobbler docker-compose: docker-compose.yml services: multi-scrobbler: # ... environment: - BASE_URL=http://hostMachineIP Other (Optionally) set the timezone for the container using the environmental variable TZ (docker) (docker-compose) Linux Host info If you are running this container with Docker on a Linux Host you must specify user:group permissions of the user who owns the configuration directory on the host to avoid docker file permission problems. These can be specified using the environmental variables PUID and PGID. To get the UID and GID for the current user run these commands from a terminal: id -u -- prints UID id -g -- prints GID","s":"Docker","u":"/multi-scrobbler/installation/","h":"#docker","p":310},{"i":315,"t":"tip See the Quick Start Guide for another guided docker-compose example The example scenario: Jellyfin Source Maloja Client Serving app on port 9078 Docker container located on a different IP (192.168.0.100) so use Base URL Config/data directory on host machine in a directory next to docker-compose.yml Linux uid/gid is 1000:1000 Docker Docker Compose ENV File docker run --name multi-scrobbler -e \"JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56bd6540c\" -e \"JELLYFIN_URL=192.168.0.101:8096\" -e \"JELLYFIN_USER=MyUser\" -e \"BASE_URL=192.168.0.100\" -e \"MALOJA_URL=http://domain.tld\" -e \"MALOJA_API_KEY=1234\" -e \"PUID=1000\" -e \"PGID=1000\" -p 9078:9078 -v /home/myUser/ms:/config foxxmd/multi-scrobbler docker run --name multi-scrobbler -e \"PUID=1000\" -e \"PGID=1000\" -e \"BASE_URL=192.168.0.100\" -p 9078:9078 -v \"$(pwd)/config:/config\" foxxmd/multi-scrobbler See docker-compose.yml sample above for more options and annotations. docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56bd6540c - JELLYFIN_URL=192.168.0.101:8096 - JELLYFIN_USER=MyUser - BASE_URL=http://192.168.0.100:9078 - MALOJA_URL=http://domain.tld:42010 - MALOJA_API_KEY=1234 - PUID=1000 - PGID=1000 volumes: - \"./config:/config\" ports: - \"9078:9078\" restart: unless-stopped","s":"Docker Usage Example","u":"/multi-scrobbler/installation/","h":"#docker-usage-example","p":310},{"i":317,"t":"After installation see service.md to configure multi-scrobbler to run automatically in the background.","s":"Local Installation","u":"/multi-scrobbler/installation/","h":"#local-installation","p":310},{"i":319,"t":"Clone this repository somewhere and then install from the working directory git clone https://github.com/FoxxMD/multi-scrobbler.git . cd multi-scrobbler nvm use # optional, to set correct Node version npm install npm run docs:install && npm run build npm run start Rollup build error During building if you encounter an error like: Your current platform \"XXX\" and architecture \"XXX\" combination is not yet supported by the native Rollup build. Modify overrides in package.json to use @rollup/wasm-node as a drop-in replacement for rollup: \"overrides\": { \"spotify-web-api-node\": { \"superagent\": \"$superagent\" } \"vite\": { \"rollup\": \"npm:@rollup/wasm-node@^4.9.6\" } } See this issue for more detail. Usage Examples ENV File JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56bd6540c JELLYFIN_URL=192.168.0.101:8096 JELLYFIN_USER=MyUser MALOJA_URL=\"http://domain.tld\" node src/index.js ./config/config.json ./config/config.json { \"sources\": [ { \"type\": \"jellyfin\", \"clients\": [\"myConfig\"], \"name\": \"myJellyfinSource\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"url\": \"http://192.168.0.101:8096\", \"user\": \"MyUser\" } } ], \"clients\": [ { \"type\": \"maloja\", \"name\": \"myConfig\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ], } npm run start tip The web UI and API is served on port 9078. This can be modified using the PORT environmental variable.","s":"Nodejs","u":"/multi-scrobbler/installation/","h":"#nodejs","p":310},{"i":321,"t":"Unsupported Flatpak/Flathub installs are no longer supported. You can still build MS as a Flatpak app from source. See more information about Flatpak EOL.","s":"Flatpak","u":"/multi-scrobbler/installation/","h":"#flatpak","p":310},{"i":323,"t":"This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development.","s":"Source Development/Tutorial","u":"/multi-scrobbler/development/dev-source/","h":"","p":322},{"i":325,"t":"You are the developer of a fancy, new self-hosted web-based media player called Cool Player. Cool Player has a slick interface and many bells and whistles, but most importantly it has an API. The API: Has an unauthenticated health endpoint at /api/health that returns 200 if the service is running properly Has authenticated endpoints that require a user-generated token in the header Authorization MY_TOKEN Has a /api/recent endpoint that lists recently played tracks with a timestamp Has a /api/now-playing endpoint that returns information about the state of the player like current track, player position in the track, etc... Cool Player is by default accessed on port 6969 Your personal instance of Cool Player is hosted at http://192.168.0.100:6969 and the api is accessed at http://192.168.0.100:6969/api Because there is an API that MS can actively read this will be a polling Source where MS sends requests to Cool Player to get scrobble information -- as opposed to an ingress Source like Jellyfin/Plex that uses webhooks from the service to send data to MS.","s":"Scenario","u":"/multi-scrobbler/development/dev-source/","h":"#scenario","p":322},{"i":328,"t":"We will create a new config interface for Cool Player using the Common Config and tell MS it is a valid config that can be used. Create a new file for your config: /src/backend/common/infrastructure/config/source/coolplayer.ts import { PollingOptions } from \"../common.js\"; import { CommonSourceConfig, CommonSourceData } from \"./index.js\"; // all of the required data for the Build Data and Test Auth stages (from Common Development docs) // should go here export interface CoolPlayerSourceData extends CommonSourceData, PollingOptions { // remember to annotation your properties! /** * The user-generated token for Cool Player auth created in Cool Player -> Settings -> User -> Tokens * * @example f243331e-cf5b-49d7-846b-0845bdc965b4 * */ token: string /** * The host and port where Cool Player is hosted * * @example http://192.168.0.100:6969 * */ baseUrl: string } export interface CoolPlayerSourceConfig extends CommonSourceConfig { data: CoolPlayerSourceData } export interface CoolPlayerSourceAIOConfig extends CoolPlayerSourceConfig { // when using the all-in-one 'config.json' this is how users will identify this source type: 'coolplayer' } Add the new interface to the list of valid interfaces for sources: src/backend/common/infrastructure/config/source/sources.ts import { ChromecastSourceAIOConfig, ChromecastSourceConfig } from \"./chromecast.js\"; // ... import { CoolPlayerSourceAIOConfig, CoolPlayerSourceConfig } from \"./coolplayer.js\"; export type SourceConfig = SpotifySourceConfig // ... | CoolPlayerSourceConfig; export type SourceAIOConfig = SpotifySourceAIOConfig // ... | CoolPlayerSourceAIOConfig; Finally, add the source type identifier to the list of valid identifiers src/backend/common/infrastructure/Atomic.ts export type SourceType = 'spotify' // ... | 'coolplayer'; export const sourceTypes: SourceType[] = [ 'spotify', // ... 'coolplayer' ]; Now we will create a new Source inheriting from AbstractComponent that: accepts our config interface implements a function to transform CoolPlayer's track data into a PlayObject implements required stages implements required methods to current player state and/or now playing track","s":"Define and Implement Config","u":"/multi-scrobbler/development/dev-source/","h":"#define-and-implement-config","p":322},{"i":330,"t":"First we create a new Source called CoolPlayerSource and setup our constructor to accept the config and specify Auth behavior. src/backend/sources/SpotifySource.ts import { CoolPlayerSourceConfig } from \"../common/infrastructure/config/source/coolplayer.js\"; import MemorySource from \"./MemorySource.js\"; import { InternalConfig, } from \"../common/infrastructure/Atomic.js\"; // MemorySource is the base class used for polling-type Sources export default class CoolPlayerSource extends MemorySource { // type hints for TS to know what the base class config looks like declare config: CoolPlayerSourceConfig; constructor(name: any, config: CoolPlayerSourceConfig, internal: InternalConfig, emitter: EventEmitter) { super('coolplayer', name, config, internal, emitter); // Cool Player required authentication this.requiresAuth = true; // but does not require user interaction for auth to work this.requiresAuthInteraction = false; // tells MS this is a Source that can be activity monitored through API this.canPoll = true; } }","s":"Create CoolPlayer Source","u":"/multi-scrobbler/development/dev-source/","h":"#create-coolplayer-source","p":322},{"i":332,"t":"When MS starts it reads all configs and determines which Source to build based on the configs found. We need to tell it to build a CoolPlayerSource when a coolplayer config type is found. We modify ScrobbleSources.ts to add CoolPlayerSource as an option: src/backend/sources/ScrobbleSources.ts // ... import { CoolPlayerSource, CoolPlayerData } from \"./CoolPlayerSource.js\"; export default class ScrobbleSources { // ... buildSourcesFromConfig = async (additionalConfigs: ParsedConfig[] = []) => { // ... // if CoolPlayerSource should be able to be built from ENVs only // then add it as a case statement here for (const sourceType of sourceTypes) { switch (sourceType) { // ... case 'musikcube': // ... break; case 'coolplayer': const cp = { baseUrl: process.env.COOL_URL, token: process.env.COOL_TOKEN } if (!Object.values(cp).every(x => x === undefined)) { configs.push({ type: 'coolplayer', name: 'unnamed', source: 'ENV', mode: 'single', configureAs: defaultConfigureAs, data: cp as CoolPlayerData }); } break; default: break; } } } // ... // (required) create new CoolPlayerSource if source config type is 'coolplayer' addSource = async (clientConfig: ParsedConfig, defaults: SourceDefaults = {}) => { // ... let newSource: AbstractSource; switch (type) { // ... case 'musikcube': // ... break; case 'coolplayer': newSource = await new CoolPlayerSource(name, compositeConfig as CoolPlayerSourceConfig, internal, this.emitter); break; default: break; } } }","s":"Initialize Source from Config","u":"/multi-scrobbler/development/dev-source/","h":"#initialize-source-from-config","p":322},{"i":334,"t":"Now we will create a static function that is used to take the track data returned from Cool Player's API and return a standard PlayObject. src/backend/sources/CoolPlayerSource.ts import dayjs from \"dayjs\"; import { FormatPlayObjectOptions, } from \"../common/infrastructure/Atomic.js\"; import { PlayObject } from \"../../core/Atomic.js\"; export default class CoolPlayerSource extends MemorySource { // ... // 'obj' should ideally be a real TS interface // if CoolPlayer has a ts/js client we would use that otherwise // we should build our own interfaces to represent track data from Cool Player's API static formatPlayObj(obj: any, options: FormatPlayObjectOptions = {}): PlayObject { const { trackName, artistName, albumName, duration, playedAt, } = obj; return { data: { artists: [artistName], album: albumName, track: trackName, // assuming seconds duration, // assuming playedAt is an ISO8601 timestamp playDate: dayjs(playedAt) }, meta: { source: 'CoolPlayer' } } } }","s":"Implement Play Object Transform","u":"/multi-scrobbler/development/dev-source/","h":"#implement-play-object-transform","p":322},{"i":336,"t":"Next we will implement the Stages required to get CoolPlayerSource running. Build Data First we implement the Build Data Stage. We will check that the token and baseUrl properties have been provided by the user. Additionally, we will parse the baseUrl and add default ports/prefix. src/backend/sources/CoolPlayerSource.ts import { URL } from \"url\"; // ... export default class CoolPlayerSource extends MemorySource { baseUrl!: URL; // ... static parseConnectionUrl(val: string) { const normal = normalizeUrl(val, {removeTrailingSlash: false, normalizeProtocol: true}) const url = new URL(normal); if (url.port === null || url.port === '') { url.port = '6969'; } if (url.pathname === '/') { url.pathname = '/api/'; } return url; } protected async doBuildInitData(): Promise<true | string | undefined> { const { token, baseUrl } = this.config; if (token === null || token === undefined || (typeof token === 'string' && token.trim() === '')) { throw new Error(`'token' must be defined`); } if (baseUrl === null || baseUrl === undefined || (typeof baseUrl === 'string' && baseUrl.trim() === '')) { throw new Error(`'baseUrl' must be defined`); } try { this.baseUrl = CoolPlayerSource.parseConnectionUrl(baseUrl); } catch (e) { throw new Error(`Could not parse baseUrl: ${baseUrl}`, {cause: e}); } this.logger.verbose(`Config URL: ${baseUrl} => Normalized: '${this.url.toString()}'`); return true; } } Check Connection Second we will implement the Check Connection Stage: src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { UpstreamError } from \"../common/errors/UpstreamError.js\"; // ... export default class CoolPlayerSource extends MemorySource { // ... protected async doCheckConnection(): Promise<true | string | undefined> { try { const resp = await request.get(`${this.baseUrl}/health`); return true; // if /health returned version info we could instead read response and return a string with version info for visibility to the user // return `Cool Player Version: ${resp.body.version}`; } catch (e) { throw e; } } } Test Auth Finally, we will implement Auth Test Stage: src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { UpstreamError } from \"../common/errors/UpstreamError.js\"; // ... export default class CoolPlayerSource extends MemorySource { // ... doAuthentication = async () => { try { const resp = await request .get(`${this.baseUrl}/recent`) .set('Authorization', `Token ${this.config.token}`); return true; } catch (e) { // if Cool Player returned an error as json we could parse it from error body and throw new Error with the message throw e; } } }","s":"Implement Stages","u":"/multi-scrobbler/development/dev-source/","h":"#implement-stages","p":322},{"i":338,"t":"The majority of Sources MS monitors primarily operate as a source of truth for a music player rather than a played music history. Only Listenbrainz and Last.fm operate as a source of music history. To this end, MS implements a state machine that emulates the behavior of a music player in order to keep track of when a song you are listening to should be scrobbled. It does this by monitoring the \"currently playing\" track reported by a Source's service, with varying degrees of accuracy depending on what information is returned from the service. The state machine is implemented in MemorySource which our CoolPlayerSource inherits from. For a polling Source to work properly we need to implement a function, getRecentlyPlayed, that returns PlayObjects that are \"newly\" played. These are then checked against previously \"discovered\" plays and their timestamp to determine if they should be surfaced to Clients to scrobble. To take advantage of the MemorySource state machine we will additionally use processRecentPlays from MemorySource inside getRecentlyPlayed. We pass track and/or player state returned from the Source service to processRecentPlayers. It then takes care of deriving Source player state based on how this data changes over time. The advantage to using processRecentPlays is that our Source service does not necessarily need to pass any player information -- as long as the track info has a duration we can more-or-less determine if it has been played long enough to scrobble. src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { SourceData, PlayerStateData, SINGLE_USER_PLATFORM_ID } from \"../common/infrastructure/Atomic.js\"; // ... export default class CoolPlayerSource extends MemorySource { // ... protected async getRecentlyPlayed(options: RecentlyPlayedOptions = {}): Promise<PlayObject[]> { const plays: SourceData[] = []; try { // currently playing tracks/player state data const resp = await request .get(`${this.baseUrl}/now-playing`) .set('Authorization', `Token ${this.config.token}`); const { body: { playerState, // 'playing' or 'stopped' or 'paused'... position, // number of seconds into the track IE at position 48 -> ( 0:48/3:56 in player UI ) play: { /* track data */} } } = resp; // transform into standard player state data const playerData: PlayerStateData = { platformId: SINGLE_USER_PLATFORM_ID, play: CoolPlayerSource.formatPlayObj(play), position }; // if Cool Player does return player state we can also push a regular PlayObject to this list plays.push(playerData); } catch (e) { throw e; } // process player state through state machine // if the track changes or player state changes // and currently played track has been listened to long enough to be scrobbled it will return in newPlays const newPlays = this.processRecentPlays(plays); // finally, we return new plays and MS checks to see if they have been previously seen // before signalling to Clients that they can be scrobbled return newPlays; } } Congratulations! Your CoolPlayerSource has been minimally implemented and can now be used in multi-scrobbler.","s":"Implement Polling","u":"/multi-scrobbler/development/dev-source/","h":"#implement-polling","p":322},{"i":341,"t":"To have your Source try to scrobble \"missed\" tracks when MS starts up the Source's service must be able to provide: track information timestamp of when the track was played In your Source implement getBackloggedPlays and set setting in constructor indicating it has backlogging capabilities: src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { PlayObject, } from \"../common/infrastructure/Atomic.js\"; // ... export default class CoolPlayerSource extends MemorySource { constructor(/* ... */) { super(/* ... */); // ... // tell MS it should try to get backlogged tracks on startup this.canBacklog = true; } // ... protected getBackloggedPlays = async (options: RecentlyPlayedOptions): Promise<PlayObject[]> => { try { const resp = await request .get(`${this.baseUrl}/recent`) .set('Authorization', `Token ${this.config.token}`); // assuming list from body looks like track info returned in // \"Implement Play Object Transform\" section const { body = [] } = resp; return body.map(x => CoolPlayerSource.formatPlayObj(x)); } catch (e) { throw new Error('Error occurred while getting recently played', {cause: e}); } } }","s":"Backlog","u":"/multi-scrobbler/development/dev-source/","h":"#backlog","p":322},{"i":343,"t":"There are some scenarios where polling and/or state machine is not the right tool to handle determining if incoming data should be scrobbled: The Source service handles scrobble threshold internally, the data being received should always be scrobbled (WebScrobbler, Plex, Tautulli, Listenbrainz, Last.fm) You prefer to handle the scrobble determination yourself Music History Source If the Source is still polling but the track returned should always be scrobbled if not already seen IE the Source service is a music history source (Listenbrainz, Last.fm), rather than a music player, then simply indicate to MS the source of truth type by setting it in the constructor. The state machine will always return a track if it is new and not seen, regardless of how recently it was seen: src/backend/sources/CoolPlayerSource.ts import { SOURCE_SOT } from \"../../core/Atomic.js\"; // ... export default class CoolPlayerSource extends MemorySource { constructor(/* ... */) { super(/* ... */); // ... // tell MS it should immediately scrobble any new, unseen tracks from the upstream service this.playerSourceOfTruth = SOURCE_SOT.HISTORY; } } Non-Polling Source Ingress Sources (like Plex, Tautulli, Webscrobbler, Jellyfin) do not having a polling mechanism because the upstream service contacts MS when there is an event, rather than MS contacting the upstream service. For these Sources you will need to implement endpoints in src/service/api.ts and corresponding files. See the existing Sources in the project as references for how to do this. You may still wish to use the state machine MemorySource (like Jellyfin) if the events received are not \"scrobble\" events but instead of implementing getRecentlyPlayed you will implement your own function in your Source class, like handle(), that receives data and then uses processRecentPlays. After new plays have been determined see the next section for how to scrobble... Basic Source At the core of a Source that implements AbstractSource's functionality is the ability to Discover and Scrobble plays. These functions are not seen in the MVP CoolPlayerSource because they are automatically done by the polling functionality after being returned from getRecentlyPlayed. Discovery A Source keeps track of all the \"plays\" that are determined to be valid for scrobbling. When a play is valid it is checked to see if it has already been \"discovered\" by comparing the track info and timestamp of the play against already discovered plays. This prevents duplicate scrobbling by using the Source's own data and simplifies scrobbling for Sources by allowing your implementation to \"always\" ingest track data without having to worry about whether its new or not -- AbstractSource and discover() will take care of that for you. src/backend/sources/MyBasicSource.ts export default class MyBasicSource extends AbstractSource { handle(somePlay: PlayObject) { // if the track is \"new\" and not seen before it is returned in the discovered list // we then know it is OK to be sent to Clients for scrobbling const discovered: PlayObject[] = this.discover([somePlay]); } } This additionally will be surfaced to the user in the Dashboard in the \"Tracks Discovered\" page. Scrobbling After a play is verified to be discovered we can then scrobble it. This will emit the plays to the ScrobbleClients service which then disseminates the play to all Clients that were configured to listen in the Source's config. src/backend/sources/MyBasicSource.ts export default class MyBasicSourceSource extends AbstractSource { handle(somePlay: PlayObject) { const discovered: PlayObject[] = this.discover([somePlay]); // emit plays that can be scrobbled by clients this.scrobble(discovered); } } If your service only emits an event when a play is scrobbled you can technically skip using discover() but it is good practice to use it unless you have a very good reason not to. note Using scrobble() does not guarantee a track is actually scrobbled! The Scrobble Clients also check the play against their own \"recently scrobbled\" list to prevent duplicates.","s":"Other Source Types","u":"/multi-scrobbler/development/dev-source/","h":"#other-source-types","p":322},{"i":345,"t":"Multi-scrobbler configs support the ability to modify scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler's lifecycle.","s":"Scrobble Modification","u":"/multi-scrobbler/configuration/transforms/","h":"","p":344},{"i":347,"t":"You may need to \"clean up\" data from a Source or before sending to a scrobble Client due to any number of reasons: ID3 tags in your music collection are dirty or have repeating garbage IE [YourMusicSource.com] My Artist - My Title A Source's service often incorrectly adds data to some field IE My Artist - My Title (Album Version) when the title should just be My Title An Artist you listen to often is spelled different between a Source and a Client which causes duplicate scrobbles In any scenario where a repeating pattern can be found in the data it would be nice to be able to fix it before the data gets downstream or to help prevent duplicate scrobbling. Multi-scrobbler can help you do this.","s":"Why?","u":"/multi-scrobbler/configuration/transforms/","h":"#why","p":344},{"i":350,"t":"First, let's recap the lifecycle of a scrobble in multi-scrobbler: Sources are the beginning of the journey for a Play (song you've listened to long enough to be scrobblable) A Source finds a new valid Play The Source compares this new Play to all the other Plays it has already seen, if the Play is unique (title/artist/album/listened datetime) then... The Source discovers the Play, adds it to Plays it has seen already, and broadcasts the Play should be scrobbled to all Clients Scrobble Clients listen for discovered Plays from Sources, then... A Client receives a Play from a Source The Client compares this Play to all the other scrobbles it has already seen, if the Play is unique (title/artist/album/listened datetime) then... The Client scrobbles the Play downstream to the scrobble service and adds it as a Scrobble it has seen already","s":"Journey of a Scrobble","u":"/multi-scrobbler/configuration/transforms/","h":"#journey-of-a-scrobble","p":344},{"i":352,"t":"You'll notice there is a pattern above that looks like this: Before data is compared Data is compared After data is compared These points, during both Source and Client processes, are when you can hook into the scrobble lifecycle and modify it. TLDR In more concrete terms this is the structure of hooks within a configuration (can be used in any Source or Client): lastfm.json [ { \"name\": \"myLastFm\", \"enable\": true, \"configureAs\": \"source\", \"data\": { // ... }, \"options\": { \"playTransform\": { \"preCompare\": {/* ... */}, \"compare\": {/* ... */}, \"postCompare\": {/* ... */} } } } ] Hook For Sources: preCompare - modify Play data immediately when received compare - temporarily modify Play data when it is being compared to see if Play was already discovered postCompare - modify Play data before sending to scrobble Clients For Clients: preCompare - modify Play data immediately when received compare - temporarily modify Play data when it is being compared to see if it was already scrobbled postCompare - modify Play data before scrobbling it to downstream service and adding to already seen scrobbles tip Keep in mind that modifying Scrobble/Play data earlier in the lifecycle will affect that data at all times later in the lifecycle. For example, to modify the track so it's the same anywhere it is processed in multi-scrobbler you only need to modify it in the Source's preCompare hook because all later processes will receive the data with the modified track.","s":"Lifecyle Hooks","u":"/multi-scrobbler/configuration/transforms/","h":"#lifecyle-hooks","p":344},{"i":354,"t":"Each hook (preCompare etc...) is an object that specifies what part of the Play to modify: { \"title\": [/* ... */], \"artists\": [/* ... */], \"album\": [/* ... */] } Expression and then a list what pattern/replacements (expressions) to use for the modification by using either simple strings or search-replace objects: [ \"badTerm\", // remove all instances of 'badTerm' { \"search\": \"anotherBadTerm\", // and also match all instances of 'anotherBadTerm' \"replace\": \"goodTerm\" // replace with the string 'goodTerm' } ] Putting it all together: lastfm.json [ { \"name\": \"myLastFm\", \"enable\": true, \"configureAs\": \"source\", \"data\": { // ... }, \"options\": { \"playTransform\": { \"preCompare\": { \"title\": [ \"badTerm\", { \"search\": \"badTerm\", \"replace\": \"goodTerm\" } ] }, } } } ] note If the value of the field (title, an artist, album) is an empty string after transforming then the field is removed. tip Modifications can also be applied to all Sources or all Clients when using the AIO Config config.json by setting playTransform in sourceDefaults or clientDefaults: Example config.json { \"sourceDefaults\": { // will apply playTransform to all sources \"playTransform\": { \"preCompare\": { \"title\": [ \"(Album Version)\" ] } } }, \"sources\": [/* ... */], \"clients\": [/* ... */] } Compare Hook The compare hook is slightly different than preCompare and postCompare. It consists of an object where you define which side(s) of the comparison should be modified. It also does not modify downstream data! Instead, the modifications are made only for use in the comparison. lastfm.json [ { \"name\": \"myLastFm\", // ... \"options\": { \"playTransform\": { \"compare\": { \"candidate\": {/* ... */}, // modify the \"new\" Play being compared \"existing\": {/* ... */}, // modify all \"existing\" Play/Scrobbles the new Play is being compared against }, } } } ] Regular Expressions In addition to plain strings expressions that are matched and removed you can also use Regular Expressions. Write your regex like you normally would, but as a string, and it'll automatically be parsed: [ \"/^\\(\\w+.com)/i\", // matches any string that starts with '(YourMusic.com)' and removes it { \"search\": \"/^\\(\\w+.com)/i\", // matches any string that starts with '(YourMusic.com)' \"replace\": \"[MySite.com]\" // replace with the string '[MySite.com]' } ] The replace property uses javascript's replace() function and so can use any special string characters.","s":"Modification Parts","u":"/multi-scrobbler/configuration/transforms/","h":"#modification-parts","p":344},{"i":356,"t":"\"When\" Condition Top-level hooks and individual rules also support a when key for testing if they should be run. The when key is similar to a normal modification except: the keys accept a single string instead of an array the when key data is an array instead of a single object All parts of an individual when clause must test true to \"pass\" but if any when clauses pass the hook/rule is processed. Example when data: { \"when\": [ { \"artist\": \"Elephant Gym\", // both of these must match the Play object (AND) \"album\": \"Dreams\" // both of these must match the Play object (AND) }, // OR { \"title\": \"/(Remastered)$/\", // both of these must match the Play object (AND) \"album\": \"Various Artists\" // both of these must match the Play object (AND) } ] } More succinctly: All parts (artist album title) of a when are AND conditions All part-objects in the when array are OR conditions Example of top-level hook with when condition { // IF the artist is Elephant Gym // THEN Run preCompare hook ELSE skip this hook // // Run search-replace on album // Run regex title remove \"sourceDefaults\": { \"playTransform\": { \"preCompare\": { \"when\": [ { \"artist\": \"/Elephant Gym/\" } ], \"album\": [ { \"search\": \"Dreams\", \"replace\": \"夢境\" } ], \"title\": [\"/\\s\\-\\s滾石40\\s滾石撞樂隊\\s40團拚經典(.+)$/i\"] }, } } } Example of individual rule with when condition { // Always run preCompare // // On search-replace in title... // IF artist matches \"Elephant Gym\" // THEN Run regex search-replace ELSE skip this rule // // Run live|remastered regex remove \"sourceDefaults\": { \"playTransform\": { \"preCompare\": { \"title\": [ { \"search\": \"/\\\\s\\\\-\\\\s滾石40\\\\s滾石撞樂隊\\\\s40團拚經典(.+)$/i\", \"replace\": \"\", \"when\": [ { \"artist\": \"/Elephant Gym/\" } ] }, \"/(\\\\s\\\\-\\\\s|\\\\s)(feat\\\\.(.+)|live|remastered(.+))$/i\" ], } } } } Top-level Hook array Top-level hooks can also be an array of hooks. This makes creating multiple scenarios for top-level when-gated hooks easier. All hooks in the array will be run (assuming their when's pass, if they exist) and their input will be the Play object output of the previous hook in the array. Example { \"sourceDefaults\": { \"playTransform\": { \"preCompare\": [ // first lifecycle hook of preCompare to run { \"title\": [ { \"search\": \"something\", \"replace\": \"else unique\" } ] }, // second lifecycle hook of preCompare to run { \"title\": [ { \"search\": \"else unique\", \"replace\": \"very demure\" } ] }, ] } } }","s":"Conditional Modification","u":"/multi-scrobbler/configuration/transforms/","h":"#conditional-modification","p":344},{"i":358,"t":"MS can log the output of hook transformations if/when they occur. In the playTransform object of a Source/Client config use log: \"log\": true => Output original play + final transformed output of last hook in the array \"log\": \"all\" => Output original play + final transformed output of each hook in the array { \"name\": \"myThing\", \"data\": {/*...*/}, \"options\": { \"playTransform\": { \"preCompare\": {/*...*/}, \"log\": true } } }","s":"Logging","u":"/multi-scrobbler/configuration/transforms/","h":"#logging","p":344},{"i":361,"t":"Removes the phrase (Album Version) from the Title of a Play Example config.json { \"sourceDefaults\": { \"playTransform\": { \"preCompare\": { \"title\": [ \"(Album Version)\" ] } } } }","s":"Remove phrase from Title in all new Plays","u":"/multi-scrobbler/configuration/transforms/","h":"#remove-phrase-from-title-in-all-new-plays","p":344},{"i":363,"t":"Example lastfm.json [ { \"name\": \"myLastFm\", // ... \"options\": { \"playTransform\": { \"compare\": { \"candidate\": { \"title\": [ \"/(\\(.+\\))\\s*$/\" ] }, \"existing\": { \"title\": [ \"/(\\(.+\\))\\s*$/\" ] }, }, } } } ]","s":"Remove all parenthesized content from the end of a title","u":"/multi-scrobbler/configuration/transforms/","h":"#remove-all-parenthesized-content-from-the-end-of-a-title","p":344},{"i":365,"t":"Example config.json { \"sourceDefaults\": { \"playTransform\": { \"preCompare\": { \"artists\": [ { \"search\": \"Boz Skaggs\", \"replace\": \"Boz Scaggs\" } ] } } } }","s":"Rename misspelled artist in all new Plays","u":"/multi-scrobbler/configuration/transforms/","h":"#rename-misspelled-artist-in-all-new-plays","p":344},{"i":367,"t":"Example config.json { \"sourceDefaults\": { \"playTransform\": { \"preCompare\": { \"album\": [ { \"search\": \"Various Artists\", \"replace\": \"\" } ] } } } }","s":"Remove \"Various Artists\" albums in all new Plays","u":"/multi-scrobbler/configuration/transforms/","h":"#remove-various-artists-albums-in-all-new-plays","p":344},{"i":369,"t":"Details When the Artist string is actually a multi-artist, delimited string, this search-and-replace will replace the string with just the first artist found. Ex My Artist One / My Artist Two / Another Guy My Artist One Artists are delimited with a spaced forward slash (/) in the regex below. Replace the contents of the delim capture group with the delimiter for your use case. Some more common scenarios: (?<delim>\\\\/) No spaces between slash IE My Artist One/My Artist Two/Another Guy (?<delim>\\\\s*\\\\\\\\\\s*) Backslash instead of forward slash IE My Artist One \\ My Artist Two \\ Another Guy (?<delim>,) Comma IE My Artist One, My Artist Two, Another Guy Example config.json { \"sourceDefaults\": { \"playTransform\": { \"preCompare\": { \"artists\": [ { \"search\": \"(.*?)(?<delim>\\\\s*\\\\/\\\\s*)(.*$)\", \"replace\": \"$1\" } ] } } } }","s":"Extract primary Artist from delimited, multi-Artist string","u":"/multi-scrobbler/configuration/transforms/","h":"#extract-primary-artist-from-delimited-multi-artist-string","p":344}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/2",[0,1.521,1,3.205,2,4.249,3,6.62,4,3.276,5,5.135,6,2.331,7,1.431,8,1.366,9,3.596,10,3.428,11,3.35]],["t/4",[6,2.284,9,3.524,10,3.359,11,3.283,12,1.446,13,4.037,14,1.242,15,4.624,16,4.454,17,4.814]],["t/7",[0,1.308,7,1.793,18,1.02,19,1.052,20,6.373,21,6.522,22,5.69,23,5.241,24,6.646,25,5.241,26,4.905,27,4.414,28,3.091,29,3.017,30,5.241,31,3.17,32,3.652,33,3.017,34,4.056,35,3.541,36,2.88,37,5.69,38,4.414,39,4.223,40,3.652,41,5.241,42,6.373,43,6.373,44,6.373]],["t/9",[0,1.735,6,2.823,7,1.296,12,1.469,13,4.815,14,1.191,18,0.911,19,0.94,36,1.765,45,4.206,46,2.17,47,1.884,48,1.467,49,4.888,50,4.681,51,2.312,52,1.406,53,1.882,54,1.726,55,3.732,56,0.729,57,2.906,58,2.238,59,5.083,60,3.212,61,1.011,62,3.905,63,3.905,64,2.588,65,3.212,66,1.496,67,2.312,68,1.806,69,1.726,70,0.921,71,1.049,72,2.312,73,3.258,74,3.49,75,2.048,76,2.515,77,2.842,78,3.006,79,2.588,80,2.312,81,2.842,82,1.413,83,3.905,84,2.107,85,1.205,86,1.702,87,1.421,88,2.394,89,3.487,90,3.487,91,1.849,92,0.615,93,1.149,94,5.692,95,1.112,96,1.806,97,2.461,98,2.048,99,2.107,100,3.212,101,3.905]],["t/11",[1,2.708,7,1.514,10,4.151,18,1.255,19,1.296,48,2.352,56,0.679,70,0.704,76,2.768,82,2.266,102,2.266,103,3.115,104,3.32,105,2.737,106,3.115,107,3.986,108,2.651,109,5.592,110,2.147,111,3.708,112,3.84,113,1.878,114,4.338,115,3.285,116,3.986,117,5.592,118,3.986,119,4.338,120,3.479,121,6.263]],["t/13",[0,1.519,8,1.188,12,1.284,14,1.225,52,1.15,53,1.807,56,0.505,61,1.669,85,1.365,86,1.929,87,1.566,90,5.76,91,3.054,92,1.016,95,1.837,104,2.73,110,2.537,113,1.115,119,5.127,122,1.943,123,1.685,124,1.515,125,1.224,126,1.854,127,4.656,128,2.915,129,2.377,130,4.656,131,3.225,132,4.71,133,4.656,134,2.789,135,2.058,136,4.656,137,3.584,138,4.656,139,3.584,140,3.086,141,2.013,142,4.158,143,1.93,144,4.158,145,3.955,146,4.694,147,4.965,148,4.105,149,2.251,150,2.211,151,2.251,152,2.292,153,1.596,154,3.388]],["t/15",[71,1.434,155,4.199,156,3.872,157,5.992,158,4.083]],["t/17",[0,1.378,7,1.344,8,1.391,9,2.245,12,1.132,14,1.205,18,0.277,19,0.49,25,2.442,28,1.44,29,0.819,52,1.143,53,1.297,54,0.764,56,0.755,60,1.422,61,1.198,66,0.455,67,1.024,68,0.799,70,0.685,71,1.542,75,2.733,80,1.758,82,1.412,85,1.52,86,1.558,87,1.474,92,0.614,93,1.362,95,1.111,100,2.442,104,1.959,111,1.024,113,0.934,115,1.557,122,1.693,123,1.675,124,1.98,125,0.455,141,1.284,143,1.231,145,1.06,146,2.16,147,2.285,148,1.89,149,0.603,150,0.593,153,0.593,155,1.602,159,3.484,160,2.236,161,2.585,162,2.952,163,2.02,164,2.946,165,1.422,166,0.961,167,1.729,168,1.729,169,1.331,170,1.729,171,2.034,172,0.933,173,1.06,174,1.1,175,1.331,176,1.198,177,1.959,178,1.198,179,2.392,180,3.116,181,1.847,182,2.056,183,3.902,184,3.902,185,1.024,186,1.06,187,0.626,188,1.1,189,1.146,190,1.06,191,1.544,192,1.544,193,1.729,194,2.75,195,1.06,196,1.258,197,0.748,198,2.483,199,3.604,200,3.484,201,1.967,202,1.729,203,1.036,204,1.65,205,2.16,206,2.946,207,2.572,208,4.033,209,2.969,210,2.969,211,1.724,212,2.969,213,2.969,214,1.687,215,0.983,216,1.074,217,1.331,218,2.392,219,1.198,220,1.06,221,1.258,222,1.967,223,1.544,224,1.82,225,1.477,226,2.651,227,3.563,228,2.969,229,1.406,230,0.907,231,1.258,232,1.198,233,1.729,234,1.544,235,1.729,236,1.544,237,1.544,238,2.056,239,2.056,240,2.651,241,1.331,242,1.544,243,1.729,244,1.544,245,1.729,246,1.146,247,1.729,248,1.729,249,1.729,250,1.1,251,1.544,252,2.741,253,1.544,254,1.06,255,1.331,256,1.422,257,2.392,258,1.729,259,1.544,260,1.024,261,1.729,262,1.422,263,1.544,264,1.544,265,2.839,266,2.651,267,2.651,268,2.651,269,1.422,270,2.442,271,1.729,272,1.331,273,1.331,274,1.1,275,1.544,276,1.422,277,1.729,278,0.717,279,1.729,280,1.477,281,1.544,282,1.65,283,1.422,284,1.422,285,1.544,286,1.729,287,1.544,288,1.729,289,0.883,290,0.781,291,1.422,292,1.258]],["t/19",[0,1.8,7,1.564,56,0.716,70,0.987,71,1.73,93,1.943,105,2.305,122,1.971,135,2.919,203,2.305,207,3.669,218,4.049,230,3.464,293,4.203,294,5.372,295,5.16,296,5.898,297,4.575]],["t/21",[18,1.228,55,4.264,64,5.086,93,2.258,160,4.398,218,4.706,298,5.585]],["t/23",[8,0.951,14,0.657,52,1.709,56,0.905,58,2.959,61,1.336,66,1.82,71,1.438,96,2.388,113,2.143,115,4.095,134,2.233,141,2.233,148,3.287,154,5.682,162,2.505,163,1.624,171,2.016,180,2.505,207,2.869,211,2.282,216,1.869,246,3.422,299,6.025,300,2.388,301,4.611,302,4.247,303,6.972,304,3.975,305,5.328,306,4.244,307,2.869,308,3.059,309,3.577,310,3.422,311,2.786,312,5.164,313,4.611,314,5.164,315,5.164,316,5.164,317,5.164,318,5.164,319,5.164,320,5.164,321,5.164,322,5.164,323,5.164,324,5.164,325,5.164,326,5.164]],["t/25",[2,3.889,7,1.31,12,0.791,14,1.211,18,0.636,19,0.657,37,3.551,38,2.754,40,2.279,52,1.838,53,1.616,54,1.757,56,0.857,61,1.756,67,2.354,70,0.447,71,1.371,84,2.145,85,1.879,86,2.226,87,1.436,92,0.626,96,2.667,122,1.65,123,2.087,124,1.876,125,1.516,126,2.296,128,2.606,143,2.391,163,1.25,169,3.061,181,1.882,199,4.408,200,5.15,220,2.438,308,1.757,311,2.145,327,9.234,328,3.976,329,3.551,330,2.754,331,7.444,332,2.279,333,3.976,334,5.768,335,2.635,336,3.8,337,3.976,338,3.976,339,6.787,340,3.27,341,5.768,342,2.893,343,3.305,344,3.976,345,3.976,346,5.768]],["t/27",[14,1.15,45,2.898,53,2.1,56,0.813,61,1.508,66,2.178,70,0.655,71,1.074,86,1.743,93,2.204,95,1.659,158,3.056,175,4.485,229,2.759,251,5.203,300,3.83,310,3.861,343,4.294,347,5.191,348,6.266,349,7.191,350,4.594,351,5.827,352,5.453,353,5.203,354,5.827,355,5.827,356,5.203,357,2.826,358,4.792]],["t/29",[36,2.897,56,0.863,59,7.73,61,1.659,70,0.895,82,2.319,84,3.458,85,1.356,95,1.825,110,2.197,162,3.109,190,3.93,215,2.121,216,2.319,253,5.724,257,3.93,359,3.673,360,5.509,361,5.272,362,6.41,363,4.248,364,3.362,365,2.897,366,6.41,367,3.796,368,3.673,369,6.41,370,4.934,371,5.272]],["t/31",[0,1.521,18,1.186,19,1.224,48,2.785,54,3.276,70,0.834,99,3.999,108,3.138,274,4.718,282,4.119,372,4.545,373,6.62]],["t/33",[0,1.033,7,0.971,8,1.254,12,1.534,14,1.245,18,0.975,19,1.006,24,2.549,25,4.14,32,1.898,38,3.487,49,3.663,54,2.691,66,1.324,70,0.765,71,1.122,80,1.961,84,1.786,85,0.701,86,0.99,87,1.289,93,2.002,100,5.596,108,2.578,113,1.629,122,1.948,129,1.69,150,2.088,197,1.432,207,1.84,215,1.096,246,2.194,257,4.172,274,4.906,275,2.957,276,5.596,278,2.087,280,3.385,281,2.957,282,4.067,283,2.723,284,5.009,285,2.957,287,2.957,289,1.69,290,1.496,291,2.723,292,2.41,294,4.036,343,4.194,364,1.737,370,2.549,371,2.723,374,2.957,375,4.688,376,2.723,377,3.876,378,2.723,379,2.03,380,5.035,381,3.311,382,3.311,383,3.311,384,3.311,385,4.14,386,4.495,387,3.311,388,3.311,389,3.311,390,3.311,391,3.311,392,4.495,393,3.311,394,5.035,395,4.14,396,3.875,397,3.311,398,3.311,399,3.311,400,3.311,401,3.311]],["t/35",[12,1.09,48,2.057,56,0.594,70,0.616,74,4.412,75,2.872,108,2.318,113,1.311,122,1.331,125,1.44,134,3.112,158,2.872,159,6.426,161,3.628,211,2.42,215,1.812,227,4.215,231,3.984,282,3.042,295,3.485,297,3.793,377,4.58,385,4.503,402,7.022,403,5.476,404,5.056,405,4.889,406,4.503,407,4.215,408,2.592,409,8.869,410,3.793,411,4.889,412,4.889,413,7.197,414,7.197,415,4.503,416,2.723,417,4.889,418,5.476,419,4.215,420,5.476,421,5.476,422,4.503,423,4.503,424,4.889,425,2.42,426,3.628]],["t/37",[7,1.104,8,1.243,14,0.728,15,5.92,18,1.185,19,1.223,35,2.185,36,3.347,48,1.477,56,0.919,57,2.008,66,1.773,68,2.646,70,0.442,71,0.725,76,1.738,82,2.847,87,0.832,98,2.063,103,1.956,104,1.665,105,2.353,110,2.312,113,2.206,125,1.034,129,4.017,135,1.738,155,2.122,163,1.237,177,1.665,203,1.372,204,2.185,215,1.894,224,3.508,289,2.008,297,2.724,311,3.087,427,2.122,428,2.503,429,2.411,430,3.235,431,3.235,432,4.706,433,1.477,434,2.862,435,3.512,436,3.512,437,2.724,438,1.63,439,3.512,440,2.739,441,3.028,442,2.185,443,6.057,444,5.109,445,3.963,446,3.933,447,3.933,448,3.933,449,2.862,450,5.722,451,5.722,452,3.933,453,3.933,454,5.722,455,3.933,456,2.606,457,2.122,458,3.512,459,2.503]],["t/39",[0,1.738,8,1.21,12,1.307,14,1.229,15,5.569,52,1.18,61,1.7,82,1.729,85,1.39,86,1.964,87,1.588,91,3.109,92,1.034,104,2.023,110,1.638,113,1.796,122,1.964,123,1.729,124,1.555,125,1.256,126,1.902,128,2.968,129,2.44,149,2.292,150,2.251,151,2.292,152,2.333,153,1.638,215,1.582,278,2.722,289,3.83,439,4.267,443,5.055,444,4.267,460,4.779,461,4.267,462,5.055,463,5.055,464,5.055,465,5.055,466,5.055,467,4.779]],["t/41",[8,1.019,9,3.918,14,0.703,31,2.751,56,0.786,66,1.454,68,2.557,71,1.019,105,1.93,110,2.483,113,1.324,122,1.345,129,4.376,141,2.392,177,3.066,180,3.514,181,2.618,185,3.275,186,4.442,190,3.391,197,2.392,215,2.398,224,3.391,290,2.499,357,3.514,427,2.984,428,3.52,429,3.391,433,2.077,434,4.025,467,5.272,468,4.939,469,4.939,470,4.939,471,4.939,472,3.831,473,4.258,474,4.939,475,4.939,476,4.939,477,4.025,478,4.939,479,4.939,480,4.939,481,4.939,482,5.531,483,2.392,484,3.17,485,4.549]],["t/43",[0,1.777,8,1.263,9,2.47,12,1.364,14,1.24,52,1.257,53,1.921,61,1.774,82,1.842,85,1.451,86,2.051,87,1.641,91,3.246,92,1.08,95,1.953,110,1.745,113,1.856,122,2.016,123,1.842,124,1.656,125,1.339,126,2.027,128,3.098,129,2.599,145,4.204,149,2.393,150,2.35,151,2.393,152,2.436,153,1.745,194,2.301,272,5.278,273,5.278,486,5.092,487,4.547,488,4.547,489,6.123]],["t/45",[1,2.772,7,1.536,11,4.206,18,1.026,19,1.059,48,2.408,56,0.695,70,0.721,71,1.181,76,2.833,102,2.88,103,3.188,104,3.369,105,2.777,106,3.188,107,4.08,108,2.713,171,2.502,215,2.634,216,2.319,278,2.657,442,3.561,490,4.934,491,4.665,492,4.08,493,3.93]],["t/47",[0,1.529,8,1.199,11,2.131,12,1.295,14,1.227,52,1.165,53,1.824,61,1.684,82,1.707,85,1.377,86,1.946,87,1.577,91,3.081,92,1.025,95,1.853,102,1.707,113,1.784,122,1.953,123,1.707,124,1.534,125,1.24,126,1.878,128,2.941,149,2.271,150,2.231,151,2.271,152,2.312,153,1.617,215,1.561,278,3.089,289,3.804,462,5.01,463,5.01,464,5.01,465,5.01,466,5.01,491,3.432,494,4.717,495,6.654,496,4.717,497,4.717,498,6.654,499,4.212,500,6.509,501,4.313]],["t/49",[0,0.753,1,3.097,2,3.115,4,1.621,6,1.153,7,1.788,10,1.696,11,1.658,16,4.689,18,0.587,19,0.606,21,3.017,31,1.825,33,1.737,38,3.766,47,1.799,48,1.378,52,0.906,56,0.59,70,0.611,76,1.621,78,2.824,92,1.431,96,1.696,97,1.586,98,1.924,103,1.825,104,1.553,105,1.897,122,1.322,131,2.541,135,1.621,161,3.602,166,3.02,173,2.249,174,3.46,198,2.335,207,2.038,215,1.214,216,1.327,232,3.766,305,4.185,335,2.431,359,2.102,368,2.102,408,1.737,425,1.621,428,2.335,440,1.49,502,3.766,503,3.333,504,2.249,505,3.971,506,2.038,507,2.637,508,3.276,509,3.017,510,4.241,511,3.766,512,3.276,513,3.276,514,4.185,515,4.471,516,1.979,517,3.276,518,3.017,519,3.276,520,3.017,521,6.477,522,2.824,523,3.668,524,2.431,525,2.669,526,2.669,527,2.249,528,3.766,529,1.621,530,5.327,531,3.276,532,2.824,533,3.017,534,4.854,535,2.431,536,3.276,537,3.668,538,3.668,539,2.431,540,3.276,541,2.541,542,2.335,543,3.668,544,3.276,545,2.669,546,3.276,547,2.824,548,3.668,549,3.668,550,3.668,551,2.431,552,3.668,553,2.824,554,2.102]],["t/51",[16,5.452,36,3.078,56,0.896,104,3.496,110,2.335,129,3.477,204,3.784,216,2.464,429,5.065,438,2.823,505,5.065,555,4.513,556,6.811,557,6.811,558,6.811,559,6.082,560,6.811,561,3.674,562,5.602]],["t/54",[0,1.463,8,1.131,12,1.222,14,1.212,16,3.765,18,0.983,19,1.014,33,2.055,36,1.962,52,1.072,56,0.666,61,1.589,85,1.3,86,1.837,87,1.508,91,2.907,92,0.967,102,1.571,104,3.28,110,1.488,122,1.884,123,1.571,124,1.412,125,1.141,126,1.728,128,2.775,129,3.638,135,2.714,149,2.143,150,2.105,151,2.143,152,2.182,153,1.488,427,2.342,483,1.877,505,4.751,524,2.876,527,2.661,561,2.342,562,3.57,563,6.045,564,4.469,565,4.727,566,5.484,567,2.876,568,5.486,569,3.159,570,2.876,571,3.876,572,3.159,573,3.876,574,3.876,575,4.341,576,3.876,577,4.341,578,3.876,579,6.142,580,6.142]],["t/56",[1,3.197,2,2.246,6,1.232,7,1.634,10,1.812,11,1.771,17,5.207,18,0.913,19,0.943,30,3.223,33,1.855,34,2.494,48,1.472,52,0.968,56,0.802,70,0.441,76,1.732,92,1.434,96,1.812,97,1.694,98,2.055,103,1.949,104,1.659,105,1.991,113,0.938,122,1.387,131,2.715,135,1.732,141,1.694,161,3.782,173,2.403,174,4.284,176,2.715,187,1.418,198,2.494,207,2.177,215,1.889,232,3.953,257,2.403,305,3.017,335,2.597,365,1.771,368,2.246,408,1.855,428,2.494,438,1.625,440,1.592,472,4.662,491,2.852,502,2.715,505,3.499,506,2.177,507,2.768,508,3.5,509,4.694,510,4.653,511,4.662,512,3.5,513,3.5,514,4.393,515,4.694,516,2.114,517,3.5,518,3.223,519,3.5,520,3.223,522,3.017,524,2.597,525,2.852,526,2.852,527,2.403,528,3.953,529,1.732,530,5.535,531,3.5,532,3.017,533,3.223,561,2.114,565,4.393,569,2.852,581,3.5,582,3.5,583,5.707,584,3.919,585,3.919,586,3.223,587,3.919,588,3.919,589,3.017,590,3.223]],["t/58",[14,1.05,65,5.602,66,1.791,104,2.883,105,2.883,137,5.243,162,3.304,290,4.018,361,5.602,427,3.674,429,4.176,433,2.558,505,5.065,529,3.651,533,5.602,591,6.811,592,4.718,593,3.674,594,5.602]],["t/61",[0,1.45,8,1.119,12,1.208,14,1.209,18,0.972,19,1.003,33,2.023,52,1.055,56,0.659,61,1.572,85,1.285,86,1.816,87,1.495,91,2.875,92,0.956,102,1.546,104,3.256,122,1.87,123,1.546,124,1.39,125,1.123,126,1.701,128,2.744,135,2.684,149,2.119,150,2.082,151,2.119,152,2.158,153,1.465,290,1.931,427,2.305,483,1.847,505,4.717,516,2.305,524,2.831,527,2.62,529,1.888,563,5.63,564,4.419,565,4.675,566,5.423,567,2.831,568,5.438,569,3.109,570,2.831,571,3.815,572,3.109,573,3.815,574,3.815,576,3.815,595,4.273,596,4.273,597,4.273,598,3.815,599,6.073,600,4.675,601,5.423,602,5.423,603,5.423,604,5.423,605,5.423,606,3.815]],["t/63",[4,3.148,6,2.239,8,1.312,47,2.357,70,0.955,73,3.455,92,1.122,179,4.367,181,3.372,211,3.148,368,4.082,425,3.75,503,4.367,607,3.957,608,5.183,609,5.483]],["t/65",[7,1.171,9,1.596,10,2.317,11,2.264,12,0.655,14,1.306,15,2.095,16,2.018,17,2.181,18,0.527,73,1.596,76,4.372,108,2.121,110,1.128,179,2.018,211,1.454,360,3.862,367,1.949,425,2.214,426,2.181,516,1.776,607,1.829,608,2.395,610,3.291,611,2.939,612,3.291,613,2.28,614,2.533,615,2.28,616,4.722,617,2.181,618,2.28,619,2.533,620,2.533,621,2.395,622,2.395,623,2.28,624,2.395,625,2.395,626,2.395,627,2.939,628,2.28,629,2.939,630,2.533]],["t/68",[5,2.869,6,2.184,7,1.661,10,1.915,11,1.872,15,2.636,18,1.285,19,1.327,28,2.881,32,2.374,46,2.302,47,2.658,48,2.231,56,0.449,57,2.115,70,1.024,73,2.881,76,3.353,92,1.316,97,1.791,102,1.499,116,2.636,122,1.007,125,1.089,141,1.791,163,2.385,172,2.235,187,2.513,203,1.446,220,2.54,260,2.453,296,3.699,308,1.831,332,2.374,360,2.636,404,2.453,416,2.06,422,3.407,433,1.556,440,1.682,457,2.235,516,2.235,535,2.745,545,3.015,613,2.869,616,3.747,631,2.453,632,4.143,633,3.699,634,2.869,635,4.143,636,2.302,637,5.941,638,3.395,639,3.189,640,2.869,641,2.869,642,3.699,643,3.699,644,5.305,645,3.699,646,4.573,647,4.115,648,3.699,649,3.189,650,4.143,651,4.143,652,4.143,653,4.143,654,3.699,655,2.636,656,4.143]],["t/70",[6,2.668,45,3.543,47,2.809,48,2.675,70,0.955,71,1.312,76,3.148,102,3.071,160,4.082,359,4.082,657,5.203,658,4.218,659,6.36]],["t/72",[0,1.969,7,1.544,8,0.999,12,1.759,14,1.177,18,0.867,19,0.895,36,2.45,52,1.339,56,0.868,61,1.403,67,4.233,70,0.804,71,1.474,72,3.21,84,4.315,87,1.147,92,0.854,115,2.843,122,1.318,141,2.344,156,2.696,335,3.592,379,3.324,438,2.964,493,3.324,660,3.945,661,5.421,662,4.841,663,5.421,664,3.945,665,4.173,666,3.945,667,5.421,668,4.173,669,5.421]],["t/74",[5,3.56,7,0.992,14,1.228,26,3.956,28,2.493,47,2.284,48,1.93,52,1.269,56,0.748,57,2.624,60,4.227,61,1.33,70,0.776,71,0.947,72,3.043,76,2.271,82,2.497,85,1.088,86,1.537,87,1.088,88,3.151,92,0.809,93,2.03,162,2.493,214,3.6,234,4.589,259,4.589,260,4.086,262,5.675,263,4.589,292,3.74,483,2.983,634,3.56,638,3.632,643,6.956,670,5.14,671,5.14,672,5.14,673,5.14,674,6.9,675,3.56,676,6.9,677,5.14,678,3.74,679,5.14,680,5.14]],["t/76",[7,1.714,14,1.203,18,1.087,19,1.122,33,3.644,36,2.269,41,4.13,46,2.79,52,1.24,54,2.219,55,2.79,57,2.563,58,2.877,66,2.024,70,0.928,71,0.925,72,4.558,74,3.079,85,1.063,86,1.502,87,1.063,92,0.791,93,1.998,95,1.934,102,2.458,125,1.32,156,2.497,163,1.579,203,1.752,207,3.774,229,2.377,252,2.973,295,3.196,330,3.478,365,2.269,438,2.081,483,2.171,554,2.877,638,2.039,681,5.021,682,2.973,683,4.13,684,4.484,685,4.484,686,3.196,687,3.654,688,3.654,689,3.478,690,3.654,691,2.709,692,4.484,693,2.709,694,4.484]],["t/78",[6,1.105,7,1.738,8,0.647,13,1.953,14,1.178,18,0.843,19,0.87,33,3.556,36,1.588,41,2.89,45,1.748,47,1.163,52,1.732,53,0.985,54,1.553,55,3.896,56,0.815,58,3.619,66,2.149,70,0.395,71,1.163,72,3.118,74,3.228,82,2.285,85,0.744,86,1.051,87,1.114,88,2.155,92,0.553,93,1.549,95,1.499,113,1.798,125,0.924,143,2.183,151,1.226,163,2.205,205,4.595,207,1.953,215,1.163,216,1.272,229,1.664,252,2.081,260,2.081,280,1.748,330,2.434,336,1.794,357,1.705,365,1.588,440,1.427,445,4.857,483,1.52,613,3.647,614,4.86,638,2.139,640,2.434,641,2.434,649,2.705,668,2.705,678,2.557,684,3.138,685,3.138,686,2.237,687,2.557,688,2.557,689,2.434,690,2.557,691,1.896,692,3.138,693,1.896,694,3.138,695,2.237,696,3.138,697,3.515,698,3.515,699,2.557,700,3.138,701,2.705,702,2.434,703,3.138,704,4.331,705,3.515,706,2.557,707,3.138,708,3.515,709,3.515,710,3.515,711,5.266,712,3.138,713,3.647,714,3.138,715,3.138,716,3.515,717,3.138,718,3.138,719,3.138,720,3.515,721,2.705]],["t/80",[7,1.252,8,1.195,12,1.732,14,1.226,52,1.16,53,1.818,61,1.215,70,0.528,74,2.879,85,0.994,86,1.404,92,1.022,95,2.479,113,1.78,122,1.578,123,1.699,124,1.528,125,1.235,126,1.87,128,3.36,149,2.264,150,2.224,151,2.264,152,2.305,153,1.61,265,4.722,492,2.989,530,3.862,593,2.533,614,5.723,638,2.635,707,5.794,714,4.194,715,5.794,717,4.194,718,5.794,722,4.697,723,2.533,724,8.119,725,4.697,726,4.697,727,4.697,728,4.697,729,3.862,730,4.697,731,6.489]],["t/82",[28,3.263,51,3.983,56,0.889,70,0.995,92,1.059,104,2.847,172,4.423,257,4.124,280,3.346,408,3.185,440,2.732,615,6.126,732,5.532,733,6.727,734,6.007,735,6.727,736,4.281,737,4.659,738,5.532,739,6.007,740,6.727]],["t/84",[1,2.075,2,2.751,4,2.121,12,1.311,14,0.838,18,0.768,19,0.793,56,0.816,68,2.219,110,1.645,162,2.328,172,2.589,214,2.075,224,4.039,300,2.219,332,3.775,335,3.181,379,2.943,395,3.948,416,2.387,432,3.948,434,3.493,457,2.589,483,3.667,493,2.943,561,3.553,593,2.589,615,4.563,616,2.589,638,1.949,659,4.286,686,4.786,734,4.286,741,6.976,742,2.842,743,5.621,744,3.325,745,3.055,746,5.417,747,4.8,748,3.695,749,8.094,750,6.587,751,4.8,752,5.07,753,3.695,754,4.793,755,6.185,756,4.8,757,4.286,758,4.8,759,3.493,760,4.8,761,4.286,762,4.8,763,4.8,764,4.8,765,3.948,766,4.286,767,4.8,768,4.8]],["t/86",[0,1.487,8,1.335,12,1.442,14,1.264,52,1.366,53,2.03,61,1.431,70,0.622,85,1.17,86,1.654,92,1.141,95,2.063,122,1.345,123,2.001,124,1.799,125,1.454,126,2.202,128,2.499,149,2.528,150,2.483,151,2.528,152,2.574,153,1.896,483,2.392,615,3.831,741,6.644,742,3.275,743,3.665,746,4.549,769,5.531,770,5.531,771,7.245,772,7.245]],["t/88",[4,2.349,7,1.026,8,0.979,12,1.058,14,1.19,28,3.423,45,2.644,47,2.622,69,2.349,70,0.598,82,1.923,85,1.125,87,1.125,92,0.837,93,2.33,135,2.349,158,2.788,163,1.671,203,1.855,206,3.383,214,2.298,342,3.868,408,2.516,449,3.868,541,3.682,615,5.487,616,2.867,638,2.159,658,3.147,741,4.371,753,4.091,773,5.315,774,3.682,775,5.315,776,3.682,777,4.091,778,3.046,779,7.057,780,7.922,781,7.057,782,5.315,783,5.315,784,5.315,785,5.315,786,5.315,787,6.301,788,5.315,789,3.868,790,3.868,791,5.315,792,5.315]],["t/90",[4,2.445,6,1.181,7,1.689,8,0.692,12,0.748,14,1.027,18,1.159,19,1.197,33,3.657,45,1.869,47,2.174,52,0.928,53,1.053,54,1.66,55,3.074,56,0.906,57,2.825,66,1.455,69,2.445,70,0.94,71,1.019,82,2.622,87,0.795,92,0.871,93,1.105,95,1.07,108,1.59,113,1.849,118,2.391,135,2.902,164,4.612,169,2.892,229,2.619,231,2.734,260,2.225,262,3.09,307,2.087,343,2.153,438,1.557,485,3.09,506,2.087,542,5.142,554,2.153,567,2.49,586,5.402,593,2.027,613,3.833,620,6.599,638,2.247,678,2.734,713,2.602,721,2.892,724,4.941,793,7.246,794,4.941,795,2.892,796,2.892,797,2.027,798,3.757,799,3.355,800,3.757,801,3.757,802,3.09,803,3.355,804,3.355,805,2.087,806,3.355,807,3.355,808,3.757,809,2.602,810,3.355,811,3.355,812,5.533,813,5.533,814,3.757]],["t/92",[8,1.595,12,1.466,14,1.258,52,1.401,53,2.064,61,1.469,70,0.638,85,1.201,86,1.697,92,1.16,95,2.098,113,1.958,122,1.38,123,2.054,124,1.846,125,1.492,126,2.259,128,2.565,149,2.571,150,2.525,151,2.571,152,2.617,153,1.945,620,5.671,810,6.578,811,6.578,815,5.676,816,5.676]],["t/94",[1,3.08,4,1.602,6,1.14,7,0.895,8,0.993,12,1.28,14,1.159,18,0.58,19,0.766,28,1.063,33,1.038,35,1.218,45,3.387,46,1.218,47,2.129,48,0.823,52,1.145,53,1.016,54,0.969,55,1.218,56,0.739,58,1.256,66,0.953,68,1.013,70,0.672,71,1.255,73,1.063,76,0.969,82,1.678,84,1.182,85,0.981,87,0.464,92,0.94,93,0.645,95,1.033,97,1.568,98,3.132,99,1.182,111,1.298,122,1.939,125,0.953,135,2.05,141,0.948,143,0.909,158,3.132,160,2.078,163,1.695,164,1.395,171,2.331,180,2.25,181,2.196,189,1.452,203,0.765,205,1.595,206,1.395,219,1.518,255,1.687,282,2.015,300,2.145,308,0.969,332,1.256,336,1.119,347,1.518,348,2.512,349,1.803,350,2.223,352,1.595,364,1.902,372,1.344,423,1.803,425,2.05,438,1.503,477,1.595,502,1.518,504,1.344,527,1.344,529,1.602,542,1.395,544,1.957,554,2.078,564,1.595,589,1.687,617,3.074,618,5.116,619,3.57,625,2.639,657,3.944,660,1.595,693,2.908,713,1.518,753,1.687,774,1.518,777,2.791,795,1.687,802,1.803,817,5.518,818,1.957,819,2.192,820,2.192,821,2.192,822,3.57,823,1.687,824,1.395,825,2.192,826,2.791,827,2.982,828,1.957,829,1.452,830,1.687,831,1.344,832,4.638,833,2.078,834,2.192,835,2.192,836,2.192,837,1.256,838,2.308,839,5.39,840,2.192,841,1.957,842,2.192,843,1.452,844,2.192,845,2.192,846,2.192,847,1.803,848,1.957,849,1.803,850,2.192,851,1.957,852,2.982,853,2.192,854,2.192,855,2.192,856,2.192,857,2.192,858,2.512,859,1.957,860,1.957,861,1.595,862,2.192,863,2.192,864,4.345,865,2.192,866,3.626,867,4.638,868,4.142,869,3.238,870,3.626,871,2.403,872,2.791,873,2.791,874,1.687,875,1.344,876,3.626,877,2.192,878,1.957,879,2.192,880,4.142,881,2.192,882,2.192]],["t/96",[7,1.49,8,1.422,12,1.215,14,1.253,48,1.617,52,1.063,53,1.207,61,1.58,66,1.132,70,0.484,71,0.793,82,1.558,85,1.292,86,1.288,87,0.911,92,0.962,95,1.226,96,1.991,97,3.338,122,1.047,123,1.558,124,1.401,125,1.132,126,1.714,149,2.131,150,2.093,151,2.131,152,2.17,153,1.476,211,1.903,216,1.558,220,2.64,295,2.741,311,3.294,336,2.198,438,1.785,529,2.699,618,5.865,619,3.315,657,4.351,713,2.983,723,2.323,868,5.453,883,4.307,884,4.307,885,5.348,886,5.943,887,4.307,888,3.315,889,3.845,890,3.845,891,4.307,892,4.307,893,3.542,894,4.307,895,4.307,896,6.107,897,6.107,898,6.107,899,6.107]],["t/98",[0,0.815,7,1.559,8,0.731,12,0.997,14,1.233,18,1.085,19,1.12,36,1.106,52,1.237,53,1.112,56,0.735,61,0.634,67,1.45,68,1.836,70,0.275,71,0.923,75,1.284,79,1.622,85,0.518,86,0.732,92,0.625,93,1.473,95,1.803,97,2.932,98,2.626,102,2.584,105,1.747,110,2.448,113,1.199,122,0.965,123,0.886,124,0.796,125,0.644,126,0.974,128,1.794,129,3.461,134,2.738,143,1.646,145,3.532,149,1.385,150,1.361,151,1.385,152,1.41,153,0.839,165,2.013,208,1.622,214,1.058,215,0.81,224,1.501,229,1.159,252,2.351,255,3.056,256,3.265,289,2.941,290,2.603,310,1.622,348,2.75,365,1.106,407,1.884,425,1.082,429,1.501,433,0.919,442,1.36,449,2.889,467,1.781,483,1.058,501,3.319,529,1.082,554,1.403,607,4.388,617,2.631,657,2.434,662,3.545,686,1.558,700,2.186,748,3.056,807,2.186,817,3.187,818,2.186,829,1.622,864,1.781,872,1.884,885,4.696,888,3.056,900,2.448,901,2.448,902,1.884,903,2.448,904,1.501,905,3.469,906,3.97,907,1.884,908,3.319,909,2.186,910,3.855,911,3.97,912,5.008,913,2.448,914,2.448,915,5.008,916,2.186,917,4.119,918,2.186,919,2.186,920,2.448,921,4.934,922,2.448,923,4.119,924,2.448,925,2.448,926,2.448,927,2.186,928,3.265,929,2.448,930,3.545,931,3.545,932,3.545,933,3.545,934,3.545,935,3.545,936,3.545,937,3.97,938,2.186]],["t/100",[14,1.023,18,1.044,19,1.078,53,1.828,56,0.708,68,3.017,71,1.202,93,1.92,99,3.52,131,4.52,134,2.821,143,2.705,156,4.003,215,2.16,216,2.361,289,3.331,290,2.949,365,2.949,516,4.341,621,5.856,636,3.625,752,5.023,817,5.122,908,4.324,939,3.52,940,5.827,941,5.827]],["t/102",[8,1.251,14,0.864,18,1.087,19,1.122,27,3.478,52,1.677,56,0.935,58,2.877,66,2.024,69,2.219,85,1.437,87,1.437,93,1.477,96,2.322,113,2.265,166,2.79,173,3.079,194,2.269,217,3.865,229,2.377,230,2.633,307,2.79,308,2.219,336,4.21,416,2.497,483,2.171,484,2.877,506,2.79,516,2.709,621,5.602,666,3.654,702,3.478,706,3.654,805,2.79,817,3.196,833,2.877,875,3.079,942,4.13,943,4.13,944,4.13,945,6.065,946,4.323,947,3.654,948,3.079,949,4.13,950,4.022,951,5.021,952,5.021,953,4.13,954,5.021,955,6.793]],["t/104",[8,1.244,12,1.343,14,1.237,52,1.229,53,2.302,61,1.747,66,1.775,70,0.56,85,1.428,86,2.019,87,1.621,92,1.063,95,1.922,113,1.834,122,1.997,123,1.8,124,1.618,125,1.308,126,1.981,128,2.248,134,2.919,149,2.355,150,2.314,151,2.355,152,2.398,153,1.705,215,1.647,289,3.911,290,3.462,621,4.912,945,4.443,949,5.552,956,4.975,957,4.975,958,4.975,959,4.975,960,6.751,961,6.751,962,6.751]],["t/106",[14,1.027,18,1.05,19,1.084,49,4.777,53,1.839,66,2.123,68,3.035,71,1.209,98,3.443,99,3.541,143,2.721,156,3.265,187,2.375,216,2.375,289,3.351,290,2.966,306,4.025,363,5.352,365,2.966,428,4.178,456,4.35,622,5.878,636,3.647,939,3.541,940,5.862,941,5.862,963,5.399]],["t/108",[8,1.251,14,0.864,18,1.087,19,1.122,27,3.478,52,1.677,56,0.935,58,2.877,66,2.024,69,2.219,85,1.437,87,1.437,96,2.322,113,2.265,166,2.79,173,3.079,194,2.269,229,2.377,230,2.633,293,3.196,307,2.79,308,3.002,336,4.21,363,3.327,416,2.497,483,2.171,484,2.877,506,2.79,622,5.602,666,3.654,702,3.478,706,3.654,805,2.79,833,2.877,875,3.079,942,4.13,943,4.13,944,4.13,946,4.323,947,3.654,948,3.079,949,4.13,950,4.022,953,4.13,964,6.065,965,5.021,966,5.021,967,5.021,968,5.021,969,5.021,970,5.021]],["t/110",[8,1.259,12,1.36,14,1.24,52,1.251,53,1.915,61,1.769,66,1.797,70,0.57,85,1.446,86,2.044,87,1.637,92,1.076,95,1.946,113,1.851,122,2.013,123,1.834,124,1.649,125,1.332,126,2.017,128,2.29,149,2.385,150,2.343,151,2.385,152,2.428,153,1.737,215,1.677,289,3.948,290,3.495,622,4.974,964,6.906,971,5.068,972,5.068,973,5.068,974,5.068,975,6.835,976,5.621,977,6.835]],["t/112",[1,2.161,6,2.789,7,1.805,9,2.424,10,2.311,11,2.259,56,0.542,88,3.064,104,3.25,131,3.462,143,2.072,174,4.31,179,4.709,207,3.762,208,5.089,211,2.992,215,3.002,278,2.072,407,5.212,425,2.992,426,3.312,440,2.03,529,2.209,541,3.462,607,2.777,608,3.637,609,3.847,908,5.089,978,3.064,979,3.847,980,4.463,981,8.603,982,6.858,983,4.111,984,4.998,985,3.847,986,4.998,987,4.998,988,4.111,989,4.463,990,4.111,991,4.998,992,3.637,993,4.998,994,4.998]],["t/114",[0,1.677,1,1.517,6,0.662,7,0.87,9,2.188,12,1.626,14,1.277,18,0.337,19,0.348,24,5.601,29,2.49,33,0.997,34,1.341,40,1.207,50,4.805,52,1.558,56,0.229,70,0.592,84,3.152,87,1.236,92,1.287,93,1.856,102,2.114,110,0.722,113,1.677,115,1.105,119,1.459,122,1.987,132,1.341,145,3.582,148,1.341,153,0.722,154,1.533,156,1.048,162,1.022,179,2.765,211,2.324,216,1.27,238,2.431,239,2.431,241,2.701,254,1.292,264,1.881,265,2.554,266,4.027,267,3.134,268,3.134,269,1.733,278,2.18,282,2.506,290,0.952,306,2.152,310,1.396,377,1.341,416,3.138,426,1.396,427,1.137,442,1.171,457,1.893,501,1.396,541,1.459,555,1.396,607,1.171,639,2.701,664,2.554,665,2.701,675,2.431,743,1.396,905,3.124,910,2.701,917,1.733,928,1.733,980,1.881,982,1.881,988,2.886,995,2.107,996,5.843,997,3.51,998,3.51,999,5.26,1000,2.886,1001,1.881,1002,5.217,1003,3.134,1004,3.134,1005,1.733,1006,2.107,1007,2.107,1008,1.881,1009,4.027,1010,1.881,1011,4.027,1012,1.881,1013,1.881,1014,1.881,1015,1.881,1016,1.881,1017,2.107,1018,2.107,1019,1.881,1020,4.027,1021,4.027,1022,3.134,1023,1.881,1024,1.881,1025,1.881,1026,1.881,1027,2.107,1028,2.107,1029,2.107,1030,1.622,1031,1.881,1032,1.622,1033,1.881,1034,1.881,1035,1.881,1036,1.881,1037,1.733,1038,1.881,1039,1.881,1040,1.881,1041,1.881,1042,1.881,1043,3.134,1044,1.881,1045,1.881]],["t/116",[0,1.63,12,1.781,14,1.292,84,1.744,85,0.684,87,0.684,89,2.887,92,1.409,102,1.17,113,1.902,119,2.239,122,0.786,132,2.057,145,4.44,148,2.057,211,1.429,236,2.887,238,3.424,239,3.424,241,2.488,278,2.786,501,2.142,527,1.982,529,1.429,541,2.239,665,2.488,743,2.142,905,4.157,910,3.805,917,2.659,927,2.887,928,2.659,988,2.659,1001,2.887,1002,6.001,1003,4.414,1004,4.414,1008,2.887,1009,5.359,1010,2.887,1011,5.359,1012,2.887,1013,2.887,1014,2.887,1015,2.887,1016,2.887,1019,2.887,1020,5.359,1021,5.359,1022,4.414,1023,2.887,1024,2.887,1025,2.887,1026,2.887,1031,2.887,1032,2.488,1033,2.887,1034,2.887,1036,2.887,1037,2.659,1038,2.887,1039,2.887,1040,2.887,1041,2.887,1042,2.887,1043,4.414,1044,2.887,1045,2.887,1046,3.233,1047,3.233,1048,3.233,1049,3.233]],["t/118",[0,1.398,1,2.945,7,1.716,10,4.379,18,1.09,19,1.125,48,2.558,53,1.908,56,0.739,70,0.929,76,3.01,103,3.388,104,2.883,105,2.883,106,3.388,107,4.335,215,2.254]],["t/120",[7,1.57,10,4.067,18,1.063,19,1.097,56,0.954,70,0.747,71,1.224,80,3.935,106,3.305,108,2.812,113,1.591,143,2.754,177,2.812,215,2.199,216,2.404,278,2.754,445,4.603,506,3.692,507,3.223,1050,6.093,1051,6.645,1052,6.645]],["t/122",[7,0.982,8,1.263,12,1.364,14,1.24,52,1.257,53,1.921,56,0.744,61,2.006,70,0.771,71,0.938,85,1.451,86,2.051,87,1.641,92,1.08,93,1.498,95,1.953,106,2.532,108,2.155,113,1.219,122,2.016,123,1.842,124,1.656,125,1.803,126,2.027,143,2.111,149,2.393,150,2.35,151,2.393,152,2.436,153,1.745,723,2.747,1050,4.749,1053,5.092,1054,6.857,1055,4.547,1056,5.092,1057,4.547,1058,5.092,1059,6.857,1060,6.857,1061,5.092]],["t/124",[0,1.398,1,2.945,7,1.716,11,4.28,18,1.09,19,1.125,48,2.558,53,1.908,56,0.739,70,0.929,76,3.01,103,3.388,104,2.883,105,2.883,106,3.388,107,4.335,215,2.254]],["t/126",[1,2.955,7,1.492,11,3.906,18,1.325,19,1.367,51,3.001,54,2.24,56,0.938,61,1.312,66,1.332,70,0.57,71,1.259,80,3.001,82,1.834,88,3.107,106,2.521,108,2.145,113,1.851,125,1.332,141,2.191,143,2.101,177,3.274,215,1.677,216,1.834,222,3.358,278,2.101,306,3.107,342,3.688,359,2.904,438,2.101,445,4.734,506,2.816,507,2.458,529,2.24,570,3.358,638,2.058,640,3.51,641,3.51,646,3.901,695,3.225,802,4.168,992,3.688,1050,5.357,1062,5.068,1063,6.835,1064,4.525,1065,3.901,1066,5.068,1067,5.068,1068,5.068,1069,5.068,1070,4.525,1071,4.168,1072,5.068]],["t/128",[0,1.424,11,3.137,18,1.111,19,1.146,56,0.753,69,3.067,71,1.279,108,2.938,125,1.825,134,3.001,143,2.877,177,2.938,208,4.6,278,3.716,411,6.198,416,3.452,483,3.613,875,4.256,1073,5.051]],["t/130",[1,2.132,7,1.295,8,1.236,12,1.335,14,1.235,52,1.217,53,1.88,56,0.728,61,1.974,70,0.755,71,0.908,85,1.42,86,2.006,87,1.614,92,1.057,93,1.45,95,1.91,106,2.452,108,2.087,113,1.18,122,1.99,123,1.784,124,1.604,125,1.764,126,1.963,134,2.132,143,2.781,149,2.341,150,2.3,151,2.341,152,2.384,153,1.69,278,3.161,495,6.81,723,2.66,1035,4.403,1037,5.518,1055,4.403,1057,4.403,1074,4.93,1075,4.93,1076,4.93,1077,4.93,1078,6.709]],["t/132",[0,1.581,1,2.632,7,1.715,11,4.232,18,0.974,19,1.005,47,2.015,48,2.286,56,0.836,70,0.685,71,1.42,102,2.203,103,3.028,104,2.577,105,2.689,106,3.028,107,3.874,108,2.577,171,2.376,215,2.798,216,2.203,278,2.523,442,3.382,490,4.686,491,4.43,492,3.874,493,3.732,616,3.284,831,3.732,1079,5.436]],["t/134",[0,1.324,8,1.188,11,3.611,12,1.284,14,1.225,18,0.745,19,0.769,53,1.807,56,0.803,61,2.068,70,0.899,71,0.858,85,1.566,86,2.213,87,1.776,91,3.054,92,1.016,95,1.837,113,1.544,122,1.943,124,1.515,149,2.251,150,2.211,151,2.251,152,2.292,153,1.596,177,1.971,278,2.674,289,3.293,438,1.93,462,4.965,463,4.965,464,4.965,465,4.965,466,4.965,498,5.76,499,4.158,501,4.275,593,2.512,693,2.512,1080,2.512,1081,6.451]],["t/136",[0,1.702,7,1.323,9,4.325,56,0.743,61,1.774,67,4.058,70,0.933,71,1.528,87,1.755,91,3.245,105,2.392,135,3.029,141,2.963,177,3.51,203,2.392,215,2.268,507,3.324]],["t/138",[0,1.364,8,1.225,9,3.948,12,1.323,14,1.233,18,0.778,19,0.803,53,1.863,56,0.821,61,2.106,70,0.99,71,0.896,85,1.603,86,2.265,87,1.803,91,3.147,92,1.047,95,1.893,113,1.591,122,1.979,124,1.582,145,4.076,149,2.32,150,2.279,151,2.32,152,2.362,153,1.667,177,2.059,272,5.117,273,5.117,438,2.016,488,4.344,489,5.936,593,2.624,693,2.624,1080,2.624]],["t/140",[0,1.726,1,2.603,7,1.708,10,4.318,18,0.963,19,0.994,48,2.261,56,0.83,67,3.565,68,2.784,69,2.66,70,0.946,71,1.631,76,2.66,91,2.85,92,0.948,96,2.784,103,2.994,105,2.67,106,2.994,107,3.832,108,2.548,433,2.261,507,2.92,593,3.248,616,3.248,658,3.565,837,3.45,1082,6.021]],["t/142",[0,1.356,8,1.217,10,3.485,12,1.315,14,1.231,18,0.771,19,0.796,53,1.851,56,0.818,61,2.099,70,0.912,71,0.888,85,1.595,86,2.254,87,1.798,91,3.128,92,1.041,95,1.881,119,4.577,122,1.971,124,1.568,132,4.205,144,4.305,145,4.051,146,4.808,147,5.086,148,4.205,149,2.305,150,2.265,151,2.305,152,2.347,153,1.653,154,3.508,177,2.041,438,1.998,593,2.601,693,2.601,1080,2.601,1083,6.607]],["t/144",[0,1.634,7,1.323,8,1.077,12,1.163,14,1.198,15,5.762,18,0.648,19,0.669,47,1.34,48,1.521,56,0.814,61,2.06,67,2.398,70,1.003,71,1.467,85,1.451,86,2.051,87,1.81,91,3.246,92,0.92,103,2.015,105,1.413,113,1.399,122,1.825,124,1.318,135,1.79,141,1.751,149,2.039,150,2.003,151,2.039,152,2.077,153,1.388,177,2.903,203,1.413,215,1.34,278,2.423,289,2.984,438,1.679,443,4.499,461,3.617,462,4.499,463,4.499,464,4.499,465,4.499,466,4.499,467,4.253,507,1.965,593,2.185,616,2.185,693,2.185,831,2.483,1079,3.617,1080,2.185]],["t/146",[6,1.936,7,0.841,8,1.135,14,0.987,18,1.143,19,1.18,27,3.019,47,1.442,52,1.521,53,1.221,54,1.926,56,0.842,58,2.497,66,1.619,70,0.693,71,1.135,85,1.511,87,1.303,96,2.015,113,2.227,166,2.421,173,2.672,178,3.019,206,2.774,215,2.038,229,2.063,306,3.776,308,2.722,336,3.646,408,2.063,416,2.168,425,2.722,438,1.807,483,1.884,484,2.497,506,3.968,572,3.171,623,6.052,638,1.77,666,3.171,702,3.019,706,3.171,774,3.019,873,3.355,875,2.672,893,3.584,942,3.584,943,3.584,944,3.584,946,3.92,947,3.171,948,2.672,950,3.647,953,3.584,1084,4.358,1085,4.358,1086,4.358,1087,3.892,1088,3.019,1089,6.159,1090,6.159,1091,4.358,1092,4.358,1093,4.358,1094,4.358,1095,4.358,1096,4.358,1097,4.358]],["t/148",[6,1.903,7,1.482,8,1.115,14,0.976,18,1.229,19,1.268,47,2.541,56,0.833,70,0.681,87,1.281,97,2.618,98,3.175,115,3.175,156,3.011,166,3.363,197,3.32,203,2.112,220,3.712,623,5.319,695,3.853,790,4.405,797,4.142,830,4.66,923,4.979,1098,4.66,1099,6.857,1100,5.406,1101,5.088,1102,4.979,1103,4.979,1104,5.406,1105,5.406,1106,6.054,1107,5.406]],["t/150",[7,1.563,8,1.024,12,1.446,14,0.924,18,1.296,19,1.338,34,3.538,47,3.082,56,0.788,70,0.625,92,1.145,97,2.404,280,2.765,623,3.851,654,4.964,690,4.045,695,3.538,723,2.999,790,4.045,797,2.999,805,4.038,1104,4.964,1105,7.669,1108,5.107,1109,7.269,1110,5.56,1111,4.964,1112,5.56,1113,5.466,1114,4.385]],["t/152",[8,1.304,12,1.409,14,1.273,53,1.984,54,2.36,61,2.055,70,0.601,85,1.498,86,2.117,87,1.68,92,1.115,95,2.016,113,1.695,122,2.056,149,2.47,150,2.427,151,2.47,152,2.515,153,1.831,623,3.7,948,4.341,1099,6.322,1100,6.322,1111,6.322,1115,5.342,1116,7.08]],["t/154",[0,1.452,14,0.9,56,0.768,66,1.86,87,1.497,160,4.055,163,2.225,308,3.127,336,3.613,624,6.151,636,3.932,691,3.817,1117,6.319,1118,7.077,1119,7.077,1120,7.077,1121,5.447,1122,7.077]],["t/156",[8,1.271,12,1.373,14,1.262,52,1.269,53,1.933,61,1.786,70,0.578,85,1.46,86,2.064,87,1.648,92,1.087,93,2.03,95,1.965,113,1.652,122,2.024,123,1.86,124,1.672,125,1.351,126,2.046,149,2.408,150,2.365,151,2.408,152,2.452,153,1.762,252,4.086,290,3.118,624,3.74,1123,5.14,1124,5.14,1125,5.14,1126,5.14,1127,6.9,1128,6.9,1129,6.162,1130,6.9]],["t/158",[6,1.153,7,0.708,18,1.282,19,1.263,47,1.214,56,0.398,61,1.407,69,2.402,71,0.676,73,2.637,102,1.967,125,1.703,139,2.824,171,2.796,172,1.979,177,2.741,180,3.474,181,3.391,185,2.172,190,2.249,194,1.658,201,4.292,203,1.28,221,2.669,230,1.924,257,2.249,295,2.335,298,2.669,308,2.862,357,1.779,361,3.017,364,3.397,375,2.824,416,2.704,419,2.824,425,1.621,440,2.909,483,2.351,506,2.038,516,2.933,554,2.102,625,2.669,636,3.979,638,2.631,644,3.276,691,1.979,701,4.185,755,3.017,778,2.102,809,2.541,817,3.46,838,3.46,851,7.153,875,2.249,939,2.933,963,5.327,978,2.249,985,2.824,1117,4.854,1131,6.588,1132,3.956,1133,3.668,1134,3.017,1135,5.437,1136,7.649,1137,3.017,1138,3.668,1139,7.649,1140,3.017,1141,3.276,1142,3.276,1143,3.276,1144,3.276,1145,2.824,1146,3.668,1147,3.668,1148,3.668,1149,2.824,1150,3.668,1151,3.276,1152,3.017,1153,2.541,1154,5.437,1155,3.668,1156,3.668,1157,3.276,1158,3.668,1159,3.668,1160,3.668,1161,3.668,1162,3.668]],["t/160",[7,1.248,8,1.192,12,1.593,14,1.263,52,1.155,53,1.813,56,0.702,61,1.674,65,3.846,70,0.728,73,3.138,85,1.369,86,1.935,87,1.57,92,1.019,93,1.376,95,1.842,97,2.797,122,1.946,123,1.692,124,1.521,125,1.229,126,1.861,149,2.258,150,2.218,151,2.258,152,2.299,153,1.603,211,2.859,216,1.692,310,3.099,624,4.708,628,4.481,830,5.71,885,4.481,886,4.98,1102,5.321,1131,5.321,1163,4.676,1164,4.676,1165,4.676,1166,4.676,1167,5.777]],["t/162",[0,1.786,7,1.754,16,5.834,47,2.654,48,2.436,56,0.704,70,0.73,71,1.195,103,3.226,105,2.263,204,3.604,214,2.805,305,4.993,408,3.071,425,2.866,502,4.493,503,3.977,504,3.977,505,3.977,511,4.493,831,3.977,1168,5.335]],["t/164",[0,1.521,7,1.431,16,4.545,92,1.168,177,3.138,204,4.119,440,3.011,505,4.545,510,4.39,511,5.135,691,3.999,837,4.249]],["t/166",[0,1.515,8,1.185,12,1.28,14,1.224,16,5.137,18,0.742,19,0.766,56,0.801,61,2.168,67,2.745,70,0.975,71,1.36,85,1.563,86,2.208,87,1.881,91,3.496,92,1.013,122,1.939,124,1.508,129,3.283,135,2.049,141,2.005,149,2.244,150,2.205,151,2.244,152,2.285,153,1.589,177,3.126,203,1.618,438,1.922,507,2.249,563,4.455,568,4.951,578,4.14,593,2.501,693,2.501,1080,2.501,1169,6.432,1170,6.432]],["t/168",[0,0.79,7,1.625,8,0.899,12,0.766,14,1.239,18,0.616,19,0.636,33,1.116,52,1.81,53,1.079,56,0.529,58,1.351,61,1.263,66,0.62,68,1.09,70,0.265,71,0.709,75,1.237,79,1.562,85,0.815,86,1.152,87,1.033,92,0.606,93,1.133,95,1.604,96,1.09,97,3.039,98,2.955,102,3.214,110,0.808,113,1.349,122,1.37,123,0.853,124,0.767,125,0.62,126,0.939,128,1.74,134,2.881,149,1.344,150,1.32,151,1.344,152,1.368,153,0.808,160,2.207,163,0.741,179,5.349,201,4.658,204,1.31,208,1.562,215,0.78,216,0.853,229,1.116,252,2.28,255,2.964,256,3.167,278,3.039,289,1.966,308,1.042,310,2.552,336,1.204,348,2.667,416,1.173,425,1.042,438,0.977,440,0.958,442,1.31,459,1.501,493,1.446,501,4.115,600,1.815,617,2.552,657,2.361,744,1.633,748,2.964,817,1.501,885,4.615,888,2.964,905,4.615,908,3.734,909,2.106,910,3.757,921,4.848,923,4.014,930,3.438,931,3.438,932,3.438,933,3.438,934,3.438,935,3.438,936,3.438,938,3.438,1080,1.272,1107,3.438,1137,1.939,1171,3.851,1172,2.358,1173,6.21,1174,6.21,1175,2.358,1176,3.851,1177,2.358,1178,2.358,1179,2.358,1180,2.358,1181,2.358,1182,2.358,1183,2.358,1184,2.358,1185,3.851,1186,3.851,1187,3.851]],["t/170",[0,1.064,4,0.91,6,1.395,7,0.397,8,0.379,18,1.353,19,1.38,23,1.694,28,1.67,35,1.144,36,1.556,45,1.712,47,1.139,53,0.965,56,0.829,57,1.758,61,1.342,64,2.281,66,1.363,68,0.952,69,1.961,70,0.232,71,0.817,73,0.999,81,1.498,92,0.324,98,1.08,99,1.111,104,0.872,105,1.809,106,1.024,107,1.311,110,0.706,112,1.263,113,1.661,114,1.426,115,1.08,120,1.144,132,1.311,134,2.697,140,1.365,162,0.999,163,1.395,165,1.694,171,2.584,172,1.857,174,1.311,176,1.426,180,1.67,181,2.731,187,0.745,188,1.311,197,2.494,198,1.311,201,2.281,211,3.985,215,0.682,219,1.426,221,1.498,224,2.111,230,1.08,250,2.191,260,1.219,278,0.854,292,1.498,298,1.498,299,5.419,306,3.824,335,1.365,340,1.694,353,1.839,357,0.999,363,2.94,364,1.08,365,1.556,408,0.975,410,1.426,427,1.111,429,2.72,433,0.773,440,1.802,442,1.913,457,1.857,459,1.311,484,1.18,492,2.191,501,1.365,525,1.498,529,2.549,532,1.585,539,3.436,551,1.365,561,2.393,570,3.823,590,1.694,592,1.426,616,1.111,640,1.426,641,1.426,678,1.498,686,1.311,688,1.498,691,1.111,693,1.111,713,1.426,723,1.111,736,1.311,739,3.074,742,3.07,744,1.426,745,1.311,754,1.498,759,1.498,778,1.18,805,1.144,806,1.839,822,1.585,833,2.542,837,2.542,858,2.385,907,1.585,948,1.263,978,1.263,979,1.585,985,1.585,1005,1.694,1070,1.839,1071,2.832,1101,5.067,1121,1.585,1151,1.839,1153,1.426,1188,3.443,1189,2.059,1190,1.694,1191,1.498,1192,1.694,1193,1.839,1194,3.962,1195,2.059,1196,3.415,1197,1.426,1198,2.832,1199,2.832,1200,3.074,1201,2.059,1202,6.237,1203,2.059,1204,2.059,1205,2.059,1206,2.059,1207,2.059,1208,4.63,1209,2.059,1210,1.839,1211,1.365,1212,2.059,1213,1.585,1214,2.059,1215,1.694,1216,4.437,1217,4.437,1218,1.694,1219,2.059,1220,1.839,1221,1.585,1222,2.059,1223,2.059,1224,2.059,1225,2.059,1226,2.059,1227,2.059,1228,1.694,1229,2.059,1230,3.443,1231,1.694,1232,1.839,1233,2.059,1234,3.074,1235,2.832,1236,2.059,1237,2.059,1238,2.059,1239,2.059,1240,2.059,1241,2.059,1242,1.426,1243,1.585,1244,1.365]],["t/172",[0,1.381,8,1.24,12,1.339,14,1.247,52,1.223,53,1.886,61,1.742,70,0.557,85,1.424,86,2.013,87,1.617,92,1.06,95,1.916,112,3.037,122,1.994,123,1.792,124,1.611,125,1.302,126,1.972,128,3.041,146,4.897,147,5.18,148,4.283,149,2.348,150,2.307,151,2.348,152,2.391,153,1.698,211,2.189,237,6.009,238,4.661,239,4.661,240,6.826,241,5.18,242,6.009,551,3.282,1101,3.282,1208,4.423,1245,4.953,1246,4.953,1247,4.953]],["t/174",[0,1.749,7,1.778,17,6.106,47,2.049,48,2.325,56,0.672,70,0.696,71,1.141,92,0.975,103,3.08,105,2.16,174,3.94,187,2.24,204,3.44,214,2.677,215,2.049,365,2.798,408,2.931,472,4.289,502,4.289,509,5.092,510,3.666,511,5.902,565,5.995,581,5.529,582,5.529,831,3.796,1168,5.092]],["t/176",[0,1.521,7,1.431,17,4.913,92,1.168,177,3.138,204,4.119,440,3.011,505,4.545,510,4.39,511,5.135,691,3.999,837,4.249]],["t/178",[0,1.495,8,1.164,12,1.258,14,1.219,17,5.228,18,0.723,19,0.747,56,0.79,61,2.148,67,2.677,70,0.967,71,1.342,85,1.542,86,2.179,87,1.868,91,3.449,92,0.995,122,1.918,124,1.471,135,1.998,141,1.955,149,2.205,150,2.166,151,2.205,152,2.245,153,1.55,177,3.084,203,1.578,438,1.874,507,2.193,568,4.864,593,2.439,598,4.037,600,4.864,601,5.643,602,5.643,603,5.643,604,5.643,605,5.643,606,4.037,693,2.439,1080,2.439,1248,6.32]],["t/180",[14,0.959,52,1.454,53,2.114,56,0.903,66,1.984,69,2.603,71,1.085,99,3.177,106,2.93,113,1.806,143,3.128,163,2.618,177,3.524,215,3.004,229,2.788,290,2.662,293,3.749,307,3.272,308,3.334,336,3.007,379,3.611,542,4.802,593,3.177,626,5.491,702,4.08,703,5.26,704,4.844,1249,4.08,1250,5.89,1251,5.89,1252,5.89,1253,5.26]],["t/182",[8,1.279,12,1.382,14,1.244,52,1.281,53,1.946,56,0.563,61,1.797,66,1.364,70,0.584,85,1.469,86,2.077,87,1.656,92,1.094,95,1.977,113,1.662,122,2.118,123,1.877,124,1.688,125,1.364,126,2.065,128,2.345,149,2.423,150,2.38,151,2.423,152,2.467,153,1.779,215,1.717,290,3.138,308,2.293,542,3.302,626,6.082,1129,6.201,1253,6.989,1254,5.189,1255,5.189,1256,5.189]],["t/184",[6,1.784,7,1.578,18,1.179,19,1.217,33,2.687,45,2.823,47,1.878,48,2.132,52,1.401,56,0.799,58,3.252,82,2.054,88,3.48,110,1.945,113,2.072,143,3.054,198,3.612,205,5.361,260,3.361,311,3.062,425,2.508,445,5.103,524,3.761,613,5.103,630,6.664,638,2.305,640,3.931,641,3.931,657,3.48,678,4.13,695,3.612,696,5.068,950,3.361,1071,4.668,1257,5.676,1258,5.676,1259,5.068,1260,5.676,1261,5.676,1262,5.676,1263,7.367]],["t/186",[8,1.321,12,1.427,14,1.252,52,1.345,53,2.01,61,1.856,70,0.613,85,1.518,86,2.145,87,1.697,92,1.13,95,2.043,113,1.919,122,2.072,123,1.971,124,1.772,125,1.432,126,2.169,128,2.462,149,2.503,150,2.459,151,2.503,152,2.548,153,1.867,313,6.405,630,5.521,657,3.34,1264,5.448,1265,5.448,1266,7.173]],["t/188",[1,2.309,4,2.36,7,1.532,11,3.199,45,2.657,54,3.128,56,0.954,70,0.796,71,0.984,80,4.192,84,2.881,85,1.13,86,1.597,93,1.571,96,2.47,97,2.309,102,1.933,108,2.996,110,2.427,143,2.214,155,2.881,158,2.801,160,3.061,162,3.434,178,4.904,187,1.933,214,3.061,217,4.111,290,2.414,379,3.275,419,4.111,426,4.691,483,2.309,522,4.111,609,5.449,631,4.192,805,2.968,905,3.7,921,3.887,1065,5.449,1114,3.614,1190,4.393,1211,3.539,1267,5.342,1268,5.342,1269,5.342,1270,4.77,1271,5.342,1272,3.7]],["t/190",[8,1.232,12,1.331,14,1.255,52,1.212,53,1.874,61,1.731,70,0.552,82,1.776,85,1.415,86,2,87,1.61,92,1.053,95,1.905,102,2.42,110,1.682,113,1.821,122,1.986,123,1.776,124,1.597,125,1.29,126,1.954,128,3.438,149,2.334,150,2.293,151,2.334,152,2.376,153,1.682,215,1.624,290,3.022,426,4.432,905,4.633,1273,4.908,1274,4.908,1275,4.908,1276,4.908,1277,6.689,1278,6.689,1279,8.17,1280,6.689]],["t/192",[0,1.496,1,1.248,7,0.557,12,0.901,13,1.604,14,1.086,18,0.268,19,0.276,26,1.288,28,1.4,29,0.792,30,1.376,31,0.832,32,0.959,33,0.792,35,0.93,36,2.524,40,1.654,45,1.436,47,0.554,48,1.084,53,1.066,54,0.739,56,0.77,61,0.985,64,1.109,66,1.001,69,2.001,70,0.325,71,0.532,75,0.878,82,1.044,87,0.611,88,2.776,92,0.713,93,1.12,95,1.885,99,0.903,102,1.044,103,0.832,104,0.708,105,1.783,110,1.305,111,0.991,113,1.223,116,1.065,122,1.101,132,1.837,134,2.971,135,0.739,139,2.93,140,2.522,141,0.723,142,3.399,143,1.196,148,1.065,157,1.288,158,0.878,162,1.4,163,2.231,172,1.557,173,1.026,177,0.708,187,1.044,197,2.209,203,1.007,208,1.109,214,0.723,216,1.638,221,1.218,222,1.109,224,1.026,225,1.893,230,1.514,238,1.999,239,1.999,257,2.334,282,1.604,295,1.837,299,4.382,300,1.76,302,1.376,307,0.93,311,0.903,352,1.218,357,2.196,365,0.756,377,1.065,379,1.026,408,2.418,416,1.436,417,1.494,419,1.288,424,4.043,425,2.001,429,1.026,433,1.43,437,1.159,440,1.172,441,1.288,449,1.218,483,0.723,485,1.376,504,1.026,525,2.1,539,1.109,551,1.109,559,1.494,561,0.903,562,1.376,570,1.913,592,2.636,594,1.376,616,0.903,617,3.967,636,0.93,638,0.68,639,1.288,658,1.709,660,1.218,664,2.1,686,1.837,687,2.1,688,2.1,691,1.557,732,2.374,736,1.837,742,2.254,743,4.192,744,1.159,745,3.81,754,1.218,761,1.494,765,3.13,774,1.159,776,1.159,777,1.288,797,0.903,824,1.837,829,1.109,837,2.181,843,1.913,848,1.494,875,1.77,890,1.494,907,1.288,908,1.109,946,1.065,947,1.218,979,1.288,983,1.376,989,1.494,992,1.218,1030,3.932,1032,1.288,1073,1.218,1101,4.192,1145,2.222,1191,2.1,1198,2.374,1199,1.376,1211,3.385,1213,1.288,1215,1.376,1218,1.376,1242,1.159,1243,1.288,1244,1.913,1281,1.673,1282,1.673,1283,3.485,1284,1.494,1285,1.673,1286,1.376,1287,5.203,1288,2.577,1289,1.673,1290,1.673,1291,1.673,1292,1.494,1293,1.673,1294,1.494,1295,1.494,1296,2.577,1297,1.288,1298,1.376,1299,3.399,1300,3.399,1301,1.494,1302,1.494,1303,3.806,1304,3.13,1305,1.494,1306,1.673,1307,1.673,1308,1.673,1309,1.673,1310,1.494,1311,1.673,1312,1.673,1313,2.577,1314,2.886,1315,1.673,1316,2.886,1317,1.673,1318,1.673,1319,1.673,1320,1.673,1321,1.376,1322,2.886,1323,1.494,1324,1.376,1325,2.886,1326,3.399,1327,3.13,1328,1.494,1329,1.673,1330,1.673,1331,2.886,1332,2.886,1333,2.886,1334,1.218,1335,1.159,1336,1.673,1337,2.374,1338,1.494,1339,1.494,1340,1.673,1341,1.673,1342,1.673,1343,1.673,1344,1.673,1345,1.494,1346,1.673,1347,1.494,1348,1.159,1349,1.673,1350,1.673,1351,1.673,1352,1.673,1353,1.673,1354,1.673,1355,1.673,1356,1.673,1357,1.673,1358,1.673,1359,1.673,1360,1.494,1361,1.673,1362,1.673]],["t/194",[0,1.596,8,1.138,12,1.229,14,1.255,52,1.08,53,1.731,61,1.598,70,0.492,85,1.307,86,1.847,87,1.515,88,2.683,92,0.973,93,1.817,95,2.214,122,1.891,123,1.583,124,1.423,125,1.15,126,1.742,132,2.785,134,1.892,140,2.9,149,2.155,150,2.117,151,2.155,152,2.194,153,1.5,238,4.278,239,4.278,252,2.591,299,3.031,300,2.023,483,1.892,616,2.36,736,2.785,743,4.743,1030,3.368,1032,4.754,1101,2.9,1283,3.368,1287,5.887,1301,5.515,1302,5.515,1304,5.08,1363,4.376,1364,4.376,1365,7.158,1366,4.376,1367,4.376,1368,4.376,1369,4.376,1370,6.177,1371,6.177,1372,6.177]],["t/196",[]],["t/198",[4,3.136,6,0.852,8,0.499,12,1.326,13,1.506,14,1.221,18,0.689,19,1.009,29,1.283,38,1.877,40,1.553,45,3.315,47,0.897,53,1.712,56,0.807,66,1.606,69,1.198,71,0.499,78,3.316,80,1.605,82,0.981,85,1.134,87,0.573,92,0.844,93,1.577,95,1.739,106,1.348,122,0.659,129,1.383,135,1.198,158,1.421,160,1.553,162,1.314,163,1.92,164,2.741,166,2.393,176,1.877,197,1.172,205,1.972,225,1.348,230,1.421,290,2.423,300,2.479,306,4.878,307,1.506,308,2.369,332,1.553,347,2.984,348,1.877,350,1.661,359,1.553,364,2.259,365,1.947,372,1.661,429,1.661,430,3.543,431,2.229,440,1.749,483,1.172,493,1.661,542,1.725,553,2.086,555,1.796,567,1.796,589,2.086,592,1.877,593,1.462,628,6.032,636,1.506,658,1.605,686,1.725,695,1.725,699,1.972,736,2.741,742,1.605,752,2.086,753,2.086,765,3.543,778,1.553,822,2.086,843,1.796,874,2.086,939,4.489,1000,2.229,1108,2.469,1113,1.725,1114,3.118,1134,2.229,1339,2.42,1373,4.308,1374,2.71,1375,2.42,1376,3.846,1377,2.71,1378,2.71,1379,4.308,1380,2.71,1381,2.71,1382,2.71,1383,3.135,1384,3.846,1385,2.71,1386,2.71,1387,6.666,1388,2.42,1389,2.71,1390,6.666,1391,3.553,1392,4.409,1393,4.308,1394,4.445,1395,2.42,1396,3.846,1397,3.846,1398,2.71,1399,1.877,1400,2.71,1401,2.71,1402,2.71,1403,2.71,1404,2.71,1405,2.71]],["t/200",[8,1.309,12,1.413,14,1.249,52,1.325,53,1.99,61,1.838,70,0.604,85,1.503,86,2.124,87,1.684,92,1.119,95,2.023,113,1.7,122,2.06,123,1.942,124,1.746,125,1.411,126,2.137,128,2.426,149,2.478,150,2.435,151,2.478,152,2.523,153,1.84,290,3.21,628,3.718,1396,4.793,1397,6.342,1406,5.368,1407,7.961,1408,5.368,1409,7.103]],["t/202",[1,2.321,12,1.068,18,0.859,19,0.887,34,3.416,54,2.372,56,0.582,82,1.942,104,2.272,107,3.416,110,2.729,113,1.905,125,1.411,134,2.321,163,1.688,194,2.426,201,3.557,208,3.557,220,4.355,257,3.291,274,4.52,306,3.291,311,2.896,332,3.076,357,2.604,367,4.206,379,3.291,408,2.541,438,2.225,440,2.885,441,4.132,516,2.896,518,4.414,536,4.793,570,3.557,640,3.718,641,3.718,645,4.793,690,3.906,742,4.206,748,5.467,829,3.557,843,3.557,948,3.291,1088,4.92,1200,4.793,1410,5.368,1411,5.368,1412,4.414,1413,4.793,1414,5.368,1415,5.368,1416,5.368,1417,5.368,1418,5.368,1419,5.368,1420,5.368]],["t/204",[0,1.467,8,0.999,12,1.423,14,1.251,56,0.959,66,1.88,70,0.957,80,3.21,82,1.962,85,1.147,87,1.147,92,1.126,96,2.507,110,2.742,113,1.915,125,1.425,155,2.924,166,3.972,225,2.696,367,3.21,551,3.592,1050,5.891,1412,4.458,1421,5.421,1422,7.15,1423,5.421,1424,5.421,1425,7.15,1426,5.421,1427,5.421,1428,5.421,1429,5.421]],["t/206",[7,1.588,12,1.347,54,2.991,55,4.572,56,0.734,64,5.454,71,1.516,141,2.927,163,2.128,342,4.925,367,4.008,438,2.806,569,5.989,755,5.567,1088,5.7,1191,4.925,1430,6.044,1431,7.919]],["t/208",[7,1.291,8,1.232,12,1.331,14,1.255,52,1.212,53,1.375,61,1.969,66,1.29,70,0.552,85,1.415,86,2,87,1.61,92,1.053,95,1.398,96,2.269,97,2.892,122,1.986,123,1.776,124,1.597,125,1.29,126,1.954,149,2.334,150,2.293,151,2.334,152,2.376,153,1.682,216,1.776,367,4.505,723,2.648,830,5.148,885,4.633,886,5.148,1050,4.633,1102,5.501,1430,4.383,1431,5.972,1432,4.908,1433,4.908,1434,4.908,1435,4.908,1436,6.689,1437,6.689]],["t/211",[18,1.02,19,1.052,36,2.88,49,4.637,56,0.691,70,0.717,99,3.438,108,2.697,110,2.184,112,3.907,118,4.056,215,2.109,218,3.907,360,4.056,365,2.88,515,5.241,529,2.816,563,4.414,636,3.541,638,2.588,1087,7.709,1142,5.69,1244,4.223,1438,6.373,1439,5.69,1440,5.69,1441,8.634,1442,6.373,1443,6.373,1444,4.637,1445,6.373,1446,6.373]],["t/213",[14,0.97,18,0.958,19,0.989,56,0.827,66,1.574,93,1.761,125,1.574,137,4.609,155,3.23,171,3.275,194,3.991,196,5.548,197,2.589,199,3.545,201,3.968,408,2.834,510,3.545,561,3.23,655,4.853,701,4.609,723,3.23,1197,4.147,1447,6.458,1448,5.988,1449,5.988,1450,6.809,1451,6.809,1452,4.609,1453,6.271,1454,4.609,1455,5.346,1456,5.346,1457,5.346]],["t/215",[1,2.723,56,0.932,66,1.656,71,1.16,105,2.198,135,2.784,169,4.849,171,3.073,176,4.363,181,3.727,194,3.558,196,4.584,332,3.61,375,4.849,427,3.398,433,2.366,510,4.662,561,4.247,861,4.584,1088,4.363,1348,5.453,1450,7.669,1458,6.299,1459,7.873,1460,6.299,1461,6.299,1462,6.299]],["t/217",[0,1.263,29,2.915,39,4.08,70,0.692,71,1.134,131,5.375,185,3.645,218,4.758,232,4.264,280,3.062,294,5.143,297,4.264,372,4.758,504,3.775,634,4.264,682,3.645,939,3.321,946,4.939,1132,5.647,1249,5.375,1334,4.48,1440,5.497,1463,5.497,1464,6.868,1465,5.497,1466,4.758,1467,4.739,1468,5.497,1469,5.497,1470,6.157,1471,6.157]],["t/219",[12,1.172,14,0.959,55,3.272,56,0.639,64,3.903,66,1.549,71,1.085,92,1.311,93,2.449,108,2.493,110,2.019,112,3.611,113,1.41,125,1.984,129,3.007,178,4.08,181,2.788,270,4.844,300,2.723,311,3.177,340,4.844,368,3.375,554,3.375,555,3.903,693,3.177,712,5.26,797,3.177,939,4.07,1132,4.286,1211,3.903,1464,6.408,1469,5.26,1472,5.89,1473,5.26,1474,5.26,1475,5.89,1476,5.491,1477,5.89,1478,5.89,1479,5.89]],["t/221",[2,2.826,8,0.909,28,1.161,31,1.191,32,1.372,40,2.234,51,1.418,52,0.963,56,0.423,57,1.222,66,1.297,68,1.803,70,0.269,71,0.441,75,2.045,77,1.742,82,1.785,84,3.067,85,1.044,87,1.325,92,1.057,95,1.619,96,1.107,97,1.035,98,1.256,99,2.103,102,2.428,103,1.191,108,1.65,112,1.468,113,1.181,125,1.86,134,2.706,141,1.035,156,1.939,163,1.968,164,2.481,181,1.846,187,1.785,197,1.035,203,0.835,207,1.33,215,0.792,216,1.411,219,1.658,221,1.742,225,1.191,246,2.584,250,3.984,252,3.367,274,1.524,278,1.616,280,2.453,282,2.166,290,1.082,297,1.658,300,1.107,307,1.33,332,1.372,336,1.99,350,1.468,360,1.524,376,1.969,378,4.676,404,4.189,415,3.207,416,1.939,440,0.972,456,2.584,457,3.067,483,1.035,484,1.372,504,2.39,507,1.161,516,2.661,522,1.843,524,1.587,525,1.742,528,3.416,539,1.587,546,2.138,554,1.372,564,1.742,631,2.921,634,1.658,636,2.166,666,2.837,704,1.969,721,3.001,723,1.292,745,1.524,797,1.292,809,1.658,843,1.587,861,1.742,907,1.843,1000,3.207,1073,1.742,1098,1.843,1132,1.742,1211,2.584,1242,1.658,1244,4.888,1334,1.742,1348,1.658,1464,6.302,1466,4.522,1467,1.843,1468,2.138,1473,2.138,1480,2.138,1481,7.525,1482,2.394,1483,2.394,1484,6.26,1485,2.394,1486,4.376,1487,2.138,1488,4.932,1489,2.394,1490,4.404,1491,1.969,1492,2.394,1493,1.468,1494,1.742,1495,2.394,1496,2.138,1497,4.932,1498,2.394,1499,2.394,1500,2.394,1501,2.394,1502,2.394,1503,2.394,1504,2.394,1505,4.056,1506,2.138,1507,2.138,1508,2.394,1509,2.394,1510,2.394,1511,1.843,1512,2.394,1513,2.394,1514,2.394,1515,2.138,1516,3.899,1517,1.843,1518,2.394,1519,2.138,1520,2.394,1521,3.899,1522,2.394,1523,3.482,1524,1.843,1525,2.138]],["t/223",[0,1.06,2,3.967,4,2.282,6,2.623,7,0.996,29,2.445,47,3.076,56,0.847,70,0.581,92,1.37,93,1.519,113,1.236,118,3.287,125,1.358,140,4.587,160,4.475,163,1.624,178,3.577,187,1.869,214,2.233,218,3.166,222,3.422,232,3.577,260,3.058,280,2.569,294,3.422,365,2.334,368,3.967,503,3.166,506,3.846,542,3.287,611,4.611,638,2.811,682,3.058,794,4.611,871,3.422,939,2.786,950,3.058,1108,2.959,1114,2.636,1249,3.577,1464,3.975,1505,4.247,1526,5.778,1527,4.611,1528,4.611,1529,4.611,1530,4.611,1531,4.247,1532,5.164]],["t/225",[0,1.586,70,0.869,561,4.802,1533,8.903]],["t/227",[56,0.763,102,2.544,105,2.453,135,3.107,171,2.744,177,2.976,187,3.047,701,5.412,744,4.87,838,4.475,1064,6.278,1167,6.278,1452,5.412,1534,7.031,1535,7.031,1536,7.031,1537,7.031,1538,7.031,1539,7.031]],["t/229",[18,1.26,19,1.3,68,2.912,85,1.666,87,1.333,105,2.747,171,2.459,187,2.849,194,2.846,197,2.723,357,3.055,379,3.862,433,2.366,757,5.625,759,4.584,888,4.849,1221,4.849,1540,6.299,1541,6.299,1542,6.299,1543,6.299,1544,7.03,1545,6.299,1546,6.299,1547,6.299,1548,6.299,1549,6.299,1550,6.299,1551,6.299,1552,6.299,1553,6.299,1554,6.299]],["t/231",[13,3.625,18,1.396,19,1.078,33,3.089,53,2.255,85,1.381,102,3.157,171,3.141,187,3.296,197,3.479,433,2.451,592,4.52,625,4.748,744,4.52,1413,5.827,1544,7.186,1555,8.726,1556,6.526,1557,6.526]],["t/233",[18,1.211,19,1.25,31,3.764,66,1.99,187,2.739,332,4.337,682,4.481,1452,5.826,1558,7.569]],["t/237",[125,1.949,141,3.205,194,3.927,1447,5.707,1559,6.708,1560,6.62,1561,7.414,1562,7.414,1563,7.414]],["t/239",[56,0.821,66,1.99,70,0.851,163,2.379,230,3.969,396,5.826,1564,7.569,1565,6.758,1566,6.758]],["t/242",[14,1.059,35,3.272,56,0.903,66,1.549,70,0.849,96,2.723,141,3.262,143,2.442,171,2.299,172,3.177,198,3.749,199,4.468,222,3.903,445,4.08,529,2.603,590,4.844,702,4.08,723,3.177,829,3.903,1321,4.844,1493,3.611,1559,6.058,1567,5.89,1568,5.89,1569,5.26,1570,5.89,1571,5.89,1572,4.844,1573,6.738,1574,7.546,1575,5.89,1576,5.89,1577,5.89,1578,5.89,1579,5.26,1580,5.89,1581,5.26,1582,5.89,1583,5.89]],["t/244",[2,2.668,19,1.32,56,0.803,68,2.983,70,0.832,102,1.685,120,2.587,141,4.032,163,1.464,194,2.915,196,4.694,199,3.82,222,4.275,223,5.76,225,2.316,280,2.316,293,2.963,416,2.316,524,3.086,529,2.851,647,3.225,664,3.388,691,2.512,713,3.225,837,2.668,847,3.829,872,3.584,875,2.855,1249,3.225,1321,3.829,1383,4.694,1447,5.697,1493,3.955,1559,6.602,1560,4.158,1566,4.158,1572,3.829,1579,4.158,1584,4.656,1585,6.451,1586,4.656,1587,6.451,1588,6.451,1589,5.76,1590,6.451,1591,7.402,1592,4.656,1593,4.656,1594,4.656,1595,6.451,1596,4.656,1597,4.656,1598,4.656,1599,4.656,1600,4.656,1601,4.158,1602,3.584]],["t/246",[13,4.037,52,1.794,56,0.931,102,2.629,163,2.284,171,3.351,194,3.283,504,4.454,1383,5.287,1559,5.287,1572,5.975,1603,6.488,1604,7.266]],["t/250",[4,2.509,8,0.545,11,1.338,12,1.13,14,0.884,18,1.364,19,1.408,21,2.435,28,1.436,29,1.401,56,0.616,57,1.511,66,0.778,69,2.509,70,0.721,71,0.851,82,1.071,92,0.466,108,1.955,110,1.946,113,1.535,123,1.071,124,0.963,156,3.459,158,2.422,171,1.802,173,2.831,187,1.671,203,1.611,215,2.123,216,1.071,225,2.297,280,2.297,283,3.798,300,3.681,307,2.566,308,2.509,309,2.051,311,1.597,332,2.646,336,2.899,347,3.199,348,4.443,350,1.815,352,2.154,358,2.435,360,4.426,364,2.422,365,1.338,367,4.363,415,2.435,416,1.472,433,1.112,440,1.202,442,1.645,456,1.962,457,3.063,459,1.884,516,2.491,526,2.154,529,2.834,554,1.696,570,1.962,639,2.279,682,1.753,706,2.154,805,1.645,833,3.254,838,2.939,858,2.051,864,2.154,871,3.763,875,1.815,939,1.597,948,1.815,963,2.435,1050,2.051,1080,1.597,1088,3.199,1121,3.555,1197,2.051,1335,3.199,1399,2.051,1412,2.435,1439,2.643,1605,4.124,1606,2.643,1607,4.618,1608,4.618,1609,2.96,1610,4.618,1611,4.618,1612,3.798,1613,5.678,1614,4.618,1615,4.618,1616,4.618,1617,4.618,1618,4.618,1619,4.618,1620,2.96,1621,2.643,1622,2.643,1623,2.643,1624,2.96,1625,2.96,1626,2.96,1627,2.96,1628,2.96,1629,2.96,1630,2.96,1631,2.96,1632,2.279,1633,2.96,1634,2.96,1635,2.96,1636,4.618,1637,3.555,1638,2.96]],["t/252",[0,1.215,14,0.753,18,1.212,19,1.251,22,5.288,56,0.821,57,3.023,69,3.346,71,1.091,112,3.631,113,1.812,119,4.102,132,3.769,134,2.561,140,3.924,171,2.311,178,4.102,187,2.143,311,3.195,365,3.772,408,2.804,440,3.075,456,3.924,539,3.924,742,4.483,833,3.394,939,4.503,948,3.631,1121,6.425,1197,4.102,1338,5.288,1639,5.922,1640,5.922,1641,5.922,1642,5.922,1643,5.922]],["t/254",[0,0.887,18,1.138,19,1.175,28,2.097,31,2.15,32,2.478,36,1.954,40,2.478,56,0.966,66,1.137,74,2.651,88,2.651,102,1.564,103,2.15,114,2.995,115,2.268,116,2.752,134,3.851,139,5.474,163,2.236,181,2.047,187,1.564,203,1.509,225,2.15,282,3.403,356,3.861,363,2.865,365,1.954,408,2.047,433,1.624,440,2.487,456,2.865,457,2.332,490,3.328,535,2.865,539,2.865,658,2.56,660,3.146,687,3.146,691,2.332,742,4.211,743,5.41,746,3.556,799,3.861,809,2.995,823,3.328,826,3.328,827,3.556,837,2.478,864,3.146,908,2.865,983,3.556,1191,3.146,1198,5.037,1235,3.556,1243,3.328,1283,6.284,1287,5.037,1288,5.469,1294,3.861,1295,3.861,1296,6.35,1298,3.556,1335,2.995,1360,3.861,1517,3.328,1523,3.861,1525,3.861,1527,3.861,1602,3.328,1644,6.124,1645,3.861,1646,4.324,1647,3.861,1648,3.556,1649,4.324,1650,4.324]],["t/257",[14,1.061,35,3.29,71,1.395,85,1.602,87,1.253,161,3.924,164,4.819,173,3.631,203,2.066,224,3.631,250,3.769,257,3.631,282,5.051,300,2.738,343,3.394,493,3.631,529,3.887,992,4.309,1235,4.871,1335,4.102,1622,7.453,1623,7.453,1632,4.559,1651,8.347,1652,8.347,1653,5.922,1654,5.922,1655,5.922,1656,5.922]],["t/260",[6,2.102,7,1.29,10,4.078,18,1.307,19,1.104,47,2.213,69,2.954,110,2.292,162,3.243,211,2.954,225,3.325,246,4.43,408,3.867,490,5.146,660,4.865,774,4.631,797,3.607,1114,4.69,1394,4.865,1621,5.97,1657,5.97]],["t/262",[4,2.482,18,0.899,19,0.928,39,3.722,53,1.574,56,0.609,69,2.482,70,0.632,92,1.152,135,2.482,158,3.838,160,3.219,163,1.766,171,2.856,211,2.482,214,2.429,300,3.763,350,3.444,368,3.219,372,4.486,404,3.326,423,4.619,503,4.486,507,2.724,572,4.087,589,4.323,617,4.849,618,6.194,631,3.326,657,4.486,723,3.03,774,3.891,827,4.619,871,3.722,880,5.016,893,4.619,1347,5.016,1394,5.922,1517,4.323,1658,5.617,1659,5.617,1660,5.617,1661,5.617,1662,5.617]],["t/264",[6,1.914,8,1.42,45,3.833,47,3.034,98,3.193,122,2.229,163,1.914,230,4.041,294,5.106,300,2.815,425,2.69,529,2.69,618,4.217,657,3.732,817,5.96,864,5.607,872,4.686,874,4.686,1114,3.934,1384,5.436,1632,5.931,1663,4.217,1664,6.088,1665,6.088]],["t/266",[29,3.51,45,3.687,71,1.366,158,3.888,163,2.331,203,2.587,300,3.428,347,5.135,542,4.718,628,6.019,682,4.39]],["t/268",[0,0.465,5,4.785,6,0.712,7,1.393,12,1.094,14,1.12,18,0.88,19,0.908,23,1.863,26,1.743,28,1.807,29,1.072,39,2.469,45,1.853,47,1.571,55,2.07,56,0.515,57,1.902,61,0.586,66,0.595,70,0.684,71,0.417,77,4.002,81,1.648,82,1.348,85,1.004,87,0.479,92,0.747,93,1.788,95,1.351,97,2.987,99,1.222,103,1.126,104,0.959,114,1.569,117,2.022,118,1.441,122,0.906,135,1.646,143,2.519,156,2.361,158,3.428,163,1.492,172,1.222,197,0.979,206,1.441,216,0.819,265,2.711,291,3.903,292,1.648,300,3.559,347,3.287,352,1.648,357,1.807,358,1.863,363,1.501,368,1.298,370,1.743,379,1.389,406,1.863,416,1.126,425,1.646,433,2.065,440,0.92,442,1.258,449,4.002,503,2.284,540,2.022,541,1.569,545,3.454,569,1.648,594,1.863,616,3.279,633,2.022,634,2.581,638,2.468,691,1.222,729,3.903,732,1.863,736,4.16,737,1.569,766,2.022,776,2.581,777,1.743,789,1.648,804,2.022,809,1.569,822,1.743,824,2.371,826,1.743,843,1.501,902,2.868,908,1.501,921,1.648,985,1.743,1005,3.903,1030,4.233,1098,1.743,1103,1.863,1108,1.298,1114,1.156,1190,1.863,1191,1.648,1197,1.569,1213,1.743,1215,1.863,1218,1.863,1228,1.863,1270,2.022,1283,6.201,1284,4.91,1298,1.863,1299,2.022,1300,4.238,1304,3.903,1324,4.523,1335,1.569,1529,2.022,1573,2.022,1581,3.327,1589,4.91,1645,3.327,1666,2.265,1667,2.265,1668,2.265,1669,2.265,1670,2.265,1671,2.265,1672,2.265,1673,2.265,1674,2.265,1675,2.265,1676,2.022,1677,2.265,1678,2.265,1679,2.265,1680,1.743,1681,2.265,1682,2.265,1683,2.265,1684,2.265,1685,2.265,1686,2.265,1687,1.863,1688,1.648,1689,2.265,1690,2.265,1691,2.265,1692,2.265,1693,3.064,1694,2.265,1695,2.265,1696,2.265,1697,2.265,1698,2.265,1699,2.265,1700,2.265,1701,2.265,1702,2.265,1703,2.022,1704,2.265,1705,2.265,1706,2.265,1707,2.265,1708,2.265,1709,2.265,1710,2.265,1711,2.265,1712,3.726,1713,2.022,1714,2.265,1715,2.022,1716,2.022,1717,2.265,1718,2.265,1719,2.265,1720,2.265,1721,3.726,1722,2.265,1723,2.022]],["t/270",[7,1.078,9,2.71,18,1.377,19,1.421,31,2.779,36,3.296,48,2.099,56,0.606,68,2.584,69,3.223,75,2.931,76,2.469,85,1.182,92,0.88,120,3.105,154,4.066,171,2.181,180,3.938,181,2.645,185,3.309,186,3.426,199,3.309,211,2.469,303,4.99,308,2.469,309,3.871,359,4.179,364,2.931,438,2.316,459,3.556,472,3.871,551,3.703,555,4.833,592,3.871,607,3.105,638,2.269,689,3.871,737,3.871,833,4.179,948,4.471,1103,4.596,1444,4.066,1612,5.998,1724,5.052]],["t/272",[8,1.097,12,1.185,14,0.966,18,1.339,19,1.456,32,3.412,40,3.412,68,2.753,92,0.938,105,2.651,111,4.499,115,3.123,123,2.155,124,1.937,180,2.888,186,4.659,187,2.155,188,3.79,189,3.946,190,3.651,229,2.819,308,2.631,433,2.236,754,4.333,759,4.333,1149,4.583,1153,4.124,1213,4.583,1528,5.317,1725,4.897,1726,4.897,1727,4.897,1728,4.897,1729,4.897,1730,4.583,1731,4.897,1732,5.317,1733,4.897,1734,4.897]],["t/274",[0,0.932,1,1.963,14,0.929,18,1.168,19,1.206,31,2.258,33,2.149,36,2.051,48,2.38,56,0.687,66,1.666,70,0.511,71,0.836,73,2.202,76,2.801,79,3.008,104,1.922,105,2.901,110,2.172,113,1.087,129,3.236,134,1.963,172,2.449,180,3.074,186,4.846,190,3.886,197,1.963,204,2.522,211,3.674,230,3.324,250,2.889,289,2.318,294,3.008,299,4.39,306,2.783,357,3.074,440,1.844,483,2.74,529,2.006,539,3.008,607,4.391,638,1.844,686,2.889,688,3.304,691,2.449,745,4.034,837,4.185,858,3.145,1080,2.449,1101,4.2,1194,4.054,1242,3.145,1243,3.494,1337,3.734,1399,3.145,1725,5.213,1735,4.54,1736,4.54,1737,4.54,1738,4.054,1739,3.734,1740,4.54,1741,4.54,1742,4.54,1743,4.54,1744,4.54,1745,4.054,1746,4.054]],["t/276",[0,0.985,2,1.784,4,1.375,7,0.926,8,0.885,9,2.843,10,2.22,14,0.745,15,5.152,18,1.254,19,1.295,31,1.548,35,1.729,36,2.977,56,0.878,57,1.589,66,1.541,68,2.22,70,0.35,71,1.08,76,1.375,87,0.659,98,1.632,104,2.032,105,2.625,109,2.779,110,2.258,111,1.843,112,1.908,113,1.704,120,1.729,129,4.133,141,1.346,155,1.679,177,2.481,180,3.453,181,1.474,185,1.843,186,4.963,187,1.126,190,4.039,197,1.346,204,1.729,214,1.346,215,1.94,224,3.594,230,3.074,280,1.548,289,1.589,290,1.407,293,1.981,311,2.59,357,3.196,427,2.59,428,3.056,429,2.944,430,2.56,431,2.56,432,3.949,433,1.803,434,3.494,435,2.779,436,2.779,437,2.156,438,1.29,440,2.38,441,2.396,442,1.729,443,3.696,456,2.063,457,1.679,458,2.779,459,1.981,467,3.494,468,2.779,469,2.779,470,2.779,471,2.779,472,2.156,473,2.396,474,2.779,475,2.779,476,2.779,477,2.265,478,2.779,479,2.779,480,2.779,481,2.779,483,3.078,484,1.784,564,2.265,638,1.264,691,1.679,976,2.56,1327,2.56,1680,4.512,1725,4.82,1747,3.113,1748,3.113,1749,3.113,1750,3.113,1751,3.113,1752,3.113,1753,3.113,1754,3.113,1755,3.113,1756,3.113,1757,3.113,1758,3.113]],["t/278",[0,1.124,6,1.722,7,1.057,13,3.998,18,1.286,19,1.189,28,2.656,31,3.579,36,2.474,46,3.042,47,1.812,48,2.057,66,1.892,69,2.42,70,0.616,71,1.326,74,4.412,76,2.42,85,1.159,93,1.611,105,1.911,134,2.367,155,2.954,171,2.809,180,3.491,181,3.407,185,3.242,186,3.357,197,2.367,199,3.242,203,2.511,227,4.215,298,3.984,300,2.532,364,2.872,428,3.485,477,3.984,646,4.215,837,3.138,838,3.485,1134,5.919,1145,4.215,1242,3.793,1327,4.503,1680,4.215,1746,4.889,1759,5.476,1760,5.476,1761,5.476,1762,4.889,1763,5.476]],["t/280",[0,1.249,8,1.42,18,0.974,19,1.005,31,3.028,56,0.66,66,1.6,70,0.685,71,1.558,85,1.288,93,1.791,156,3.028,157,4.686,172,3.284,180,2.953,194,3.482,203,2.689,204,4.281,214,3.332,217,4.686,218,3.732,226,5.436,246,4.034,274,3.874,295,3.874,372,3.732,375,4.686,823,4.686,978,3.732,992,4.43,1168,6.337,1764,5.436,1765,6.088,1766,5.436,1767,6.088,1768,6.088]],["t/283",[18,1.199,19,1.238,29,2.759,46,3.237,51,3.45,55,3.237,56,0.632,71,1.074,75,3.056,87,1.233,125,1.532,135,2.575,156,2.898,166,3.237,180,2.826,188,3.709,189,3.861,396,5.768,433,2.189,438,2.415,473,4.485,492,3.709,554,3.339,655,5.272,699,5.453,736,4.769,738,4.792,795,4.485,824,3.709,829,3.861,861,4.24,1210,5.203,1454,4.485,1730,4.485,1769,5.827,1770,5.827,1771,8.284,1772,5.827,1773,5.827,1774,5.827,1775,5.827,1776,5.827,1777,5.827]],["t/285",[12,1.239,14,0.792,18,1.434,19,1.48,31,3.097,32,3.568,56,0.675,69,2.752,171,3.051,180,4.689,181,3.7,185,5.059,188,3.963,189,4.126,477,4.531,514,6.017,1220,5.56,1383,5.688,1687,5.121,1778,5.56,1779,6.227]],["t/287",[18,1.155,19,1.192,40,4.136,56,0.783,194,3.261,510,4.274,514,6.584,699,5.252,721,5.555,1080,3.893,1453,5.936,1454,6.584,1565,6.445,1780,7.217]],["t/289",[0,1.586,6,2.028,7,1.718,9,2.773,10,3.232,11,3.159,13,1.663,15,3.639,16,2.856,17,3.086,18,0.745,19,0.944,24,2.304,29,1.417,34,1.905,38,2.073,46,1.663,47,1.541,48,1.124,54,2.851,56,0.758,61,0.775,70,0.869,71,0.858,73,1.452,74,1.835,76,1.323,80,1.772,92,0.9,102,1.083,108,2.42,110,1.596,116,2.964,128,1.352,160,1.715,161,1.983,162,1.452,174,1.905,177,1.971,179,1.835,180,1.452,187,1.083,188,1.905,194,1.352,197,1.294,198,1.905,201,1.983,206,3.639,211,1.323,214,1.294,215,0.991,216,1.083,219,2.073,220,2.856,274,1.905,276,2.461,284,2.461,300,1.384,329,2.673,332,1.715,359,1.715,363,1.983,364,1.57,365,1.352,367,1.772,373,2.673,378,2.461,392,2.673,407,2.304,425,2.851,426,1.983,427,1.615,491,2.178,503,2.856,516,1.615,520,2.461,527,1.835,529,2.851,553,2.304,563,3.96,567,1.983,586,2.461,607,1.663,608,2.178,609,2.304,614,2.304,615,2.073,617,1.983,618,2.073,619,2.304,620,2.304,621,2.178,622,2.178,623,2.073,624,2.178,625,2.178,626,2.178,627,2.673,628,2.073,629,2.673,630,2.304,636,1.663,638,1.892,658,1.772,723,2.513,742,1.772,745,1.905,778,1.715,789,2.178,796,2.304,809,2.073,824,1.905,838,1.905,860,2.673,873,3.585,889,4.159,902,2.304,921,2.178,939,1.615,946,1.905,1065,2.304,1088,2.073,1131,2.461,1137,2.461,1152,2.461,1211,1.983,1231,2.461,1323,2.673,1326,2.673,1392,2.461,1452,2.304,1637,2.304,1715,2.673,1724,2.073,1781,4.658,1782,2.993,1783,2.993,1784,2.993,1785,2.993,1786,2.073,1787,2.461,1788,2.993,1789,2.461,1790,2.993,1791,2.673,1792,2.993,1793,2.993,1794,2.993,1795,2.993,1796,2.993,1797,2.993]],["t/291",[0,1.689,4,2.991,6,2.128,7,1.306,31,3.367,47,2.24,48,2.542,66,1.779,70,1.038,71,1.634,162,3.992,163,2.587,214,3.558,433,2.542,535,4.485,1637,5.21,1798,6.769]],["t/293",[0,1.576,4,2.675,6,1.903,7,1.482,8,1.115,12,1.528,70,1.052,71,1.415,73,3.724,92,1.209,93,1.781,97,2.618,118,3.853,134,2.618,179,3.712,181,2.866,187,2.191,211,2.675,216,2.191,365,2.736,368,3.469,425,3.919,607,3.363,608,4.405,636,3.363,638,2.459,665,4.66,902,4.66,1065,4.66,1313,5.406,1799,5.406]],["t/295",[0,1.84,1,3.001,2,3.978,3,6.198,4,3.067,6,2.182,7,1.339,8,1.279,9,3.367,10,3.209,11,3.137,12,1.381,71,1.279,92,1.093,118,4.418,134,3.001,216,2.512,425,3.067,636,3.856,1799,6.198]],["t/297",[197,3.39,203,2.736,1724,5.431,1789,6.448]],["t/299",[194,3.569,203,2.756,682,4.676]],["t/301",[71,1.455,203,2.756,682,4.676]],["t/303",[1,2.723,10,2.912,71,1.45,74,5.265,85,1.333,93,1.853,112,3.862,113,1.508,115,3.304,143,2.611,211,2.784,216,2.279,225,3.133,229,2.982,246,4.174,293,4.009,300,2.912,302,5.18,350,3.862,359,3.61,440,2.558,492,5.466,493,3.862,687,4.584,745,4.009,1242,5.453,1334,4.584,1647,5.625,1762,5.625,1800,4.849,1801,6.299,1802,6.299]],["t/305",[29,3.583,71,1.394,81,5.507,105,2.641,156,3.764,157,5.826,158,4.613,336,3.864]],["t/307",[227,5.992,561,4.199,824,4.954,1724,5.392,1803,6.951]],["t/309",[1804,8.014]],["t/311",[8,1.385,39,4.981,61,1.945,71,1.385,85,1.59,122,1.827,155,4.055,203,2.623,507,3.646,682,4.45]],["t/313",[0,0.453,2,1.266,8,0.998,9,1.771,12,0.44,14,1.166,18,1.033,19,1.261,32,1.266,36,2.71,40,1.266,46,1.228,49,1.608,52,0.901,56,0.884,58,2.092,66,1.577,69,1.613,70,0.411,71,0.998,75,1.159,79,1.464,82,1.321,85,0.468,93,1.594,96,1.022,99,1.192,102,1.321,108,0.935,110,0.757,111,1.308,113,1.117,115,2.446,123,1.321,124,1.188,125,0.96,140,2.419,162,1.072,163,1.703,171,2.892,172,1.192,177,1.974,180,4.541,181,3.235,182,1.531,185,4.231,186,3.677,187,1.96,188,2.969,189,3.59,190,2.238,194,0.998,199,2.162,203,1.274,218,1.355,225,1.099,229,1.728,280,1.099,295,1.406,299,2.529,308,2.854,309,1.531,311,1.192,336,1.128,357,1.072,364,3.748,367,1.308,386,1.973,395,1.817,410,1.531,440,0.897,459,2.323,472,3.752,473,1.701,487,1.973,492,2.323,503,1.355,504,1.355,507,1.072,510,2.162,516,3.484,555,1.464,668,1.701,699,1.608,742,1.308,778,1.266,823,1.701,829,1.464,833,2.673,837,2.092,838,3.448,841,1.973,847,1.817,852,3.002,858,1.531,916,1.973,918,1.973,919,1.973,1101,2.419,1143,1.973,1144,1.973,1145,2.81,1149,2.81,1153,1.531,1157,3.26,1211,1.464,1221,1.701,1376,3.26,1383,1.608,1444,1.608,1517,1.701,1603,1.973,1726,1.817,1727,1.817,1728,3.002,1729,3.002,1730,1.701,1731,1.817,1733,3.002,1734,3.836,1778,3.26,1805,2.21,1806,2.21,1807,2.21,1808,2.21,1809,2.21,1810,2.21,1811,2.21,1812,2.21,1813,2.21,1814,2.21,1815,2.21,1816,2.21,1817,1.973,1818,3.651,1819,1.973,1820,2.21,1821,2.21,1822,2.21,1823,4.665,1824,1.973,1825,2.21,1826,2.21,1827,2.21,1828,1.973,1829,2.21,1830,2.21,1831,2.21,1832,2.21,1833,2.21,1834,2.21,1835,2.21,1836,3.651,1837,2.21,1838,3.651,1839,2.21]],["t/315",[0,0.831,8,1.077,9,1.965,12,1.365,14,0.515,18,1.201,19,1.412,32,2.321,40,2.321,56,0.439,61,1.048,70,0.456,82,1.466,85,0.857,93,1.191,111,2.398,113,0.969,115,2.124,155,2.185,171,2.281,180,4.326,181,1.917,182,6.351,185,3.461,186,4.205,187,1.466,188,2.578,189,4.544,190,2.483,191,3.617,192,5.219,197,1.751,198,2.578,199,3.461,203,2.039,214,1.751,229,1.917,293,2.578,308,2.583,309,2.805,330,2.805,364,2.124,459,2.578,507,1.965,526,2.947,529,1.79,607,2.25,833,2.321,838,2.578,852,4.807,978,2.483,1149,3.118,1153,2.805,1221,4.499,1444,2.947,1612,3.331,1724,4.048,1726,3.331,1727,3.331,1728,3.331,1729,3.331,1730,3.118,1731,3.331,1732,3.617,1733,3.331,1734,5.64,1739,4.807,1789,3.331,1817,6.124,1819,6.124,1828,3.617,1840,4.05,1841,4.05,1842,4.05,1843,5.219,1844,5.219,1845,5.845,1846,4.05,1847,4.05,1848,4.05,1849,3.617]],["t/317",[18,1.211,19,1.25,33,3.583,71,1.394,171,2.954,194,3.42,203,2.641,1850,7.569,1851,7.569]],["t/319",[0,1.162,8,0.714,9,1.881,12,1.127,14,1.242,18,0.62,19,0.64,46,2.154,54,1.713,56,0.726,61,1.003,66,1.019,70,0.436,79,2.569,85,0.82,92,0.892,93,1.141,102,1.403,110,1.941,113,1.355,120,2.154,122,1.377,123,1.403,124,1.261,137,2.984,145,3.472,146,2.821,155,2.092,158,2.033,171,2.871,194,2.559,196,5.693,197,2.448,199,2.296,203,1.353,211,1.713,214,1.676,244,5.056,270,4.657,272,2.984,273,2.984,282,3.146,308,2.502,309,2.686,310,3.752,365,2.559,408,1.835,503,2.377,510,2.296,555,2.569,607,2.154,655,2.468,778,3.245,824,2.468,878,3.462,976,3.189,1073,2.821,1197,2.686,1444,2.821,1447,5.662,1451,3.462,1453,4.657,1454,2.984,1455,3.462,1456,3.462,1457,3.462,1493,4.51,1657,3.462,1739,3.189,1803,3.462,1843,3.462,1844,3.462,1852,3.877,1853,7.356,1854,5.663,1855,3.877,1856,3.877,1857,3.877,1858,3.877,1859,4.359,1860,3.877,1861,3.877,1862,3.877,1863,3.877,1864,3.877,1865,3.877,1866,3.877]],["t/321",[4,3.189,34,4.593,54,3.189,70,0.812,163,2.269,194,3.261,203,2.518,214,3.121,529,3.189,859,6.445,1199,5.936,1493,4.425,1559,6.224,1867,7.217,1868,7.217]],["t/323",[29,3.224,56,0.896,70,0.929,82,2.464,105,2.377,143,2.823,163,2.141,187,2.464,216,2.464,297,4.718,372,4.176,433,2.558,561,3.674,631,4.033,682,4.892,858,5.722,1463,6.082,1724,4.718,1764,6.082,1766,6.082,1869,6.811]],["t/325",[4,2.859,6,2.034,7,0.902,46,2.598,47,2.455,52,1.155,56,0.507,70,0.728,73,4.405,76,2.066,82,1.692,92,0.736,97,2.022,102,1.692,108,3.388,110,2.744,125,1.229,134,2.022,141,2.022,163,2.332,171,1.825,174,2.976,187,2.341,206,2.976,274,2.976,278,1.938,308,2.066,360,2.976,364,3.393,365,2.113,368,2.68,377,2.976,402,3.846,404,3.831,405,4.176,433,1.756,440,2.628,442,2.598,457,2.523,528,3.239,535,4.287,561,2.523,647,3.239,649,3.6,745,2.976,817,2.976,939,2.523,990,3.846,1113,5.348,1231,3.846,1286,3.846,1292,4.176,1506,4.176,1606,4.176,1800,3.6,1870,4.676,1871,4.676,1872,4.676,1873,4.676,1874,4.676,1875,4.676,1876,4.676,1877,4.676,1878,4.676,1879,3.403,1880,4.676,1881,4.176,1882,4.176,1883,4.676]],["t/328",[6,0.957,8,0.869,13,2.621,14,1.275,46,1.691,47,1.561,51,1.802,56,0.627,66,0.8,70,0.732,73,3.417,84,1.642,85,0.644,87,1.491,92,1.025,97,2.04,102,2.091,105,2.271,106,1.514,111,1.802,122,1.713,125,1.519,141,1.316,162,1.476,163,0.957,172,1.642,195,4.767,204,1.691,211,2.085,250,3.677,278,2.395,304,2.342,308,1.345,343,1.744,357,2.289,359,1.744,364,2.475,372,2.893,433,2.445,484,1.744,561,1.642,600,4.448,631,3.422,647,2.108,754,2.214,797,2.545,904,3.991,939,4.194,950,1.802,1113,4.143,1244,3.127,1345,2.717,1348,2.108,1467,2.342,1474,4.213,1480,2.717,1481,3.88,1493,1.866,1526,2.108,1663,2.108,1849,2.717,1882,2.717,1884,3.043,1885,4.718,1886,3.043,1887,4.718,1888,3.043,1889,4.718,1890,3.829,1891,3.043,1892,3.043,1893,3.043,1894,3.043,1895,3.043,1896,5.354,1897,5.779,1898,4.752,1899,3.043,1900,3.043,1901,3.043,1902,3.043,1903,3.043,1904,3.043,1905,3.043,1906,3.043,1907,3.043,1908,3.043,1909,5.16,1910,2.017,1911,3.043]],["t/330",[12,0.935,14,1.239,48,1.764,52,1.16,55,2.609,56,0.509,70,0.836,73,2.278,76,2.075,82,2.348,87,1.781,95,1.848,102,1.699,105,1.639,106,2.336,110,1.61,115,2.463,122,1.578,125,1.706,134,2.031,163,1.477,177,1.988,195,2.879,220,2.879,225,2.336,252,2.781,301,4.194,377,2.989,408,2.223,410,4.495,433,1.764,527,2.879,904,4.559,990,3.862,1113,2.989,1244,4.3,1399,3.253,1466,4.559,1505,3.862,1511,3.615,1531,3.862,1663,3.253,1890,3.112,1896,6.115,1912,4.3,1913,4.697,1914,4.697,1915,5.15,1916,4.697,1917,6.489,1918,3.615,1919,4.697,1920,4.697,1921,6.489,1922,4.697,1923,4.697,1924,4.697,1925,4.697,1926,4.697]],["t/332",[12,0.723,14,1.288,52,1.76,57,1.854,61,1.396,70,0.724,82,1.314,87,1.508,91,1.719,92,0.572,93,1.068,105,1.267,111,2.15,122,1.733,125,0.955,163,1.142,195,2.227,197,1.57,216,1.314,229,2.554,254,2.227,278,1.505,304,2.795,349,2.987,357,2.617,410,2.515,433,2.027,504,2.227,528,2.515,626,3.927,695,4.847,729,2.987,738,6.564,778,2.081,796,2.795,904,2.227,1466,2.227,1493,3.308,1494,3.927,1663,2.515,1693,2.987,1716,4.818,1896,2.987,1898,6.264,1909,5.75,1910,3.576,1912,5.047,1927,3.632,1928,3.632,1929,5.396,1930,3.632,1931,3.632,1932,3.632,1933,3.632,1934,5.396,1935,3.632,1936,5.396,1937,3.632,1938,3.632,1939,3.632,1940,3.632,1941,3.632,1942,3.632,1943,3.632,1944,3.632,1945,5.396,1946,3.243,1947,2.795,1948,3.632,1949,3.632,1950,3.632]],["t/334",[0,0.924,13,2.501,14,1.27,47,2.406,51,2.666,52,1.112,56,0.683,70,0.506,92,1.145,93,1.324,105,1.571,110,2.16,195,2.76,260,3.731,404,4.305,437,3.119,506,2.501,646,3.466,668,3.466,675,3.119,904,4.457,939,3.399,1080,3.399,1108,2.58,1113,4.01,1114,2.298,1466,2.76,1493,2.76,1526,5.035,1531,3.703,1723,4.02,1879,3.276,1890,2.983,1898,5.182,1910,2.983,1912,2.983,1915,3.119,1918,3.466,1951,5.627,1952,6.302,1953,3.276,1954,6.302,1955,6.302,1956,4.02,1957,6.302,1958,4.502,1959,4.502,1960,4.502,1961,6.302,1962,6.302,1963,6.302,1964,6.302,1965,4.502,1966,4.502,1967,4.502,1968,4.502]],["t/336",[14,1.289,52,1.415,73,1.912,84,1.309,92,0.621,95,1.632,96,1.822,102,1.426,110,0.832,113,1.616,125,0.638,143,1.006,156,2.476,161,1.608,164,3.168,171,0.947,182,4.677,195,3.052,225,1.207,252,1.437,278,2.799,280,1.96,282,2.765,304,6.062,307,2.765,330,1.681,336,2.012,357,1.177,385,1.995,402,1.995,404,4.39,422,1.995,433,2.367,457,2.685,484,1.39,528,1.681,631,3.393,655,3.168,675,1.681,689,1.681,776,1.681,797,3.643,805,1.348,904,3.864,1113,2.508,1244,2.612,1297,3.034,1348,2.73,1466,3.052,1481,4.713,1486,5.198,1487,4.445,1493,2.416,1494,3.622,1496,2.166,1507,2.166,1519,2.166,1524,3.831,1693,4.713,1859,3.034,1881,2.166,1890,3.298,1910,4.177,1912,3.797,1915,3.448,1947,3.034,1951,2.166,1953,3.622,1969,2.426,1970,2.426,1971,2.426,1972,2.426,1973,2.426,1974,2.426,1975,4.978,1976,3.941,1977,3.241,1978,3.941,1979,2.426,1980,3.941,1981,2.426,1982,2.426,1983,2.426,1984,2.426,1985,2.426,1986,2.426,1987,2.426,1988,2.426,1989,2.426,1990,3.941,1991,3.941,1992,3.241,1993,2.426,1994,2.426,1995,2.426,1996,2.166,1997,1.995,1998,1.995,1999,1.995]],["t/338",[0,0.825,4,1.777,5,1.723,6,2.645,7,1.232,10,1.15,11,1.124,13,1.382,14,1.244,18,0.398,19,0.411,27,1.723,28,1.206,29,1.177,32,1.425,45,1.237,46,2.812,47,2.477,48,1.51,51,1.473,52,0.614,55,1.382,56,0.549,57,2.053,70,0.809,72,1.473,73,3.938,75,1.304,79,1.648,82,0.9,92,0.916,97,1.075,99,1.342,116,1.583,156,2,163,1.592,182,2.785,187,2.104,195,1.525,203,0.868,214,1.075,216,1.455,220,1.525,260,1.473,278,1.031,280,1.237,307,1.382,359,1.425,374,2.221,377,1.583,404,4.257,408,1.177,425,2.57,433,0.934,437,2.785,457,2.169,484,1.425,506,1.382,545,1.81,547,1.914,551,1.648,567,1.648,616,2.169,631,3.443,638,1.633,647,5.624,648,2.221,649,3.897,675,1.723,689,1.723,736,3.222,795,1.914,828,2.221,831,1.525,833,3.332,849,3.307,861,1.81,904,2.466,950,1.473,1113,1.583,1132,2.926,1152,2.045,1193,2.221,1196,1.914,1286,2.045,1328,2.221,1466,1.525,1467,1.914,1486,1.914,1494,1.81,1524,1.914,1526,2.785,1688,1.81,1824,2.221,1859,1.914,1879,1.81,1890,1.648,1910,4.23,1912,3.355,1915,4.028,1918,1.914,1947,1.914,1953,1.81,1977,2.045,1992,3.307,1997,2.045,1998,2.045,1999,2.045,2000,2.487,2001,2.487,2002,2.487,2003,2.487,2004,3.591,2005,4.021,2006,2.221,2007,4.021,2008,4.52,2009,2.221,2010,2.487,2011,2.487,2012,4.52,2013,3.591,2014,4.021,2015,4.021,2016,4.021,2017,2.487,2018,2.221,2019,2.221,2020,2.487,2021,2.487,2022,2.487,2023,2.487,2024,2.487,2025,2.487,2026,2.487,2027,2.487,2028,2.487,2029,5.062,2030,2.487,2031,2.487,2032,2.487,2033,2.487]],["t/341",[4,1.838,6,2.188,7,0.802,14,1.279,31,2.068,47,2.662,52,1.027,66,1.566,70,0.67,72,2.462,77,3.026,93,1.223,95,1.184,97,1.798,143,1.724,163,1.873,182,4.126,187,1.505,195,2.55,197,1.798,230,2.181,278,1.724,280,2.068,307,3.867,404,3.527,433,1.562,457,3.213,631,3.527,683,3.42,776,2.88,904,3.652,947,3.026,950,2.462,1080,2.243,1334,3.026,1399,2.88,1466,2.55,1476,3.026,1486,3.201,1494,3.026,1511,4.585,1524,3.201,1526,2.88,1648,3.42,1663,2.88,1800,3.201,1859,3.201,1879,3.026,1890,2.756,1910,3.947,1912,2.756,1915,2.88,1918,3.201,1947,3.201,1953,3.026,1977,3.42,1992,4.899,1996,3.713,1997,3.42,1998,3.42,1999,4.899,2018,3.713,2019,3.713,2034,5.957,2035,5.957,2036,4.159,2037,3.713,2038,4.159,2039,4.159,2040,4.159,2041,4.159]],["t/343",[0,1.114,6,2.517,7,1.72,10,1.694,11,1.655,14,1.182,29,1.05,33,1.05,34,2.331,35,1.233,36,1.003,47,2.456,51,3.216,52,1.155,56,0.702,57,2.772,66,0.583,70,0.945,71,0.409,72,2.169,73,1.076,75,1.164,78,1.708,81,2.665,85,0.469,87,0.469,92,0.947,97,1.584,98,1.164,102,0.803,108,0.939,114,1.537,116,1.412,122,0.539,156,1.822,163,1.707,175,1.708,179,2.246,187,2.477,195,2.868,203,1.632,216,0.803,219,1.537,222,1.47,230,1.164,250,2.331,280,1.104,294,1.47,330,1.537,359,1.271,360,1.412,367,2.169,376,4.466,377,3.825,404,3.216,406,1.825,410,1.537,425,2.067,427,2.524,428,1.412,433,2.258,434,1.614,437,1.537,438,0.92,492,1.412,502,1.537,527,1.36,534,1.981,545,1.614,547,2.82,563,3.762,572,1.614,607,2.035,613,1.537,616,1.976,631,3.559,638,0.901,647,3.24,658,2.169,683,1.825,689,1.537,693,2.929,723,1.197,752,1.708,789,2.665,790,2.665,805,1.233,831,4.686,833,2.681,871,3.1,873,1.708,904,1.36,978,1.36,979,1.708,1098,1.708,1141,1.981,1153,1.537,1192,1.825,1234,1.981,1272,1.537,1310,4.177,1375,1.981,1466,3.33,1491,1.825,1511,2.82,1526,3.762,1530,1.981,1602,1.708,1605,3.271,1663,1.537,1676,1.981,1688,4.374,1800,2.82,1879,1.614,1890,3.1,1910,2.427,1912,2.427,1915,2.537,1946,4.177,1953,1.614,1956,1.981,2004,3.271,2006,1.981,2008,1.981,2009,1.981,2037,1.981,2042,2.219,2043,3.663,2044,2.219,2045,2.219,2046,2.219,2047,2.219,2048,2.219,2049,2.219,2050,2.219,2051,2.219,2052,2.219,2053,2.219,2054,2.219,2055,2.219,2056,2.219,2057,3.663,2058,2.219,2059,3.663,2060,3.663,2061,4.678,2062,2.219,2063,2.219,2064,2.219,2065,2.219,2066,1.981,2067,3.663,2068,2.219]],["t/345",[7,1.339,18,1.337,19,1.146,28,3.367,54,3.067,87,1.469,92,1.093,120,3.856,166,3.856,206,4.418,298,5.051,507,3.367,778,3.978,797,3.744,1108,3.978,1114,3.543,1192,5.709,1391,4.6,1569,6.198,2069,6.941,2070,5.343]],["t/347",[0,1.477,7,1.551,18,0.876,19,0.904,27,3.793,29,3.407,31,2.723,39,3.628,70,0.809,72,3.242,75,3.774,92,1.345,187,1.981,216,1.981,229,2.592,357,2.656,396,4.215,425,2.42,507,2.656,535,3.628,638,2.224,655,3.485,776,3.793,787,6.426,789,5.237,790,3.984,826,5.539,843,3.628,874,4.215,978,3.357,1108,3.138,1114,4.104,1232,4.889,1388,4.889,1391,5.658,1394,3.984,1491,4.503,1601,4.889,1632,4.215,1648,4.503,1787,4.503,2071,5.476,2072,5.476,2073,5.476,2074,5.476,2075,5.476,2076,4.215]],["t/350",[0,1.791,5,3.611,6,3.061,7,1.769,18,0.834,19,0.861,70,1.01,187,1.886,225,2.593,250,3.318,357,3.379,427,4.517,433,2.617,493,3.196,638,2.829,803,4.655,831,4.271,871,3.455,1272,4.825,1337,4.288,1688,6.094,2012,4.655,2013,4.655,2070,4.013,2076,4.013,2077,5.214,2078,5.214,2079,5.214,2080,5.214,2081,5.214,2082,6.221,2083,6.967,2084,6.967]],["t/352",[0,1.484,6,2.624,7,1.488,8,0.69,12,0.745,14,1.229,18,0.599,19,0.618,28,1.816,29,3.103,47,1.827,53,1.049,56,0.406,64,2.481,69,1.654,70,0.814,71,0.69,72,2.217,91,1.772,92,1.452,93,1.101,95,1.066,116,2.383,155,2.02,187,1.355,203,1.926,214,1.619,216,1.355,232,2.593,293,2.383,335,2.481,342,2.724,427,3.536,532,2.882,535,2.481,658,3.268,690,2.724,778,5.167,831,2.295,871,4.344,1073,2.724,1196,5.046,1249,2.593,1272,5.932,1305,3.343,1399,2.593,1465,3.343,1602,4.248,1680,2.882,1688,2.724,1745,4.928,1787,3.079,1791,3.343,2070,5.046,2076,2.882,2085,3.744,2086,3.744,2087,5.568,2088,3.744,2089,3.079,2090,3.079,2091,2.295,2092,4.604,2093,5.853,2094,5.519,2095,3.744,2096,3.744]],["t/354",[0,0.893,6,1.699,8,0.506,12,0.866,14,1.289,33,1.299,35,2.417,51,1.625,53,0.769,56,0.811,66,0.721,70,0.692,84,1.48,86,0.821,87,0.581,91,1.299,92,0.685,93,1.28,95,0.781,96,1.269,97,1.186,115,1.439,118,1.746,120,4.309,155,1.48,164,1.746,166,3.418,176,1.901,197,1.881,207,1.525,254,2.667,269,2.257,343,2.493,368,1.573,412,2.45,433,1.634,438,1.137,442,2.417,483,1.186,507,1.331,547,2.112,554,1.573,567,2.883,655,1.746,658,2.576,664,1.997,737,4.261,778,3.843,797,4.309,805,1.525,946,1.746,950,1.625,1108,3.098,1114,2.221,1140,4.446,1272,4.645,1297,2.112,1391,4.076,1392,5.516,1394,3.166,1476,3.933,1515,2.45,1713,2.45,1786,4.261,2076,2.112,2087,4.161,2089,3.578,2090,3.578,2091,4.112,2092,3.915,2093,2.45,2097,2.744,2098,6.151,2099,4.351,2100,5.406,2101,2.744,2102,2.744,2103,4.351,2104,2.744,2105,2.744,2106,4.351,2107,2.45,2108,2.744,2109,2.257,2110,2.744,2111,4.351,2112,4.351,2113,4.351,2114,2.744,2115,2.744,2116,2.744]],["t/356",[6,2.05,8,1.098,14,1.286,35,1.441,50,4.283,54,1.146,80,1.536,92,0.655,95,0.739,105,0.905,106,1.29,120,4.063,129,3.041,166,3.623,171,3.14,175,1.997,214,1.121,225,1.29,231,5.321,254,3.193,350,1.59,370,5.02,371,5.364,416,1.29,675,1.797,693,1.399,719,5.824,737,2.881,796,3.202,797,1.399,805,2.311,849,4.283,946,3.314,978,1.59,1080,1.399,1108,3.737,1114,3.733,1140,2.133,1196,1.997,1228,2.133,1249,4.127,1259,2.316,1297,1.997,1335,1.797,1348,2.881,1391,5.037,1476,5.321,1490,2.316,1738,2.316,1786,5.065,2066,3.714,2070,3.202,2082,3.714,2087,6.443,2091,3.193,2092,4.654,2109,4.283,2117,5.208,2118,4.16,2119,2.594,2120,6.522,2121,6.522,2122,4.16,2123,2.594,2124,2.316,2125,2.594,2126,4.65,2127,2.594,2128,2.594,2129,2.594,2130,2.594,2131,2.594,2132,2.594,2133,2.594,2134,2.594]],["t/358",[6,2.34,12,1.147,14,1.249,56,0.625,77,4.195,87,1.22,92,0.908,93,1.696,95,2.119,163,1.813,207,3.203,218,3.535,231,5.416,300,4.169,350,5.528,484,4.265,642,5.148,950,4.88,1324,6.121,1476,4.195,1687,4.742,2087,6.344,2091,4.563,2092,3.669,2135,5.766]],["t/361",[6,2.155,8,1.263,14,1.267,254,4.202,343,3.928,655,5.277,737,4.747,869,6.12,1108,4.752,1391,5.495,2091,4.202,2092,4.362]],["t/363",[8,1.195,12,1.291,14,1.295,35,3.604,93,1.908,1272,4.493,1391,5.313,2089,5.335,2090,5.335,2091,3.977,2107,5.792,2126,7.159]],["t/365",[8,1.263,14,1.278,120,3.808,254,4.202,343,3.928,1114,3.499,1786,4.747,2091,4.202,2092,4.362,2136,8.293,2137,6.854,2138,6.854]],["t/367",[8,1.271,14,1.283,120,3.832,254,4.229,343,3.953,1108,3.953,1114,3.521,1786,4.777,2091,4.229,2092,4.39,2124,6.159]],["t/369",[8,0.854,14,1.242,18,0.742,39,3.072,56,0.503,68,2.144,75,3.873,114,3.211,120,4.431,162,3.869,214,2.005,225,2.306,229,2.195,254,2.843,265,3.374,311,2.501,343,2.657,372,2.843,526,5.374,553,3.569,634,5.115,695,2.951,759,3.374,797,3.984,805,2.576,824,2.951,885,3.211,886,5.684,978,2.843,1114,4.914,1395,4.14,1637,4.951,1703,5.743,1786,4.455,2091,2.843,2092,2.951,2109,3.813,2139,7.976,2140,7.385,2141,7.385,2142,4.637,2143,4.637,2144,4.637,2145,4.637,2146,4.637]]],"invertedIndex":[["",{"_index":14,"t":{"4":{"position":[[25,1],[40,1],[48,1],[57,1],[67,1],[77,1]]},"9":{"position":[[1027,1],[1029,1],[1090,1],[1092,2],[1095,3],[1099,2],[1113,1],[1115,2],[1157,2],[1160,2],[1250,2],[1362,1],[1364,2],[1367,1]]},"13":{"position":[[446,1],[448,1],[525,1],[674,1],[676,1],[678,1],[783,1],[796,1],[798,1],[875,1],[1024,2],[1044,1],[1046,1],[1048,1]]},"17":{"position":[[624,1],[751,3],[984,1],[986,3],[990,1],[992,3],[1291,1],[1320,1],[2544,1],[2546,1],[2596,3],[2608,1],[2774,1],[2776,1],[2778,1],[2951,1],[2992,1],[4057,1],[4118,1],[4216,1],[4248,2],[4319,2],[4340,1],[4389,2],[4403,1],[4405,1],[4502,1],[4652,1],[4654,1],[4656,2],[4670,1],[4672,1],[4736,1],[4795,1],[4797,1],[4799,2],[4814,1],[4816,1],[4937,1],[4973,1],[4975,2],[4978,1],[5161,1],[5196,1],[5198,1],[5200,1],[5202,1]]},"23":{"position":[[146,2]]},"25":{"position":[[895,1],[906,1],[920,1],[966,1],[968,2],[971,2],[974,3],[978,1],[1218,1],[1229,1],[1243,1],[1310,1],[1312,2],[1315,2],[1318,3],[1322,1]]},"27":{"position":[[468,1],[500,6],[507,2],[510,3],[514,1]]},"33":{"position":[[356,1],[369,1],[371,5],[377,2],[391,1],[393,5],[399,2],[414,1],[416,1],[517,2],[520,1],[570,5],[576,2],[579,1],[622,5],[628,2],[631,5],[637,1],[639,1],[821,1],[958,1],[994,1],[996,1],[1174,1],[1356,1],[1391,1],[1393,1],[1554,1],[1701,2],[1866,1]]},"37":{"position":[[248,2],[659,2]]},"39":{"position":[[247,1],[249,1],[308,1],[416,1],[418,1],[420,1],[525,1],[538,1],[540,1],[599,1],[707,2],[726,1],[728,1],[730,1]]},"41":{"position":[[382,1]]},"43":{"position":[[190,1],[192,1],[270,1],[329,1],[331,1],[333,1],[438,1],[451,1],[453,1],[531,1],[590,2],[610,1],[612,1],[614,1]]},"47":{"position":[[269,1],[271,1],[346,1],[458,1],[460,1],[462,1],[567,1],[580,1],[582,1],[657,1],[769,2],[795,1],[797,1],[799,1]]},"54":{"position":[[701,1],[703,1],[765,1],[845,1],[847,1],[849,1],[954,1],[967,1],[969,1],[1031,1],[1111,2],[1132,1],[1134,1],[1136,1]]},"58":{"position":[[127,1],[151,1]]},"61":{"position":[[692,1],[694,1],[747,1],[821,1],[823,1],[825,1],[930,1],[943,1],[945,1],[998,1],[1072,2],[1092,1],[1094,1],[1096,1]]},"65":{"position":[[121,1],[123,1],[125,1],[127,1],[151,1],[153,1],[155,1],[157,1],[200,1],[202,1],[204,1],[206,1],[232,1],[234,1],[236,1],[238,1],[265,1],[267,1],[269,1],[271,1],[296,1],[298,1],[300,1],[302,1],[325,1],[327,1],[329,1],[331,1],[354,1],[356,1],[358,1],[360,1],[385,1],[387,1],[389,1],[391,1],[428,1],[430,1],[432,1],[434,1],[464,1],[466,1],[468,1],[470,1],[512,1],[514,1],[516,1],[518,1],[542,1],[544,1],[546,1],[548,1],[573,1],[575,1],[577,1],[579,1],[623,1],[625,1],[627,1],[629,1],[657,1],[659,1],[661,1],[663,1],[686,1],[688,1],[690,1],[692,1],[717,1],[719,1],[721,1],[723,1],[749,1],[751,1],[753,1],[755,1],[798,1],[800,1],[802,1],[804,1],[829,1],[831,1],[833,1],[835,1],[866,1],[868,1],[870,1],[872,1],[894,1],[896,1],[898,1],[900,1],[935,1],[937,1],[939,1],[941,1],[972,1],[974,1],[976,1],[978,1]]},"72":{"position":[[197,1],[280,1],[282,2],[285,3],[289,2],[292,1],[331,3]]},"74":{"position":[[394,1],[404,1],[406,2],[409,3],[413,2],[427,1],[451,1],[469,2],[535,2],[602,1],[604,1],[606,1]]},"76":{"position":[[679,1],[689,1],[691,2],[694,3],[698,2],[712,1],[714,2],[762,2],[833,1],[835,1]]},"78":{"position":[[319,1],[724,2],[756,2],[834,2],[932,2],[1344,1],[1354,1],[1356,2],[1359,3],[1363,2],[1377,1],[1379,2],[1427,2],[1498,1],[1500,2]]},"80":{"position":[[376,1],[378,1],[442,1],[554,1],[556,1],[558,1],[647,1],[660,1],[662,1],[726,1],[838,1],[840,1],[842,1],[844,1]]},"84":{"position":[[402,4],[787,1]]},"86":{"position":[[153,1],[155,1],[205,3],[217,1],[350,1],[352,1],[354,1],[443,1],[456,1],[458,1],[508,3],[520,1],[652,2],[672,1],[674,1],[676,1]]},"88":{"position":[[291,1],[293,1],[323,1],[357,2],[371,1],[410,1],[412,1],[414,1]]},"90":{"position":[[1302,1],[1304,1],[1347,1],[1425,1],[1427,1],[1429,1]]},"92":{"position":[[126,1],[128,1],[171,1],[209,1],[211,1],[213,1],[310,1],[323,1],[325,1],[368,1],[406,2],[427,1],[429,1],[431,1]]},"94":{"position":[[1308,3],[1404,3],[2289,1],[2291,1],[2341,1],[2343,2],[2468,2],[2471,1],[2473,1],[2821,1],[2823,1],[2873,1],[2875,2],[3055,2],[3058,1],[3060,1],[3480,1],[3482,1],[3532,1],[3534,5],[3540,2],[3554,1],[3575,1],[3577,1],[3579,1]]},"96":{"position":[[664,1],[666,1],[694,1],[718,3],[744,3],[767,3],[790,2],[793,1],[795,1],[797,1],[894,1],[907,1],[909,1],[937,1],[961,3],[987,3],[1010,3],[1033,2],[1036,2],[1060,1],[1062,1],[1064,1]]},"98":{"position":[[121,1],[139,1],[152,1],[225,1],[380,1],[2148,1],[2150,1],[2201,3],[2213,1],[2311,2],[2616,2],[2630,1],[2680,1],[2682,1],[2684,1],[2773,1],[2786,1],[2788,1],[2839,3],[2851,1],[2963,1],[2991,2],[3008,1],[3024,2],[3043,1],[3055,2],[3074,1],[3090,2],[3111,1],[3125,2],[3146,1],[3159,2],[3195,1],[3211,2],[3236,2],[3250,1],[3300,2],[3322,1],[3324,1],[3326,1]]},"100":{"position":[[142,1],[153,1]]},"102":{"position":[[135,2],[184,2]]},"104":{"position":[[328,1],[330,1],[376,1],[441,1],[443,1],[445,1],[550,1],[563,1],[565,1],[611,1],[676,2],[696,1],[698,1],[700,1]]},"106":{"position":[[139,1],[151,1]]},"108":{"position":[[133,2],[182,2]]},"110":{"position":[[253,1],[255,1],[299,1],[388,1],[390,1],[392,1],[497,1],[510,1],[512,1],[556,1],[645,2],[663,1],[665,1],[667,1]]},"114":{"position":[[23,1],[43,1],[66,2],[87,1],[204,2],[225,1],[368,2],[427,1],[440,1],[442,1],[532,2],[553,1],[579,2],[600,1],[743,2],[802,1],[815,1],[817,1],[907,2],[921,1],[923,1],[999,1],[1073,2],[1087,1],[1113,2],[1174,1],[1176,2],[1179,1],[1255,1],[1289,2],[1420,1],[1422,2],[1425,1],[1501,1],[1586,2],[1679,1],[1681,2],[1684,1],[1757,1],[1849,1],[1851,2],[1854,1],[1927,1],[2020,2],[2145,1],[2147,2],[2150,1],[2189,2],[2284,1],[2377,1],[2379,2],[2382,1],[2425,2],[2520,1],[2645,1],[2647,2],[2650,1],[2731,1],[2816,1],[2818,2],[2821,1],[2900,1],[3037,5],[3043,1],[3045,2],[3048,1],[3135,1],[3156,1],[3158,1],[3160,2],[3174,1],[3176,1],[3226,1],[3289,1],[3291,2],[3294,1],[3344,1],[3407,1],[3409,2],[3412,1],[3462,1],[3525,1],[3527,2],[3530,1],[3577,1],[3682,1],[3684,1],[3686,1],[3688,1]]},"116":{"position":[[24,1],[26,1],[28,2],[163,1],[236,1],[238,2],[241,1],[298,1],[371,1],[373,2],[376,1],[433,1],[517,1],[519,2],[522,1],[545,1],[547,1],[604,1],[696,1],[698,2],[701,1],[758,1],[882,1],[884,2],[887,1],[918,1],[1011,1],[1013,1],[1015,1],[1042,1],[1044,1],[1075,1],[1200,1],[1202,1],[1204,1],[1230,1],[1232,1],[1292,1],[1429,5],[1435,1],[1437,1],[1439,1],[1468,1],[1470,1],[1535,1],[1557,1],[1559,1],[1561,1],[1586,1],[1588,1],[1620,1],[1683,1],[1685,2],[1688,1],[1720,1],[1783,1],[1785,2],[1788,1],[1820,1],[1883,1],[1885,1],[1887,1],[1912,1],[1914,1],[1943,1],[2048,1],[2050,1],[2052,1]]},"122":{"position":[[333,1],[335,1],[378,1],[397,1],[399,1],[401,1],[506,1],[519,1],[521,1],[564,1],[583,2],[608,1],[610,1],[612,1]]},"130":{"position":[[411,1],[413,1],[455,1],[476,1],[478,1],[480,1],[585,1],[598,1],[600,1],[642,1],[663,2],[687,1],[689,1],[691,1]]},"134":{"position":[[307,1],[309,1],[384,1],[496,1],[498,1],[500,1],[605,1],[618,1],[620,1],[695,1],[807,2],[833,1],[835,1],[837,1]]},"138":{"position":[[284,1],[286,1],[364,1],[423,1],[425,1],[427,1],[532,1],[545,1],[547,1],[625,1],[684,2],[704,1],[706,1],[708,1]]},"142":{"position":[[286,1],[288,1],[365,1],[514,1],[516,1],[518,1],[623,1],[636,1],[638,1],[715,1],[864,2],[884,1],[886,1],[888,1]]},"144":{"position":[[666,1],[668,1],[727,1],[835,1],[837,1],[839,1],[944,1],[957,1],[959,1],[1018,1],[1126,2],[1145,1],[1147,1],[1149,1]]},"146":{"position":[[490,2],[539,2],[883,1],[900,1]]},"148":{"position":[[350,1],[383,1]]},"150":{"position":[[353,1],[400,1]]},"152":{"position":[[80,1],[82,1],[128,1],[166,3],[186,3],[208,2],[211,1],[213,1],[215,1],[320,1],[333,1],[335,1],[381,1],[419,3],[439,3],[461,2],[464,2],[484,1],[486,1],[488,1]]},"154":{"position":[[151,1]]},"156":{"position":[[157,1],[159,1],[202,1],[259,2],[273,1],[301,1],[303,1],[305,1],[410,1],[423,1],[425,1],[468,1],[525,2],[539,1],[567,2],[584,1],[586,1],[588,1]]},"160":{"position":[[379,1],[381,1],[425,1],[440,1],[455,2],[471,1],[483,1],[485,1],[487,1],[489,1],[594,1],[607,1],[609,1],[653,1],[668,1],[683,2],[699,1],[711,1],[713,2],[732,1],[734,1],[736,1]]},"166":{"position":[[476,1],[478,1],[540,1],[620,1],[622,1],[624,1],[729,1],[742,1],[744,1],[806,1],[886,2],[907,1],[909,1],[911,1]]},"168":{"position":[[1059,1],[2270,1],[2272,1],[2322,3],[2334,1],[2404,1],[2432,2],[2449,1],[2465,2],[2484,1],[2496,2],[2515,1],[2531,2],[2552,1],[2566,2],[2587,1],[2600,1],[2602,2],[2616,1],[2696,1],[2698,1],[2700,1],[2805,1],[2818,1],[2820,1],[2870,3],[2882,1],[2952,1],[2980,2],[2997,1],[3013,2],[3032,1],[3044,2],[3063,1],[3079,2],[3100,1],[3114,2],[3135,1],[3148,1],[3150,2],[3164,1],[3244,2],[3262,1],[3264,1],[3266,1]]},"172":{"position":[[247,1],[249,1],[299,3],[311,1],[477,1],[479,1],[481,1],[586,1],[599,1],[601,1],[651,3],[663,1],[829,2],[850,1],[852,1],[854,1]]},"178":{"position":[[475,1],[477,1],[536,1],[610,1],[612,1],[614,1],[719,1],[732,1],[734,1],[793,1],[867,2],[887,1],[889,1],[891,1]]},"180":{"position":[[177,1],[191,1]]},"182":{"position":[[200,1],[202,1],[270,1],[328,1],[330,1],[332,1],[437,1],[450,1],[452,1],[520,1],[578,1],[580,1],[582,1],[584,1]]},"186":{"position":[[160,1],[162,1],[208,1],[233,1],[235,1],[237,1],[342,1],[355,1],[357,1],[403,1],[428,2],[451,1],[453,1],[455,1]]},"190":{"position":[[214,1],[216,1],[264,1],[369,1],[382,1],[384,1],[386,1],[388,1],[493,1],[506,1],[508,1],[556,1],[661,1],[674,1],[676,2],[698,1],[700,1],[702,1]]},"192":{"position":[[1024,1],[1086,1],[1135,7],[1143,2],[1157,1],[1205,1],[1207,1],[2161,1],[2571,1],[2633,1],[2733,2],[2747,1],[2795,1],[2797,1],[2918,3],[2937,3],[3800,1],[3862,1],[4036,2],[4050,1],[4098,1],[4100,1],[4524,1]]},"194":{"position":[[387,1],[389,1],[439,3],[451,1],[500,8],[590,2],[604,1],[622,1],[624,1],[626,1],[731,1],[744,1],[746,1],[796,3],[808,1],[857,8],[947,2],[961,1],[979,2],[1000,1],[1002,1],[1004,1]]},"198":{"position":[[108,1],[221,1],[352,1],[371,1],[390,1],[402,1],[1589,1],[1591,1],[1634,1],[1636,2],[1639,3],[1643,2],[1657,1],[1679,1],[1681,2],[1741,2],[1823,2],[1826,2],[1918,1],[1920,1],[1922,1],[2353,1],[2355,1],[2398,1],[2400,2],[2403,3],[2407,2],[2421,1],[2447,1],[2449,1],[2451,1]]},"200":{"position":[[158,1],[160,1],[203,1],[253,1],[255,1],[257,1],[362,1],[375,1],[377,1],[420,1],[470,2],[487,1],[489,1],[491,1]]},"204":{"position":[[179,1],[181,1],[213,1],[231,2],[242,1],[260,1],[262,2],[265,1],[297,1],[315,2],[326,1],[344,1],[346,1],[348,1]]},"208":{"position":[[377,1],[379,1],[415,1],[456,3],[473,2],[476,1],[478,1],[480,1],[585,1],[598,1],[600,1],[636,1],[677,3],[694,2],[697,2],[723,1],[725,1],[727,1]]},"213":{"position":[[311,1],[340,1]]},"219":{"position":[[175,1],[221,1]]},"242":{"position":[[304,2],[362,2],[488,2]]},"250":{"position":[[385,1],[640,1],[985,1],[992,1],[2101,1]]},"252":{"position":[[637,1]]},"257":{"position":[[76,1],[164,1],[231,1]]},"268":{"position":[[1524,1],[1570,1],[1572,3],[1576,2],[1590,1],[1608,1],[1610,1],[1834,2],[1924,2],[2024,2],[2107,2],[2134,3],[2359,1],[2405,1],[2407,3],[2411,2],[2425,1],[2462,1],[2464,1]]},"272":{"position":[[250,1],[400,1]]},"274":{"position":[[338,1],[404,1],[462,1]]},"276":{"position":[[566,1],[1419,2],[1826,2]]},"285":{"position":[[178,3]]},"313":{"position":[[471,1],[584,1],[604,1],[621,1],[639,1],[673,1],[692,1],[705,1],[791,1],[804,1],[890,1],[1052,1],[1117,1],[1158,1],[1232,1],[1357,1],[1443,1],[1841,3],[1963,1],[1965,3],[2306,3],[2408,1],[2410,3],[2812,3],[2936,1],[2938,3]]},"315":{"position":[[1052,1]]},"319":{"position":[[132,1],[161,1],[234,2],[553,1],[579,1],[609,1],[619,1],[662,1],[664,1],[916,1],[929,1],[931,1],[1014,1],[1115,1],[1117,1],[1119,2],[1133,1],[1135,1],[1183,1],[1242,1],[1244,1],[1246,2],[1249,1]]},"328":{"position":[[234,1],[251,1],[281,1],[320,1],[341,2],[440,2],[537,1],[539,2],[582,3],[586,1],[658,1],[670,1],[678,1],[687,1],[689,1],[737,1],[739,2],[756,3],[760,1],[808,1],[810,1],[847,1],[849,2],[868,1],[937,1],[966,1],[1042,1],[1044,2],[1150,1],[1285,1],[1337,1],[1363,2],[1366,3],[1377,1],[1429,1],[1480,1],[1502,2],[1505,3],[1509,1],[1563,1],[1588,2],[1591,3],[1595,1],[1764,1],[1776,2],[1779,3],[1783,1],[1838,1],[1840,1],[1853,2],[1856,3],[1873,2]]},"330":{"position":[[171,1],[196,1],[312,1],[330,1],[375,2],[498,1],[500,2],[711,1],[767,2],[824,1],[832,2],[919,1],[928,2],[1013,1],[1021,1],[1023,1]]},"332":{"position":[[294,2],[297,3],[308,1],[343,1],[412,1],[414,2],[417,3],[444,1],[487,1],[489,3],[493,2],[496,1],[498,2],[501,3],[505,2],[570,2],[648,1],[670,1],[672,2],[675,3],[697,2],[700,3],[739,1],[741,1],[804,1],[837,2],[842,3],[858,1],[1003,3],[1007,1],[1032,1],[1034,1],[1036,1],[1038,2],[1041,3],[1045,2],[1135,1],[1197,1],[1199,3],[1203,2],[1206,1],[1208,2],[1211,3],[1260,1],[1262,2],[1265,3],[1287,2],[1290,3],[1330,1],[1456,1],[1458,1],[1460,1]]},"334":{"position":[[213,1],[240,1],[292,1],[305,1],[395,1],[397,2],[400,3],[404,2],[451,2],[515,2],[664,1],[666,4],[682,1],[690,1],[746,1],[748,1],[762,1],[770,1],[831,2],[861,2],[932,2],[941,1],[964,1],[966,1],[968,1],[970,1]]},"336":{"position":[[330,1],[336,1],[350,2],[353,3],[416,1],[433,2],[436,3],[479,1],[494,1],[579,1],[611,3],[620,2],[632,3],[636,3],[640,1],[651,1],[661,1],[680,3],[684,4],[689,1],[704,1],[715,1],[729,1],[779,1],[788,1],[801,1],[809,1],[826,1],[828,1],[853,3],[862,2],[871,3],[885,2],[902,3],[915,2],[931,3],[935,4],[940,1],[986,1],[1000,3],[1009,2],[1020,3],[1034,2],[1053,3],[1066,2],[1084,3],[1088,4],[1093,1],[1141,1],[1147,1],[1162,1],[1210,1],[1222,1],[1292,1],[1338,2],[1394,1],[1396,1],[1550,1],[1566,1],[1610,2],[1613,3],[1676,1],[1678,2],[1681,3],[1735,1],[1744,1],[1757,1],[1763,1],[1776,1],[1836,2],[1968,2],[2023,1],[2035,1],[2046,1],[2048,1],[2050,1],[2188,1],[2204,1],[2248,2],[2251,3],[2314,1],[2316,2],[2319,3],[2340,1],[2348,2],[2351,2],[2354,1],[2360,1],[2373,1],[2486,1],[2498,1],[2500,2],[2624,1],[2626,1],[2628,1]]},"338":{"position":[[1577,1],[1632,1],[1677,2],[1680,3],[1743,1],[1745,2],[1748,3],[1817,1],[1819,4],[1846,1],[1874,1],[1876,3],[1884,1],[1886,2],[1943,1],[2054,1],[2062,1],[2077,2],[2128,2],[2183,1],[2185,1],[2210,1],[2218,1],[2220,2],[2234,3],[2238,1],[2240,1],[2242,1],[2250,2],[2329,1],[2331,1],[2423,2],[2426,2],[2544,1],[2556,1],[2567,1],[2569,2],[2615,2],[2663,2],[2784,1],[2818,2],[2905,2],[2981,1],[2983,1]]},"341":{"position":[[373,1],[387,1],[432,2],[435,3],[498,1],[515,3],[519,3],[523,1],[534,3],[538,4],[543,2],[546,3],[550,2],[627,1],[635,1],[637,2],[640,3],[673,1],[737,2],[740,1],[746,1],[759,1],[859,2],[920,2],[971,1],[978,1],[980,2],[983,1],[985,1],[1011,2],[1050,1],[1062,1],[1141,1],[1143,1],[1145,1]]},"343":{"position":[[831,1],[844,1],[875,2],[878,3],[941,1],[958,3],[962,3],[966,1],[977,3],[981,4],[986,2],[989,3],[993,2],[1109,1],[1131,1],[1133,1],[2859,1],[2890,1],[2892,2],[2975,2],[3068,1],[3097,1],[3099,1],[3537,1],[3568,1],[3601,1],[3630,2],[3704,1],[3706,1]]},"352":{"position":[[379,1],[381,1],[452,1],[454,2],[457,3],[461,2],[475,1],[494,1],[510,3],[514,3],[518,4],[534,3],[538,3],[542,4],[562,3],[566,3],[570,3],[574,1],[576,1],[578,1],[580,1]]},"354":{"position":[[91,1],[102,3],[106,3],[110,4],[126,3],[130,3],[134,4],[148,3],[152,3],[156,3],[160,1],[316,1],[329,2],[366,1],[396,2],[470,2],[508,1],[510,1],[549,1],[551,1],[622,1],[624,2],[627,3],[631,2],[645,1],[664,1],[680,1],[691,1],[704,1],[749,1],[751,1],[753,2],[756,1],[758,1],[760,1],[762,1],[1074,1],[1094,1],[1096,2],[1156,1],[1172,1],[1183,1],[1203,1],[1205,1],[1207,1],[1209,2],[1223,3],[1227,3],[1231,4],[1247,3],[1251,3],[1255,3],[1259,1],[1562,1],[1564,1],[1586,2],[1589,3],[1604,1],[1623,1],[1636,1],[1651,3],[1655,3],[1659,4],[1664,2],[1716,3],[1720,3],[1724,4],[1729,2],[1808,2],[1811,1],[1813,1],[1815,1],[1817,1],[2042,1],[2062,2],[2134,1],[2164,2],[2247,2],[2289,1],[2291,1]]},"356":{"position":[[420,1],[430,1],[432,1],[460,2],[528,2],[578,2],[581,2],[587,1],[617,2],[694,2],[744,1],[746,1],[748,1],[926,1],[928,2],[961,2],[1009,2],[1012,2],[1043,2],[1087,1],[1106,1],[1122,1],[1132,1],[1134,1],[1163,1],[1165,2],[1177,1],[1179,1],[1212,4],[1217,1],[1219,2],[1269,2],[1272,1],[1274,1],[1276,1],[1325,1],[1327,2],[1352,2],[1355,2],[1388,2],[1424,2],[1477,2],[1480,2],[1534,1],[1553,1],[1569,1],[1580,1],[1582,1],[1647,3],[1659,1],[1661,1],[1690,1],[1692,1],[1694,2],[1752,2],[1755,1],[1757,1],[1759,1],[1761,1],[2079,1],[2099,1],[2118,1],[2134,1],[2136,2],[2181,1],[2192,1],[2194,1],[2244,1],[2246,1],[2248,2],[2251,2],[2297,1],[2308,1],[2310,1],[2362,1],[2364,1],[2366,2],[2369,1],[2371,1],[2373,1],[2375,1]]},"358":{"position":[[141,2],[165,1],[231,2],[255,1],[308,1],[337,10],[359,1],[378,1],[394,10],[417,1],[419,1],[421,1]]},"361":{"position":[[80,1],[100,1],[119,1],[135,1],[146,1],[166,1],[168,1],[170,1],[172,1],[174,1]]},"363":{"position":[[20,1],[22,1],[44,2],[47,3],[62,1],[81,1],[94,1],[109,1],[120,1],[139,1],[141,2],[156,1],[167,1],[186,1],[188,2],[191,2],[194,1],[196,1],[198,1],[200,1]]},"365":{"position":[[20,1],[40,1],[59,1],[75,1],[88,1],[90,1],[140,1],[142,1],[144,1],[146,1],[148,1],[150,1]]},"367":{"position":[[20,1],[40,1],[59,1],[75,1],[86,1],[88,1],[130,2],[133,1],[135,1],[137,1],[139,1],[141,1],[143,1]]},"369":{"position":[[176,1],[192,1],[270,3],[563,1],[579,1],[676,1],[696,1],[715,1],[731,1],[744,1],[746,1],[809,1],[811,1],[813,1],[815,1],[817,1],[819,1]]}}}],["0",{"_index":995,"t":{"114":{"position":[[63,2]]}}}],["0.0.0.0",{"_index":949,"t":{"102":{"position":[[589,7]]},"104":{"position":[[385,10],[620,10]]},"108":{"position":[[581,7]]}}}],["02",{"_index":1623,"t":{"250":{"position":[[958,2]]},"257":{"position":[[50,2],[137,2],[204,2]]}}}],["029b081ba",{"_index":462,"t":{"39":{"position":[[319,10],[610,10]]},"47":{"position":[[357,10],[668,10]]},"134":{"position":[[395,10],[706,10]]},"144":{"position":[[738,10],[1029,10]]}}}],["0400",{"_index":1610,"t":{"250":{"position":[[374,5],[629,5]]}}}],["05:00",{"_index":1625,"t":{"250":{"position":[[973,5]]}}}],["06:00",{"_index":1652,"t":{"257":{"position":[[65,5],[152,5],[219,5]]}}}],["07",{"_index":1608,"t":{"250":{"position":[[354,2],[609,2]]}}}],["0845bdc965b4",{"_index":1895,"t":{"328":{"position":[[724,12]]}}}],["0:48/3:56",{"_index":2024,"t":{"338":{"position":[[2187,9]]}}}],["1",{"_index":265,"t":{"17":{"position":[[4269,2],[4293,2],[4363,2]]},"80":{"position":[[552,1],[836,1]]},"114":{"position":[[201,2],[576,2]]},"268":{"position":[[1776,2],[1949,1]]},"369":{"position":[[804,4]]}}}],["1.5",{"_index":268,"t":{"17":{"position":[[4315,3],[4385,3]]},"114":{"position":[[363,4],[738,4]]}}}],["10",{"_index":283,"t":{"17":{"position":[[4970,2]]},"33":{"position":[[991,2]]},"250":{"position":[[357,2],[612,2]]}}}],["10.7",{"_index":900,"t":{"98":{"position":[[23,4]]}}}],["100",{"_index":552,"t":{"49":{"position":[[1806,4]]}}}],["1000",{"_index":1158,"t":{"158":{"position":[[1571,4]]}}}],["1000:1000",{"_index":1842,"t":{"315":{"position":[[321,9]]}}}],["120",{"_index":1016,"t":{"114":{"position":[[1581,4]]},"116":{"position":[[513,3]]}}}],["1234",{"_index":1107,"t":{"148":{"position":[[497,4]]},"168":{"position":[[2345,7],[2893,7]]}}}],["127.0.0.1",{"_index":1200,"t":{"170":{"position":[[1145,9],[1908,10]]},"202":{"position":[[348,9]]}}}],["127.0.0.1:5079",{"_index":1226,"t":{"170":{"position":[[3161,14]]}}}],["127.0.0.1:5079:8080",{"_index":1222,"t":{"170":{"position":[[2746,19]]}}}],["12:32:21.417",{"_index":1609,"t":{"250":{"position":[[360,12]]}}}],["12:32:21.418",{"_index":1620,"t":{"250":{"position":[[615,12]]}}}],["192.168.0.100",{"_index":1612,"t":{"250":{"position":[[510,15],[721,15]]},"270":{"position":[[203,13],[600,13]]},"315":{"position":[[192,15]]}}}],["192.168.0.100:6600",{"_index":1128,"t":{"156":{"position":[[211,21],[477,21]]}}}],["192.168.0.101",{"_index":313,"t":{"23":{"position":[[620,13]]},"186":{"position":[[217,15],[412,15]]}}}],["192.168.0.101:3456",{"_index":953,"t":{"102":{"position":[[863,18]]},"108":{"position":[[845,18]]},"146":{"position":[[1161,18]]}}}],["192.168.0.101:4000/my/subfold",{"_index":323,"t":{"23":{"position":[[978,31]]}}}],["192.168.0.233:32400",{"_index":1021,"t":{"114":{"position":[[1799,22],[1969,22],[2326,22]]},"116":{"position":[[646,22],[800,22],[960,22]]}}}],["192.168.0.xxx",{"_index":1201,"t":{"170":{"position":[[1188,15]]}}}],["19t10:05:42",{"_index":1651,"t":{"257":{"position":[[53,11],[140,11],[207,11]]}}}],["1:50/2:40",{"_index":650,"t":{"68":{"position":[[803,11]]}}}],["1m:20",{"_index":651,"t":{"68":{"position":[[862,7]]}}}],["1psidts=sidt",{"_index":1301,"t":{"192":{"position":[[1108,13]]},"194":{"position":[[473,13],[830,13]]}}}],["1x",{"_index":212,"t":{"17":{"position":[[1571,2],[3254,2]]}}}],["2",{"_index":1005,"t":{"114":{"position":[[1110,2]]},"170":{"position":[[3918,2]]},"268":{"position":[[1861,2],[2049,1],[3304,1]]}}}],["20",{"_index":676,"t":{"74":{"position":[[532,2],[568,3]]}}}],["200",{"_index":405,"t":{"35":{"position":[[124,3]]},"325":{"position":[[268,3]]}}}],["2023",{"_index":1622,"t":{"250":{"position":[[953,4]]},"257":{"position":[[45,4],[132,4],[199,4]]}}}],["2025",{"_index":1607,"t":{"250":{"position":[[348,5],[603,5]]}}}],["22t11:16:12",{"_index":1624,"t":{"250":{"position":[[961,11]]}}}],["25",{"_index":1308,"t":{"192":{"position":[[1365,3]]}}}],["2x",{"_index":209,"t":{"17":{"position":[[1532,2],[3215,2]]}}}],["3",{"_index":291,"t":{"17":{"position":[[5171,2]]},"33":{"position":[[1366,2]]},"268":{"position":[[1951,2],[2132,1],[3306,1]]}}}],["3.7",{"_index":1562,"t":{"237":{"position":[[80,5]]}}}],["30",{"_index":261,"t":{"17":{"position":[[4230,3]]}}}],["3be671f5ea2b",{"_index":466,"t":{"39":{"position":[[345,14],[636,14]]},"47":{"position":[[383,14],[694,14]]},"134":{"position":[[421,14],[732,14]]},"144":{"position":[[764,14],[1055,14]]}}}],["3papisid=3axsxpy0mkgu75qb/akisxgqonsdn1jekn",{"_index":1033,"t":{"114":{"position":[[2922,44]]},"116":{"position":[[1314,44]]}}}],["3rd",{"_index":540,"t":{"49":{"position":[[1412,3]]},"268":{"position":[[2759,3]]}}}],["3x",{"_index":210,"t":{"17":{"position":[[1550,2],[3233,2]]}}}],["4",{"_index":292,"t":{"17":{"position":[[5182,2]]},"33":{"position":[[1377,2]]},"74":{"position":[[220,2]]},"170":{"position":[[2995,1]]},"268":{"position":[[2051,2]]}}}],["40",{"_index":674,"t":{"74":{"position":[[465,3],[502,2]]}}}],["401",{"_index":1644,"t":{"254":{"position":[[58,3],[142,3]]}}}],["403",{"_index":1523,"t":{"221":{"position":[[3282,3],[3294,3]]},"254":{"position":[[65,3]]}}}],["48",{"_index":2023,"t":{"338":{"position":[[2179,2]]}}}],["49d7",{"_index":1893,"t":{"328":{"position":[[714,4]]}}}],["4dhe",{"_index":604,"t":{"61":{"position":[[810,4],[1061,4]]},"178":{"position":[[599,4],[856,4]]}}}],["4pe7",{"_index":464,"t":{"39":{"position":[[335,4],[626,4]]},"47":{"position":[[373,4],[684,4]]},"134":{"position":[[411,4],[722,4]]},"144":{"position":[[754,4],[1045,4]]}}}],["5",{"_index":25,"t":{"7":{"position":[[126,1]]},"17":{"position":[[4947,2],[5194,1]]},"33":{"position":[[968,2],[1389,1]]}}}],["50",{"_index":263,"t":{"17":{"position":[[4245,2]]},"74":{"position":[[155,4]]}}}],["500",{"_index":409,"t":{"35":{"position":[[161,3],[327,3],[451,3],[609,3],[708,3]]}}}],["5353/udp",{"_index":835,"t":{"94":{"position":[[955,9]]}}}],["6",{"_index":1694,"t":{"268":{"position":[[1859,1]]}}}],["60",{"_index":242,"t":{"17":{"position":[[2771,2]]},"172":{"position":[[474,2],[826,2]]}}}],["6600",{"_index":1122,"t":{"154":{"position":[[188,6]]}}}],["6644",{"_index":1159,"t":{"158":{"position":[[1594,5]]}}}],["6680",{"_index":1092,"t":{"146":{"position":[[902,4]]}}}],["6969",{"_index":1881,"t":{"325":{"position":[[673,4]]},"336":{"position":[[653,7]]}}}],["7",{"_index":281,"t":{"17":{"position":[[4958,2]]},"33":{"position":[[979,2]]}}}],["7905",{"_index":1252,"t":{"180":{"position":[[416,5]]}}}],["7cdr86vis3mpq5b1pi01md0hkm7ykzzxjy81r",{"_index":580,"t":{"54":{"position":[[774,40],[1040,40]]}}}],["846b",{"_index":1894,"t":{"328":{"position":[[719,4]]}}}],["88e5",{"_index":465,"t":{"39":{"position":[[340,4],[631,4]]},"47":{"position":[[378,4],[689,4]]},"134":{"position":[[416,4],[727,4]]},"144":{"position":[[759,4],[1050,4]]}}}],["8910....6jqupl.apps.googleusercontent.com",{"_index":1331,"t":{"192":{"position":[[2647,44],[3876,44]]}}}],["891098404....apps.googleusercontent.com",{"_index":1371,"t":{"194":{"position":[[521,42],[878,42]]}}}],["8dcc73a59",{"_index":1629,"t":{"250":{"position":[[1082,10]]}}}],["9078",{"_index":309,"t":{"23":{"position":[[301,4]]},"250":{"position":[[2259,4]]},"270":{"position":[[161,4]]},"313":{"position":[[2231,5]]},"315":{"position":[[144,4]]},"319":{"position":[[1306,5]]}}}],["9078:9078",{"_index":1734,"t":{"272":{"position":[[496,11]]},"313":{"position":[[1433,9],[2313,9],[2423,11]]},"315":{"position":[[633,9],[788,9],[1432,11]]}}}],["9156",{"_index":463,"t":{"39":{"position":[[330,4],[621,4]]},"47":{"position":[[368,4],[679,4]]},"134":{"position":[[406,4],[717,4]]},"144":{"position":[[749,4],[1040,4]]}}}],["__secur",{"_index":1032,"t":{"114":{"position":[[2912,9]]},"116":{"position":[[1304,9]]},"192":{"position":[[1098,9]]},"194":{"position":[[463,9],[820,9]]}}}],["a89cba1569901a0671d5a9875fed4be1",{"_index":146,"t":{"13":{"position":[[537,35],[887,35]]},"17":{"position":[[2622,35],[4516,35]]},"142":{"position":[[377,35],[727,35]]},"172":{"position":[[325,35],[677,35]]},"319":{"position":[[1026,35]]}}}],["abcd",{"_index":381,"t":{"33":{"position":[[510,6]]}}}],["abil",{"_index":1192,"t":{"170":{"position":[[355,7]]},"343":{"position":[[2008,7]]},"345":{"position":[[36,7]]}}}],["abov",{"_index":293,"t":{"19":{"position":[[28,5]]},"108":{"position":[[487,6]]},"180":{"position":[[330,6]]},"244":{"position":[[1036,5]]},"276":{"position":[[1947,5]]},"303":{"position":[[377,5]]},"315":{"position":[[878,5]]},"352":{"position":[[33,5]]}}}],["above...aft",{"_index":1740,"t":{"274":{"position":[[749,13]]}}}],["absolut",{"_index":1578,"t":{"242":{"position":[[369,8]]}}}],["abstract",{"_index":1468,"t":{"217":{"position":[[325,8]]},"221":{"position":[[27,8]]}}}],["abstractcompon",{"_index":1480,"t":{"221":{"position":[[48,18]]},"328":{"position":[[1924,17]]}}}],["abstractsourc",{"_index":1946,"t":{"332":{"position":[[1230,15]]},"343":{"position":[[2702,14],[2844,14],[3522,14]]}}}],["abstractsource'",{"_index":2051,"t":{"343":{"position":[[1970,16]]}}}],["accept",{"_index":106,"t":{"11":{"position":[[103,6]]},"45":{"position":[[110,6]]},"118":{"position":[[39,6]]},"120":{"position":[[69,6]]},"122":{"position":[[268,9]]},"124":{"position":[[39,6]]},"126":{"position":[[69,6]]},"130":{"position":[[348,9]]},"132":{"position":[[209,6]]},"140":{"position":[[168,6]]},"170":{"position":[[668,6]]},"180":{"position":[[42,6]]},"198":{"position":[[1453,7]]},"328":{"position":[[1948,7]]},"330":{"position":[[82,6]]},"356":{"position":[[180,6]]}}}],["access",{"_index":440,"t":{"37":{"position":[[523,6],[570,10],[1626,10]]},"49":{"position":[[938,9]]},"56":{"position":[[1016,9]]},"68":{"position":[[461,10]]},"78":{"position":[[633,6]]},"82":{"position":[[47,6]]},"112":{"position":[[418,6]]},"158":{"position":[[201,6],[429,6],[1056,6],[1377,6]]},"164":{"position":[[66,6]]},"168":{"position":[[327,9]]},"170":{"position":[[505,6],[1049,6],[1820,10]]},"176":{"position":[[66,6]]},"192":{"position":[[1420,6],[4516,6]]},"198":{"position":[[521,10],[607,11]]},"202":{"position":[[564,10],[655,9]]},"221":{"position":[[1869,10]]},"250":{"position":[[2012,6]]},"252":{"position":[[155,6],[222,10]]},"254":{"position":[[784,6],[827,6]]},"268":{"position":[[506,6]]},"274":{"position":[[493,6]]},"276":{"position":[[1690,6],[1737,10],[2334,10]]},"303":{"position":[[323,8]]},"313":{"position":[[2117,6]]},"325":{"position":[[656,8],[770,8]]}}}],["accesstoken",{"_index":1012,"t":{"114":{"position":[[1503,14]]},"116":{"position":[[435,14]]}}}],["accordingli",{"_index":1774,"t":{"283":{"position":[[336,12]]}}}],["account",{"_index":104,"t":{"11":{"position":[[66,7],[229,7]]},"13":{"position":[[123,7],[177,7]]},"17":{"position":[[1540,9],[1561,9],[3223,9],[3244,9]]},"37":{"position":[[60,7]]},"39":{"position":[[122,7]]},"45":{"position":[[68,7],[296,7]]},"49":{"position":[[674,8]]},"51":{"position":[[24,7],[168,7]]},"54":{"position":[[108,7],[165,8],[206,7],[558,7]]},"56":{"position":[[756,8]]},"58":{"position":[[26,8]]},"61":{"position":[[108,7],[165,8],[206,7],[561,7]]},"82":{"position":[[286,8]]},"112":{"position":[[147,7],[253,7],[312,7]]},"118":{"position":[[228,8]]},"124":{"position":[[248,8]]},"132":{"position":[[395,7]]},"170":{"position":[[656,7]]},"192":{"position":[[1810,8]]},"202":{"position":[[88,8]]},"268":{"position":[[2633,7]]},"274":{"position":[[1220,8]]},"276":{"position":[[915,7],[1019,7]]}}}],["account'",{"_index":1079,"t":{"132":{"position":[[36,9]]},"144":{"position":[[29,9]]}}}],["accur",{"_index":1190,"t":{"170":{"position":[[122,10]]},"188":{"position":[[520,8]]},"268":{"position":[[59,10]]}}}],["accuraci",{"_index":1193,"t":{"170":{"position":[[411,8]]},"338":{"position":[[479,8]]}}}],["action",{"_index":684,"t":{"76":{"position":[[376,6]]},"78":{"position":[[1060,6]]}}}],["activ",{"_index":76,"t":{"9":{"position":[[606,7],[723,6]]},"11":{"position":[[39,8]]},"37":{"position":[[38,8]]},"45":{"position":[[39,8]]},"49":{"position":[[38,8]]},"56":{"position":[[38,8]]},"65":{"position":[[105,6],[112,8],[136,6],[184,6],[191,8],[216,6],[223,8],[249,6],[256,8],[280,6],[287,8],[309,6],[316,8],[339,6],[370,6],[449,6],[527,6],[557,6],[564,8],[607,6],[614,8],[641,6],[648,8],[670,6],[677,8],[702,6],[733,6],[740,8],[782,6],[789,8],[814,6],[878,6],[885,8],[919,6],[926,8],[957,6]]},"68":{"position":[[168,6],[302,8],[644,8],[948,8]]},"70":{"position":[[164,8]]},"74":{"position":[[23,6]]},"94":{"position":[[1635,8]]},"118":{"position":[[201,8]]},"124":{"position":[[216,8]]},"140":{"position":[[72,8]]},"270":{"position":[[346,8]]},"274":{"position":[[86,9],[513,8]]},"276":{"position":[[87,8]]},"278":{"position":[[624,8]]},"289":{"position":[[1594,8]]},"325":{"position":[[848,8]]},"330":{"position":[[969,8]]}}}],["actual",{"_index":114,"t":{"11":{"position":[[263,8]]},"170":{"position":[[251,6]]},"254":{"position":[[658,6]]},"268":{"position":[[3142,8]]},"343":{"position":[[3940,8]]},"369":{"position":[[34,8]]}}}],["ad",{"_index":690,"t":{"76":{"position":[[592,6]]},"78":{"position":[[1257,6]]},"150":{"position":[[196,6]]},"202":{"position":[[271,6]]},"352":{"position":[[1073,6]]}}}],["adapt",{"_index":556,"t":{"51":{"position":[[62,7]]}}}],["add",{"_index":357,"t":{"27":{"position":[[430,3]]},"41":{"position":[[209,3],[503,3]]},"78":{"position":[[446,3]]},"158":{"position":[[1675,3]]},"170":{"position":[[4127,3]]},"192":{"position":[[959,3],[2082,3],[3228,3],[3712,3]]},"202":{"position":[[97,3]]},"229":{"position":[[172,3]]},"268":{"position":[[1166,4],[1487,3]]},"274":{"position":[[193,3],[790,3]]},"276":{"position":[[393,3],[690,3],[1070,3],[1984,3]]},"313":{"position":[[1249,3]]},"328":{"position":[[1152,3],[1633,3]]},"332":{"position":[[220,3],[578,3]]},"336":{"position":[[257,3]]},"347":{"position":[[268,4]]},"350":{"position":[[385,4],[804,4]]}}}],["add/substitut",{"_index":1755,"t":{"276":{"position":[[1925,14]]}}}],["addit",{"_index":554,"t":{"49":{"position":[[1851,10]]},"76":{"position":[[280,10]]},"90":{"position":[[1052,10]]},"94":{"position":[[1449,10],[1523,10]]},"98":{"position":[[721,10]]},"158":{"position":[[1118,10]]},"219":{"position":[[496,10]]},"221":{"position":[[859,10]]},"250":{"position":[[1572,10]]},"283":{"position":[[84,10]]},"354":{"position":[[1843,8]]}}}],["addition",{"_index":689,"t":{"76":{"position":[[498,13]]},"78":{"position":[[1182,13]]},"270":{"position":[[569,13]]},"336":{"position":[[213,13]]},"338":{"position":[[984,12]]},"343":{"position":[[3106,12]]}}}],["additionalallowedlibrarytyp",{"_index":912,"t":{"98":{"position":[[906,29],[2543,32],[3162,32]]}}}],["additionalconfig",{"_index":1933,"t":{"332":{"position":[[452,19]]}}}],["additon",{"_index":1355,"t":{"192":{"position":[[5044,7]]}}}],["address",{"_index":1121,"t":{"154":{"position":[[175,7]]},"170":{"position":[[1134,7]]},"250":{"position":[[484,8],[1830,7]]},"252":{"position":[[130,7],[388,9],[458,7]]}}}],["address/ip",{"_index":1227,"t":{"170":{"position":[[3185,10]]}}}],["addsourc",{"_index":1943,"t":{"332":{"position":[[1125,9]]}}}],["admin",{"_index":467,"t":{"39":{"position":[[372,8],[663,8]]},"41":{"position":[[255,5],[341,5]]},"98":{"position":[[413,5]]},"144":{"position":[[791,8],[1082,8]]},"276":{"position":[[439,5],[525,5]]}}}],["administr",{"_index":700,"t":{"78":{"position":[[303,14]]},"98":{"position":[[123,14]]}}}],["advanc",{"_index":217,"t":{"17":{"position":[[1746,8]]},"102":{"position":[[455,8]]},"188":{"position":[[248,8]]},"280":{"position":[[9,8]]}}}],["advantag",{"_index":2007,"t":{"338":{"position":[[932,9],[1253,9]]}}}],["affect",{"_index":64,"t":{"9":{"position":[[400,7]]},"21":{"position":[[14,6]]},"170":{"position":[[343,6],[400,6]]},"192":{"position":[[4220,7]]},"206":{"position":[[192,7],[232,6]]},"219":{"position":[[476,6]]},"352":{"position":[[1187,6]]}}}],["after=network.target",{"_index":1548,"t":{"229":{"position":[[276,20]]}}}],["afterward",{"_index":356,"t":{"27":{"position":[[393,11]]},"254":{"position":[[1117,11]]}}}],["again",{"_index":594,"t":{"58":{"position":[[237,5]]},"192":{"position":[[4663,5]]},"268":{"position":[[3198,6]]}}}],["against",{"_index":547,"t":{"49":{"position":[[1618,7]]},"338":{"position":[[802,7]]},"343":{"position":[[2446,7],[4001,7]]},"354":{"position":[[1800,7]]}}}],["aggreg",{"_index":413,"t":{"35":{"position":[[230,10],[388,10]]}}}],["aggress",{"_index":780,"t":{"88":{"position":[[246,12],[397,12],[464,12]]}}}],["agnost",{"_index":512,"t":{"49":{"position":[[391,8]]},"56":{"position":[[473,8]]}}}],["aio",{"_index":86,"t":{"9":{"position":[[891,3],[984,3]]},"13":{"position":[[9,3],[744,3]]},"17":{"position":[[310,3],[1969,3],[3097,3],[3499,3],[3623,3]]},"25":{"position":[[428,3],[637,3],[676,3],[984,3]]},"27":{"position":[[440,3]]},"33":{"position":[[218,3]]},"39":{"position":[[9,3],[486,3]]},"43":{"position":[[9,3],[399,3]]},"47":{"position":[[9,3],[528,3]]},"54":{"position":[[428,3],[915,3]]},"61":{"position":[[428,3],[891,3]]},"74":{"position":[[369,3]]},"76":{"position":[[652,3]]},"78":{"position":[[1317,3]]},"80":{"position":[[9,3]]},"86":{"position":[[9,3]]},"92":{"position":[[9,3]]},"96":{"position":[[9,3]]},"98":{"position":[[1207,3]]},"104":{"position":[[9,3],[511,3]]},"110":{"position":[[9,3],[458,3]]},"122":{"position":[[9,3],[467,3]]},"130":{"position":[[9,3],[546,3]]},"134":{"position":[[9,3],[219,3],[566,3]]},"138":{"position":[[9,3],[208,3],[493,3]]},"142":{"position":[[9,3],[209,3],[584,3]]},"144":{"position":[[396,3],[592,3],[905,3]]},"152":{"position":[[9,3],[281,3]]},"156":{"position":[[9,3],[371,3]]},"160":{"position":[[9,3],[555,3]]},"166":{"position":[[198,3],[398,3],[690,3]]},"168":{"position":[[1555,3],[2766,3]]},"172":{"position":[[9,3],[547,3]]},"178":{"position":[[198,3],[398,3],[680,3]]},"182":{"position":[[9,3],[398,3]]},"186":{"position":[[9,3],[303,3]]},"188":{"position":[[657,3]]},"190":{"position":[[9,3],[454,3]]},"194":{"position":[[9,3],[692,3]]},"200":{"position":[[9,3],[323,3]]},"208":{"position":[[9,3],[546,3]]},"354":{"position":[[969,3]]}}}],["airson",{"_index":609,"t":{"63":{"position":[[167,9]]},"112":{"position":[[173,8]]},"188":{"position":[[126,8],[239,8]]},"289":{"position":[[400,8]]}}}],["album",{"_index":1108,"t":{"150":{"position":[[69,7],[118,5],[182,5],[212,5],[437,6]]},"198":{"position":[[1136,5],[1443,6]]},"223":{"position":[[200,6]]},"268":{"position":[[2910,5]]},"334":{"position":[[795,6]]},"345":{"position":[[149,5]]},"347":{"position":[[316,6]]},"354":{"position":[[139,8],[814,6],[1185,7]]},"356":{"position":[[510,8],[667,8],[785,5],[1037,5],[1168,8]]},"361":{"position":[[19,6],[148,7]]},"367":{"position":[[77,8]]}}}],["albumblacklist",{"_index":1111,"t":{"150":{"position":[[355,17]]},"152":{"position":[[190,17],[443,17]]}}}],["albumnam",{"_index":1963,"t":{"334":{"position":[[715,10],[802,10]]}}}],["alice.bsky.soci",{"_index":568,"t":{"54":{"position":[[135,17],[825,19],[1091,19]]},"61":{"position":[[135,17],[763,20],[1014,20]]},"166":{"position":[[600,19],[866,19]]},"178":{"position":[[552,20],[809,20]]}}}],["allow",{"_index":98,"t":{"9":{"position":[[1220,7]]},"37":{"position":[[1506,5]]},"49":{"position":[[224,5]]},"56":{"position":[[306,5]]},"94":{"position":[[928,5],[1974,5],[2061,7],[2175,5],[2351,5]]},"98":{"position":[[623,7],[939,5],[2013,5]]},"106":{"position":[[167,5]]},"148":{"position":[[32,5]]},"168":{"position":[[94,7],[398,5],[1338,7],[2130,5]]},"170":{"position":[[1081,6]]},"221":{"position":[[351,5]]},"264":{"position":[[280,5]]},"276":{"position":[[2214,5]]},"343":{"position":[[2587,8]]}}}],["allowunknown",{"_index":915,"t":{"98":{"position":[[1135,15],[2593,15],[3214,15]]}}}],["allowunknownmedia",{"_index":866,"t":{"94":{"position":[[2080,20],[2407,20]]}}}],["allowunknownmedia=fals",{"_index":1664,"t":{"264":{"position":[[231,24]]}}}],["along",{"_index":249,"t":{"17":{"position":[[3967,5]]}}}],["alongsid",{"_index":1766,"t":{"280":{"position":[[261,9]]},"323":{"position":[[90,9]]}}}],["alphabet",{"_index":83,"t":{"9":{"position":[[835,14]]}}}],["alpin",{"_index":845,"t":{"94":{"position":[[1120,7]]}}}],["alreadi",{"_index":427,"t":{"37":{"position":[[129,7]]},"41":{"position":[[38,7]]},"54":{"position":[[284,7]]},"58":{"position":[[48,7]]},"61":{"position":[[284,7]]},"114":{"position":[[1651,7]]},"170":{"position":[[1523,7]]},"215":{"position":[[201,7]]},"276":{"position":[[222,7],[1300,7]]},"289":{"position":[[1892,7]]},"343":{"position":[[472,7],[2366,7],[2454,7]]},"350":{"position":[[271,7],[414,8],[652,7],[838,7]]},"352":{"position":[[741,7],[977,7],[1083,7]]}}}],["altern",{"_index":1210,"t":{"170":{"position":[[1779,14]]},"283":{"position":[[442,14]]}}}],["alway",{"_index":693,"t":{"76":{"position":[[732,6]]},"78":{"position":[[1397,6]]},"94":{"position":[[479,6],[1875,6],[2778,6],[2935,6]]},"134":{"position":[[152,6]]},"138":{"position":[[140,6]]},"142":{"position":[[142,6]]},"144":{"position":[[525,6]]},"166":{"position":[[331,6]]},"170":{"position":[[3760,6]]},"178":{"position":[[331,6]]},"219":{"position":[[41,6]]},"343":{"position":[[231,6],[445,6],[695,6],[2619,8]]},"356":{"position":[[1330,6]]}}}],["ambplayobject",{"_index":1532,"t":{"223":{"position":[[750,13]]}}}],["amount",{"_index":671,"t":{"74":{"position":[[172,6]]}}}],["and/or",{"_index":359,"t":{"29":{"position":[[33,6]]},"49":{"position":[[1640,6]]},"70":{"position":[[50,6]]},"126":{"position":[[804,6]]},"198":{"position":[[1436,6]]},"270":{"position":[[316,6],[392,6]]},"289":{"position":[[1257,6]]},"303":{"position":[[260,6]]},"328":{"position":[[2133,6]]},"338":{"position":[[1078,6]]},"343":{"position":[[39,6]]}}}],["android",{"_index":994,"t":{"112":{"position":[[908,7]]}}}],["annot",{"_index":1849,"t":{"315":{"position":[[905,12]]},"328":{"position":[[554,10]]}}}],["anoth",{"_index":526,"t":{"49":{"position":[[960,7]]},"56":{"position":[[1038,7]]},"250":{"position":[[2288,7]]},"315":{"position":[[34,7]]},"369":{"position":[[194,7],[581,7],[644,7]]}}}],["anotherbadterm",{"_index":2099,"t":{"354":{"position":[[378,17],[431,16]]}}}],["anotherus",{"_index":931,"t":{"98":{"position":[[2399,16],[3010,13]]},"168":{"position":[[2451,13],[2999,13]]}}}],["any/al",{"_index":877,"t":{"94":{"position":[[3099,7]]}}}],["anyon",{"_index":1172,"t":{"168":{"position":[[311,6]]}}}],["anyth",{"_index":411,"t":{"35":{"position":[[190,8]]},"128":{"position":[[112,8]]}}}],["anywher",{"_index":2096,"t":{"352":{"position":[[1291,8]]}}}],["apassword",{"_index":962,"t":{"104":{"position":[[429,11],[664,11]]}}}],["api",{"_index":110,"t":{"11":{"position":[[225,3]]},"13":{"position":[[101,3],[119,3],[173,3]]},"29":{"position":[[161,3]]},"37":{"position":[[167,3],[251,3],[1034,3]]},"39":{"position":[[98,3]]},"41":{"position":[[384,3],[533,3]]},"43":{"position":[[146,3]]},"51":{"position":[[240,3]]},"54":{"position":[[614,3]]},"65":{"position":[[777,4]]},"84":{"position":[[153,3]]},"98":{"position":[[49,3],[154,3],[302,3],[372,3],[618,4],[1389,3],[1416,3]]},"114":{"position":[[1669,3]]},"168":{"position":[[1740,3]]},"170":{"position":[[324,4]]},"184":{"position":[[396,3]]},"188":{"position":[[73,3],[602,4]]},"190":{"position":[[165,3]]},"192":{"position":[[1860,4],[3054,4],[3524,3]]},"202":{"position":[[109,3],[376,3],[469,3]]},"204":{"position":[[103,3],[376,3],[458,3]]},"211":{"position":[[317,3]]},"219":{"position":[[322,3]]},"250":{"position":[[393,5],[648,5],[832,3]]},"260":{"position":[[36,3]]},"274":{"position":[[178,3],[406,3]]},"276":{"position":[[568,3],[911,3],[1338,3],[1422,3]]},"289":{"position":[[389,4],[1369,4]]},"313":{"position":[[1507,3]]},"319":{"position":[[568,3],[1284,3]]},"325":{"position":[[187,4],[196,4],[763,3],[832,3]]},"330":{"position":[[996,3]]},"334":{"position":[[101,3],[596,3]]},"336":{"position":[[706,8]]}}}],["api/health",{"_index":1876,"t":{"325":{"position":[[243,11]]}}}],["api/live/nowplaying/websocket",{"_index":705,"t":{"78":{"position":[[484,31]]}}}],["api/now",{"_index":1880,"t":{"325":{"position":[[492,8]]}}}],["api/rec",{"_index":1878,"t":{"325":{"position":[[414,11]]}}}],["apikey",{"_index":145,"t":{"13":{"position":[[527,9],[877,9]]},"17":{"position":[[4771,9]]},"43":{"position":[[305,9],[566,9]]},"98":{"position":[[1471,6],[1579,6],[2265,9],[2903,9]]},"114":{"position":[[2572,9],[3266,9],[3384,9],[3502,9],[3579,9]]},"116":{"position":[[1127,9],[1660,9],[1760,9],[1860,9],[1945,9]]},"138":{"position":[[399,9],[660,9]]},"142":{"position":[[367,9],[717,9]]},"319":{"position":[[1016,9],[1218,9]]}}}],["apis/listenbrainz",{"_index":446,"t":{"37":{"position":[[742,18]]}}}],["app",{"_index":529,"t":{"49":{"position":[[1061,3]]},"56":{"position":[[1139,3]]},"58":{"position":[[153,3],[180,3]]},"61":{"position":[[643,3]]},"94":{"position":[[640,3],[2368,3]]},"96":{"position":[[499,5],[602,5]]},"98":{"position":[[260,3]]},"112":{"position":[[922,3]]},"116":{"position":[[62,3]]},"126":{"position":[[381,4]]},"170":{"position":[[559,3],[757,3],[830,3],[1685,4],[4052,4]]},"211":{"position":[[291,3]]},"242":{"position":[[105,3]]},"244":{"position":[[95,4],[1062,3]]},"250":{"position":[[105,3],[387,5],[642,5],[987,4]]},"257":{"position":[[78,5],[84,3],[166,5],[233,5]]},"264":{"position":[[17,3]]},"274":{"position":[[548,3]]},"289":{"position":[[13,3],[1011,4],[1271,3],[1461,4]]},"315":{"position":[[132,3]]},"321":{"position":[[98,3]]}}}],["app'",{"_index":1240,"t":{"170":{"position":[[4097,5]]}}}],["app.rockski",{"_index":523,"t":{"49":{"position":[[860,14]]}}}],["appear",{"_index":1675,"t":{"268":{"position":[[831,6]]}}}],["append",{"_index":524,"t":{"49":{"position":[[893,8]]},"54":{"position":[[377,6]]},"56":{"position":[[971,8]]},"61":{"position":[[377,6]]},"184":{"position":[[367,6]]},"221":{"position":[[615,6]]},"244":{"position":[[1005,6]]}}}],["appli",{"_index":2103,"t":{"354":{"position":[[916,7],[1104,5]]}}}],["applic",{"_index":1,"t":{"2":{"position":[[15,11]]},"11":{"position":[[133,12]]},"45":{"position":[[140,12]]},"49":{"position":[[240,12],[423,11],[554,11],[968,11]]},"56":{"position":[[322,12],[505,11],[636,11],[1046,11]]},"84":{"position":[[374,12]]},"94":{"position":[[1715,11],[1834,11],[2214,12],[2246,11],[2539,11],[2598,11],[2748,11],[2889,12]]},"112":{"position":[[375,11]]},"114":{"position":[[1306,12],[1639,11]]},"118":{"position":[[69,12]]},"124":{"position":[[69,12]]},"126":{"position":[[315,11],[720,12]]},"130":{"position":[[287,11]]},"132":{"position":[[239,12]]},"140":{"position":[[198,12]]},"188":{"position":[[32,11]]},"192":{"position":[[2188,11],[2212,11]]},"202":{"position":[[206,11]]},"215":{"position":[[128,11]]},"274":{"position":[[767,11]]},"295":{"position":[[15,11]]},"303":{"position":[[395,10]]}}}],["apppassword",{"_index":601,"t":{"61":{"position":[[784,14],[1035,14]]},"178":{"position":[[573,14],[830,14]]}}}],["appris",{"_index":392,"t":{"33":{"position":[[1395,8],[1564,10]]},"289":{"position":[[634,8]]}}}],["appriseconfig",{"_index":393,"t":{"33":{"position":[[1435,13]]}}}],["approach",{"_index":1230,"t":{"170":{"position":[[3443,8],[3889,9]]}}}],["appropri",{"_index":1330,"t":{"192":{"position":[[2553,11]]}}}],["aqzi58fa.rfszbm",{"_index":388,"t":{"33":{"position":[[925,18]]}}}],["arch",{"_index":1539,"t":{"227":{"position":[[128,5]]}}}],["architectur",{"_index":1803,"t":{"307":{"position":[[9,12]]},"319":{"position":[[365,12]]}}}],["arg",{"_index":1576,"t":{"242":{"position":[[295,5]]}}}],["arl",{"_index":741,"t":{"84":{"position":[[4,3],[103,3],[270,3],[505,4],[718,3]]},"86":{"position":[[85,3],[219,6],[522,6]]},"88":{"position":[[325,6]]}}}],["arm64",{"_index":1808,"t":{"313":{"position":[[56,5]]}}}],["array",{"_index":231,"t":{"17":{"position":[[2392,5]]},"35":{"position":[[505,5]]},"90":{"position":[[1212,5]]},"356":{"position":[[217,5],[247,5],[856,5],[1778,6],[1816,5],[1927,5],[2064,6]]},"358":{"position":[[212,5],[302,5]]}}}],["artist",{"_index":1114,"t":{"150":{"position":[[478,7],[493,6],[565,7],[580,6]]},"188":{"position":[[172,7],[568,8]]},"198":{"position":[[1117,7],[1423,6],[1693,6],[1747,6]]},"223":{"position":[[191,8]]},"260":{"position":[[50,6],[141,8],[263,6],[281,6]]},"264":{"position":[[179,6],[328,6]]},"268":{"position":[[3008,7]]},"334":{"position":[[772,8]]},"345":{"position":[[136,8]]},"347":{"position":[[213,6],[298,6],[374,6]]},"354":{"position":[[115,10],[806,7]]},"356":{"position":[[434,9],[685,8],[777,7],[938,6],[1136,9],[1394,6],[1663,9]]},"365":{"position":[[77,10]]},"367":{"position":[[109,9]]},"369":{"position":[[17,6],[51,7],[145,6],[165,6],[181,6],[209,6],[220,7],[452,6],[466,6],[552,6],[568,6],[617,6],[632,6],[733,10]]}}}],["artist/album/track",{"_index":800,"t":{"90":{"position":[[329,18]]}}}],["artistnam",{"_index":1962,"t":{"334":{"position":[[703,11],[781,13]]}}}],["ask",{"_index":1351,"t":{"192":{"position":[[4471,4]]}}}],["aspect",{"_index":1463,"t":{"217":{"position":[[41,7]]},"323":{"position":[[116,7]]}}}],["assum",{"_index":1080,"t":{"134":{"position":[[122,7]]},"138":{"position":[[116,7]]},"142":{"position":[[117,7]]},"144":{"position":[[502,7]]},"166":{"position":[[306,7]]},"168":{"position":[[1071,9]]},"178":{"position":[[306,7]]},"250":{"position":[[1674,6]]},"274":{"position":[[670,8]]},"287":{"position":[[0,8]]},"334":{"position":[[834,8],[864,8]]},"341":{"position":[[862,8]]},"356":{"position":[[1945,9]]}}}],["async",{"_index":1494,"t":{"221":{"position":[[880,5]]},"332":{"position":[[446,5],[1137,5]]},"336":{"position":[[741,5],[1695,5],[2342,5]]},"338":{"position":[[1762,5]]},"341":{"position":[[675,5]]}}}],["asynchron",{"_index":546,"t":{"49":{"position":[[1576,14]]},"221":{"position":[[335,12]]}}}],["athent",{"_index":1365,"t":{"194":{"position":[[165,13],[224,13],[290,13]]}}}],["atproto",{"_index":565,"t":{"54":{"position":[[57,7],[530,7]]},"56":{"position":[[54,7],[188,7]]},"61":{"position":[[57,7],[533,7]]},"174":{"position":[[29,7],[160,7]]}}}],["atproto.at",{"_index":588,"t":{"56":{"position":[[1528,10]]}}}],["attempt",{"_index":1000,"t":{"114":{"position":[[419,7],[794,7]]},"198":{"position":[[1098,7]]},"221":{"position":[[2835,7],[3302,7]]}}}],["audio",{"_index":807,"t":{"90":{"position":[[1045,6]]},"98":{"position":[[1053,6]]}}}],["audiobook",{"_index":914,"t":{"98":{"position":[[980,11]]}}}],["auser",{"_index":961,"t":{"104":{"position":[[408,8],[643,8]]}}}],["auserw",{"_index":1422,"t":{"204":{"position":[[191,10],[357,7]]}}}],["auth",{"_index":1244,"t":{"170":{"position":[[4346,4]]},"192":{"position":[[4329,4],[5360,4]]},"211":{"position":[[179,4]]},"221":{"position":[[1946,5],[1969,4],[2192,4],[2314,4],[2602,4],[2626,4],[3095,4],[3334,4]]},"328":{"position":[[397,4],[629,4]]},"330":{"position":[[112,4],[877,4]]},"336":{"position":[[2057,5],[2090,4]]}}}],["authent",{"_index":134,"t":{"13":{"position":[[261,15],[373,14]]},"23":{"position":[[67,14]]},"35":{"position":[[574,14],[629,13]]},"98":{"position":[[459,12],[595,13],[1367,12],[1435,14],[1540,12]]},"100":{"position":[[230,14]]},"104":{"position":[[179,14],[245,13]]},"128":{"position":[[42,15]]},"130":{"position":[[233,15]]},"168":{"position":[[202,13],[602,13],[776,13],[978,13],[1090,13],[1268,13]]},"170":{"position":[[459,12],[1306,14],[2191,15],[2440,15],[2904,12],[3344,15]]},"192":{"position":[[489,15],[750,14],[1225,14],[4650,12],[4777,14],[4881,14],[4926,12],[5002,14],[5145,14],[5225,14]]},"194":{"position":[[113,14]]},"202":{"position":[[727,14]]},"221":{"position":[[2383,14],[2538,14],[2671,14],[2849,13],[2954,14]]},"252":{"position":[[269,14]]},"254":{"position":[[176,15],[234,15],[267,14],[440,15],[469,14],[563,15],[841,13],[1135,12]]},"274":{"position":[[629,14]]},"278":{"position":[[485,14]]},"293":{"position":[[322,12]]},"295":{"position":[[243,12]]},"325":{"position":[[311,13]]},"330":{"position":[[791,14]]}}}],["author",{"_index":745,"t":{"84":{"position":[[121,10]]},"170":{"position":[[957,14]]},"192":{"position":[[2015,10],[2101,10],[2257,13],[2296,10],[3199,10],[3739,10],[4121,10]]},"221":{"position":[[3205,13]]},"274":{"position":[[1182,9],[1271,13]]},"289":{"position":[[989,13]]},"303":{"position":[[242,9]]},"325":{"position":[[385,13]]}}}],["auto",{"_index":1783,"t":{"289":{"position":[[934,4]]}}}],["autom",{"_index":1569,"t":{"242":{"position":[[43,9]]},"345":{"position":[[74,9]]}}}],["automat",{"_index":33,"t":{"7":{"position":[[193,13]]},"49":{"position":[[634,13]]},"54":{"position":[[363,13]]},"56":{"position":[[716,13]]},"61":{"position":[[363,13]]},"76":{"position":[[205,14],[748,13],[796,13]]},"78":{"position":[[432,13],[1413,13],[1461,13],[1757,13],[1845,9]]},"90":{"position":[[538,13],[608,9],[733,9],[1151,9],[1586,13]]},"94":{"position":[[812,13]]},"114":{"position":[[92,9]]},"168":{"position":[[142,13]]},"184":{"position":[[353,13]]},"192":{"position":[[4609,14]]},"231":{"position":[[254,13]]},"274":{"position":[[1251,13]]},"317":{"position":[[70,13]]},"343":{"position":[[2122,13]]},"354":{"position":[[2017,13]]}}}],["automix",{"_index":1188,"t":{"170":{"position":[[12,7],[47,7]]}}}],["avahi",{"_index":839,"t":{"94":{"position":[[1038,5],[1167,5],[1205,5],[1250,5]]}}}],["avail",{"_index":295,"t":{"19":{"position":[[146,9],[204,9]]},"35":{"position":[[60,9]]},"76":{"position":[[31,9]]},"96":{"position":[[71,9]]},"158":{"position":[[1576,9]]},"192":{"position":[[5061,9],[5287,9]]},"280":{"position":[[231,9]]},"313":{"position":[[80,9]]}}}],["avoid",{"_index":1835,"t":{"313":{"position":[[3287,5]]}}}],["await",{"_index":1947,"t":{"332":{"position":[[1332,5]]},"336":{"position":[[1778,5],[2375,5]]},"338":{"position":[[1945,5]]},"341":{"position":[[761,5]]}}}],["awar",{"_index":353,"t":{"27":{"position":[[231,5]]},"170":{"position":[[3538,6]]}}}],["az_stat",{"_index":725,"t":{"80":{"position":[[112,10]]}}}],["az_url",{"_index":722,"t":{"80":{"position":[[66,6]]}}}],["azura",{"_index":731,"t":{"80":{"position":[[425,8],[709,8]]}}}],["azura_l",{"_index":714,"t":{"78":{"position":[[1624,11]]},"80":{"position":[[169,10]]}}}],["azura_listeners_num",{"_index":717,"t":{"78":{"position":[[1674,20]]},"80":{"position":[[231,19]]}}}],["azuracast",{"_index":614,"t":{"65":{"position":[[95,9]]},"78":{"position":[[21,9],[222,9],[375,9]]},"80":{"position":[[77,9],[388,12],[672,12]]},"289":{"position":[[135,9]]}}}],["azuracast.json",{"_index":692,"t":{"76":{"position":[[664,14]]},"78":{"position":[[1329,14]]}}}],["b",{"_index":1574,"t":{"242":{"position":[[266,1],[360,1]]}}}],["back",{"_index":1218,"t":{"170":{"position":[[2697,4]]},"192":{"position":[[4402,4]]},"268":{"position":[[3026,4]]}}}],["backend",{"_index":1087,"t":{"146":{"position":[[204,7]]},"211":{"position":[[68,7],[94,7],[328,7]]}}}],["background",{"_index":1851,"t":{"317":{"position":[[91,11]]}}}],["backlog",{"_index":2035,"t":{"341":{"position":[[266,11],[582,10]]}}}],["backslash",{"_index":2145,"t":{"369":{"position":[[511,9]]}}}],["bad",{"_index":1109,"t":{"150":{"position":[[178,3],[301,3]]}}}],["bad/incomplet",{"_index":881,"t":{"94":{"position":[[3218,14]]}}}],["badmus",{"_index":936,"t":{"98":{"position":[[2529,13],[3148,10]]},"168":{"position":[[2589,10],[3137,10]]}}}],["badterm",{"_index":2098,"t":{"354":{"position":[[318,10],[356,9],[693,10],[716,10]]}}}],["bandcamp",{"_index":1085,"t":{"146":{"position":[[123,9]]}}}],["bar",{"_index":758,"t":{"84":{"position":[[496,3]]}}}],["base",{"_index":82,"t":{"9":{"position":[[799,5]]},"11":{"position":[[424,4]]},"17":{"position":[[456,5],[1418,5],[3101,5]]},"29":{"position":[[202,5]]},"37":{"position":[[714,4],[856,4],[904,4],[968,4],[1008,4]]},"39":{"position":[[182,4]]},"43":{"position":[[97,4]]},"47":{"position":[[200,4]]},"74":{"position":[[101,5],[265,5]]},"78":{"position":[[588,5],[1560,5],[1780,5]]},"88":{"position":[[188,5]]},"90":{"position":[[426,5],[870,5],[1085,5],[1169,5]]},"94":{"position":[[789,5],[2118,5],[2715,5]]},"96":{"position":[[94,5]]},"126":{"position":[[283,4]]},"184":{"position":[[515,4]]},"190":{"position":[[139,4]]},"192":{"position":[[1730,5],[3316,4]]},"198":{"position":[[1559,5]]},"202":{"position":[[427,5]]},"204":{"position":[[139,5]]},"221":{"position":[[36,4],[1165,4],[2002,5]]},"250":{"position":[[26,5]]},"268":{"position":[[625,5],[2557,6]]},"313":{"position":[[2435,4],[2665,4]]},"315":{"position":[[215,4]]},"323":{"position":[[161,5]]},"325":{"position":[[54,5]]},"330":{"position":[[398,4],[538,4]]},"332":{"position":[[73,5]]},"338":{"position":[[1207,5]]}}}],["base_url",{"_index":303,"t":{"23":{"position":[[184,8],[598,8],[832,8]]},"270":{"position":[[547,8]]}}}],["base_url:port/lastfm/callback",{"_index":312,"t":{"23":{"position":[[502,29]]}}}],["base_url=\"http://hostmachineip",{"_index":1831,"t":{"313":{"position":[[2819,31]]}}}],["base_url=192.168.0.100",{"_index":1845,"t":{"315":{"position":[[516,24],[760,24]]}}}],["base_url=http://192.168.0.100:9078",{"_index":1732,"t":{"272":{"position":[[365,34]]},"315":{"position":[[1275,34]]}}}],["base_url=http://192.168.0.101:9078",{"_index":1821,"t":{"313":{"position":[[1123,34]]}}}],["base_url=http://hostmachineip",{"_index":1832,"t":{"313":{"position":[[2957,29]]}}}],["base_url=http://myhostip:9078",{"_index":1822,"t":{"313":{"position":[[1161,29]]}}}],["baseurl",{"_index":304,"t":{"23":{"position":[[196,7]]},"328":{"position":[[852,8]]},"332":{"position":[[743,8]]},"336":{"position":[[162,7],[245,7],[418,9],[818,7],[991,8],[1012,7],[1045,7],[1257,8],[1266,12],[1327,10]]}}}],["baseurl.trim",{"_index":1983,"t":{"336":{"position":[[1069,14]]}}}],["bash",{"_index":1567,"t":{"242":{"position":[[14,4]]}}}],["basic",{"_index":219,"t":{"17":{"position":[[1822,5]]},"94":{"position":[[423,5]]},"170":{"position":[[4103,5]]},"221":{"position":[[3089,5]]},"289":{"position":[[833,5]]},"343":{"position":[[1916,5]]}}}],["be",{"_index":658,"t":{"70":{"position":[[85,5]]},"88":{"position":[[629,5]]},"140":{"position":[[407,5]]},"192":{"position":[[259,5],[5055,5]]},"198":{"position":[[1014,5]]},"254":{"position":[[1002,5]]},"289":{"position":[[1568,5]]},"343":{"position":[[209,5],[2176,5]]},"352":{"position":[[707,5],[945,5]]},"354":{"position":[[1689,5],[1785,5]]}}}],["bearer",{"_index":1520,"t":{"221":{"position":[[3072,6]]}}}],["befor",{"_index":29,"t":{"7":{"position":[[158,6]]},"17":{"position":[[1043,6]]},"114":{"position":[[269,6],[463,6],[644,6],[838,6]]},"192":{"position":[[3046,7]]},"198":{"position":[[2222,6]]},"217":{"position":[[461,6]]},"223":{"position":[[659,6]]},"250":{"position":[[1386,6]]},"266":{"position":[[0,6]]},"268":{"position":[[3288,6]]},"283":{"position":[[424,6]]},"289":{"position":[[1068,6]]},"305":{"position":[[63,6]]},"323":{"position":[[191,6]]},"338":{"position":[[2908,6]]},"343":{"position":[[2930,6]]},"347":{"position":[[49,6],[590,6]]},"352":{"position":[[61,6],[791,6],[1026,6]]}}}],["begin",{"_index":1337,"t":{"192":{"position":[[3016,9],[5468,5]]},"274":{"position":[[1245,5]]},"350":{"position":[[83,9]]}}}],["behavior",{"_index":55,"t":{"9":{"position":[[214,8],[432,8],[948,8]]},"21":{"position":[[39,8]]},"76":{"position":[[543,8]]},"78":{"position":[[979,9],[1208,8],[1551,8],[1953,9]]},"90":{"position":[[506,8],[688,8]]},"94":{"position":[[3272,8]]},"206":{"position":[[210,8],[261,8]]},"219":{"position":[[483,9]]},"268":{"position":[[2182,9],[3078,8]]},"283":{"position":[[268,8]]},"330":{"position":[[117,9]]},"338":{"position":[[259,8]]}}}],["behind",{"_index":1071,"t":{"126":{"position":[[877,6]]},"170":{"position":[[1555,6],[1831,6]]},"184":{"position":[[442,6]]}}}],["bell",{"_index":1872,"t":{"325":{"position":[[136,5]]}}}],["below",{"_index":68,"t":{"9":{"position":[[458,7]]},"17":{"position":[[2360,5]]},"37":{"position":[[450,5],[948,5]]},"41":{"position":[[586,6]]},"84":{"position":[[248,5]]},"94":{"position":[[3420,5]]},"98":{"position":[[341,5],[2325,5]]},"100":{"position":[[334,6]]},"106":{"position":[[302,6]]},"140":{"position":[[475,6]]},"168":{"position":[[485,5]]},"170":{"position":[[4228,5]]},"221":{"position":[[281,5],[445,6]]},"229":{"position":[[185,5]]},"244":{"position":[[38,5],[639,5]]},"270":{"position":[[562,6]]},"272":{"position":[[433,5]]},"276":{"position":[[1621,5],[1843,5]]},"369":{"position":[[287,6]]}}}],["benefit",{"_index":1797,"t":{"289":{"position":[[2169,7]]}}}],["best",{"_index":799,"t":{"90":{"position":[[315,4]]},"254":{"position":[[713,4]]}}}],["better",{"_index":167,"t":{"17":{"position":[[259,6]]}}}],["between",{"_index":39,"t":{"7":{"position":[[304,7]]},"217":{"position":[[88,7]]},"262":{"position":[[230,7]]},"268":{"position":[[677,7],[934,7]]},"311":{"position":[[23,7]]},"347":{"position":[[422,7]]},"369":{"position":[[432,7]]}}}],["bidirection",{"_index":1155,"t":{"158":{"position":[[1451,15]]}}}],["bind",{"_index":1826,"t":{"313":{"position":[[1626,4]]}}}],["bind_to_address",{"_index":1119,"t":{"154":{"position":[[129,15]]}}}],["blacklist",{"_index":830,"t":{"94":{"position":[[626,9]]},"148":{"position":[[286,9]]},"160":{"position":[[334,9],[458,12],[686,12]]},"208":{"position":[[460,12],[681,12]]}}}],["blacklistedapp",{"_index":898,"t":{"96":{"position":[[748,18],[991,18]]}}}],["blacklisteddevic",{"_index":896,"t":{"96":{"position":[[696,21],[939,21]]}}}],["blank",{"_index":1325,"t":{"192":{"position":[[2290,5],[2396,5]]}}}],["blueski",{"_index":505,"t":{"49":{"position":[[160,10],[666,7],[1089,7]]},"51":{"position":[[16,7],[160,7]]},"54":{"position":[[100,7],[157,7],[256,7],[550,7]]},"56":{"position":[[748,7],[1163,7]]},"58":{"position":[[0,8],[18,7]]},"61":{"position":[[100,7],[157,7],[256,7],[553,7]]},"162":{"position":[[135,10]]},"164":{"position":[[81,7]]},"176":{"position":[[81,7]]}}}],["bluesky/atproto",{"_index":597,"t":{"61":{"position":[[619,15]]}}}],["bodi",{"_index":1999,"t":{"336":{"position":[[2573,4]]},"338":{"position":[[2056,5]]},"341":{"position":[[881,4],[973,4]]}}}],["body.map(x",{"_index":2039,"t":{"341":{"position":[[1000,10]]}}}],["book",{"_index":913,"t":{"98":{"position":[[971,4]]}}}],["both",{"_index":1249,"t":{"180":{"position":[[130,4]]},"217":{"position":[[96,5],[397,4]]},"223":{"position":[[490,4]]},"244":{"position":[[215,4]]},"352":{"position":[[146,4]]},"356":{"position":[[463,4],[531,4],[620,4],[697,4]]}}}],["bottom",{"_index":430,"t":{"37":{"position":[[229,7]]},"198":{"position":[[129,6],[449,6]]},"276":{"position":[[1400,7]]}}}],["box",{"_index":1380,"t":{"198":{"position":[[427,3]]}}}],["boz",{"_index":2136,"t":{"365":{"position":[[102,4],[127,4]]}}}],["brainzclient",{"_index":500,"t":{"47":{"position":[[281,15],[592,15]]}}}],["brainzsourc",{"_index":1081,"t":{"134":{"position":[[319,15],[630,15]]}}}],["branch",{"_index":1564,"t":{"239":{"position":[[8,6]]}}}],["brand",{"_index":1320,"t":{"192":{"position":[[1996,8]]}}}],["break",{"_index":738,"t":{"82":{"position":[[167,8]]},"283":{"position":[[248,8]]},"332":{"position":[[704,6],[1009,6],[1025,6],[1294,6],[1433,6],[1449,6]]}}}],["bridg",{"_index":1823,"t":{"313":{"position":[[1275,6],[2030,6],[2562,6]]}}}],["broadcast",{"_index":803,"t":{"90":{"position":[[451,11]]},"350":{"position":[[427,10]]}}}],["broken",{"_index":632,"t":{"68":{"position":[[50,6]]}}}],["brows",{"_index":1298,"t":{"192":{"position":[[949,9]]},"254":{"position":[[121,7]]},"268":{"position":[[2971,7]]}}}],["browser",{"_index":742,"t":{"84":{"position":[[13,7]]},"86":{"position":[[122,7]]},"170":{"position":[[927,7],[2003,7],[2381,7],[2593,7]]},"192":{"position":[[207,8],[804,8],[3117,7]]},"198":{"position":[[579,7]]},"202":{"position":[[433,8],[487,8]]},"252":{"position":[[242,7],[349,7]]},"254":{"position":[[665,7],[692,8],[1109,7]]},"289":{"position":[[1239,7]]},"313":{"position":[[2762,8]]}}}],["bsky.soci",{"_index":574,"t":{"54":{"position":[[384,12]]},"61":{"position":[[384,12]]}}}],["bu",{"_index":850,"t":{"94":{"position":[[1238,3]]}}}],["build",{"_index":1493,"t":{"221":{"position":[[779,5]]},"242":{"position":[[84,8]]},"244":{"position":[[77,5],[617,5]]},"319":{"position":[[245,5],[272,5],[292,8],[438,6]]},"321":{"position":[[76,5]]},"328":{"position":[[377,5]]},"332":{"position":[[67,5],[123,5]]},"334":{"position":[[528,5]]},"336":{"position":[[76,5],[111,5]]}}}],["build/artifact",{"_index":1579,"t":{"242":{"position":[[432,16]]},"244":{"position":[[744,16]]}}}],["builder",{"_index":1560,"t":{"237":{"position":[[32,7]]},"244":{"position":[[789,7]]}}}],["buildsourcesfromconfig",{"_index":1932,"t":{"332":{"position":[[421,22]]}}}],["built",{"_index":504,"t":{"49":{"position":[[135,5]]},"94":{"position":[[1190,5]]},"162":{"position":[[110,5]]},"192":{"position":[[4758,5]]},"217":{"position":[[375,5]]},"221":{"position":[[121,5],[2470,5]]},"246":{"position":[[3,5]]},"313":{"position":[[26,5]]},"332":{"position":[[549,5]]}}}],["buserw",{"_index":1425,"t":{"204":{"position":[[275,10],[439,7]]}}}],["busi",{"_index":1711,"t":{"268":{"position":[[2243,4]]}}}],["button",{"_index":818,"t":{"94":{"position":[[47,6]]},"98":{"position":[[227,6]]}}}],["bvki",{"_index":1358,"t":{"192":{"position":[[5129,5]]}}}],["c9fae8756fbf481ebd9c5bb56bd6540c",{"_index":928,"t":{"98":{"position":[[2275,35],[2913,35]]},"114":{"position":[[2582,35]]},"116":{"position":[[1137,35]]}}}],["cach",{"_index":327,"t":{"25":{"position":[[20,5],[129,7],[156,5],[269,7],[351,5],[440,7],[480,5],[760,5],[872,5],[897,8],[1071,5],[1220,8]]}}}],["cache_scrobbl",{"_index":339,"t":{"25":{"position":[[603,15],[733,14],[1041,14]]}}}],["cache_scrobble_conn",{"_index":341,"t":{"25":{"position":[[778,19],[1089,19]]}}}],["call",{"_index":990,"t":{"112":{"position":[[686,6]]},"325":{"position":[[73,6]]},"330":{"position":[[29,6]]}}}],["callback",{"_index":112,"t":{"11":{"position":[[247,8]]},"170":{"position":[[2414,8]]},"172":{"position":[[201,8]]},"211":{"position":[[184,9]]},"219":{"position":[[307,8]]},"221":{"position":[[2344,8]]},"252":{"position":[[580,8]]},"276":{"position":[[957,8]]},"303":{"position":[[291,8]]}}}],["callback/redirect",{"_index":1639,"t":{"252":{"position":[[71,17]]}}}],["can...spotti",{"_index":1007,"t":{"114":{"position":[[1161,12]]}}}],["candid",{"_index":2107,"t":{"354":{"position":[[1638,12]]},"363":{"position":[[96,12]]}}}],["capabl",{"_index":2036,"t":{"341":{"position":[[278,13]]}}}],["captur",{"_index":553,"t":{"49":{"position":[[1811,8]]},"198":{"position":[[1344,7]]},"289":{"position":[[2180,9]]},"369":{"position":[[328,7]]}}}],["card",{"_index":688,"t":{"76":{"position":[[492,5]]},"78":{"position":[[1176,5]]},"170":{"position":[[4328,4]]},"192":{"position":[[4309,4],[5400,4]]},"274":{"position":[[1174,4]]}}}],["care",{"_index":2009,"t":{"338":{"position":[[1170,4]]},"343":{"position":[[2742,4]]}}}],["case",{"_index":695,"t":{"78":{"position":[[97,4]]},"126":{"position":[[839,4]]},"148":{"position":[[324,4]]},"150":{"position":[[327,4]]},"184":{"position":[[163,4]]},"198":{"position":[[2215,6]]},"332":{"position":[[590,4],[679,4],[711,4],[1269,4],[1301,4]]},"369":{"position":[[374,5]]}}}],["cast",{"_index":618,"t":{"65":{"position":[[166,4]]},"94":{"position":[[28,4],[162,4],[456,4],[654,5],[697,4],[738,4],[1584,4],[1773,4],[3062,4]]},"96":{"position":[[39,4],[198,4],[300,4],[411,4],[492,6],[595,6]]},"262":{"position":[[11,4],[92,7],[132,4],[463,4],[576,4]]},"264":{"position":[[36,4]]},"289":{"position":[[159,4]]}}}],["catalog",{"_index":550,"t":{"49":{"position":[[1657,9]]}}}],["catch",{"_index":1524,"t":{"221":{"position":[[3286,5]]},"336":{"position":[[1212,5],[2025,5],[2488,5]]},"338":{"position":[[2546,5]]},"341":{"position":[[1052,5]]}}}],["categori",{"_index":635,"t":{"68":{"position":[[71,11]]}}}],["caus",{"_index":776,"t":{"88":{"position":[[49,5]]},"192":{"position":[[332,5]]},"268":{"position":[[1676,5],[2476,5]]},"336":{"position":[[1279,7]]},"341":{"position":[[1128,7]]},"347":{"position":[[458,6]]}}}],["cc_blacklist_app",{"_index":894,"t":{"96":{"position":[[547,17]]}}}],["cc_blacklist_devic",{"_index":891,"t":{"96":{"position":[[360,20]]}}}],["cc_enabl",{"_index":883,"t":{"96":{"position":[[161,9]]}}}],["cc_whitelist_app",{"_index":892,"t":{"96":{"position":[[446,17]]}}}],["cc_whitelist_devic",{"_index":884,"t":{"96":{"position":[[251,20]]}}}],["cd",{"_index":1457,"t":{"213":{"position":[[313,2]]},"319":{"position":[[134,2]]}}}],["certain",{"_index":654,"t":{"68":{"position":[[994,7]]},"150":{"position":[[4,7]]}}}],["certificates/http",{"_index":1205,"t":{"170":{"position":[[1439,18]]}}}],["cf5b",{"_index":1892,"t":{"328":{"position":[[709,4]]}}}],["chanc",{"_index":1295,"t":{"192":{"position":[[903,6]]},"254":{"position":[[979,6]]}}}],["chang",{"_index":736,"t":{"82":{"position":[[123,6]]},"170":{"position":[[2492,8]]},"192":{"position":[[174,6],[4108,8]]},"194":{"position":[[342,7]]},"198":{"position":[[141,6],[472,7]]},"268":{"position":[[646,7],[927,6],[1428,6],[1704,7],[1747,7],[2789,7]]},"283":{"position":[[257,7],[301,8]]},"338":{"position":[[1230,7],[2631,7],[2655,7]]}}}],["changem",{"_index":1409,"t":{"200":{"position":[[242,10],[459,10]]}}}],["charact",{"_index":2116,"t":{"354":{"position":[[2385,11]]}}}],["check",{"_index":156,"t":{"15":{"position":[[4,5]]},"72":{"position":[[499,5]]},"76":{"position":[[64,5]]},"100":{"position":[[169,5],[245,7]]},"106":{"position":[[161,5]]},"114":{"position":[[1612,5]]},"148":{"position":[[183,5]]},"221":{"position":[[1407,5],[1912,5]]},"250":{"position":[[1357,5],[1547,5],[1596,5],[2146,5],[2398,5]]},"268":{"position":[[697,7],[792,7],[946,6]]},"280":{"position":[[336,5]]},"283":{"position":[[408,5]]},"305":{"position":[[49,5]]},"336":{"position":[[137,5],[1398,5],[1445,5]]},"338":{"position":[[794,7],[2857,6]]},"343":{"position":[[2341,7],[3986,5]]}}}],["check/test",{"_index":1513,"t":{"221":{"position":[[2181,10]]}}}],["child",{"_index":1497,"t":{"221":{"position":[[1036,5],[1771,5],[3018,5]]}}}],["choos",{"_index":485,"t":{"41":{"position":[[571,6]]},"90":{"position":[[463,7]]},"192":{"position":[[2163,6]]}}}],["chrome",{"_index":747,"t":{"84":{"position":[[288,6]]}}}],["chromecast",{"_index":619,"t":{"65":{"position":[[171,12]]},"94":{"position":[[2319,13],[2851,13],[3510,13]]},"96":{"position":[[1047,12]]},"289":{"position":[[164,12]]}}}],["chromecast.j",{"_index":1902,"t":{"328":{"position":[[1344,18]]}}}],["chromecast.json",{"_index":867,"t":{"94":{"position":[[2273,15],[2805,15],[3464,15]]}}}],["chromecastsourceaioconfig",{"_index":1900,"t":{"328":{"position":[[1287,26]]}}}],["chromecastsourceconfig",{"_index":1901,"t":{"328":{"position":[[1314,22]]}}}],["chromium",{"_index":1416,"t":{"202":{"position":[[418,8]]}}}],["circumv",{"_index":840,"t":{"94":{"position":[[1062,10]]}}}],["cjeb3egaevcd",{"_index":1302,"t":{"192":{"position":[[1122,12]]},"194":{"position":[[487,12],[844,12]]}}}],["class",{"_index":1466,"t":{"217":{"position":[[284,5],[334,5]]},"221":{"position":[[41,6],[1042,5],[1230,5],[1777,5],[2015,5],[2118,6],[3024,5],[3148,5]]},"330":{"position":[[403,5],[454,5],[543,5]]},"332":{"position":[[390,5]]},"334":{"position":[[351,5]]},"336":{"position":[[372,5],[1632,5],[2270,5]]},"338":{"position":[[1699,5]]},"341":{"position":[[454,5]]},"343":{"position":[[897,5],[1760,6],[2816,5],[3488,5]]}}}],["classifi",{"_index":863,"t":{"94":{"position":[[1882,10]]}}}],["claus",{"_index":2118,"t":{"356":{"position":[[312,6],[360,7]]}}}],["clean",{"_index":1601,"t":{"244":{"position":[[994,5]]},"347":{"position":[[16,6]]}}}],["click",{"_index":686,"t":{"76":{"position":[[420,8]]},"78":{"position":[[1104,8]]},"84":{"position":[[464,5],[747,5],[780,5]]},"98":{"position":[[219,5]]},"170":{"position":[[4290,5]]},"192":{"position":[[4264,5],[5444,5]]},"198":{"position":[[431,5]]},"274":{"position":[[1136,5]]}}}],["client",{"_index":0,"t":{"2":{"position":[[2,6]]},"7":{"position":[[55,6]]},"9":{"position":[[90,7],[185,7],[408,7],[515,7],[756,6],[910,7],[1072,9]]},"13":{"position":[[507,9],[785,10],[857,9]]},"17":{"position":[[12,7],[593,6],[1619,6],[1715,7],[2585,10],[3302,6],[3398,7],[4442,10],[4659,10]]},"19":{"position":[[75,6],[175,7],[192,7]]},"31":{"position":[[105,7]]},"33":{"position":[[163,6],[380,10]]},"39":{"position":[[266,8],[290,9],[527,10],[557,8],[581,9]]},"43":{"position":[[212,8],[252,9],[440,10],[473,8],[513,9]]},"47":{"position":[[328,9],[569,10],[639,9]]},"49":{"position":[[1871,7]]},"54":{"position":[[747,9],[956,10],[1013,9]]},"61":{"position":[[729,9],[932,10],[980,9]]},"72":{"position":[[15,7],[57,7],[147,7],[221,10],[302,7],[319,11],[414,8],[433,6],[579,6],[647,6]]},"86":{"position":[[194,10],[497,10]]},"98":{"position":[[2190,10],[2828,10]]},"114":{"position":[[628,6],[964,10],[1220,10],[1466,10],[1722,10],[1892,10],[2201,7],[2268,7],[2437,7],[2504,7],[2696,10],[2865,10],[3100,10],[3163,10]]},"116":{"position":[[128,10],[263,10],[398,10],[569,10],[723,10],[1257,10],[1500,10]]},"118":{"position":[[165,8]]},"124":{"position":[[180,8]]},"128":{"position":[[18,7]]},"132":{"position":[[117,8],[197,8]]},"134":{"position":[[89,6],[172,6]]},"136":{"position":[[59,8],[83,8]]},"138":{"position":[[83,6],[160,6]]},"140":{"position":[[95,8],[156,8],[378,8]]},"142":{"position":[[84,6],[162,6]]},"144":{"position":[[110,8],[176,8],[199,8],[469,6],[545,6]]},"154":{"position":[[39,6]]},"162":{"position":[[52,8],[255,8],[323,8]]},"164":{"position":[[45,8]]},"166":{"position":[[16,8],[273,6],[351,6]]},"168":{"position":[[2311,10],[2859,10]]},"170":{"position":[[572,6],[3725,6],[4071,6],[4135,6]]},"172":{"position":[[288,10],[640,10]]},"174":{"position":[[59,8],[334,8],[402,8]]},"176":{"position":[[45,8]]},"178":{"position":[[16,8],[273,6],[351,6]]},"192":{"position":[[563,6],[1375,7],[2177,6],[2466,6],[2488,6],[2502,6],[2899,7],[2907,6],[2922,6],[3180,6],[3792,7],[4858,7]]},"194":{"position":[[145,6],[200,6],[428,10],[785,10]]},"204":{"position":[[202,10],[286,10]]},"217":{"position":[[64,7]]},"223":{"position":[[507,7]]},"225":{"position":[[32,6]]},"252":{"position":[[11,6]]},"254":{"position":[[433,6]]},"268":{"position":[[2769,7]]},"274":{"position":[[561,6]]},"276":{"position":[[0,7],[135,7]]},"278":{"position":[[355,7]]},"280":{"position":[[253,7]]},"289":{"position":[[508,7],[596,7],[701,7],[887,6],[1671,6],[1854,7],[2087,7]]},"291":{"position":[[66,8],[224,7]]},"293":{"position":[[372,6],[476,8]]},"295":{"position":[[2,6],[158,6],[265,7]]},"313":{"position":[[2480,6]]},"315":{"position":[[117,6]]},"319":{"position":[[953,10],[1122,10]]},"334":{"position":[[480,6]]},"338":{"position":[[903,7],[2929,7]]},"343":{"position":[[3014,7],[3373,7],[3669,7],[3973,7]]},"347":{"position":[[78,6],[445,6]]},"350":{"position":[[474,7],[491,7],[551,6],[592,6],[739,6]]},"352":{"position":[[162,6],[358,8],[818,7],[830,8]]},"354":{"position":[[946,7],[1236,10]]}}}],["client/sourc",{"_index":159,"t":{"17":{"position":[[72,13],[2337,13],[2414,14]]},"35":{"position":[[289,13],[373,14]]}}}],["client1maloja",{"_index":1423,"t":{"204":{"position":[[215,15]]}}}],["client2maloja",{"_index":1426,"t":{"204":{"position":[[299,15]]}}}],["clientconfig",{"_index":1944,"t":{"332":{"position":[[1143,14]]}}}],["clientdefault",{"_index":269,"t":{"17":{"position":[[4322,17]]},"114":{"position":[[535,17]]},"354":{"position":[[1038,15]]}}}],["clientid",{"_index":238,"t":{"17":{"position":[[2610,11],[4504,11]]},"114":{"position":[[1001,11],[1257,11]]},"116":{"position":[[165,11],[300,11]]},"172":{"position":[[313,11],[665,11]]},"192":{"position":[[2635,11],[3864,11]]},"194":{"position":[[509,11],[866,11]]}}}],["clients/sourc",{"_index":414,"t":{"35":{"position":[[255,15],[545,15]]}}}],["clientsecret",{"_index":239,"t":{"17":{"position":[[2658,15],[4552,15]]},"114":{"position":[[1033,15],[1380,15]]},"116":{"position":[[197,15],[332,15]]},"172":{"position":[[361,15],[713,15]]},"192":{"position":[[2692,15],[3921,15]]},"194":{"position":[[564,15],[921,15]]}}}],["clone",{"_index":1453,"t":{"213":{"position":[[179,5],[259,5]]},"287":{"position":[[67,6]]},"319":{"position":[[0,5],[80,5]]}}}],["close",{"_index":1649,"t":{"254":{"position":[[1097,7]]}}}],["cloud",{"_index":1313,"t":{"192":{"position":[[1785,5],[4156,5]]},"293":{"position":[[145,5]]}}}],["clv",{"_index":1356,"t":{"192":{"position":[[5120,4]]}}}],["code",{"_index":1198,"t":{"170":{"position":[[997,4],[3667,4]]},"192":{"position":[[5115,4],[5258,4]]},"254":{"position":[[136,5],[302,5]]}}}],["cog",{"_index":479,"t":{"41":{"position":[[353,4]]},"276":{"position":[[537,4]]}}}],["collect",{"_index":1232,"t":{"170":{"position":[[3554,7]]},"347":{"position":[[138,10]]}}}],["column",{"_index":768,"t":{"84":{"position":[[763,6]]}}}],["combin",{"_index":1657,"t":{"260":{"position":[[130,10]]},"319":{"position":[[384,11]]}}}],["come",{"_index":784,"t":{"88":{"position":[[428,5]]}}}],["comma",{"_index":885,"t":{"96":{"position":[[314,5],[425,5],[505,5],[608,5]]},"98":{"position":[[1623,5],[1713,5],[1814,5],[1889,5],[1976,5],[2062,5]]},"160":{"position":[[186,5],[263,5]]},"168":{"position":[[1764,5],[1846,5],[1939,5],[2010,5],[2093,5],[2175,5]]},"208":{"position":[[225,5],[314,5]]},"369":{"position":[[605,5]]}}}],["command",{"_index":1383,"t":{"198":{"position":[[755,7],[945,7]]},"244":{"position":[[645,7],[1042,7]]},"246":{"position":[[90,7]]},"285":{"position":[[191,7],[218,7]]},"313":{"position":[[3452,8]]}}}],["commit",{"_index":1565,"t":{"239":{"position":[[22,6]]},"287":{"position":[[103,7]]}}}],["common",{"_index":372,"t":{"31":{"position":[[30,6]]},"94":{"position":[[415,7]]},"198":{"position":[[2170,6]]},"217":{"position":[[308,6],[434,6]]},"262":{"position":[[44,6],[353,6]]},"280":{"position":[[403,6]]},"323":{"position":[[236,6]]},"328":{"position":[[64,6],[415,6]]},"369":{"position":[[390,6]]}}}],["common.j",{"_index":1886,"t":{"328":{"position":[[258,15]]}}}],["common/errors/upstreamerror.j",{"_index":1991,"t":{"336":{"position":[[1573,36],[2211,36]]}}}],["common/infrastructure/atomic.j",{"_index":1918,"t":{"330":{"position":[[337,37]]},"334":{"position":[[247,37]]},"338":{"position":[[1639,37]]},"341":{"position":[[394,37]]}}}],["common/infrastructure/config/source/coolplayer.j",{"_index":1914,"t":{"330":{"position":[[203,55]]}}}],["commonclientconfig",{"_index":1475,"t":{"219":{"position":[[136,19]]}}}],["commonsourceconfig",{"_index":1474,"t":{"219":{"position":[[113,18]]},"328":{"position":[[283,19],[918,18]]}}}],["commonsourcedata",{"_index":1887,"t":{"328":{"position":[[303,16],[504,17]]}}}],["commun",{"_index":636,"t":{"68":{"position":[[86,13]]},"100":{"position":[[32,11]]},"106":{"position":[[32,11]]},"154":{"position":[[3,12]]},"158":{"position":[[34,13],[315,12],[382,13],[1473,13]]},"192":{"position":[[8,13]]},"198":{"position":[[3,12]]},"211":{"position":[[300,12]]},"221":{"position":[[1468,11],[2410,11]]},"289":{"position":[[1334,12]]},"293":{"position":[[307,11]]},"295":{"position":[[228,11]]}}}],["compar",{"_index":1272,"t":{"188":{"position":[[577,8]]},"343":{"position":[[2395,9]]},"350":{"position":[[218,8],[599,8]]},"352":{"position":[[76,8],[93,8],[116,8],[523,10],[657,7],[713,8],[895,7],[951,8]]},"354":{"position":[[1261,7],[1279,7],[1625,10],[1695,8],[1791,8]]},"363":{"position":[[83,10]]}}}],["comparison",{"_index":2106,"t":{"354":{"position":[[1410,10],[1538,11]]}}}],["compat",{"_index":627,"t":{"65":{"position":[[766,10]]},"289":{"position":[[378,10]]}}}],["compens",{"_index":1671,"t":{"268":{"position":[[532,10]]}}}],["complet",{"_index":539,"t":{"49":{"position":[[1402,9]]},"170":{"position":[[948,8],[1289,8],[2180,10],[3335,8]]},"192":{"position":[[5322,10]]},"221":{"position":[[2305,8]]},"252":{"position":[[258,10]]},"254":{"position":[[257,9]]},"274":{"position":[[1288,9]]}}}],["complex",{"_index":228,"t":{"17":{"position":[[2276,7],[3901,7]]}}}],["complic",{"_index":1765,"t":{"280":{"position":[[187,11]]}}}],["compon",{"_index":1464,"t":{"217":{"position":[[145,10],[158,9],[263,9],[362,9]]},"219":{"position":[[24,9],[265,9],[427,9]]},"221":{"position":[[0,10],[108,9],[195,9],[726,9],[975,9],[1501,9],[1592,9],[1643,9],[1992,9],[2108,9],[2206,9],[2364,9]]},"223":{"position":[[552,9]]}}}],["compos",{"_index":185,"t":{"17":{"position":[[766,7]]},"41":{"position":[[311,7]]},"158":{"position":[[1093,7]]},"217":{"position":[[171,8]]},"270":{"position":[[84,8]]},"276":{"position":[[495,7]]},"278":{"position":[[237,7]]},"285":{"position":[[14,7],[271,7],[291,7]]},"313":{"position":[[1591,7],[1794,7],[1908,8],[2259,7],[2353,8],[2793,7],[2881,8],[3095,8]]},"315":{"position":[[56,7],[345,7]]}}}],["compose.yaml",{"_index":1147,"t":{"158":{"position":[[1144,12]]}}}],["compose.yml",{"_index":186,"t":{"17":{"position":[[781,11]]},"41":{"position":[[112,12],[145,11]]},"270":{"position":[[264,11]]},"272":{"position":[[76,11],[123,11]]},"274":{"position":[[251,11],[292,11],[848,11],[889,11]]},"276":{"position":[[296,12],[329,11],[748,11],[817,11],[1128,11],[1197,11],[2034,11],[2103,11]]},"278":{"position":[[168,11]]},"313":{"position":[[259,12],[344,11],[1924,11],[2369,11],[2897,11]]},"315":{"position":[[292,11],[859,11],[925,11]]}}}],["compositeconfig",{"_index":1949,"t":{"332":{"position":[[1365,15]]}}}],["concern",{"_index":362,"t":{"29":{"position":[[74,8]]}}}],["concret",{"_index":1465,"t":{"217":{"position":[[275,8]]},"352":{"position":[[259,8]]}}}],["condit",{"_index":719,"t":{"78":{"position":[[1800,10]]},"356":{"position":[[7,10],[816,10],[869,10],[916,9],[1315,9]]}}}],["config",{"_index":87,"t":{"9":{"position":[[902,7],[995,8],[1190,8]]},"13":{"position":[[17,6],[415,6],[748,6]]},"17":{"position":[[100,6],[132,6],[633,6],[1322,7],[1973,6],[1995,7],[2505,6],[3503,6],[3627,6],[4019,6]]},"25":{"position":[[432,7],[805,6],[956,9]]},"33":{"position":[[662,6],[1017,6],[1417,6]]},"37":{"position":[[1552,6]]},"39":{"position":[[17,6],[217,6],[490,6]]},"43":{"position":[[17,6],[159,6],[403,6]]},"47":{"position":[[17,6],[232,6],[532,6]]},"54":{"position":[[436,6],[669,6],[919,6]]},"61":{"position":[[436,6],[661,6],[895,6]]},"72":{"position":[[671,7]]},"74":{"position":[[373,7]]},"76":{"position":[[656,7]]},"78":{"position":[[717,6],[1321,7]]},"88":{"position":[[175,6]]},"90":{"position":[[1226,6]]},"94":{"position":[[3403,6]]},"96":{"position":[[100,7]]},"102":{"position":[[52,6],[666,6]]},"104":{"position":[[17,6],[293,6],[515,6]]},"108":{"position":[[50,6],[658,6]]},"110":{"position":[[17,6],[224,6],[462,6]]},"114":{"position":[[173,6],[337,6],[525,6],[712,6],[900,6]]},"116":{"position":[[100,7]]},"122":{"position":[[17,6],[297,6],[471,6]]},"130":{"position":[[17,6],[376,6],[550,6]]},"134":{"position":[[17,6],[96,6],[223,6],[270,6],[570,6]]},"136":{"position":[[196,6],[212,6]]},"138":{"position":[[17,6],[90,6],[212,6],[253,6],[497,6]]},"142":{"position":[[17,6],[91,6],[213,6],[255,6],[588,6]]},"144":{"position":[[312,6],[328,6],[404,6],[476,6],[596,6],[636,6],[909,6]]},"146":{"position":[[407,6],[967,6]]},"148":{"position":[[154,7]]},"152":{"position":[[17,6],[49,6],[285,6]]},"154":{"position":[[121,7]]},"156":{"position":[[17,6],[129,6],[375,6]]},"160":{"position":[[17,6],[349,6],[559,6]]},"166":{"position":[[129,6],[145,6],[206,6],[280,6],[402,6],[444,6],[694,6]]},"168":{"position":[[1563,6],[2241,6],[2770,6]]},"172":{"position":[[17,6],[215,6],[551,6]]},"178":{"position":[[129,6],[145,6],[206,6],[280,6],[402,6],[444,6],[684,6]]},"182":{"position":[[17,6],[166,6],[402,6]]},"186":{"position":[[17,6],[126,6],[307,6]]},"190":{"position":[[17,6],[181,6],[458,6]]},"192":{"position":[[995,6],[4724,7]]},"194":{"position":[[17,6],[355,6],[696,6]]},"198":{"position":[[1565,7]]},"200":{"position":[[17,6],[130,6],[327,6]]},"204":{"position":[[145,7]]},"208":{"position":[[17,6],[340,6],[550,6]]},"221":{"position":[[1145,6],[1236,6],[1257,6],[3128,6],[3376,6]]},"229":{"position":[[62,7]]},"257":{"position":[[88,6]]},"268":{"position":[[2344,6]]},"276":{"position":[[2260,6]]},"283":{"position":[[328,7]]},"328":{"position":[[21,6],[71,6],[104,6],[156,7],[1960,6]]},"330":{"position":[[93,6],[549,6],[575,7],[630,7],[739,7]]},"332":{"position":[[28,7],[86,7],[166,6],[1097,6]]},"343":{"position":[[3428,7]]},"345":{"position":[[16,7]]},"354":{"position":[[973,6]]},"358":{"position":[[113,6]]}}}],["config.json",{"_index":343,"t":{"25":{"position":[[883,11],[1206,11]]},"27":{"position":[[444,11],[456,11]]},"33":{"position":[[222,11],[344,11],[809,11],[1162,11],[1542,11]]},"90":{"position":[[1290,11]]},"257":{"position":[[246,11]]},"328":{"position":[[1073,13]]},"354":{"position":[[980,11],[1062,11]]},"361":{"position":[[68,11]]},"365":{"position":[[8,11]]},"367":{"position":[[8,11]]},"369":{"position":[[664,11]]}}}],["config/config.json",{"_index":244,"t":{"17":{"position":[[2994,19]]},"319":{"position":[[874,20],[895,20]]}}}],["config/config.json.exampl",{"_index":248,"t":{"17":{"position":[[3681,27]]}}}],["config/data",{"_index":1840,"t":{"315":{"position":[[224,11]]}}}],["config/endpointlfm.json",{"_index":1058,"t":{"122":{"position":[[309,23]]}}}],["config/endpointlz.json",{"_index":1077,"t":{"130":{"position":[[388,22]]}}}],["config/kodi.json",{"_index":974,"t":{"110":{"position":[[236,16]]}}}],["config/koito.json",{"_index":461,"t":{"39":{"position":[[229,17]]},"144":{"position":[[648,17]]}}}],["config/lastfm.json",{"_index":144,"t":{"13":{"position":[[427,18]]},"142":{"position":[[267,18]]}}}],["config/listenbrainz.json",{"_index":499,"t":{"47":{"position":[[244,24]]},"134":{"position":[[282,24]]}}}],["config/maloja.json",{"_index":488,"t":{"43":{"position":[[171,18]]},"138":{"position":[[265,18]]}}}],["config/mopidy.json",{"_index":1115,"t":{"152":{"position":[[61,18]]}}}],["config/mpd.json",{"_index":1126,"t":{"156":{"position":[[141,15]]}}}],["config/mpris.json",{"_index":1166,"t":{"160":{"position":[[361,17]]}}}],["config/musiccast.json",{"_index":1265,"t":{"186":{"position":[[138,21]]}}}],["config/musikcube.json",{"_index":1256,"t":{"182":{"position":[[178,21]]}}}],["config/plex.json",{"_index":1184,"t":{"168":{"position":[[2253,16]]}}}],["config/rocksky.json",{"_index":578,"t":{"54":{"position":[[681,19]]},"166":{"position":[[456,19]]}}}],["config/spotify.json",{"_index":1247,"t":{"172":{"position":[[227,19]]}}}],["config/subsonic.json",{"_index":1276,"t":{"190":{"position":[[193,20]]}}}],["config/systemd/us",{"_index":1541,"t":{"229":{"position":[[79,22]]}}}],["config/systemd/user/multi",{"_index":1543,"t":{"229":{"position":[[108,28]]}}}],["config/tealfm.json",{"_index":598,"t":{"61":{"position":[[673,18]]},"178":{"position":[[456,18]]}}}],["config/vlc.json",{"_index":1396,"t":{"198":{"position":[[1573,15],[2337,15]]},"200":{"position":[[142,15]]}}}],["config/webscrobbler.json",{"_index":1435,"t":{"208":{"position":[[352,24]]}}}],["config/ytmusic.json",{"_index":1369,"t":{"194":{"position":[[367,19]]}}}],["config:/config",{"_index":1733,"t":{"272":{"position":[[468,18]]},"313":{"position":[[1202,18],[1980,18]]},"315":{"position":[[1404,18]]}}}],["config_dir",{"_index":200,"t":{"17":{"position":[[1209,10],[2458,11],[2869,10]]},"25":{"position":[[176,10],[503,10]]}}}],["config_dir/azuracast.json",{"_index":730,"t":{"80":{"position":[[350,25]]}}}],["config_dir/chromecast.json",{"_index":895,"t":{"96":{"position":[[637,26]]}}}],["config_dir/config.json",{"_index":153,"t":{"13":{"position":[[760,22]]},"17":{"position":[[4034,22]]},"39":{"position":[[502,22]]},"43":{"position":[[415,22]]},"47":{"position":[[544,22]]},"54":{"position":[[931,22]]},"61":{"position":[[907,22]]},"80":{"position":[[624,22]]},"86":{"position":[[420,22]]},"92":{"position":[[287,22]]},"96":{"position":[[871,22]]},"98":{"position":[[2750,22]]},"104":{"position":[[527,22]]},"110":{"position":[[474,22]]},"114":{"position":[[0,22]]},"122":{"position":[[483,22]]},"130":{"position":[[562,22]]},"134":{"position":[[582,22]]},"138":{"position":[[509,22]]},"142":{"position":[[600,22]]},"144":{"position":[[921,22]]},"152":{"position":[[297,22]]},"156":{"position":[[387,22]]},"160":{"position":[[571,22]]},"166":{"position":[[706,22]]},"168":{"position":[[2782,22]]},"172":{"position":[[563,22]]},"178":{"position":[[696,22]]},"182":{"position":[[414,22]]},"186":{"position":[[319,22]]},"190":{"position":[[470,22]]},"194":{"position":[[708,22]]},"200":{"position":[[339,22]]},"208":{"position":[[562,22]]}}}],["config_dir/deezer.json",{"_index":770,"t":{"86":{"position":[[130,22]]}}}],["config_dir/endpointlz.json",{"_index":1048,"t":{"116":{"position":[[1441,26]]}}}],["config_dir/icecast.json",{"_index":816,"t":{"92":{"position":[[102,23]]}}}],["config_dir/jellyfin.json",{"_index":927,"t":{"98":{"position":[[2123,24]]},"116":{"position":[[1017,24]]}}}],["config_dir/jriver.json",{"_index":959,"t":{"104":{"position":[[305,22]]}}}],["config_dir/lastfm.json",{"_index":89,"t":{"9":{"position":[[1004,22]]},"116":{"position":[[1889,22]]}}}],["config_dir/maloja.json",{"_index":1049,"t":{"116":{"position":[[1563,22]]}}}],["config_dir/plex.json",{"_index":1046,"t":{"116":{"position":[[524,20]]}}}],["config_dir/spotify.json",{"_index":236,"t":{"17":{"position":[[2520,23]]},"116":{"position":[[0,23]]}}}],["config_dir/ytmusic.json",{"_index":1047,"t":{"116":{"position":[[1206,23]]}}}],["configs.push",{"_index":1940,"t":{"332":{"position":[[860,14]]}}}],["configur",{"_index":71,"t":{"9":{"position":[[535,10],[815,13]]},"15":{"position":[[47,14]]},"17":{"position":[[24,10],[158,13],[181,13],[224,14],[462,13],[1147,13],[1384,9],[1424,13],[1755,13],[1828,13],[1859,13],[1922,14],[2140,13],[2284,14],[2808,13],[3068,9],[3107,13],[3765,13],[3909,14],[3952,14]]},"19":{"position":[[8,13],[82,15],[256,13],[300,9],[321,13]]},"23":{"position":[[215,13],[453,14],[583,14]]},"25":{"position":[[313,13],[402,10],[448,14],[641,14]]},"27":{"position":[[89,13]]},"33":{"position":[[42,10],[200,10],[302,10]]},"37":{"position":[[1492,10]]},"41":{"position":[[548,13]]},"45":{"position":[[385,14]]},"70":{"position":[[134,13]]},"72":{"position":[[97,13],[403,10],[443,10]]},"74":{"position":[[626,10]]},"76":{"position":[[291,14]]},"78":{"position":[[1600,11],[1733,10],[1834,10]]},"90":{"position":[[723,9],[1547,10]]},"94":{"position":[[605,9],[767,10],[795,13],[914,10],[2124,14],[2156,10],[2721,13]]},"96":{"position":[[27,11]]},"98":{"position":[[327,13],[1168,14],[1183,14]]},"100":{"position":[[320,13]]},"106":{"position":[[288,13]]},"120":{"position":[[29,13]]},"122":{"position":[[151,14]]},"126":{"position":[[29,13],[298,11]]},"128":{"position":[[202,13]]},"130":{"position":[[149,14]]},"132":{"position":[[106,10],[485,14]]},"134":{"position":[[179,14]]},"136":{"position":[[92,13],[156,14]]},"138":{"position":[[167,14]]},"140":{"position":[[84,10],[277,9],[342,13],[461,13]]},"142":{"position":[[169,14]]},"144":{"position":[[99,10],[208,13],[272,14],[372,14],[552,14]]},"146":{"position":[[748,13],[835,13]]},"158":{"position":[[1009,10]]},"162":{"position":[[244,10]]},"166":{"position":[[25,13],[89,14],[358,14]]},"168":{"position":[[491,13],[1531,14]]},"170":{"position":[[1940,10],[2252,13],[4206,13]]},"174":{"position":[[323,10]]},"178":{"position":[[25,13],[89,14],[358,14]]},"180":{"position":[[26,9]]},"188":{"position":[[661,13]]},"192":{"position":[[1879,9],[4984,14]]},"198":{"position":[[869,13]]},"206":{"position":[[10,10],[279,10]]},"215":{"position":[[105,14]]},"217":{"position":[[240,13]]},"219":{"position":[[4,13]]},"221":{"position":[[834,14]]},"250":{"position":[[1646,13],[1929,11]]},"252":{"position":[[52,14]]},"257":{"position":[[304,13],[357,13]]},"266":{"position":[[65,14]]},"268":{"position":[[1458,13]]},"274":{"position":[[133,13]]},"276":{"position":[[117,10],[147,9],[2200,10]]},"278":{"position":[[328,10],[434,10]]},"280":{"position":[[102,13],[140,9],[271,13]]},"283":{"position":[[280,14]]},"289":{"position":[[718,11],[1021,13]]},"291":{"position":[[11,14],[99,10],[247,10]]},"293":{"position":[[244,14],[465,10]]},"295":{"position":[[165,14]]},"301":{"position":[[8,13]]},"303":{"position":[[61,13],[194,14]]},"305":{"position":[[34,14]]},"311":{"position":[[74,13]]},"313":{"position":[[322,14],[1550,13],[1679,14],[3248,13]]},"317":{"position":[[37,9]]},"343":{"position":[[3391,10]]},"352":{"position":[[314,13]]}}}],["configuration/data",{"_index":1495,"t":{"221":{"position":[[941,18]]}}}],["configurea",{"_index":91,"t":{"9":{"position":[[1057,14]]},"13":{"position":[[492,14],[842,14]]},"39":{"position":[[275,14],[566,14]]},"43":{"position":[[237,14],[498,14]]},"47":{"position":[[313,14],[624,14]]},"54":{"position":[[732,14],[998,14]]},"61":{"position":[[714,14],[965,14]]},"134":{"position":[[351,14],[662,14]]},"136":{"position":[[232,14]]},"138":{"position":[[331,14],[592,14]]},"140":{"position":[[413,14]]},"142":{"position":[[332,14],[682,14]]},"144":{"position":[[348,14],[694,14],[985,14]]},"166":{"position":[[165,14],[507,14],[773,14]]},"178":{"position":[[165,14],[503,14],[760,14]]},"332":{"position":[[943,12]]},"352":{"position":[[419,14]]},"354":{"position":[[589,14]]}}}],["confirm",{"_index":1583,"t":{"242":{"position":[[507,10]]}}}],["confus",{"_index":1659,"t":{"262":{"position":[[269,7]]}}}],["congratul",{"_index":2032,"t":{"338":{"position":[[2985,16]]}}}],["connect",{"_index":336,"t":{"25":{"position":[[372,10],[942,13],[1137,7],[1267,13]]},"78":{"position":[[364,7]]},"94":{"position":[[718,10]]},"96":{"position":[[51,11]]},"102":{"position":[[16,7],[83,7],[561,7],[719,7]]},"108":{"position":[[16,7],[81,7],[553,7],[711,7]]},"146":{"position":[[360,7],[438,7],[1020,7]]},"154":{"position":[[46,11]]},"168":{"position":[[63,7]]},"180":{"position":[[59,11]]},"221":{"position":[[1413,11],[1897,10]]},"250":{"position":[[271,8],[908,7],[1200,7]]},"305":{"position":[[19,11]]},"313":{"position":[[1378,7]]},"336":{"position":[[1404,11],[1451,10]]}}}],["connect:/run/user/1000/bu",{"_index":1161,"t":{"158":{"position":[[1642,26]]}}}],["connector",{"_index":1431,"t":{"206":{"position":[[69,11],[149,10],[251,9]]},"208":{"position":[[213,11],[302,11]]}}}],["consecut",{"_index":1673,"t":{"268":{"position":[[685,11]]}}}],["consent",{"_index":1315,"t":{"192":{"position":[[1899,7]]}}}],["consid",{"_index":1270,"t":{"188":{"position":[[390,11]]},"268":{"position":[[583,9]]}}}],["consist",{"_index":118,"t":{"11":{"position":[[320,10]]},"90":{"position":[[395,11]]},"211":{"position":[[54,8]]},"223":{"position":[[127,8]]},"268":{"position":[[968,11]]},"293":{"position":[[259,7]]},"295":{"position":[[180,7]]},"354":{"position":[[1350,8]]}}}],["consol",{"_index":1314,"t":{"192":{"position":[[1791,7],[4162,7]]}}}],["const",{"_index":1910,"t":{"328":{"position":[[1806,5]]},"332":{"position":[[614,6],[730,5]]},"334":{"position":[[684,5]]},"336":{"position":[[481,5],[569,5],[803,5],[1765,5],[2362,5]]},"338":{"position":[[1848,5],[1932,5],[2048,5],[2295,5],[2769,5]]},"341":{"position":[[748,5],[965,5]]},"343":{"position":[[3037,5],[3570,5]]}}}],["constructor",{"_index":1511,"t":{"221":{"position":[[2072,11]]},"330":{"position":[[67,11]]},"341":{"position":[[236,11],[500,14]]},"343":{"position":[[659,12],[943,14]]}}}],["constructor(nam",{"_index":1920,"t":{"330":{"position":[[607,17]]}}}],["consult",{"_index":1767,"t":{"280":{"position":[[370,7]]}}}],["contact",{"_index":1605,"t":{"250":{"position":[[140,7],[195,10]]},"343":{"position":[[1280,8],[1331,10]]}}}],["contain",{"_index":181,"t":{"17":{"position":[[659,12],[1338,10],[3022,10]]},"25":{"position":[[848,10]]},"41":{"position":[[280,10]]},"63":{"position":[[31,8]]},"94":{"position":[[1278,9],[2377,8],[2907,8]]},"158":{"position":[[735,9],[847,9],[965,10],[1027,9]]},"170":{"position":[[985,7],[2346,9],[2555,9],[2650,9],[3419,9]]},"215":{"position":[[16,8],[422,9]]},"219":{"position":[[228,8]]},"221":{"position":[[1152,10],[1269,8]]},"254":{"position":[[50,7]]},"270":{"position":[[434,9]]},"276":{"position":[[464,10]]},"278":{"position":[[44,9],[210,10]]},"285":{"position":[[77,9],[115,9]]},"293":{"position":[[31,8]]},"313":{"position":[[1253,9],[1657,9],[1750,9],[2095,9],[2213,9],[3032,9],[3145,9]]},"315":{"position":[[156,9]]}}}],["container_nam",{"_index":1726,"t":{"272":{"position":[[192,15]]},"313":{"position":[[413,15]]},"315":{"position":[[994,15]]}}}],["content",{"_index":759,"t":{"84":{"position":[[523,8]]},"170":{"position":[[2216,8]]},"229":{"position":[[176,8]]},"272":{"position":[[98,8]]},"369":{"position":[[306,8]]}}}],["context",{"_index":1529,"t":{"223":{"position":[[374,7]]},"268":{"position":[[2605,8]]}}}],["continu",{"_index":525,"t":{"49":{"position":[[912,8]]},"56":{"position":[[990,8]]},"170":{"position":[[3001,8]]},"192":{"position":[[1619,8],[4388,8]]},"221":{"position":[[747,8]]}}}],["control",{"_index":363,"t":{"29":{"position":[[108,7]]},"106":{"position":[[153,7],[180,7]]},"108":{"position":[[461,7]]},"170":{"position":[[1421,8],[3505,7],[3816,8]]},"254":{"position":[[947,8]]},"268":{"position":[[434,7]]},"289":{"position":[[839,8]]}}}],["conveni",{"_index":590,"t":{"56":{"position":[[1560,12]]},"170":{"position":[[3369,12]]},"242":{"position":[[2,11]]}}}],["cooki",{"_index":743,"t":{"84":{"position":[[21,6],[274,6],[448,7],[545,6],[655,7]]},"86":{"position":[[89,6]]},"114":{"position":[[2902,9]]},"116":{"position":[[1294,9]]},"192":{"position":[[549,7],[672,6],[784,6],[849,6],[967,6],[1088,9],[1337,8],[1721,8]]},"194":{"position":[[106,6],[453,9],[810,9]]},"254":{"position":[[391,7],[555,7],[640,7],[1035,6],[1204,7]]}}}],["cool",{"_index":1113,"t":{"150":{"position":[[466,4],[488,4],[553,4],[575,4]]},"198":{"position":[[1759,4]]},"325":{"position":[[80,4],[93,4],[630,4],[704,4],[919,4]]},"328":{"position":[[42,4],[617,4],[645,4],[786,4]]},"330":{"position":[[770,4]]},"334":{"position":[[87,4],[582,4]]},"336":{"position":[[1978,5],[2506,4]]},"338":{"position":[[2432,4]]}}}],["coolplay",{"_index":1898,"t":{"328":{"position":[[1137,12],[1785,13],[1860,12]]},"332":{"position":[[155,10],[716,13],[881,13],[1112,12],[1306,13]]},"334":{"position":[[457,10],[951,12]]}}}],["coolplayer'",{"_index":1911,"t":{"328":{"position":[[2012,12]]}}}],["coolplayer.j",{"_index":1903,"t":{"328":{"position":[[1436,18]]}}}],["coolplayerdata",{"_index":1929,"t":{"332":{"position":[[328,14],[988,14]]}}}],["coolplayersourc",{"_index":1912,"t":{"330":{"position":[[36,16],[460,16]]},"332":{"position":[[131,16],[224,16],[310,17],[511,16],[1070,16]]},"334":{"position":[[357,16]]},"336":{"position":[[50,16],[378,16],[1638,16],[2276,16]]},"338":{"position":[[607,16],[1705,16],[3007,16]]},"341":{"position":[[460,16]]},"343":{"position":[[903,16],[2088,16]]}}}],["coolplayersource(nam",{"_index":1948,"t":{"332":{"position":[[1342,22]]}}}],["coolplayersource.formatplayobj(play",{"_index":2027,"t":{"338":{"position":[[2376,37]]}}}],["coolplayersource.formatplayobj(x",{"_index":2040,"t":{"341":{"position":[[1014,35]]}}}],["coolplayersource.j",{"_index":1930,"t":{"332":{"position":[[350,24]]}}}],["coolplayersource.parseconnectionurl(baseurl",{"_index":1986,"t":{"336":{"position":[[1164,45]]}}}],["coolplayersourceaioconfig",{"_index":1897,"t":{"328":{"position":[[985,25],[1379,26],[1597,26]]}}}],["coolplayersourceconfig",{"_index":1896,"t":{"328":{"position":[[887,22],[1019,22],[1406,22],[1511,23]]},"330":{"position":[[173,22],[583,23],[638,23]]},"332":{"position":[[1384,23]]}}}],["coolplayersourcedata",{"_index":1889,"t":{"328":{"position":[[475,20],[945,20]]}}}],["copi",{"_index":224,"t":{"17":{"position":[[2125,6],[3750,6]]},"37":{"position":[[302,4],[325,4]]},"41":{"position":[[465,4]]},"84":{"position":[[510,4],[789,4]]},"98":{"position":[[285,4]]},"170":{"position":[[2207,4],[4062,4]]},"192":{"position":[[2522,4]]},"257":{"position":[[337,4]]},"276":{"position":[[652,4],[1473,4],[1496,4]]}}}],["core",{"_index":2050,"t":{"343":{"position":[[1937,4]]}}}],["core/atomic.j",{"_index":1956,"t":{"334":{"position":[[312,23]]},"343":{"position":[[851,23]]}}}],["corner",{"_index":481,"t":{"41":{"position":[[373,7]]},"276":{"position":[[557,7]]}}}],["correct",{"_index":1197,"t":{"170":{"position":[[783,7]]},"213":{"position":[[357,7]]},"250":{"position":[[2381,7]]},"252":{"position":[[36,7]]},"268":{"position":[[327,7]]},"319":{"position":[[180,7]]}}}],["correctli",{"_index":205,"t":{"17":{"position":[[1399,9],[3083,9]]},"78":{"position":[[39,9],[207,10],[660,9]]},"94":{"position":[[1748,9]]},"184":{"position":[[117,9],[273,10]]},"198":{"position":[[2072,9]]}}}],["correspond",{"_index":1530,"t":{"223":{"position":[[591,13]]},"343":{"position":[[1445,13]]}}}],["count",{"_index":716,"t":{"78":{"position":[[1668,5]]}}}],["cover",{"_index":1404,"t":{"198":{"position":[[2201,5]]}}}],["cp",{"_index":1936,"t":{"332":{"position":[[736,2],[982,2]]}}}],["crash",{"_index":821,"t":{"94":{"position":[[211,7]]}}}],["creat",{"_index":105,"t":{"11":{"position":[[74,6],[181,6]]},"19":{"position":[[55,8]]},"37":{"position":[[68,6],[148,6],[260,6]]},"41":{"position":[[439,6]]},"45":{"position":[[76,6],[202,6]]},"49":{"position":[[60,6],[657,6]]},"56":{"position":[[70,6],[739,6]]},"58":{"position":[[9,6],[167,6]]},"98":{"position":[[39,6],[238,6],[294,7]]},"118":{"position":[[148,6],[237,6]]},"124":{"position":[[158,6],[257,6]]},"132":{"position":[[175,6],[301,6]]},"136":{"position":[[43,6]]},"140":{"position":[[139,6],[246,6]]},"144":{"position":[[161,6]]},"162":{"position":[[35,6]]},"170":{"position":[[542,6],[750,6],[1470,6],[2546,6]]},"174":{"position":[[42,6]]},"192":{"position":[[1799,7],[1833,6],[2141,6],[2438,6],[2458,7]]},"215":{"position":[[435,8]]},"227":{"position":[[150,6]]},"229":{"position":[[0,6],[207,8]]},"272":{"position":[[0,6],[62,6]]},"274":{"position":[[267,8],[414,7],[531,6],[782,7],[864,8]]},"276":{"position":[[626,6],[764,7],[1144,7],[1319,6],[1431,6],[2050,7]]},"278":{"position":[[184,7]]},"305":{"position":[[70,8]]},"323":{"position":[[52,8]]},"328":{"position":[[8,6],[129,6],[634,7],[1888,6]]},"330":{"position":[[9,6]]},"332":{"position":[[1059,6]]},"334":{"position":[[12,6]]},"356":{"position":[[1843,8]]}}}],["creation",{"_index":1751,"t":{"276":{"position":[[1027,8]]}}}],["credenti",{"_index":1211,"t":{"170":{"position":[[2027,12]]},"188":{"position":[[282,12]]},"192":{"position":[[1555,11],[2129,11],[2148,11],[4579,11],[4705,11]]},"219":{"position":[[294,12]]},"221":{"position":[[1329,11],[3235,11]]},"289":{"position":[[964,11]]},"313":{"position":[[1698,12]]}}}],["critic",{"_index":879,"t":{"94":{"position":[[3175,8]]}}}],["cross",{"_index":1805,"t":{"313":{"position":[[0,5]]}}}],["ctrl+shift+i",{"_index":762,"t":{"84":{"position":[[583,12]]}}}],["current",{"_index":46,"t":{"9":{"position":[[31,9]]},"68":{"position":[[815,7]]},"76":{"position":[[21,9]]},"94":{"position":[[1627,7]]},"278":{"position":[[466,7]]},"283":{"position":[[0,10]]},"289":{"position":[[2122,7]]},"313":{"position":[[3429,7]]},"319":{"position":[[338,7]]},"325":{"position":[[578,7]]},"328":{"position":[[2112,7]]},"338":{"position":[[397,10],[1889,9],[2670,9]]}}}],["custom",{"_index":88,"t":{"9":{"position":[[922,9]]},"74":{"position":[[323,10]]},"78":{"position":[[618,6]]},"112":{"position":[[949,6]]},"126":{"position":[[745,6]]},"184":{"position":[[451,6]]},"192":{"position":[[2886,6],[3353,8],[3435,6],[3721,6]]},"194":{"position":[[260,6]]},"254":{"position":[[402,6]]}}}],["cwd/build",{"_index":1580,"t":{"242":{"position":[[473,11]]}}}],["d",{"_index":477,"t":{"41":{"position":[[323,1]]},"94":{"position":[[1236,1]]},"276":{"position":[[507,1]]},"278":{"position":[[249,1]]},"285":{"position":[[303,1]]}}}],["daemon",{"_index":625,"t":{"65":{"position":[[599,7]]},"94":{"position":[[1044,6],[1256,6]]},"158":{"position":[[455,7]]},"231":{"position":[[34,6]]},"289":{"position":[[308,7]]}}}],["daemon/socket",{"_index":856,"t":{"94":{"position":[[1390,13]]}}}],["daemon/socket:/var/run/avahi",{"_index":855,"t":{"94":{"position":[[1361,28]]}}}],["dashboard",{"_index":36,"t":{"7":{"position":[[270,10]]},"9":{"position":[[686,9]]},"29":{"position":[[23,9]]},"37":{"position":[[198,9],[541,9],[620,9],[1613,9]]},"51":{"position":[[216,9]]},"54":{"position":[[654,9]]},"72":{"position":[[525,9]]},"76":{"position":[[407,9]]},"78":{"position":[[1091,9]]},"98":{"position":[[141,9]]},"170":{"position":[[726,9],[4276,9]]},"192":{"position":[[3097,9],[4254,9],[5080,10],[5172,9],[5304,11],[5390,9]]},"211":{"position":[[359,10]]},"254":{"position":[[533,10]]},"270":{"position":[[136,9],[491,9]]},"274":{"position":[[1093,9]]},"276":{"position":[[1369,9],[1708,9],[1787,9],[2321,9]]},"278":{"position":[[418,9]]},"313":{"position":[[1037,9],[1075,9],[2128,9],[2647,9],[2747,9]]},"343":{"position":[[3155,9]]}}}],["data",{"_index":92,"t":{"9":{"position":[[1082,7]]},"13":{"position":[[517,7],[867,7]]},"17":{"position":[[2600,7],[4494,7],[4728,7]]},"25":{"position":[[38,4]]},"39":{"position":[[300,7],[591,7]]},"43":{"position":[[262,7],[523,7]]},"47":{"position":[[338,7],[649,7]]},"49":{"position":[[288,5],[299,4],[358,4],[381,4],[473,4],[757,4],[797,4],[855,4],[1012,4],[1072,4],[1540,4],[1613,4]]},"54":{"position":[[757,7],[1023,7]]},"56":{"position":[[239,4],[370,5],[381,4],[440,4],[463,4],[555,4],[839,4],[879,4],[937,4],[1090,4],[1555,4]]},"61":{"position":[[739,7],[990,7]]},"63":{"position":[[14,4]]},"68":{"position":[[133,4],[265,4],[381,4],[540,4],[725,4],[1275,4]]},"72":{"position":[[272,7]]},"74":{"position":[[396,7]]},"76":{"position":[[681,7]]},"78":{"position":[[1346,7]]},"80":{"position":[[434,7],[718,7]]},"82":{"position":[[61,4]]},"86":{"position":[[209,7],[512,7]]},"88":{"position":[[315,7]]},"90":{"position":[[370,4],[1339,7]]},"92":{"position":[[163,7],[360,7]]},"94":{"position":[[435,4],[510,4],[2333,7],[2865,7],[3524,7]]},"96":{"position":[[686,7],[929,7]]},"98":{"position":[[2205,7],[2843,7]]},"104":{"position":[[368,7],[603,7]]},"110":{"position":[[291,7],[548,7]]},"114":{"position":[[991,7],[1247,7],[1493,7],[1749,7],[1919,7],[2276,7],[2512,7],[2723,7],[2892,7],[3127,7],[3218,7],[3336,7],[3454,7],[3569,7]]},"116":{"position":[[155,7],[290,7],[425,7],[596,7],[750,7],[910,7],[1067,7],[1284,7],[1527,7],[1612,7],[1712,7],[1812,7],[1935,7]]},"122":{"position":[[370,7],[556,7]]},"130":{"position":[[447,7],[634,7]]},"134":{"position":[[376,7],[687,7]]},"138":{"position":[[356,7],[617,7]]},"140":{"position":[[356,4]]},"142":{"position":[[357,7],[707,7]]},"144":{"position":[[719,7],[1010,7]]},"150":{"position":[[188,4],[305,5]]},"152":{"position":[[120,7],[373,7]]},"156":{"position":[[194,7],[460,7]]},"160":{"position":[[417,7],[645,7]]},"164":{"position":[[117,5]]},"166":{"position":[[532,7],[798,7]]},"168":{"position":[[2326,7],[2874,7]]},"170":{"position":[[3571,4]]},"172":{"position":[[303,7],[655,7]]},"174":{"position":[[211,4]]},"176":{"position":[[117,5]]},"178":{"position":[[528,7],[785,7]]},"182":{"position":[[262,7],[512,7]]},"186":{"position":[[200,7],[395,7]]},"190":{"position":[[256,7],[548,7]]},"192":{"position":[[1005,4],[1078,7],[2625,7],[3854,7]]},"194":{"position":[[443,7],[800,7]]},"198":{"position":[[1626,7],[1868,4],[2390,7]]},"200":{"position":[[195,7],[412,7]]},"204":{"position":[[234,7],[318,7]]},"208":{"position":[[407,7],[628,7]]},"219":{"position":[[190,6],[223,4],[237,4]]},"221":{"position":[[785,5],[870,4],[1264,4],[2455,4],[2553,4],[2686,4]]},"223":{"position":[[31,4],[94,4],[146,4],[303,4],[636,4]]},"250":{"position":[[823,4]]},"262":{"position":[[65,4],[554,4]]},"268":{"position":[[219,4],[1562,7],[2397,7]]},"270":{"position":[[217,4]]},"272":{"position":[[48,4]]},"289":{"position":[[1063,4],[1560,4],[2195,4]]},"293":{"position":[[14,4],[292,4]]},"295":{"position":[[213,4]]},"319":{"position":[[1006,7],[1175,7]]},"325":{"position":[[1057,4]]},"328":{"position":[[364,4],[383,4],[939,5],[2031,4]]},"332":{"position":[[976,5]]},"334":{"position":[[68,4],[572,4],[764,5]]},"336":{"position":[[82,5],[117,4]]},"338":{"position":[[1225,4],[1927,4],[2229,4],[2290,4]]},"343":{"position":[[116,4],[204,4],[1796,4],[2541,4],[2641,4]]},"345":{"position":[[63,4]]},"347":{"position":[[27,4],[273,4],[547,4],[601,4]]},"352":{"position":[[68,4],[85,4],[108,4],[444,7],[626,4],[691,4],[786,4],[864,4],[929,4],[1021,4],[1152,4],[1199,4],[1439,4]]},"354":{"position":[[614,7],[1476,5]]},"356":{"position":[[236,4],[414,5]]},"358":{"position":[[329,7]]}}}],["data.baseurl",{"_index":1499,"t":{"221":{"position":[[1179,13]]}}}],["databas",{"_index":1730,"t":{"272":{"position":[[277,8]]},"283":{"position":[[45,9]]},"313":{"position":[[498,8]]},"315":{"position":[[1079,8]]}}}],["datatyp",{"_index":513,"t":{"49":{"position":[[453,9]]},"56":{"position":[[535,9]]}}}],["date",{"_index":1527,"t":{"223":{"position":[[227,4]]},"254":{"position":[[738,4]]}}}],["datetim",{"_index":2084,"t":{"350":{"position":[[336,9],[717,9]]}}}],["dayj",{"_index":1954,"t":{"334":{"position":[[186,5],[197,8]]}}}],["dayjs(playedat",{"_index":1967,"t":{"334":{"position":[[916,15]]}}}],["dbu",{"_index":1136,"t":{"158":{"position":[[450,4],[939,4],[1350,4],[1503,4],[1548,4]]}}}],["dbus_session_bus_address=tcp:host=yourhostip,port=6644",{"_index":1162,"t":{"158":{"position":[[1726,54]]}}}],["dbus_session_bus_address=unix:path=/run/user/uid/bu",{"_index":1148,"t":{"158":{"position":[[1172,52]]}}}],["dead",{"_index":37,"t":{"7":{"position":[[281,4]]},"25":{"position":[[84,4]]}}}],["debian",{"_index":1538,"t":{"227":{"position":[[116,7]]}}}],["debug",{"_index":348,"t":{"27":{"position":[[11,5],[60,11],[121,5],[279,5],[412,5]]},"94":{"position":[[370,5],[3444,5]]},"98":{"position":[[2672,7],[3292,7]]},"168":{"position":[[2658,8],[3206,8]]},"198":{"position":[[1837,5]]},"250":{"position":[[979,5],[1422,5],[1452,5],[2443,9]]}}}],["debug_mode=tru",{"_index":358,"t":{"27":{"position":[[531,15]]},"250":{"position":[[1524,16]]},"268":{"position":[[1650,15]]}}}],["debugmod",{"_index":251,"t":{"17":{"position":[[4059,12]]},"27":{"position":[[470,12]]}}}],["decid",{"_index":1282,"t":{"192":{"position":[[163,7]]}}}],["declar",{"_index":1919,"t":{"330":{"position":[[567,7]]}}}],["decod",{"_index":1268,"t":{"188":{"position":[[303,9]]}}}],["deezer",{"_index":615,"t":{"65":{"position":[[129,6]]},"82":{"position":[[54,6],[112,6],[279,6]]},"84":{"position":[[33,6],[217,7]]},"86":{"position":[[663,8]]},"88":{"position":[[30,6],[55,6],[161,6]]},"289":{"position":[[145,6]]}}}],["deezer'",{"_index":734,"t":{"82":{"position":[[98,8]]},"84":{"position":[[144,8]]}}}],["deezer.com",{"_index":749,"t":{"84":{"position":[[306,11],[470,11],[567,11],[689,10]]}}}],["deezer.json",{"_index":781,"t":{"88":{"position":[[259,11],[279,11]]}}}],["deezer_arl",{"_index":769,"t":{"86":{"position":[[66,10]]}}}],["deezerarl",{"_index":771,"t":{"86":{"position":[[165,12],[468,12]]}}}],["default",{"_index":52,"t":{"9":{"position":[[161,7],[768,7]]},"13":{"position":[[62,7]]},"17":{"position":[[1258,8],[2918,8],[3462,8],[3531,7]]},"23":{"position":[[41,7],[138,7]]},"25":{"position":[[291,7],[592,7],[713,7],[1021,7]]},"39":{"position":[[62,7]]},"43":{"position":[[62,7]]},"47":{"position":[[62,7]]},"49":{"position":[[1081,7]]},"54":{"position":[[481,7]]},"56":{"position":[[1155,7]]},"61":{"position":[[481,7]]},"72":{"position":[[358,7]]},"74":{"position":[[246,7]]},"76":{"position":[[535,7]]},"78":{"position":[[1200,7],[1532,7],[1864,8],[1945,7]]},"80":{"position":[[46,7]]},"86":{"position":[[46,7]]},"90":{"position":[[659,8]]},"92":{"position":[[46,7]]},"94":{"position":[[1908,8],[2442,8],[3029,8]]},"96":{"position":[[141,7]]},"98":{"position":[[524,8],[536,10],[1244,7]]},"102":{"position":[[176,7],[281,7]]},"104":{"position":[[61,7]]},"108":{"position":[[174,7],[277,7]]},"110":{"position":[[61,7]]},"114":{"position":[[79,7],[217,7],[381,7],[592,7],[756,7],[1125,7]]},"122":{"position":[[62,7]]},"130":{"position":[[62,7]]},"146":{"position":[[531,7],[634,7]]},"156":{"position":[[62,7]]},"160":{"position":[[62,7]]},"168":{"position":[[112,8],[184,8],[551,7],[695,9],[1061,9],[1360,8],[1372,7],[1608,7]]},"172":{"position":[[62,7]]},"180":{"position":[[405,7]]},"182":{"position":[[62,7]]},"184":{"position":[[378,7]]},"186":{"position":[[62,7]]},"190":{"position":[[62,7]]},"194":{"position":[[62,7]]},"200":{"position":[[62,7]]},"208":{"position":[[62,7]]},"221":{"position":[[2140,8],[2242,8]]},"246":{"position":[[31,8]]},"313":{"position":[[2045,8],[2205,7]]},"325":{"position":[[648,7]]},"330":{"position":[[446,7]]},"332":{"position":[[382,7],[1016,8],[1172,9],[1440,8]]},"334":{"position":[[343,7]]},"336":{"position":[[261,7],[364,7],[1624,7],[2262,7]]},"338":{"position":[[1691,7]]},"341":{"position":[[446,7]]},"343":{"position":[[889,7],[2808,7],[3480,7]]}}}],["default/exampl",{"_index":1640,"t":{"252":{"position":[[372,15]]}}}],["defaultconfigurea",{"_index":1942,"t":{"332":{"position":[[956,19]]}}}],["defin",{"_index":96,"t":{"9":{"position":[[1166,6]]},"23":{"position":[[0,7]]},"25":{"position":[[538,7],[663,8]]},"49":{"position":[[435,7]]},"56":{"position":[[517,7]]},"96":{"position":[[233,6]]},"102":{"position":[[377,6]]},"108":{"position":[[373,6]]},"140":{"position":[[437,7]]},"146":{"position":[[730,6]]},"168":{"position":[[748,7]]},"188":{"position":[[711,7]]},"204":{"position":[[621,8]]},"208":{"position":[[141,6]]},"221":{"position":[[72,7]]},"242":{"position":[[456,7]]},"313":{"position":[[2542,7]]},"336":{"position":[[975,10],[1130,10]]},"354":{"position":[[1382,6]]}}}],["definit",{"_index":656,"t":{"68":{"position":[[1166,12]]}}}],["degre",{"_index":2003,"t":{"338":{"position":[[468,7]]}}}],["delay",{"_index":998,"t":{"114":{"position":[[395,5],[770,5]]}}}],["delet",{"_index":1321,"t":{"192":{"position":[[2042,6]]},"242":{"position":[[307,6]]},"244":{"position":[[194,7]]}}}],["delim",{"_index":2141,"t":{"369":{"position":[[322,5],[408,13],[593,11]]}}}],["delim>\\\\s*\\\\/\\\\",{"_index":2146,"t":{"369":{"position":[[758,34]]}}}],["delim>\\\\s*\\\\\\\\\\",{"_index":2144,"t":{"369":{"position":[[489,21]]}}}],["delimit",{"_index":886,"t":{"96":{"position":[[320,9],[431,9],[511,9],[614,9]]},"160":{"position":[[192,9],[269,9]]},"208":{"position":[[231,9],[320,9]]},"369":{"position":[[59,9],[232,9],[351,9]]}}}],["demur",{"_index":2134,"t":{"356":{"position":[[2354,7]]}}}],["depend",{"_index":861,"t":{"94":{"position":[[1698,9]]},"215":{"position":[[188,12]]},"221":{"position":[[1653,7]]},"283":{"position":[[58,12]]},"338":{"position":[[488,9]]}}}],["deriv",{"_index":2010,"t":{"338":{"position":[[1178,8]]}}}],["describ",{"_index":297,"t":{"19":{"position":[[283,9]]},"35":{"position":[[516,9]]},"37":{"position":[[772,8]]},"217":{"position":[[216,10]]},"221":{"position":[[420,10]]},"323":{"position":[[100,10]]}}}],["descript",{"_index":126,"t":{"13":{"position":[[70,11]]},"25":{"position":[[721,11],[1029,11]]},"39":{"position":[[70,11]]},"43":{"position":[[70,11]]},"47":{"position":[[70,11]]},"54":{"position":[[489,11]]},"61":{"position":[[489,11]]},"80":{"position":[[54,11]]},"86":{"position":[[54,11]]},"92":{"position":[[54,11]]},"96":{"position":[[149,11]]},"98":{"position":[[1252,11]]},"104":{"position":[[69,11]]},"110":{"position":[[69,11]]},"122":{"position":[[70,11]]},"130":{"position":[[70,11]]},"156":{"position":[[70,11]]},"160":{"position":[[70,11]]},"168":{"position":[[1616,11]]},"172":{"position":[[70,11]]},"182":{"position":[[70,11]]},"186":{"position":[[70,11]]},"190":{"position":[[70,11]]},"194":{"position":[[70,11]]},"200":{"position":[[70,11]]},"208":{"position":[[70,11]]}}}],["description=multi",{"_index":1547,"t":{"229":{"position":[[248,17]]}}}],["design",{"_index":536,"t":{"49":{"position":[[1355,6]]},"202":{"position":[[540,8]]}}}],["desktop",{"_index":902,"t":{"98":{"position":[[93,7]]},"268":{"position":[[2741,9],[2825,7]]},"289":{"position":[[329,8]]},"293":{"position":[[108,7]]}}}],["destin",{"_index":612,"t":{"65":{"position":[[56,11]]}}}],["detail",{"_index":824,"t":{"94":{"position":[[331,8]]},"192":{"position":[[374,8],[412,7]]},"268":{"position":[[2594,6],[2624,8]]},"283":{"position":[[353,8]]},"289":{"position":[[852,8]]},"307":{"position":[[0,8]]},"319":{"position":[[690,7]]},"369":{"position":[[0,7]]}}}],["detect",{"_index":449,"t":{"37":{"position":[[999,8]]},"88":{"position":[[477,6]]},"98":{"position":[[1042,7],[1111,8]]},"192":{"position":[[431,9]]},"268":{"position":[[7,7],[731,8],[1259,9],[1435,10]]}}}],["determin",{"_index":57,"t":{"9":{"position":[[248,11],[1271,10]]},"37":{"position":[[471,9]]},"68":{"position":[[574,9]]},"74":{"position":[[67,9]]},"76":{"position":[[159,9]]},"90":{"position":[[552,9],[838,9]]},"170":{"position":[[133,9],[769,9]]},"221":{"position":[[1955,10]]},"250":{"position":[[1813,9]]},"252":{"position":[[444,9]]},"268":{"position":[[70,9],[339,9]]},"276":{"position":[[1638,9]]},"332":{"position":[[40,10]]},"338":{"position":[[863,9],[1439,9]]},"343":{"position":[[92,11],[339,13],[1861,10],[2275,10]]}}}],["devcontain",{"_index":1450,"t":{"213":{"position":[[111,13],[399,12]]},"215":{"position":[[150,12],[278,12],[337,13]]}}}],["develop",{"_index":561,"t":{"51":{"position":[[206,9]]},"54":{"position":[[644,9]]},"56":{"position":[[1345,12]]},"84":{"position":[[340,9],[604,9]]},"170":{"position":[[675,9],[716,9],[3487,9]]},"192":{"position":[[1484,9]]},"213":{"position":[[0,11]]},"215":{"position":[[48,11],[167,11]]},"225":{"position":[[7,11],[39,11]]},"307":{"position":[[26,11]]},"323":{"position":[[243,12]]},"325":{"position":[[12,9]]},"328":{"position":[[422,11]]}}}],["devic",{"_index":657,"t":{"70":{"position":[[65,6],[186,7]]},"94":{"position":[[14,6],[461,6],[729,8],[743,7],[1589,7],[1778,6]]},"96":{"position":[[44,6],[305,8],[416,8]]},"98":{"position":[[1838,7],[1913,7]]},"168":{"position":[[1963,7],[2034,7]]},"184":{"position":[[424,6]]},"186":{"position":[[110,6]]},"262":{"position":[[100,7],[581,6]]},"264":{"position":[[41,6]]}}}],["device/receiv",{"_index":1257,"t":{"184":{"position":[[18,16]]}}}],["device/us",{"_index":611,"t":{"65":{"position":[[35,11]]},"223":{"position":[[444,11]]}}}],["device_info=chxoeku0tmpjek5ewtbprgd3tlrbmk16qxpndz09ejbs8z0ggjbs8z0g",{"_index":1034,"t":{"114":{"position":[[2967,69]]},"116":{"position":[[1359,69]]}}}],["devicesallow",{"_index":932,"t":{"98":{"position":[[2416,15],[3027,15]]},"168":{"position":[[2468,15],[3016,15]]}}}],["devicesblock",{"_index":933,"t":{"98":{"position":[[2445,15],[3058,15]]},"168":{"position":[[2499,15],[3047,15]]}}}],["diagnos",{"_index":880,"t":{"94":{"position":[[3187,10],[3209,8],[3365,8]]},"262":{"position":[[393,8]]}}}],["differ",{"_index":507,"t":{"49":{"position":[[230,9],[1179,9]]},"56":{"position":[[312,9],[1253,9]]},"120":{"position":[[269,9]]},"126":{"position":[[584,9]]},"136":{"position":[[134,10]]},"140":{"position":[[396,10]]},"144":{"position":[[250,10]]},"166":{"position":[[67,10]]},"178":{"position":[[67,10]]},"221":{"position":[[80,9]]},"262":{"position":[[218,11]]},"311":{"position":[[12,10]]},"313":{"position":[[2599,9]]},"315":{"position":[[179,9]]},"345":{"position":[[163,9]]},"347":{"position":[[412,9]]},"354":{"position":[[1304,9]]}}}],["dir=/home/youruser/multi",{"_index":1598,"t":{"244":{"position":[[856,24]]}}}],["directli",{"_index":1137,"t":{"158":{"position":[[531,8]]},"168":{"position":[[318,8]]},"289":{"position":[[1347,8]]}}}],["directori",{"_index":199,"t":{"17":{"position":[[1182,9],[2003,9],[2154,9],[2437,9],[2842,9],[3668,9],[3779,9]]},"25":{"position":[[187,9],[514,9],[812,9],[826,10]]},"213":{"position":[[245,9]]},"242":{"position":[[223,9],[390,9]]},"244":{"position":[[244,12],[707,9]]},"270":{"position":[[240,9]]},"278":{"position":[[144,9]]},"313":{"position":[[1638,9],[3262,9]]},"315":{"position":[[236,9],[267,9]]},"319":{"position":[[66,9]]}}}],["dirti",{"_index":2071,"t":{"347":{"position":[[153,5]]}}}],["disabl",{"_index":59,"t":{"9":{"position":[[324,8],[1118,7]]},"29":{"position":[[172,9],[267,9],[277,7]]}}}],["disable_web=tru",{"_index":369,"t":{"29":{"position":[[303,16]]}}}],["disablediscoveri",{"_index":1130,"t":{"156":{"position":[[275,19],[541,19]]}}}],["disableweb",{"_index":253,"t":{"17":{"position":[[4079,13]]},"29":{"position":[[366,13]]}}}],["disallow",{"_index":923,"t":{"98":{"position":[[1766,8],[1924,8],[2099,8]]},"148":{"position":[[15,8]]},"168":{"position":[[1895,8],[2045,8],[2212,8]]}}}],["discov",{"_index":831,"t":{"94":{"position":[[826,10]]},"132":{"position":[[85,10]]},"144":{"position":[[78,10]]},"162":{"position":[[223,10]]},"174":{"position":[[302,10]]},"338":{"position":[[821,12]]},"343":{"position":[[2019,8],[2379,12],[2462,10],[2721,10],[2959,10],[3043,11],[3180,11],[3241,10],[3576,11],[3800,10]]},"350":{"position":[[365,9],[510,10]]},"352":{"position":[[749,10]]}}}],["discovered/scrobbl",{"_index":1763,"t":{"278":{"position":[[533,20]]}}}],["discoveri",{"_index":502,"t":{"49":{"position":[[116,9],[1485,9]]},"56":{"position":[[116,9]]},"94":{"position":[[854,10]]},"162":{"position":[[91,9]]},"174":{"position":[[88,9]]},"343":{"position":[[2215,10]]}}}],["display",{"_index":1327,"t":{"192":{"position":[[2362,9],[3247,10],[5410,7]]},"276":{"position":[[1044,9]]},"278":{"position":[[508,7]]}}}],["dissemin",{"_index":2063,"t":{"343":{"position":[[3344,12]]}}}],["distribut",{"_index":846,"t":{"94":{"position":[[1145,13]]}}}],["distro",{"_index":1535,"t":{"227":{"position":[[73,7]]}}}],["diverg",{"_index":1471,"t":{"217":{"position":[[468,9]]}}}],["dn",{"_index":841,"t":{"94":{"position":[[1090,3]]},"313":{"position":[[1359,3]]}}}],["doauthent",{"_index":1519,"t":{"221":{"position":[[2993,16]]},"336":{"position":[[2323,16]]}}}],["dobuildinitdata",{"_index":1496,"t":{"221":{"position":[[1012,15]]},"336":{"position":[[747,18]]}}}],["doc",{"_index":204,"t":{"17":{"position":[[1368,4],[3052,4]]},"37":{"position":[[767,4]]},"51":{"position":[[83,4]]},"162":{"position":[[332,5]]},"164":{"position":[[54,4]]},"168":{"position":[[505,5]]},"174":{"position":[[411,5]]},"176":{"position":[[54,4]]},"274":{"position":[[664,5]]},"276":{"position":[[1920,4]]},"280":{"position":[[86,4],[116,4]]},"328":{"position":[[434,5]]}}}],["docheckconnect",{"_index":1507,"t":{"221":{"position":[[1745,17]]},"336":{"position":[[1701,20]]}}}],["docker",{"_index":180,"t":{"17":{"position":[[652,6],[672,6],[759,6],[774,6],[1312,6],[2085,6],[2984,6],[3713,6]]},"23":{"position":[[388,6]]},"41":{"position":[[105,6],[304,6]]},"94":{"position":[[1004,6],[1297,6],[1480,6]]},"158":{"position":[[469,6],[681,6],[728,6],[1137,6]]},"170":{"position":[[2339,6],[2727,6]]},"270":{"position":[[66,6],[77,6],[257,6]]},"272":{"position":[[69,6]]},"274":{"position":[[244,6],[841,6]]},"276":{"position":[[289,6],[488,6],[741,6],[1121,6],[2027,6]]},"278":{"position":[[161,6],[230,6]]},"280":{"position":[[18,6]]},"283":{"position":[[513,6]]},"285":{"position":[[0,6],[7,6],[22,6],[70,6],[108,6],[144,6],[264,6],[284,6]]},"289":{"position":[[1143,6]]},"313":{"position":[[252,6],[337,6],[727,6],[765,6],[826,6],[864,6],[1330,6],[1574,6],[1584,6],[1780,6],[1787,6],[1822,7],[1830,6],[1901,6],[1917,6],[2054,6],[2245,6],[2252,6],[2267,6],[2295,6],[2346,6],[2362,6],[2779,6],[2786,6],[2801,6],[2874,6],[2890,6],[3078,8],[3087,7],[3160,6],[3293,6]]},"315":{"position":[[49,6],[149,6],[285,6],[331,6],[338,6],[362,6],[693,6],[852,6],[918,6]]}}}],["docker.io/foxxmd/multi",{"_index":1812,"t":{"313":{"position":[[139,22]]}}}],["dockerhub",{"_index":1811,"t":{"313":{"position":[[97,9]]}}}],["docs.rocksky.app",{"_index":557,"t":{"51":{"position":[[91,16]]}}}],["docs:instal",{"_index":1852,"t":{"319":{"position":[[221,12]]}}}],["docsit",{"_index":1585,"t":{"244":{"position":[[236,7],[446,7]]}}}],["docsite/packag",{"_index":1593,"t":{"244":{"position":[[502,15]]}}}],["document",{"_index":682,"t":{"76":{"position":[[84,13]]},"217":{"position":[[13,9]]},"223":{"position":[[718,13]]},"233":{"position":[[31,8]]},"250":{"position":[[1660,13]]},"266":{"position":[[92,14]]},"299":{"position":[[21,13]]},"301":{"position":[[22,13]]},"311":{"position":[[61,8]]},"323":{"position":[[5,8],[209,8]]}}}],["doesn't",{"_index":984,"t":{"112":{"position":[[454,7]]}}}],["domain",{"_index":570,"t":{"54":{"position":[[227,7]]},"61":{"position":[[227,7]]},"126":{"position":[[783,6]]},"170":{"position":[[1410,6],[1843,7],[1890,6],[2505,6],[3457,6]]},"192":{"position":[[2026,7],[3535,6]]},"202":{"position":[[448,6]]},"250":{"position":[[1841,6]]}}}],["domain.tld",{"_index":1415,"t":{"202":{"position":[[319,13]]}}}],["domain/ip:port",{"_index":1260,"t":{"184":{"position":[[299,14]]}}}],["don't",{"_index":65,"t":{"9":{"position":[[421,5]]},"58":{"position":[[42,5]]},"160":{"position":[[137,5]]}}}],["done",{"_index":428,"t":{"37":{"position":[[137,4]]},"41":{"position":[[46,4]]},"49":{"position":[[621,4]]},"56":{"position":[[703,4]]},"106":{"position":[[107,4]]},"276":{"position":[[230,4],[1308,4]]},"278":{"position":[[258,5]]},"343":{"position":[[2136,4]]}}}],["doubl",{"_index":767,"t":{"84":{"position":[[740,6]]}}}],["down",{"_index":633,"t":{"68":{"position":[[57,4]]},"268":{"position":[[1136,4]]}}}],["downstream",{"_index":2076,"t":{"347":{"position":[[611,10]]},"350":{"position":[[765,10]]},"352":{"position":[[1050,10]]},"354":{"position":[[1465,10]]}}}],["dream",{"_index":2122,"t":{"356":{"position":[[519,8],[1191,9]]}}}],["drink",{"_index":1698,"t":{"268":{"position":[[1898,8]]}}}],["drop",{"_index":1858,"t":{"319":{"position":[[508,4]]}}}],["due",{"_index":843,"t":{"94":{"position":[[1105,3]]},"192":{"position":[[241,3],[4812,3]]},"198":{"position":[[2092,3]]},"202":{"position":[[384,3]]},"221":{"position":[[227,3]]},"268":{"position":[[2248,3]]},"347":{"position":[[85,3]]}}}],["dumpvlcmetadata",{"_index":1405,"t":{"198":{"position":[[2423,18]]}}}],["duplic",{"_index":789,"t":{"88":{"position":[[550,11]]},"268":{"position":[[885,9]]},"289":{"position":[[1700,11]]},"343":{"position":[[2494,9],[4056,11]]},"347":{"position":[[465,9],[641,9]]}}}],["durat",{"_index":260,"t":{"17":{"position":[[4218,11]]},"68":{"position":[[832,8]]},"74":{"position":[[187,10],[453,11]]},"78":{"position":[[138,8]]},"90":{"position":[[942,8]]},"170":{"position":[[427,8]]},"184":{"position":[[204,8]]},"223":{"position":[[213,9]]},"334":{"position":[[726,9],[851,9]]},"338":{"position":[[1410,8]]}}}],["dure",{"_index":1073,"t":{"128":{"position":[[80,6]]},"192":{"position":[[2817,6]]},"221":{"position":[[2065,6]]},"319":{"position":[[285,6]]},"352":{"position":[[139,6]]}}}],["e",{"_index":182,"t":{"17":{"position":[[684,1],[714,1]]},"313":{"position":[[2817,1]]},"315":{"position":[[397,1],[451,1],[488,1],[514,1],[542,1],[576,1],[601,1],[616,1],[728,1],[743,1],[758,1]]},"336":{"position":[[1218,3],[1287,4],[2031,3],[2043,2],[2494,3],[2621,2]]},"338":{"position":[[2552,3],[2564,2]]},"341":{"position":[[1058,3],[1136,4]]}}}],["e4xwktm7jxm607x8el1fcda30eu14dzb64h3j",{"_index":1170,"t":{"166":{"position":[[549,40],[815,40]]}}}],["e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17",{"_index":400,"t":{"33":{"position":[[1732,69]]}}}],["each",{"_index":207,"t":{"17":{"position":[[1483,4],[2299,4],[2376,4],[3166,4]]},"19":{"position":[[214,4]]},"23":{"position":[[448,4]]},"33":{"position":[[317,4]]},"49":{"position":[[418,4]]},"56":{"position":[[500,4]]},"76":{"position":[[70,4],[471,4]]},"78":{"position":[[1155,4]]},"112":{"position":[[73,4],[113,4]]},"221":{"position":[[434,4]]},"354":{"position":[[0,4]]},"358":{"position":[[285,4]]}}}],["earlier",{"_index":1680,"t":{"268":{"position":[[1114,7]]},"276":{"position":[[792,8],[1172,8],[2078,8]]},"278":{"position":[[192,7]]},"352":{"position":[[1157,7]]}}}],["eas",{"_index":1792,"t":{"289":{"position":[[1683,4]]}}}],["easi",{"_index":1785,"t":{"289":{"position":[[1016,4]]}}}],["easier",{"_index":2132,"t":{"356":{"position":[[1902,7]]}}}],["easili",{"_index":1794,"t":{"289":{"position":[[1822,6]]}}}],["ec42e09d5ae0ee0f0816ca151008412a",{"_index":147,"t":{"13":{"position":[[583,35],[933,35]]},"17":{"position":[[2674,35],[4568,35]]},"142":{"position":[[423,35],[773,35]]},"172":{"position":[[377,35],[729,35]]}}}],["echo",{"_index":1202,"t":{"170":{"position":[[1364,4],[1369,4],[1864,4],[2691,5],[3438,4],[3884,4]]}}}],["echo.multi",{"_index":1203,"t":{"170":{"position":[[1379,10]]}}}],["echo:36",{"_index":1217,"t":{"170":{"position":[[2630,7],[2785,7],[3411,7]]}}}],["edit",{"_index":1339,"t":{"192":{"position":[[3157,4]]},"198":{"position":[[899,7]]}}}],["editor",{"_index":1545,"t":{"229":{"position":[[165,6]]}}}],["editor/valid",{"_index":152,"t":{"13":{"position":[[727,16],[1097,16]]},"39":{"position":[[469,16],[779,16]]},"43":{"position":[[382,16],[663,16]]},"47":{"position":[[511,16],[848,16]]},"54":{"position":[[898,16],[1185,16]]},"61":{"position":[[874,16],[1145,16]]},"80":{"position":[[607,16],[893,16]]},"86":{"position":[[403,16],[725,16]]},"92":{"position":[[262,16],[480,16]]},"96":{"position":[[846,16],[1113,16]]},"98":{"position":[[2733,16],[3375,16]]},"104":{"position":[[494,16],[749,16]]},"110":{"position":[[441,16],[716,16]]},"122":{"position":[[450,16],[661,16]]},"130":{"position":[[529,16],[740,16]]},"134":{"position":[[549,16],[886,16]]},"138":{"position":[[476,16],[757,16]]},"142":{"position":[[567,16],[937,16]]},"144":{"position":[[888,16],[1198,16]]},"152":{"position":[[264,16],[537,16]]},"156":{"position":[[354,16],[637,16]]},"160":{"position":[[538,16],[785,16]]},"166":{"position":[[673,16],[960,16]]},"168":{"position":[[2749,16],[3315,16]]},"172":{"position":[[530,16],[903,16]]},"178":{"position":[[663,16],[940,16]]},"182":{"position":[[381,16],[633,16]]},"186":{"position":[[286,16],[504,16]]},"190":{"position":[[437,16],[751,16]]},"194":{"position":[[675,16],[1053,16]]},"200":{"position":[[306,16],[540,16]]},"208":{"position":[[529,16],[776,16]]}}}],["effect",{"_index":1670,"t":{"268":{"position":[[458,6]]}}}],["eleph",{"_index":2120,"t":{"356":{"position":[[444,9],[948,8],[1146,10],[1409,9],[1673,10]]}}}],["elimin",{"_index":788,"t":{"88":{"position":[[536,9]]}}}],["emit",{"_index":2061,"t":{"343":{"position":[[3287,4],[3633,4],[3729,5]]}}}],["emitt",{"_index":1921,"t":{"330":{"position":[[688,8],[757,9]]}}}],["empti",{"_index":664,"t":{"72":{"position":[[313,5]]},"114":{"position":[[2223,6],[2459,6]]},"192":{"position":[[2053,5],[4969,5]]},"244":{"position":[[205,5]]},"354":{"position":[[827,5]]}}}],["emul",{"_index":2001,"t":{"338":{"position":[[246,8]]}}}],["enabl",{"_index":53,"t":{"9":{"position":[[169,7],[313,7],[1129,6]]},"13":{"position":[[476,9],[826,9]]},"17":{"position":[[2569,9],[3515,7],[4426,9],[4692,9]]},"25":{"position":[[280,7],[581,7]]},"27":{"position":[[40,6],[154,8]]},"43":{"position":[[221,9],[482,9]]},"47":{"position":[[297,9],[608,9]]},"78":{"position":[[292,7]]},"80":{"position":[[401,9],[685,9]]},"86":{"position":[[178,9],[481,9]]},"90":{"position":[[1323,9]]},"92":{"position":[[147,9],[344,9]]},"94":{"position":[[3393,6],[3437,6]]},"96":{"position":[[191,6]]},"98":{"position":[[2174,9],[2812,9]]},"100":{"position":[[91,8]]},"104":{"position":[[197,8],[262,8],[352,9],[587,9]]},"106":{"position":[[86,8]]},"110":{"position":[[275,9],[532,9]]},"118":{"position":[[12,7]]},"122":{"position":[[354,9],[540,9]]},"124":{"position":[[12,7]]},"130":{"position":[[431,9],[618,9]]},"134":{"position":[[335,9],[646,9]]},"138":{"position":[[315,9],[576,9]]},"142":{"position":[[316,9],[666,9]]},"146":{"position":[[301,7]]},"152":{"position":[[104,9],[357,9]]},"156":{"position":[[161,9],[427,9]]},"160":{"position":[[401,9],[629,9]]},"168":{"position":[[2295,9],[2843,9]]},"170":{"position":[[55,7],[1458,8]]},"172":{"position":[[272,9],[624,9]]},"180":{"position":[[88,6],[359,8]]},"182":{"position":[[225,9],[475,9]]},"186":{"position":[[184,9],[379,9]]},"190":{"position":[[240,9],[532,9]]},"192":{"position":[[1045,9],[2592,9],[3821,9]]},"194":{"position":[[412,9],[769,9]]},"198":{"position":[[63,6],[278,6],[1610,9],[2374,9]]},"200":{"position":[[162,9],[379,9]]},"208":{"position":[[112,6]]},"231":{"position":[[65,6],[219,6]]},"262":{"position":[[424,6]]},"352":{"position":[[403,9]]},"354":{"position":[[573,9]]}}}],["encount",{"_index":878,"t":{"94":{"position":[[3152,11]]},"319":{"position":[[308,9]]}}}],["end",{"_index":551,"t":{"49":{"position":[[1731,3]]},"170":{"position":[[161,4]]},"172":{"position":[[194,3]]},"192":{"position":[[3620,3]]},"204":{"position":[[92,3]]},"270":{"position":[[100,3]]},"338":{"position":[[206,4]]}}}],["endors",{"_index":1281,"t":{"192":{"position":[[71,8]]}}}],["endpoint",{"_index":108,"t":{"11":{"position":[[198,10]]},"31":{"position":[[64,8]]},"33":{"position":[[1507,9],[1714,9],[1823,9]]},"35":{"position":[[3,8]]},"45":{"position":[[224,10]]},"65":{"position":[[401,10],[485,10]]},"90":{"position":[[1478,9]]},"120":{"position":[[237,8]]},"122":{"position":[[112,8]]},"126":{"position":[[552,8]]},"128":{"position":[[224,9]]},"130":{"position":[[110,8]]},"132":{"position":[[323,10]]},"140":{"position":[[263,10]]},"188":{"position":[[108,8],[423,10]]},"211":{"position":[[153,9]]},"219":{"position":[[332,10]]},"221":{"position":[[3191,8],[3339,8]]},"250":{"position":[[128,8],[1714,8]]},"289":{"position":[[228,10],[265,10],[658,8]]},"313":{"position":[[2189,11]]},"325":{"position":[[231,8],[325,9],[426,8],[509,8]]},"343":{"position":[[1409,9]]}}}],["endpointlfm",{"_index":1061,"t":{"122":{"position":[[594,13]]}}}],["endpointlz",{"_index":1035,"t":{"114":{"position":[[3058,13]]},"130":{"position":[[674,12]]}}}],["enforc",{"_index":1469,"t":{"217":{"position":[[345,8]]},"219":{"position":[[73,8]]}}}],["enough",{"_index":2013,"t":{"338":{"position":[[1476,6],[2719,6]]},"350":{"position":[[149,6]]}}}],["ensur",{"_index":456,"t":{"37":{"position":[[1471,6]]},"106":{"position":[[197,6]]},"221":{"position":[[1856,6],[2527,6]]},"250":{"position":[[2242,6]]},"252":{"position":[[0,6]]},"254":{"position":[[199,6]]},"276":{"position":[[2179,6]]}}}],["enter",{"_index":1360,"t":{"192":{"position":[[5248,5]]},"254":{"position":[[285,8]]}}}],["entir",{"_index":1439,"t":{"211":{"position":[[27,8]]},"250":{"position":[[2304,8]]}}}],["entri",{"_index":296,"t":{"19":{"position":[[219,5]]},"68":{"position":[[1313,5]]}}}],["env",{"_index":61,"t":{"9":{"position":[[348,3]]},"13":{"position":[[0,3],[13,3]]},"17":{"position":[[56,5],[296,3],[452,3],[1850,4]]},"23":{"position":[[180,3]]},"25":{"position":[[421,3],[672,3],[980,3]]},"27":{"position":[[527,3]]},"29":{"position":[[299,3]]},"39":{"position":[[0,3],[13,3]]},"43":{"position":[[0,3],[13,3]]},"47":{"position":[[0,3],[13,3]]},"54":{"position":[[419,3],[432,3]]},"61":{"position":[[419,3],[432,3]]},"72":{"position":[[460,3]]},"74":{"position":[[668,5]]},"80":{"position":[[0,3]]},"86":{"position":[[0,3]]},"92":{"position":[[0,3]]},"96":{"position":[[0,3],[246,4]]},"98":{"position":[[1198,3]]},"104":{"position":[[0,3],[13,3]]},"110":{"position":[[0,3],[13,3]]},"122":{"position":[[0,3],[13,3],[214,4]]},"126":{"position":[[426,4]]},"130":{"position":[[0,3],[13,3],[212,4]]},"134":{"position":[[0,3],[13,3],[49,3],[143,4]]},"136":{"position":[[192,3]]},"138":{"position":[[0,3],[13,3],[49,3],[131,4]]},"142":{"position":[[0,3],[13,3],[49,3],[133,4]]},"144":{"position":[[308,3],[387,3],[400,3],[436,3],[516,4]]},"152":{"position":[[0,3],[13,3],[32,3]]},"156":{"position":[[0,3],[13,3]]},"158":{"position":[[1000,4],[1720,5]]},"160":{"position":[[0,3],[13,3]]},"166":{"position":[[125,3],[189,3],[202,3],[238,3],[322,4]]},"168":{"position":[[470,5],[1546,3],[1559,3]]},"170":{"position":[[1731,4],[2169,4],[2863,3],[4033,4]]},"172":{"position":[[0,3],[13,3]]},"178":{"position":[[125,3],[189,3],[202,3],[238,3],[322,4]]},"182":{"position":[[0,3],[13,3]]},"186":{"position":[[0,3],[13,3]]},"190":{"position":[[0,3],[13,3]]},"192":{"position":[[1019,4],[2565,5],[3422,4]]},"194":{"position":[[0,3],[13,3]]},"200":{"position":[[0,3],[13,3]]},"208":{"position":[[0,3],[13,3],[154,4]]},"268":{"position":[[1626,5]]},"289":{"position":[[1043,4]]},"311":{"position":[[31,3]]},"315":{"position":[[353,3]]},"319":{"position":[[714,3]]},"332":{"position":[[560,4],[920,6]]}}}],["env/fil",{"_index":941,"t":{"100":{"position":[[311,8]]},"106":{"position":[[279,8]]}}}],["environ",{"_index":190,"t":{"17":{"position":[[850,12]]},"29":{"position":[[129,12]]},"41":{"position":[[193,11]]},"158":{"position":[[1157,12]]},"272":{"position":[[224,12]]},"274":{"position":[[217,11],[814,11]]},"276":{"position":[[377,11],[714,11],[1094,11],[2000,11]]},"313":{"position":[[445,12],[2942,12]]},"315":{"position":[[1026,12]]}}}],["environment",{"_index":123,"t":{"13":{"position":[[29,13]]},"17":{"position":[[42,13],[328,13],[1220,13],[2880,13]]},"25":{"position":[[680,13],[988,13]]},"39":{"position":[[29,13]]},"43":{"position":[[29,13]]},"47":{"position":[[29,13]]},"54":{"position":[[448,13]]},"61":{"position":[[448,13]]},"80":{"position":[[13,13]]},"86":{"position":[[13,13]]},"92":{"position":[[13,13]]},"96":{"position":[[108,13]]},"98":{"position":[[1211,13]]},"104":{"position":[[29,13]]},"110":{"position":[[29,13]]},"122":{"position":[[29,13]]},"130":{"position":[[29,13]]},"156":{"position":[[29,13]]},"160":{"position":[[29,13]]},"168":{"position":[[1575,13]]},"172":{"position":[[29,13]]},"182":{"position":[[29,13]]},"186":{"position":[[29,13]]},"190":{"position":[[29,13]]},"194":{"position":[[29,13]]},"200":{"position":[[29,13]]},"208":{"position":[[29,13]]},"250":{"position":[[1501,13]]},"272":{"position":[[406,13]]},"313":{"position":[[3052,13],[3359,13]]},"319":{"position":[[1348,13]]}}}],["eol",{"_index":1868,"t":{"321":{"position":[[150,4]]}}}],["equal",{"_index":727,"t":{"80":{"position":[[326,5]]}}}],["error",{"_index":282,"t":{"17":{"position":[[4961,8],[5185,8]]},"31":{"position":[[117,7]]},"33":{"position":[[148,5],[785,5],[982,8],[1138,5],[1380,8]]},"35":{"position":[[181,5]]},"94":{"position":[[223,6],[3145,6]]},"114":{"position":[[122,6],[276,5],[651,5]]},"192":{"position":[[1240,6],[5091,6]]},"221":{"position":[[2657,6],[2809,5]]},"254":{"position":[[11,6],[74,6]]},"257":{"position":[[158,5],[193,5],[225,5],[239,6],[415,6]]},"319":{"position":[[278,6],[321,5]]},"336":{"position":[[2530,5],[2567,5],[2592,5]]}}}],["error('error",{"_index":2041,"t":{"341":{"position":[[1074,12]]}}}],["error(`'baseurl",{"_index":1984,"t":{"336":{"position":[[1105,16]]}}}],["error(`'token",{"_index":1982,"t":{"336":{"position":[[952,14]]}}}],["error(`could",{"_index":1987,"t":{"336":{"position":[[1234,12]]}}}],["error/network",{"_index":1482,"t":{"221":{"position":[[237,13]]}}}],["essenti",{"_index":1710,"t":{"268":{"position":[[2148,9]]}}}],["etc",{"_index":368,"t":{"29":{"position":[[248,7]]},"49":{"position":[[531,6]]},"56":{"position":[[613,6]]},"63":{"position":[[177,6]]},"219":{"position":[[343,6]]},"223":{"position":[[257,6],[483,6]]},"262":{"position":[[156,7]]},"268":{"position":[[2777,7]]},"293":{"position":[[230,6]]},"325":{"position":[[623,6]]},"354":{"position":[[22,7]]}}}],["evalu",{"_index":1237,"t":{"170":{"position":[[3825,8]]}}}],["even",{"_index":517,"t":{"49":{"position":[[538,4]]},"56":{"position":[[620,4]]}}}],["event",{"_index":376,"t":{"33":{"position":[[70,7]]},"221":{"position":[[212,5]]},"343":{"position":[[1309,6],[1620,6],[1655,6],[3738,5]]}}}],["eventemitt",{"_index":1922,"t":{"330":{"position":[[697,13]]}}}],["eventu",{"_index":1224,"t":{"170":{"position":[[3027,11]]}}}],["everyone'",{"_index":993,"t":{"112":{"position":[[796,10]]}}}],["everyth",{"_index":407,"t":{"35":{"position":[[136,10]]},"98":{"position":[[2314,10]]},"112":{"position":[[528,10],[876,10]]},"289":{"position":[[1391,10]]}}}],["ex",{"_index":311,"t":{"23":{"position":[[476,2]]},"25":{"position":[[1175,3]]},"37":{"position":[[359,2],[617,2]]},"96":{"position":[[336,2],[527,2]]},"184":{"position":[[533,2]]},"192":{"position":[[3125,3]]},"202":{"position":[[164,2]]},"219":{"position":[[493,2]]},"250":{"position":[[2058,2]]},"252":{"position":[[595,2]]},"276":{"position":[[1530,2],[1784,2]]},"313":{"position":[[1054,3]]},"369":{"position":[[159,2]]}}}],["exactli",{"_index":1326,"t":{"192":{"position":[[2334,7],[3062,7],[3271,7]]},"289":{"position":[[1534,7]]}}}],["exampl",{"_index":8,"t":{"2":{"position":[[112,8]]},"13":{"position":[[710,7],[1080,7]]},"17":{"position":[[640,7],[1914,7],[2112,8],[2211,7],[2233,8],[2429,7],[2512,7],[3615,7],[3739,7],[3836,7],[3858,8],[3981,7],[4026,7]]},"23":{"position":[[468,7]]},"33":{"position":[[336,7],[801,7],[1154,7],[1534,7]]},"37":{"position":[[958,9],[977,8],[1017,7]]},"39":{"position":[[452,7],[762,7]]},"41":{"position":[[97,7]]},"43":{"position":[[365,7],[646,7]]},"47":{"position":[[494,7],[831,7]]},"54":{"position":[[881,7],[1168,7]]},"61":{"position":[[857,7],[1128,7]]},"63":{"position":[[114,8]]},"72":{"position":[[592,8]]},"78":{"position":[[698,9]]},"80":{"position":[[590,7],[876,7]]},"86":{"position":[[386,7],[708,7]]},"88":{"position":[[271,7]]},"90":{"position":[[1282,7]]},"92":{"position":[[94,7],[245,7],[279,7],[463,7]]},"94":{"position":[[2265,7],[2797,7],[3426,7],[3456,7]]},"96":{"position":[[629,7],[829,7],[863,7],[1096,7]]},"98":{"position":[[2716,7],[3358,7]]},"102":{"position":[[620,8],[629,8]]},"104":{"position":[[477,7],[732,7]]},"108":{"position":[[612,8],[621,8]]},"110":{"position":[[424,7],[699,7]]},"122":{"position":[[433,7],[644,7]]},"130":{"position":[[512,7],[723,7]]},"134":{"position":[[532,7],[869,7]]},"138":{"position":[[459,7],[740,7]]},"142":{"position":[[550,7],[920,7]]},"144":{"position":[[871,7],[1181,7]]},"146":{"position":[[921,8],[930,8]]},"148":{"position":[[342,7]]},"150":{"position":[[345,7]]},"152":{"position":[[247,7],[520,7]]},"156":{"position":[[337,7],[620,7]]},"160":{"position":[[521,7],[768,7]]},"166":{"position":[[656,7],[943,7]]},"168":{"position":[[686,8],[2732,7],[3298,7]]},"170":{"position":[[1503,8]]},"172":{"position":[[513,7],[886,7]]},"178":{"position":[[646,7],[923,7]]},"182":{"position":[[364,7],[616,7]]},"186":{"position":[[269,7],[487,7]]},"190":{"position":[[420,7],[734,7]]},"194":{"position":[[658,7],[1036,7]]},"198":{"position":[[1535,7]]},"200":{"position":[[289,7],[523,7]]},"204":{"position":[[153,7]]},"208":{"position":[[512,7],[759,7]]},"221":{"position":[[1070,8],[1805,8],[3052,8]]},"250":{"position":[[1630,8]]},"264":{"position":[[188,7],[337,7]]},"272":{"position":[[439,8]]},"276":{"position":[[281,7],[1964,8]]},"280":{"position":[[285,8],[362,7]]},"293":{"position":[[166,8]]},"295":{"position":[[112,8]]},"311":{"position":[[44,8]]},"313":{"position":[[244,7],[1772,7],[2237,7],[2771,7]]},"315":{"position":[[64,7],[76,7]]},"319":{"position":[[704,9]]},"328":{"position":[[691,8],[812,8]]},"352":{"position":[[1245,8]]},"354":{"position":[[1054,7]]},"356":{"position":[[401,7],[880,7],[1278,7],[2071,7]]},"361":{"position":[[60,7]]},"363":{"position":[[0,7]]},"365":{"position":[[0,7]]},"367":{"position":[[0,7]]},"369":{"position":[[656,7]]}}}],["example.com",{"_index":1069,"t":{"126":{"position":[[790,13]]}}}],["except",{"_index":1490,"t":{"221":{"position":[[673,9],[2766,9],[2890,9]]},"356":{"position":[[163,7]]}}}],["execstart=npm",{"_index":1552,"t":{"229":{"position":[[371,13]]}}}],["exhaust",{"_index":544,"t":{"49":{"position":[[1520,10]]},"94":{"position":[[494,10]]}}}],["exist",{"_index":35,"t":{"7":{"position":[[235,6]]},"37":{"position":[[288,9]]},"94":{"position":[[568,8]]},"170":{"position":[[639,8]]},"192":{"position":[[1531,9]]},"242":{"position":[[332,8]]},"257":{"position":[[100,6]]},"276":{"position":[[1459,9]]},"343":{"position":[[1474,8]]},"354":{"position":[[1704,11],[1743,10]]},"356":{"position":[[1982,6]]},"363":{"position":[[144,11]]}}}],["exit",{"_index":1653,"t":{"257":{"position":[[172,6]]}}}],["expand",{"_index":763,"t":{"84":{"position":[[648,6]]}}}],["expect",{"_index":1720,"t":{"268":{"position":[[3069,8]]}}}],["experi",{"_index":777,"t":{"88":{"position":[[127,10]]},"94":{"position":[[200,10],[283,10]]},"192":{"position":[[1926,10]]},"268":{"position":[[1239,10]]}}}],["experiment",{"_index":820,"t":{"94":{"position":[[178,13]]}}}],["explain",{"_index":1719,"t":{"268":{"position":[[3057,7]]}}}],["explan",{"_index":1285,"t":{"192":{"position":[[383,12]]}}}],["explicitli",{"_index":58,"t":{"9":{"position":[[302,10]]},"23":{"position":[[326,10]]},"76":{"position":[[574,10]]},"78":{"position":[[675,10],[1239,10],[1926,10]]},"94":{"position":[[2050,10]]},"102":{"position":[[366,10]]},"108":{"position":[[362,10]]},"146":{"position":[[719,10]]},"168":{"position":[[582,10]]},"184":{"position":[[492,10]]},"313":{"position":[[957,10],[2531,10]]}}}],["explor",{"_index":149,"t":{"13":{"position":[[683,7],[1053,7]]},"17":{"position":[[3924,7]]},"39":{"position":[[425,7],[735,7]]},"43":{"position":[[338,7],[619,7]]},"47":{"position":[[467,7],[804,7]]},"54":{"position":[[854,7],[1141,7]]},"61":{"position":[[830,7],[1101,7]]},"80":{"position":[[563,7],[849,7]]},"86":{"position":[[359,7],[681,7]]},"92":{"position":[[218,7],[436,7]]},"96":{"position":[[802,7],[1069,7]]},"98":{"position":[[2689,7],[3331,7]]},"104":{"position":[[450,7],[705,7]]},"110":{"position":[[397,7],[672,7]]},"122":{"position":[[406,7],[617,7]]},"130":{"position":[[485,7],[696,7]]},"134":{"position":[[505,7],[842,7]]},"138":{"position":[[432,7],[713,7]]},"142":{"position":[[523,7],[893,7]]},"144":{"position":[[844,7],[1154,7]]},"152":{"position":[[220,7],[493,7]]},"156":{"position":[[310,7],[593,7]]},"160":{"position":[[494,7],[741,7]]},"166":{"position":[[629,7],[916,7]]},"168":{"position":[[2705,7],[3271,7]]},"172":{"position":[[486,7],[859,7]]},"178":{"position":[[619,7],[896,7]]},"182":{"position":[[337,7],[589,7]]},"186":{"position":[[242,7],[460,7]]},"190":{"position":[[393,7],[707,7]]},"194":{"position":[[631,7],[1009,7]]},"200":{"position":[[262,7],[496,7]]},"208":{"position":[[485,7],[732,7]]}}}],["export",{"_index":195,"t":{"17":{"position":[[1026,6]]},"328":{"position":[[458,6],[870,6],[968,6],[1455,6],[1535,6],[1741,6],[1799,6]]},"330":{"position":[[439,6]]},"332":{"position":[[375,6]]},"334":{"position":[[336,6]]},"336":{"position":[[357,6],[1617,6],[2255,6]]},"338":{"position":[[1684,6]]},"341":{"position":[[439,6]]},"343":{"position":[[882,6],[2801,6],[3473,6]]}}}],["expos",{"_index":644,"t":{"68":{"position":[[685,6],[1036,6]]},"158":{"position":[[1343,6]]}}}],["express",{"_index":1392,"t":{"198":{"position":[[1190,12],[1367,10],[1470,12]]},"289":{"position":[[1099,10]]},"354":{"position":[[162,11],[216,13],[1827,12],[1869,11],[1935,12]]}}}],["expressj",{"_index":1443,"t":{"211":{"position":[[219,10]]}}}],["extend",{"_index":1890,"t":{"328":{"position":[[496,7],[910,7],[1011,7]]},"330":{"position":[[477,7]]},"334":{"position":[[374,7]]},"336":{"position":[[395,7],[1655,7],[2293,7]]},"338":{"position":[[1722,7]]},"341":{"position":[[477,7]]},"343":{"position":[[920,7],[2836,7],[3514,7]]}}}],["extens",{"_index":1088,"t":{"146":{"position":[[291,9]]},"202":{"position":[[34,9],[255,9]]},"206":{"position":[[171,10],[314,10]]},"215":{"position":[[226,10]]},"250":{"position":[[92,9],[2457,9]]},"289":{"position":[[1247,9]]}}}],["extra",{"_index":1377,"t":{"198":{"position":[[246,5]]}}}],["extract",{"_index":1390,"t":{"198":{"position":[[1109,7],[1309,7],[1412,10],[1684,8],[1860,7]]}}}],["f12",{"_index":751,"t":{"84":{"position":[[324,3]]}}}],["f243331e",{"_index":1891,"t":{"328":{"position":[[700,8]]}}}],["fail",{"_index":415,"t":{"35":{"position":[[281,7]]},"221":{"position":[[696,6],[2631,6]]},"250":{"position":[[2515,6]]}}}],["failur",{"_index":378,"t":{"33":{"position":[[179,7]]},"221":{"position":[[1627,8],[2749,7],[2787,7],[2969,8]]},"289":{"position":[[894,7]]}}}],["failure/etc",{"_index":1483,"t":{"221":{"position":[[251,14]]}}}],["fake",{"_index":1110,"t":{"150":{"position":[[207,4]]}}}],["fals",{"_index":252,"t":{"17":{"position":[[4072,6],[4093,6],[4134,6],[4187,6]]},"76":{"position":[[772,5]]},"78":{"position":[[1437,5]]},"98":{"position":[[2609,6],[3230,5]]},"156":{"position":[[295,5],[561,5]]},"168":{"position":[[2688,7],[3236,7]]},"194":{"position":[[320,5]]},"221":{"position":[[2149,6],[2251,6],[2617,5],[2910,5]]},"330":{"position":[[921,6]]},"336":{"position":[[536,6]]}}}],["famili",{"_index":889,"t":{"96":{"position":[[350,6]]},"289":{"position":[[792,8],[1782,6]]}}}],["fanci",{"_index":1870,"t":{"325":{"position":[[27,6]]}}}],["faq",{"_index":157,"t":{"15":{"position":[[14,3]]},"192":{"position":[[364,3]]},"280":{"position":[[382,3]]},"305":{"position":[[59,3]]}}}],["fashion",{"_index":2069,"t":{"345":{"position":[[84,7]]}}}],["featur",{"_index":681,"t":{"76":{"position":[[10,7]]}}}],["fedora",{"_index":1536,"t":{"227":{"position":[[99,7]]}}}],["feedback",{"_index":1685,"t":{"268":{"position":[[1339,8]]}}}],["fetch",{"_index":1485,"t":{"221":{"position":[[357,8]]}}}],["few",{"_index":1347,"t":{"192":{"position":[[4193,3]]},"262":{"position":[[40,3]]}}}],["ffff:127.0.0.1",{"_index":1611,"t":{"250":{"position":[[493,16],[704,16]]}}}],["ffff:192.168.0.100",{"_index":1627,"t":{"250":{"position":[[1028,20]]}}}],["field",{"_index":1394,"t":{"198":{"position":[[1298,7],[1391,5],[2115,6],[2177,5]]},"260":{"position":[[57,5]]},"262":{"position":[[51,6],[181,6],[360,6]]},"347":{"position":[[286,5]]},"354":{"position":[[789,5],[868,5]]}}}],["field/env",{"_index":1241,"t":{"170":{"position":[[4189,9]]}}}],["file",{"_index":85,"t":{"9":{"position":[[883,4],[976,4]]},"13":{"position":[[4,4],[410,4]]},"17":{"position":[[107,5],[139,4],[300,4],[305,4],[434,5],[1161,5],[1413,4],[2304,4],[2381,4],[2822,4],[3634,5]]},"25":{"position":[[151,4],[220,5],[264,4],[463,4],[475,4],[546,4],[751,4],[878,4],[934,7]]},"29":{"position":[[334,4]]},"33":{"position":[[234,4]]},"39":{"position":[[4,4],[212,4]]},"43":{"position":[[4,4],[154,4]]},"47":{"position":[[4,4],[227,4]]},"54":{"position":[[423,4],[664,4]]},"61":{"position":[[423,4],[656,4]]},"74":{"position":[[361,4]]},"76":{"position":[[644,4]]},"78":{"position":[[1309,4]]},"80":{"position":[[4,4]]},"86":{"position":[[4,4]]},"88":{"position":[[182,5]]},"92":{"position":[[4,4]]},"94":{"position":[[784,4],[2113,4],[2710,4]]},"96":{"position":[[4,4],[89,4]]},"98":{"position":[[1202,4]]},"102":{"position":[[47,4],[661,4]]},"104":{"position":[[4,4],[288,4]]},"108":{"position":[[45,4],[653,4]]},"110":{"position":[[4,4],[219,4]]},"116":{"position":[[80,4]]},"122":{"position":[[4,4],[292,4]]},"130":{"position":[[4,4],[371,4]]},"134":{"position":[[4,4],[211,4],[265,4]]},"138":{"position":[[4,4],[199,5],[248,4]]},"142":{"position":[[4,4],[201,4],[250,4]]},"144":{"position":[[391,4],[584,4],[631,4]]},"146":{"position":[[402,4],[849,4],[962,4]]},"152":{"position":[[4,4],[44,4]]},"156":{"position":[[4,4],[124,4]]},"160":{"position":[[4,4],[344,4]]},"166":{"position":[[193,4],[390,4],[439,4]]},"168":{"position":[[1550,4],[2236,4]]},"172":{"position":[[4,4],[210,4]]},"178":{"position":[[193,4],[390,4],[439,4]]},"182":{"position":[[4,4],[161,4]]},"186":{"position":[[4,4],[121,4]]},"188":{"position":[[649,4]]},"190":{"position":[[4,4],[176,4]]},"194":{"position":[[4,4],[350,4]]},"198":{"position":[[883,4],[1009,4],[1554,4]]},"200":{"position":[[4,4],[125,4]]},"204":{"position":[[134,4]]},"208":{"position":[[4,4],[335,4]]},"221":{"position":[[394,6],[894,6],[3247,4]]},"229":{"position":[[21,4],[198,4]]},"231":{"position":[[9,4]]},"257":{"position":[[95,4],[318,4]]},"268":{"position":[[2200,4],[2306,5],[2508,4]]},"270":{"position":[[276,4]]},"278":{"position":[[112,4]]},"280":{"position":[[172,5]]},"303":{"position":[[173,4]]},"311":{"position":[[39,4]]},"313":{"position":[[3300,4]]},"315":{"position":[[357,4]]},"319":{"position":[[718,4]]},"328":{"position":[[142,4]]},"343":{"position":[[1459,6]]}}}],["file/aio",{"_index":67,"t":{"9":{"position":[[449,8]]},"17":{"position":[[1891,8]]},"25":{"position":[[211,8]]},"72":{"position":[[88,8],[662,8]]},"98":{"position":[[1159,8]]},"136":{"position":[[203,8]]},"140":{"position":[[452,8]]},"144":{"position":[[319,8]]},"166":{"position":[[136,8]]},"178":{"position":[[136,8]]}}}],["filenam",{"_index":1387,"t":{"198":{"position":[[984,8],[1167,8],[1512,8],[1715,9],[1880,8]]}}}],["filenamepattern",{"_index":1398,"t":{"198":{"position":[[1659,19]]}}}],["fill",{"_index":1319,"t":{"192":{"position":[[1983,4]]}}}],["filter",{"_index":659,"t":{"70":{"position":[[120,8]]},"84":{"position":[[456,7]]}}}],["final",{"_index":484,"t":{"41":{"position":[[494,8]]},"102":{"position":[[681,5]]},"108":{"position":[[673,5]]},"146":{"position":[[982,5]]},"170":{"position":[[2280,5]]},"221":{"position":[[915,8]]},"276":{"position":[[681,8]]},"328":{"position":[[1624,8]]},"336":{"position":[[2063,8]]},"338":{"position":[[2821,8]]},"358":{"position":[[167,5],[257,5]]}}}],["find",{"_index":493,"t":{"45":{"position":[[350,4]]},"72":{"position":[[538,4]]},"84":{"position":[[700,4]]},"132":{"position":[[450,4]]},"168":{"position":[[0,4]]},"198":{"position":[[1958,4]]},"257":{"position":[[400,4]]},"303":{"position":[[386,4]]},"350":{"position":[[184,5]]}}}],["fine",{"_index":1477,"t":{"219":{"position":[[400,4]]}}}],["finish",{"_index":1215,"t":{"170":{"position":[[2470,6]]},"192":{"position":[[4554,8]]},"268":{"position":[[2925,6]]}}}],["firefox",{"_index":748,"t":{"84":{"position":[[295,7]]},"98":{"position":[[2432,12],[3045,9]]},"168":{"position":[[2486,9],[3034,9]]},"202":{"position":[[299,7],[391,7]]}}}],["firefox/139.0",{"_index":1619,"t":{"250":{"position":[[588,14],[799,14]]}}}],["firewal",{"_index":1636,"t":{"250":{"position":[[2152,8],[2233,8]]}}}],["first",{"_index":225,"t":{"17":{"position":[[2167,5],[3792,5]]},"192":{"position":[[1682,5],[1704,5],[2432,5]]},"198":{"position":[[1487,5]]},"204":{"position":[[577,5]]},"221":{"position":[[151,5]]},"244":{"position":[[161,6]]},"250":{"position":[[862,5],[1437,6]]},"254":{"position":[[192,6]]},"260":{"position":[[257,5]]},"303":{"position":[[212,5]]},"313":{"position":[[1445,5]]},"330":{"position":[[0,5]]},"336":{"position":[[88,5]]},"350":{"position":[[0,6]]},"356":{"position":[[2139,5]]},"369":{"position":[[139,5]]}}}],["firstgotifyserv",{"_index":275,"t":{"17":{"position":[[4826,20]]},"33":{"position":[[426,20]]}}}],["fit",{"_index":1815,"t":{"313":{"position":[[313,3]]}}}],["fix",{"_index":1632,"t":{"250":{"position":[[1291,3]]},"257":{"position":[[435,3]]},"264":{"position":[[316,3],[433,3]]},"347":{"position":[[583,3]]}}}],["flatpak",{"_index":1559,"t":{"237":{"position":[[8,7],[24,7],[40,7]]},"242":{"position":[[97,7],[215,7],[424,7]]},"244":{"position":[[87,7],[117,7],[297,7],[475,7],[623,8],[692,7],[736,7],[781,7]]},"246":{"position":[[98,7]]},"321":{"position":[[90,7],[142,7]]}}}],["flatpak/build",{"_index":1600,"t":{"244":{"position":[[936,13]]}}}],["flatpak/flathub",{"_index":1867,"t":{"321":{"position":[[12,15]]}}}],["flatpak/nodej",{"_index":857,"t":{"94":{"position":[[1431,14]]}}}],["flatpak/repo",{"_index":1597,"t":{"244":{"position":[[835,12]]}}}],["flatpak/setup.sh",{"_index":1571,"t":{"242":{"position":[[181,17]]}}}],["flatpak/st",{"_index":1599,"t":{"244":{"position":[[891,13]]}}}],["flow",{"_index":142,"t":{"13":{"position":[[388,4]]},"192":{"position":[[4334,5],[4546,4],[5343,4]]}}}],["fm.teal",{"_index":584,"t":{"56":{"position":[[942,10]]}}}],["folder",{"_index":1213,"t":{"170":{"position":[[2266,6]]},"192":{"position":[[4732,7]]},"268":{"position":[[2526,6]]},"272":{"position":[[13,6]]}}}],["follow",{"_index":691,"t":{"76":{"position":[[603,9]]},"78":{"position":[[1268,9]]},"154":{"position":[[90,9]]},"158":{"position":[[1683,9]]},"164":{"position":[[0,6]]},"170":{"position":[[1235,9]]},"176":{"position":[[0,6]]},"192":{"position":[[1297,6],[4318,6]]},"244":{"position":[[27,6]]},"254":{"position":[[1151,6]]},"268":{"position":[[1375,9]]},"274":{"position":[[113,6]]},"276":{"position":[[943,9]]}}}],["forc",{"_index":872,"t":{"94":{"position":[[2475,7],[2509,6]]},"98":{"position":[[1063,5]]},"244":{"position":[[988,5]]},"264":{"position":[[401,5]]}}}],["forcemediarecognitionon",{"_index":876,"t":{"94":{"position":[[2677,25],[2988,26]]}}}],["fork",{"_index":333,"t":{"25":{"position":[[249,4]]}}}],["form",{"_index":943,"t":{"102":{"position":[[110,6]]},"108":{"position":[[108,6]]},"146":{"position":[[465,6]]}}}],["format",{"_index":794,"t":{"90":{"position":[[99,6],[474,6]]},"223":{"position":[[165,6]]}}}],["formatplayobj(obj",{"_index":1960,"t":{"334":{"position":[[607,18]]}}}],["formatplayobjectopt",{"_index":1955,"t":{"334":{"position":[[215,24],[640,23]]}}}],["forward",{"_index":1637,"t":{"250":{"position":[[2170,11],[2338,10]]},"289":{"position":[[2038,7]]},"291":{"position":[[261,7]]},"369":{"position":[[256,7],[532,7]]}}}],["found",{"_index":229,"t":{"17":{"position":[[2351,5],[3647,5]]},"27":{"position":[[80,5]]},"76":{"position":[[462,5]]},"78":{"position":[[1146,5]]},"90":{"position":[[1100,5],[1496,5]]},"98":{"position":[[780,5]]},"102":{"position":[[446,5]]},"108":{"position":[[440,5]]},"146":{"position":[[815,5]]},"168":{"position":[[1421,5]]},"180":{"position":[[157,5]]},"272":{"position":[[291,5]]},"303":{"position":[[90,5]]},"313":{"position":[[272,5],[512,5]]},"315":{"position":[[1093,5]]},"332":{"position":[[94,6],[181,6]]},"347":{"position":[[534,5]]},"369":{"position":[[152,6]]}}}],["foxx",{"_index":980,"t":{"112":{"position":[[50,7]]},"114":{"position":[[2741,7]]}}}],["foxxairson",{"_index":1027,"t":{"114":{"position":[[2680,15]]}}}],["foxxapikey",{"_index":1039,"t":{"114":{"position":[[3276,12]]},"116":{"position":[[1670,12]]}}}],["foxxmaloja",{"_index":1002,"t":{"114":{"position":[[975,15],[2707,15],[2876,15],[3111,15],[3204,13]]},"116":{"position":[[139,15],[1268,15],[1511,15],[1598,13]]}}}],["foxxmd",{"_index":501,"t":{"47":{"position":[[410,9],[721,9]]},"98":{"position":[[2255,9],[2893,9],[2965,9]]},"114":{"position":[[2562,9]]},"116":{"position":[[1117,9]]},"134":{"position":[[448,9],[759,9]]},"168":{"position":[[1112,7],[1134,10],[1287,8],[2406,9],[2954,9]]},"170":{"position":[[3497,7]]}}}],["foxxmd\",\"someotherus",{"_index":929,"t":{"98":{"position":[[2357,27]]}}}],["foxxmd,plex_local_user,someus",{"_index":1175,"t":{"168":{"position":[[1197,31]]}}}],["foxxmd/multi",{"_index":189,"t":{"17":{"position":[[827,12]]},"94":{"position":[[1408,12]]},"272":{"position":[[169,12]]},"283":{"position":[[562,12]]},"285":{"position":[[40,12]]},"313":{"position":[[390,12],[1872,12],[2323,12],[2851,12]]},"315":{"position":[[670,12],[825,12],[971,12]]}}}],["foxxpassword",{"_index":1028,"t":{"114":{"position":[[2761,15]]}}}],["foxxspot",{"_index":1001,"t":{"114":{"position":[[952,11]]},"116":{"position":[[116,11]]}}}],["foxxspotifyappid",{"_index":1003,"t":{"114":{"position":[[1013,19],[1269,19]]},"116":{"position":[[177,19],[312,19]]}}}],["foxxspotifyappsecret",{"_index":1004,"t":{"114":{"position":[[1049,23],[1396,23]]},"116":{"position":[[213,22],[348,22]]}}}],["foxxyoutub",{"_index":1031,"t":{"114":{"position":[[2850,14]]},"116":{"position":[[1242,14]]}}}],["fqn",{"_index":1414,"t":{"202":{"position":[[314,4]]}}}],["fred",{"_index":981,"t":{"112":{"position":[[58,5],[350,4],[477,5],[483,4],[816,4]]}}}],["fred'",{"_index":987,"t":{"112":{"position":[[558,6]]}}}],["fredapikey",{"_index":1041,"t":{"114":{"position":[[3394,12]]},"116":{"position":[[1770,12]]}}}],["fredjelli",{"_index":1026,"t":{"114":{"position":[[2412,12]]},"116":{"position":[[1054,12]]}}}],["fredmaloja",{"_index":1011,"t":{"114":{"position":[[1477,15],[1733,15],[3322,13]]},"116":{"position":[[409,15],[580,15],[1698,13]]}}}],["fredplex",{"_index":1019,"t":{"114":{"position":[[1710,11]]},"116":{"position":[[557,11]]}}}],["fredspot",{"_index":1010,"t":{"114":{"position":[[1454,11]]},"116":{"position":[[386,11]]}}}],["fredsrefreshtoken",{"_index":1015,"t":{"114":{"position":[[1548,20]]},"116":{"position":[[480,20]]}}}],["fredstoken",{"_index":1013,"t":{"114":{"position":[[1518,13]]},"116":{"position":[[450,13]]}}}],["fredus",{"_index":1022,"t":{"114":{"position":[[1836,12],[2632,12]]},"116":{"position":[[683,12],[1187,12]]}}}],["friend",{"_index":1781,"t":{"289":{"position":[[780,7],[1770,7]]}}}],["friendli",{"_index":1799,"t":{"293":{"position":[[273,8]]},"295":{"position":[[194,8]]}}}],["frontend",{"_index":1441,"t":{"211":{"position":[[80,9],[245,9],[259,8]]}}}],["full",{"_index":564,"t":{"54":{"position":[[52,4],[525,4]]},"61":{"position":[[52,4],[528,4]]},"94":{"position":[[527,4]]},"221":{"position":[[1087,4]]},"276":{"position":[[1915,4]]}}}],["function",{"_index":51,"t":{"9":{"position":[[131,14]]},"82":{"position":[[176,14]]},"126":{"position":[[916,14]]},"221":{"position":[[411,8]]},"283":{"position":[[200,13]]},"328":{"position":[[1990,8]]},"334":{"position":[[28,8]]},"338":{"position":[[700,9]]},"343":{"position":[[1736,8],[1987,13],[2054,9],[2156,13]]},"354":{"position":[[2342,8]]}}}],["funkwhal",{"_index":213,"t":{"17":{"position":[[1574,12],[3257,12]]}}}],["further",{"_index":1681,"t":{"268":{"position":[[1127,8]]}}}],["futur",{"_index":1306,"t":{"192":{"position":[[1290,6]]}}}],["fuzzydiscoveryignor",{"_index":779,"t":{"88":{"position":[[222,23],[373,23]]}}}],["g",{"_index":1839,"t":{"313":{"position":[[3502,1]]}}}],["garbag",{"_index":2072,"t":{"347":{"position":[[177,7]]}}}],["gate",{"_index":2131,"t":{"356":{"position":[[1890,5]]}}}],["gather",{"_index":355,"t":{"27":{"position":[[337,9]]}}}],["gaurante",{"_index":1312,"t":{"192":{"position":[[1599,9]]}}}],["gave",{"_index":669,"t":{"72":{"position":[[638,4]]}}}],["gecko/20100101",{"_index":1618,"t":{"250":{"position":[[573,14],[784,14]]}}}],["gener",{"_index":141,"t":{"13":{"position":[[360,9]]},"17":{"position":[[249,9],[3989,9]]},"23":{"position":[[32,8]]},"41":{"position":[[474,9]]},"56":{"position":[[1582,9]]},"68":{"position":[[488,9]]},"72":{"position":[[483,9]]},"94":{"position":[[2022,9]]},"126":{"position":[[218,8]]},"136":{"position":[[110,7]]},"144":{"position":[[226,7]]},"166":{"position":[[43,7]]},"178":{"position":[[43,7]]},"192":{"position":[[2412,8]]},"206":{"position":[[243,7]]},"221":{"position":[[3061,8]]},"237":{"position":[[53,10]]},"242":{"position":[[53,10],[341,9]]},"244":{"position":[[56,8],[130,9],[143,8],[310,9],[347,9],[406,9],[437,8],[488,9],[533,9],[592,9]]},"276":{"position":[[661,9]]},"325":{"position":[[355,9]]},"328":{"position":[[597,9]]}}}],["get",{"_index":1648,"t":{"254":{"position":[[1023,7]]},"341":{"position":[[1102,7]]},"347":{"position":[[606,4]]}}}],["get(`${this.baseurl}/now",{"_index":2021,"t":{"338":{"position":[[1959,25]]}}}],["get(`${this.baseurl}/rec",{"_index":1996,"t":{"336":{"position":[[2389,30]]},"341":{"position":[[775,30]]}}}],["getbackloggedplay",{"_index":2034,"t":{"341":{"position":[[198,18],[654,18]]}}}],["getnowplay",{"_index":1267,"t":{"188":{"position":[[94,13]]}}}],["getrecentlyplay",{"_index":2004,"t":{"338":{"position":[[710,18],[1045,18]]},"343":{"position":[[1690,17],[2196,18]]}}}],["getrecentlyplayed(opt",{"_index":2017,"t":{"338":{"position":[[1768,26]]}}}],["ghcr.io/foxxmd/multi",{"_index":1813,"t":{"313":{"position":[[195,20]]}}}],["gid",{"_index":1836,"t":{"313":{"position":[[3417,3],[3514,3]]}}}],["git",{"_index":1454,"t":{"213":{"position":[[255,3]]},"283":{"position":[[501,3]]},"287":{"position":[[63,3],[111,3]]},"319":{"position":[[76,3]]}}}],["github",{"_index":473,"t":{"41":{"position":[[176,6]]},"276":{"position":[[360,6]]},"283":{"position":[[365,6]]},"313":{"position":[[107,6]]}}}],["give",{"_index":30,"t":{"7":{"position":[[168,5]]},"56":{"position":[[1476,5]]},"192":{"position":[[1215,5]]}}}],["given",{"_index":666,"t":{"72":{"position":[[475,5]]},"102":{"position":[[643,5]]},"108":{"position":[[635,5]]},"146":{"position":[[944,5]]},"221":{"position":[[3119,5],[3367,5]]}}}],["global",{"_index":60,"t":{"9":{"position":[[333,8]]},"17":{"position":[[3578,6]]},"74":{"position":[[637,8]]}}}],["go",{"_index":754,"t":{"84":{"position":[[364,2],[620,2]]},"170":{"position":[[2984,2]]},"192":{"position":[[1854,2]]},"272":{"position":[[448,2]]},"328":{"position":[[450,2]]}}}],["goal",{"_index":537,"t":{"49":{"position":[[1362,4]]}}}],["goc",{"_index":1372,"t":{"194":{"position":[[580,9],[937,9]]}}}],["gocspx",{"_index":1332,"t":{"192":{"position":[[2708,7],[3937,7]]}}}],["good",{"_index":2067,"t":{"343":{"position":[[3821,4],[3868,4]]}}}],["goodmus",{"_index":934,"t":{"98":{"position":[[2496,14],[3113,11]]},"168":{"position":[[2554,11],[3102,11]]}}}],["goodterm",{"_index":2100,"t":{"354":{"position":[[459,10],[497,10],[738,10]]}}}],["googl",{"_index":617,"t":{"65":{"position":[[159,6]]},"94":{"position":[[155,6],[647,6],[690,6]]},"98":{"position":[[2461,8],[3076,7]]},"168":{"position":[[2517,7],[3065,7]]},"192":{"position":[[83,7],[156,6],[1778,6],[3167,6],[3779,6],[4149,6],[4819,6]]},"262":{"position":[[4,6],[456,6]]},"289":{"position":[[152,6]]}}}],["gorillaz",{"_index":1707,"t":{"268":{"position":[[2068,8]]}}}],["gotifi",{"_index":276,"t":{"17":{"position":[[4855,9]]},"33":{"position":[[455,9],[560,9],[641,7],[831,9]]},"289":{"position":[[619,8]]}}}],["gotify://192.168.0.101:8070/mytoken",{"_index":399,"t":{"33":{"position":[[1660,40]]}}}],["gotifyconfig",{"_index":384,"t":{"33":{"position":[[680,12]]}}}],["grab",{"_index":1798,"t":{"291":{"position":[[161,5]]}}}],["grace",{"_index":1782,"t":{"289":{"position":[[866,8]]}}}],["greater",{"_index":901,"t":{"98":{"position":[[31,7]]}}}],["green",{"_index":1708,"t":{"268":{"position":[[2081,5]]}}}],["group",{"_index":1395,"t":{"198":{"position":[[1352,6]]},"369":{"position":[[336,5]]}}}],["guarante",{"_index":534,"t":{"49":{"position":[[1260,9],[1287,9]]},"343":{"position":[[3919,9]]}}}],["gui",{"_index":940,"t":{"100":{"position":[[130,4]]},"106":{"position":[[124,4]]}}}],["guid",{"_index":1724,"t":{"270":{"position":[[5,5],[111,5]]},"289":{"position":[[1204,5]]},"297":{"position":[[20,5]]},"307":{"position":[[38,6]]},"315":{"position":[[24,5],[42,6]]},"323":{"position":[[42,5]]}}}],["guidanc",{"_index":673,"t":{"74":{"position":[[293,9]]}}}],["guy",{"_index":2139,"t":{"369":{"position":[[202,3],[485,3],[589,3],[652,3]]}}}],["gym",{"_index":2121,"t":{"356":{"position":[[454,5],[957,3],[1157,5],[1419,4],[1684,5]]}}}],["handl",{"_index":563,"t":{"54":{"position":[[4,6],[65,7],[302,6],[405,6],[538,7],[815,9],[1081,9]]},"61":{"position":[[4,6],[65,7],[302,6],[405,6],[541,7]]},"166":{"position":[[590,9],[856,9]]},"211":{"position":[[102,7]]},"289":{"position":[[902,8],[952,8],[1574,8]]},"343":{"position":[[85,6],[161,7],[319,6],[1772,9]]}}}],["handle(someplay",{"_index":2059,"t":{"343":{"position":[[2861,16],[3539,16]]}}}],["hang",{"_index":991,"t":{"112":{"position":[[731,7]]}}}],["happen",{"_index":1722,"t":{"268":{"position":[[3151,8]]}}}],["hard",{"_index":1667,"t":{"268":{"position":[[280,4]]}}}],["hasn't",{"_index":43,"t":{"7":{"position":[[359,6]]}}}],["have",{"_index":81,"t":{"9":{"position":[[716,6]]},"170":{"position":[[3713,6]]},"268":{"position":[[468,6]]},"305":{"position":[[0,6]]},"343":{"position":[[1224,6],[2654,6]]}}}],["header",{"_index":1292,"t":{"192":{"position":[[765,7]]},"325":{"position":[[378,6]]}}}],["headless",{"_index":1084,"t":{"146":{"position":[[12,8]]}}}],["health",{"_index":402,"t":{"35":{"position":[[31,6],[220,9],[589,7],[695,7]]},"325":{"position":[[224,6]]},"336":{"position":[[1842,7]]}}}],["health?name=mymaloja",{"_index":421,"t":{"35":{"position":[[426,21]]}}}],["health?type=spotifi",{"_index":420,"t":{"35":{"position":[[402,20]]}}}],["healthcheck",{"_index":373,"t":{"31":{"position":[[52,11]]},"289":{"position":[[646,11]]}}}],["heavi",{"_index":1018,"t":{"114":{"position":[[1663,5]]}}}],["help",{"_index":826,"t":{"94":{"position":[[365,4],[3360,4]]},"254":{"position":[[964,4]]},"268":{"position":[[1284,4]]},"347":{"position":[[628,4],[683,4]]}}}],["here",{"_index":111,"t":{"11":{"position":[[237,5]]},"17":{"position":[[4014,4]]},"94":{"position":[[1670,6]]},"192":{"position":[[1761,7]]},"272":{"position":[[297,4],[451,5]]},"276":{"position":[[157,5]]},"313":{"position":[[518,4]]},"315":{"position":[[1099,4]]},"328":{"position":[[453,4]]},"332":{"position":[[605,4]]}}}],["heureist",{"_index":1683,"t":{"268":{"position":[[1306,10]]}}}],["hidden",{"_index":756,"t":{"84":{"position":[[430,7]]}}}],["high",{"_index":697,"t":{"78":{"position":[[255,4]]}}}],["higher",{"_index":1449,"t":{"213":{"position":[[38,6]]}}}],["highli",{"_index":1293,"t":{"192":{"position":[[819,6]]}}}],["hint",{"_index":301,"t":{"23":{"position":[[131,6]]},"330":{"position":[[508,5]]}}}],["histor",{"_index":3,"t":{"2":{"position":[[43,10]]},"295":{"position":[[43,10]]}}}],["histori",{"_index":616,"t":{"65":{"position":[[143,7],[346,7],[377,7],[420,7],[456,7],[504,7],[534,7],[709,7],[821,7],[858,7],[964,7]]},"68":{"position":[[663,7],[1179,9],[1267,7]]},"84":{"position":[[189,8]]},"88":{"position":[[111,8]]},"132":{"position":[[55,7]]},"140":{"position":[[43,7]]},"144":{"position":[[48,7]]},"170":{"position":[[525,7]]},"192":{"position":[[287,7]]},"194":{"position":[[334,7]]},"268":{"position":[[19,7],[155,9],[1149,8],[1192,8],[1696,7]]},"338":{"position":[[121,8],[189,8]]},"343":{"position":[[368,7],[518,7]]}}}],["hit",{"_index":761,"t":{"84":{"position":[[579,3]]},"192":{"position":[[4384,3]]}}}],["home",{"_index":888,"t":{"96":{"position":[[344,5]]},"98":{"position":[[2470,7],[3084,5]]},"168":{"position":[[2525,5],[3073,5]]},"229":{"position":[[57,4]]}}}],["home/myuser/ms:/config",{"_index":1847,"t":{"315":{"position":[[646,23]]}}}],["home/youruser/multi",{"_index":1595,"t":{"244":{"position":[[661,20],[905,20]]}}}],["hook",{"_index":2087,"t":{"352":{"position":[[197,4],[299,5],[582,5],[1389,4]]},"354":{"position":[[5,4],[1269,5],[1287,4]]},"356":{"position":[[28,5],[901,4],[984,4],[1004,4],[1773,4],[1795,5],[1825,6],[1896,5],[1914,5],[2052,4],[2155,4],[2271,4]]},"358":{"position":[[25,4],[200,4],[290,4]]}}}],["hook/rul",{"_index":2119,"t":{"356":{"position":[[377,9]]}}}],["host",{"_index":364,"t":{"29":{"position":[[121,7]]},"33":{"position":[[1615,7]]},"94":{"position":[[869,4],[1015,4]]},"158":{"position":[[364,4],[567,4],[869,4]]},"170":{"position":[[3522,5]]},"198":{"position":[[802,4],[964,4]]},"250":{"position":[[1602,4],[1980,4]]},"270":{"position":[[171,4]]},"278":{"position":[[65,4]]},"289":{"position":[[2210,6]]},"313":{"position":[[743,5],[842,5],[1463,4],[1633,4],[2691,4],[3110,5],[3178,4],[3279,4]]},"315":{"position":[[249,4]]},"325":{"position":[[43,6],[719,6]]},"328":{"position":[[766,4],[801,6]]}}}],["host'",{"_index":1135,"t":{"158":{"position":[[443,6],[1496,6]]}}}],["host/ip",{"_index":344,"t":{"25":{"position":[[1117,7]]}}}],["host:port",{"_index":447,"t":{"37":{"position":[[923,10]]}}}],["hostnam",{"_index":1090,"t":{"146":{"position":[[776,8],[874,8]]}}}],["http",{"_index":306,"t":{"23":{"position":[[244,4],[357,5]]},"106":{"position":[[192,4]]},"114":{"position":[[230,4],[605,4]]},"126":{"position":[[819,11]]},"146":{"position":[[286,4],[867,6]]},"170":{"position":[[1114,8],[1343,5],[2624,5],[2674,4],[2779,5],[3405,5]]},"198":{"position":[[39,6],[70,4],[305,4],[384,4],[503,4],[797,4],[836,4],[958,5],[973,4]]},"202":{"position":[[409,5]]},"274":{"position":[[692,5]]}}}],["http://127.0.0.1:5079/callback",{"_index":1223,"t":{"170":{"position":[[2870,30]]}}}],["http://127.0.0.1:5079/callback?code=xxxxxx",{"_index":1225,"t":{"170":{"position":[[3095,45]]}}}],["http://127.0.0.1:9078/callback",{"_index":1212,"t":{"170":{"position":[[2069,30]]}}}],["http://192.168.0.100:4110",{"_index":443,"t":{"37":{"position":[[633,25],[682,25],[1042,25],[1068,25],[1285,25]]},"39":{"position":[[388,27],[679,27]]},"144":{"position":[[807,27],[1098,27]]},"276":{"position":[[1800,25],[1854,25]]}}}],["http://192.168.0.100:4110/apis/listenbrainz",{"_index":453,"t":{"37":{"position":[[1241,43]]}}}],["http://192.168.0.100:4110/apis/listenbrainz/1",{"_index":450,"t":{"37":{"position":[[1094,45],[1311,45]]}}}],["http://192.168.0.100:42010/admin_apikey",{"_index":1747,"t":{"276":{"position":[[584,41]]}}}],["http://192.168.0.100:6969",{"_index":1882,"t":{"325":{"position":[[729,25]]},"328":{"position":[[821,25]]}}}],["http://192.168.0.100:6969/api",{"_index":1883,"t":{"325":{"position":[[782,29]]}}}],["http://192.168.0.100:80/koito",{"_index":454,"t":{"37":{"position":[[1357,29],[1387,29]]}}}],["http://192.168.0.100:80/koito/apis/listenbrainz/1",{"_index":455,"t":{"37":{"position":[[1417,49]]}}}],["http://192.168.0.100:8070",{"_index":380,"t":{"33":{"position":[[472,28],[887,28]]}}}],["http://192.168.0.100:8080",{"_index":398,"t":{"33":{"position":[[1623,28]]}}}],["http://192.168.0.100:9078",{"_index":1746,"t":{"274":{"position":[[1106,25]]},"278":{"position":[[381,25]]}}}],["http://192.168.0.100:9078/lastfm/callback",{"_index":1750,"t":{"276":{"position":[[971,41]]}}}],["http://192.168.0.100:9991",{"_index":390,"t":{"33":{"position":[[1236,28]]}}}],["http://192.168.0.101",{"_index":1261,"t":{"184":{"position":[[556,20]]}}}],["http://192.168.0.101/my/subfold",{"_index":317,"t":{"23":{"position":[[743,33]]}}}],["http://192.168.0.101/yamahaextendedcontrol/v1",{"_index":1262,"t":{"184":{"position":[[577,45]]}}}],["http://192.168.0.101:3456/jsonprc",{"_index":968,"t":{"108":{"position":[[864,33]]}}}],["http://192.168.0.101:3456/mcws/v1",{"_index":954,"t":{"102":{"position":[[882,34]]}}}],["http://192.168.0.101:4000/my/subfolder/lastfm/callback",{"_index":324,"t":{"23":{"position":[[1010,54]]}}}],["http://192.168.0.101:80/lastfm/callback",{"_index":320,"t":{"23":{"position":[[873,39]]}}}],["http://192.168.0.101:8096",{"_index":1866,"t":{"319":{"position":[[1069,28]]}}}],["http://192.168.0.101:9078",{"_index":1820,"t":{"313":{"position":[[1088,27]]}}}],["http://192.168.0.101:9078/callback?code=xxxxxx",{"_index":1229,"t":{"170":{"position":[[3255,50]]}}}],["http://192.168.0.101:9078/lastfm/callback",{"_index":314,"t":{"23":{"position":[[634,41]]}}}],["http://192.168.0.101:9078/my/subfolder/lastfm/callback",{"_index":318,"t":{"23":{"position":[[777,54]]}}}],["http://192.168.0.120:32400",{"_index":1186,"t":{"168":{"position":[[2360,29],[2908,29]]}}}],["http://192.168.0.140:9078",{"_index":1642,"t":{"252":{"position":[[510,26]]}}}],["http://192.168.0.140:9078/api/webscrobbl",{"_index":1635,"t":{"250":{"position":[[2103,42]]}}}],["http://192.168.0.220:9078/lastfm/callback",{"_index":1643,"t":{"252":{"position":[[639,41]]}}}],["http://jriver.mydomain.com:52199/mcws/v1",{"_index":952,"t":{"102":{"position":[[821,41]]}}}],["http://kodi.mydomain.com:8080/jsonrpc",{"_index":967,"t":{"108":{"position":[[807,37]]}}}],["http://localhost",{"_index":1641,"t":{"252":{"position":[[398,21]]}}}],["http://localhost:32400",{"_index":1178,"t":{"168":{"position":[[1671,22]]}}}],["http://localhost:4040/airson",{"_index":1278,"t":{"190":{"position":[[273,33],[565,33]]}}}],["http://localhost:42010",{"_index":272,"t":{"17":{"position":[[4745,25]]},"43":{"position":[[279,25],[540,25]]},"138":{"position":[[373,25],[634,25]]},"319":{"position":[[1192,25]]}}}],["http://localhost:52199/mcws/v1",{"_index":945,"t":{"102":{"position":[[187,31],[769,31]]},"104":{"position":[[96,31]]}}}],["http://localhost:8070",{"_index":277,"t":{"17":{"position":[[4872,24]]}}}],["http://localhost:8080",{"_index":1381,"t":{"198":{"position":[[549,21]]}}}],["http://localhost:8080/jsonrpc",{"_index":964,"t":{"108":{"position":[[185,29],[759,29]]},"110":{"position":[[94,29],[308,32],[565,32]]}}}],["http://localhost:8096",{"_index":917,"t":{"98":{"position":[[1315,21],[2222,24],[2860,24]]},"114":{"position":[[2529,24]]},"116":{"position":[[1084,24]]}}}],["http://localhost:9078",{"_index":302,"t":{"23":{"position":[[149,21]]},"192":{"position":[[3129,22]]},"303":{"position":[[99,21]]}}}],["http://localhost:9078/2.0",{"_index":1051,"t":{"120":{"position":[[97,26]]}}}],["http://localhost:9078/api/lastfm/myslug",{"_index":1052,"t":{"120":{"position":[[327,39]]}}}],["http://localhost:9078/api/webscrobbl",{"_index":1412,"t":{"202":{"position":[[167,38]]},"204":{"position":[[518,38]]},"250":{"position":[[2061,38]]}}}],["http://localhost:9078/api/webscrobbler/usera",{"_index":1428,"t":{"204":{"position":[[387,44]]}}}],["http://localhost:9078/api/webscrobbler/userb",{"_index":1429,"t":{"204":{"position":[[469,44]]}}}],["http://localhost:9078/api/ytmusic/callback?name=myytm",{"_index":1336,"t":{"192":{"position":[[2955,53]]}}}],["http://localhost:9078/callback",{"_index":240,"t":{"17":{"position":[[2725,33],[4619,32]]},"172":{"position":[[154,30],[428,33],[780,33]]}}}],["http://localhost:9078/lastfm/callback",{"_index":119,"t":{"11":{"position":[[346,37]]},"13":{"position":[[208,37],[634,39],[984,39]]},"114":{"position":[[3642,39]]},"116":{"position":[[2008,39]]},"142":{"position":[[474,39],[824,39]]},"252":{"position":[[598,37]]}}}],["http://localhost:9991",{"_index":286,"t":{"17":{"position":[[5040,24]]}}}],["http://maloja:port",{"_index":1825,"t":{"313":{"position":[[1404,19]]}}}],["http://my.custom.domain/api/ytmusic/callback?name=myytm",{"_index":1346,"t":{"192":{"position":[[3978,57]]}}}],["http://my.domain.loc",{"_index":315,"t":{"23":{"position":[[676,22]]}}}],["http://my.domain.local:9000/lastfm/callback",{"_index":322,"t":{"23":{"position":[[934,43]]}}}],["http://my.domain.local:9078/lastfm/callback",{"_index":316,"t":{"23":{"position":[[699,43]]}}}],["http://mydomain.com/reverseproxy/cast",{"_index":1263,"t":{"184":{"position":[[623,37],[661,37]]}}}],["http://mydomain.com:80/kodireverse/jsonrpc",{"_index":970,"t":{"108":{"position":[[934,42]]}}}],["http://myicecast.com/radio",{"_index":811,"t":{"90":{"position":[[1356,29]]},"92":{"position":[[180,28],[377,28]]}}}],["http://mymalojaserverip/admin_apikey",{"_index":482,"t":{"41":{"position":[[400,38]]}}}],["http://mymultiscrobblerip:9078/1",{"_index":1063,"t":{"126":{"position":[[242,33],[459,33]]}}}],["http://mymultiscrobblerip:9078/1/submit",{"_index":1062,"t":{"126":{"position":[[102,39]]}}}],["http://mymultiscrobblerip:9078/api/listenbrainz/myslug",{"_index":1068,"t":{"126":{"position":[[642,54]]}}}],["http://some_ip:7000/subfolder/api",{"_index":1498,"t":{"221":{"position":[[1101,33]]}}}],["http://your_jellyin_url/web/index.html#!/apikeys.html",{"_index":903,"t":{"98":{"position":[[163,55]]}}}],["http://yourmultiscrobblerdomain/health",{"_index":403,"t":{"35":{"position":[[77,38]]}}}],["https://192.168.0.101",{"_index":325,"t":{"23":{"position":[[1065,21]]}}}],["https://192.168.0.101:443/lastfm/callback",{"_index":326,"t":{"23":{"position":[[1087,41]]}}}],["https://airsonic.foxx.exampl",{"_index":1029,"t":{"114":{"position":[[2784,31]]}}}],["https://api.listenbrainz.org",{"_index":498,"t":{"47":{"position":[[166,29],[427,30],[738,30]]},"134":{"position":[[465,30],[776,30]]}}}],["https://bsky.app/settings/app",{"_index":591,"t":{"58":{"position":[[77,29]]}}}],["https://developer.spotify.com",{"_index":1195,"t":{"170":{"position":[[599,29]]}}}],["https://echo.multi",{"_index":1238,"t":{"170":{"position":[[3926,18]]}}}],["https://en.wikipedia.org/wiki/list_of_tz_database_time_zon",{"_index":1731,"t":{"272":{"position":[[302,60]]},"313":{"position":[[523,60]]},"315":{"position":[[1104,60]]}}}],["https://github.com/foxxmd/multi",{"_index":1455,"t":{"213":{"position":[[265,31]]},"319":{"position":[[86,31]]}}}],["https://github.com/patrickkfkan/volumio",{"_index":1289,"t":{"192":{"position":[[602,39]]}}}],["https://koito.mydomain.com",{"_index":451,"t":{"37":{"position":[[1140,26],[1167,26]]}}}],["https://koito.mydomain.com/apis/listenbrainz/1",{"_index":452,"t":{"37":{"position":[[1194,46]]}}}],["https://maloja.foxx.exampl",{"_index":1038,"t":{"114":{"position":[[3235,30]]},"116":{"position":[[1629,30]]}}}],["https://maloja.fred.exampl",{"_index":1040,"t":{"114":{"position":[[3353,30]]},"116":{"position":[[1729,30]]}}}],["https://maloja.mary.exampl",{"_index":1042,"t":{"114":{"position":[[3471,30]]},"116":{"position":[[1829,30]]}}}],["https://scrobbler.mydomain.com",{"_index":1207,"t":{"170":{"position":[[1603,30]]}}}],["https://scrobbler.mydomain.com/callback",{"_index":1209,"t":{"170":{"position":[[1739,39]]}}}],["https://www.google.com/devic",{"_index":1359,"t":{"192":{"position":[[5185,29]]}}}],["https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copi",{"_index":1291,"t":{"192":{"position":[[682,67]]}}}],["icecast",{"_index":620,"t":{"65":{"position":[[208,7]]},"90":{"position":[[24,7],[145,7],[443,7],[633,7],[774,7],[1109,7],[1258,7],[1505,7]]},"92":{"position":[[82,7],[417,9]]},"289":{"position":[[177,7]]}}}],["icecast_url",{"_index":815,"t":{"92":{"position":[[66,11]]}}}],["ici",{"_index":812,"t":{"90":{"position":[[1397,7],[1611,3]]}}}],["icon",{"_index":432,"t":{"37":{"position":[[242,5],[330,4]]},"84":{"position":[[417,4]]},"276":{"position":[[1413,5],[1501,4]]}}}],["id",{"_index":140,"t":{"13":{"position":[[348,3]]},"170":{"position":[[4142,3]]},"192":{"position":[[2184,3],[2495,2],[2914,3]]},"194":{"position":[[152,2]]},"223":{"position":[[422,3],[456,2]]},"252":{"position":[[18,2]]},"313":{"position":[[3478,2],[3498,2]]}}}],["id/secret",{"_index":1194,"t":{"170":{"position":[[579,10],[3732,9],[4078,9]]},"274":{"position":[[568,9]]}}}],["id3",{"_index":1388,"t":{"198":{"position":[[1048,3]]},"347":{"position":[[115,3]]}}}],["ideal",{"_index":1723,"t":{"268":{"position":[[3295,8]]},"334":{"position":[[420,7]]}}}],["identifi",{"_index":600,"t":{"61":{"position":[[749,13],[1000,13]]},"168":{"position":[[300,10]]},"178":{"position":[[538,13],[795,13]]},"328":{"position":[[1110,8],[1653,10],[1685,11]]}}}],["idl",{"_index":1362,"t":{"192":{"position":[[5421,4]]}}}],["ie",{"_index":75,"t":{"9":{"position":[[603,2]]},"17":{"position":[[615,2],[1529,2],[1650,2],[3212,2],[3333,2]]},"35":{"position":[[399,2]]},"98":{"position":[[1312,2]]},"168":{"position":[[1668,2]]},"192":{"position":[[3558,2]]},"221":{"position":[[2319,2],[2664,2]]},"270":{"position":[[506,3]]},"283":{"position":[[559,2]]},"313":{"position":[[62,3]]},"338":{"position":[[2164,2]]},"343":{"position":[[485,2]]},"347":{"position":[[185,2],[292,2]]},"369":{"position":[[446,2],[546,2],[611,2]]}}}],["if/when",{"_index":642,"t":{"68":{"position":[[584,7]]},"358":{"position":[[46,7]]}}}],["ignor",{"_index":1103,"t":{"148":{"position":[[299,8]]},"268":{"position":[[876,8]]},"270":{"position":[[540,6]]}}}],["ignoreinvalidcert",{"_index":1187,"t":{"168":{"position":[[2667,20],[3215,20]]}}}],["imag",{"_index":188,"t":{"17":{"position":[[820,6]]},"170":{"position":[[2638,6]]},"272":{"position":[[162,6]]},"283":{"position":[[520,5]]},"285":{"position":[[29,5]]},"289":{"position":[[1150,6]]},"313":{"position":[[15,6],[90,6],[383,6]]},"315":{"position":[[964,6]]}}}],["immedi",{"_index":1602,"t":{"244":{"position":[[1076,12]]},"254":{"position":[[1085,11]]},"343":{"position":[[1014,11]]},"352":{"position":[[631,11],[869,11]]}}}],["implement",{"_index":631,"t":{"68":{"position":[[12,11]]},"188":{"position":[[49,10],[488,15]]},"221":{"position":[[1002,9],[1735,9],[2983,9]]},"262":{"position":[[244,15]]},"323":{"position":[[149,11]]},"328":{"position":[[1977,10],[2054,10],[2081,10]]},"336":{"position":[[13,9],[97,9],[1431,9],[2080,9]]},"338":{"position":[[214,10],[569,11],[688,9],[3043,11]]},"341":{"position":[[188,9],[923,10]]},"343":{"position":[[1399,9],[1677,12],[1717,9],[1959,10],[2601,14]]}}}],["import",{"_index":904,"t":{"98":{"position":[[514,9]]},"328":{"position":[[227,6],[274,6],[1278,6],[1370,6]]},"330":{"position":[[164,6],[259,6],[305,6]]},"332":{"position":[[301,6]]},"334":{"position":[[179,6],[206,6],[285,6]]},"336":{"position":[[323,6],[1509,6],[1543,6],[2147,6],[2181,6]]},"338":{"position":[[1536,6],[1570,6]]},"341":{"position":[[332,6],[366,6]]},"343":{"position":[[824,6]]}}}],["importantli",{"_index":1874,"t":{"325":{"position":[[165,11]]}}}],["imposs",{"_index":1662,"t":{"262":{"position":[[606,10]]}}}],["improv",{"_index":1682,"t":{"268":{"position":[[1289,7]]}}}],["includ",{"_index":135,"t":{"13":{"position":[[282,7]]},"19":{"position":[[245,8]]},"37":{"position":[[871,7]]},"49":{"position":[[778,8]]},"54":{"position":[[73,9],[323,7]]},"56":{"position":[[860,8]]},"61":{"position":[[73,9],[323,7]]},"88":{"position":[[203,7]]},"90":{"position":[[196,7],[1194,7],[1461,7]]},"94":{"position":[[307,7],[3091,7],[3316,7]]},"136":{"position":[[224,7]]},"144":{"position":[[340,7]]},"166":{"position":[[157,7]]},"178":{"position":[[157,7]]},"192":{"position":[[3652,7]]},"198":{"position":[[2284,7]]},"215":{"position":[[79,8]]},"227":{"position":[[81,9]]},"262":{"position":[[493,7]]},"268":{"position":[[2692,9],[3268,9]]},"283":{"position":[[240,7]]}}}],["incognito/priv",{"_index":1294,"t":{"192":{"position":[[864,17]]},"254":{"position":[[1050,17]]}}}],["incom",{"_index":2042,"t":{"343":{"position":[[107,8]]}}}],["inconsist",{"_index":1284,"t":{"192":{"position":[[311,12]]},"268":{"position":[[252,12],[383,13],[660,12],[855,12]]}}}],["incorrectli",{"_index":874,"t":{"94":{"position":[[2610,11]]},"198":{"position":[[1975,11]]},"264":{"position":[[51,11]]},"347":{"position":[[256,11]]}}}],["independ",{"_index":520,"t":{"49":{"position":[[593,12]]},"56":{"position":[[675,12]]},"289":{"position":[[1295,11]]}}}],["index.j",{"_index":1888,"t":{"328":{"position":[[327,13]]}}}],["indic",{"_index":683,"t":{"76":{"position":[[317,8]]},"341":{"position":[[248,10]]},"343":{"position":[[598,8]]}}}],["individu",{"_index":50,"t":{"9":{"position":[[108,10],[957,12]]},"114":{"position":[[162,10],[326,10],[514,10],[701,10],[889,10]]},"356":{"position":[[38,10],[296,10],[1289,10]]}}}],["info",{"_index":280,"t":{"17":{"position":[[4939,7],[5163,7]]},"33":{"position":[[771,4],[960,7],[1124,4],[1358,7]]},"78":{"position":[[989,4]]},"82":{"position":[[225,4]]},"150":{"position":[[64,4]]},"217":{"position":[[0,4]]},"221":{"position":[[997,4],[1730,4],[2978,4]]},"223":{"position":[[577,4]]},"244":{"position":[[1000,4]]},"250":{"position":[[380,4],[635,4]]},"276":{"position":[[1885,4]]},"313":{"position":[[3116,4]]},"336":{"position":[[1867,4],[1936,4]]},"338":{"position":[[1399,4]]},"341":{"position":[[903,4]]},"343":{"position":[[2415,4]]}}}],["inform",{"_index":4,"t":{"2":{"position":[[54,11]]},"49":{"position":[[1439,11]]},"63":{"position":[[40,11]]},"84":{"position":[[65,12]]},"88":{"position":[[671,11]]},"90":{"position":[[127,11],[348,11]]},"94":{"position":[[319,11],[3239,11]]},"170":{"position":[[4109,11]]},"188":{"position":[[546,11]]},"198":{"position":[[1066,11],[1142,11],[1258,11],[1322,11],[1928,11],[2003,11]]},"223":{"position":[[78,11]]},"250":{"position":[[237,11],[1583,12],[2497,11]]},"262":{"position":[[334,11]]},"276":{"position":[[1054,11]]},"291":{"position":[[172,11]]},"293":{"position":[[40,11]]},"295":{"position":[[54,11]]},"321":{"position":[[124,11]]},"325":{"position":[[531,11],[947,11]]},"338":{"position":[[506,11],[1363,11]]},"341":{"position":[[122,11]]}}}],["ingest",{"_index":2054,"t":{"343":{"position":[[2628,6]]}}}],["ingress",{"_index":360,"t":{"29":{"position":[[40,7],[89,7],[194,7]]},"65":{"position":[[412,7],[496,7],[850,7]]},"68":{"position":[[175,7]]},"211":{"position":[[205,7]]},"221":{"position":[[1664,7]]},"250":{"position":[[18,7],[399,9],[424,9],[654,9],[679,9]]},"325":{"position":[[979,7]]},"343":{"position":[[1155,7]]}}}],["inherit",{"_index":1467,"t":{"217":{"position":[[290,10]]},"221":{"position":[[11,7]]},"328":{"position":[[1908,10]]},"338":{"position":[[624,8]]}}}],["initi",{"_index":721,"t":{"78":{"position":[[1911,8]]},"90":{"position":[[700,8]]},"221":{"position":[[131,11],[2084,14]]},"287":{"position":[[37,7]]}}}],["initiali",{"_index":1779,"t":{"285":{"position":[[234,8]]}}}],["input",{"_index":1259,"t":{"184":{"position":[[70,7]]},"356":{"position":[[1999,5]]}}}],["insecur",{"_index":1151,"t":{"158":{"position":[[1318,9]]},"170":{"position":[[1088,8]]}}}],["insensit",{"_index":1104,"t":{"148":{"position":[[329,12]]},"150":{"position":[[332,12]]}}}],["insid",{"_index":1824,"t":{"313":{"position":[[1305,6]]},"338":{"position":[[1038,6]]}}}],["instal",{"_index":194,"t":{"17":{"position":[[1013,12],[1277,12],[1360,7],[2092,13],[2937,12],[3044,7],[3720,13]]},"43":{"position":[[114,12]]},"102":{"position":[[510,12]]},"108":{"position":[[502,12]]},"158":{"position":[[517,13]]},"202":{"position":[[6,10]]},"213":{"position":[[48,9],[155,9],[220,7],[416,7]]},"215":{"position":[[209,9],[391,7]]},"229":{"position":[[406,9]]},"237":{"position":[[0,7],[16,7]]},"244":{"position":[[1014,7],[1066,9]]},"246":{"position":[[16,7]]},"280":{"position":[[50,7],[73,12]]},"287":{"position":[[45,12]]},"289":{"position":[[1129,7]]},"299":{"position":[[8,12]]},"313":{"position":[[2580,10]]},"317":{"position":[[6,12]]},"319":{"position":[[41,7],[205,7]]},"321":{"position":[[28,8]]}}}],["instanc",{"_index":442,"t":{"37":{"position":[[607,9]]},"45":{"position":[[320,8]]},"98":{"position":[[437,8]]},"114":{"position":[[1371,8]]},"132":{"position":[[419,9]]},"168":{"position":[[84,9]]},"170":{"position":[[2536,9],[3221,8]]},"250":{"position":[[1232,8]]},"268":{"position":[[984,9]]},"276":{"position":[[1774,9]]},"325":{"position":[[692,8]]},"354":{"position":[[343,9],[418,9]]}}}],["instead",{"_index":805,"t":{"90":{"position":[[906,7]]},"102":{"position":[[597,8]]},"108":{"position":[[589,8]]},"150":{"position":[[86,7],[526,7]]},"170":{"position":[[1897,7]]},"188":{"position":[[441,7]]},"250":{"position":[[1903,7]]},"336":{"position":[[1881,7]]},"343":{"position":[[1666,7]]},"354":{"position":[[1482,8]]},"356":{"position":[[203,7],[253,7]]},"369":{"position":[[521,7]]}}}],["instruct",{"_index":837,"t":{"94":{"position":[[977,12]]},"140":{"position":[[325,12]]},"164":{"position":[[17,12]]},"170":{"position":[[856,12],[2970,13],[3014,12]]},"176":{"position":[[17,12]]},"192":{"position":[[584,12],[1313,12],[1743,12]]},"244":{"position":[[100,12]]},"254":{"position":[[1166,12]]},"274":{"position":[[147,12],[644,12],[736,12]]},"278":{"position":[[80,12]]},"313":{"position":[[778,12],[877,12]]}}}],["integr",{"_index":774,"t":{"88":{"position":[[12,12]]},"94":{"position":[[539,13]]},"146":{"position":[[318,11]]},"192":{"position":[[112,11]]},"260":{"position":[[214,11]]},"262":{"position":[[16,11]]}}}],["intel/amd",{"_index":1807,"t":{"313":{"position":[[40,11]]}}}],["intention",{"_index":791,"t":{"88":{"position":[[594,13]]}}}],["interact",{"_index":1505,"t":{"221":{"position":[[1514,11],[2278,11],[2722,11]]},"223":{"position":[[676,10]]},"330":{"position":[[861,11]]}}}],["interaction/consider",{"_index":1769,"t":{"283":{"position":[[95,25]]}}}],["intercept",{"_index":1214,"t":{"170":{"position":[[2398,11]]}}}],["interfac",{"_index":939,"t":{"100":{"position":[[81,9]]},"106":{"position":[[76,9]]},"158":{"position":[[20,9],[253,9]]},"198":{"position":[[46,9],[75,10],[210,9],[228,10],[252,9],[341,9],[359,10],[508,9],[594,9],[697,9],[2023,10]]},"217":{"position":[[205,10]]},"219":{"position":[[102,10],[156,9]]},"223":{"position":[[534,10]]},"250":{"position":[[2027,9]]},"252":{"position":[[186,9],[204,9],[488,9]]},"289":{"position":[[812,9]]},"325":{"position":[[117,9]]},"328":{"position":[[28,9],[465,9],[877,9],[975,9],[1164,9],[1195,10],[1967,9]]},"334":{"position":[[441,9],[542,10]]}}}],["intern",{"_index":410,"t":{"35":{"position":[[165,8]]},"170":{"position":[[1175,8]]},"313":{"position":[[1337,8]]},"330":{"position":[[662,9],[747,9]]},"332":{"position":[[1408,9]]},"343":{"position":[[188,11]]}}}],["internalconfig",{"_index":1917,"t":{"330":{"position":[[314,15],[672,15]]}}}],["internet",{"_index":1419,"t":{"202":{"position":[[584,9]]}}}],["interpret",{"_index":508,"t":{"49":{"position":[[266,9]]},"56":{"position":[[348,9]]}}}],["interv",{"_index":241,"t":{"17":{"position":[[2759,11]]},"114":{"position":[[1569,11],[1618,8]]},"116":{"position":[[501,11]]},"172":{"position":[[462,11],[814,11]]}}}],["introduc",{"_index":1772,"t":{"283":{"position":[[181,9]]}}}],["intruct",{"_index":468,"t":{"41":{"position":[[70,11]]},"276":{"position":[[254,11]]}}}],["invalid",{"_index":1296,"t":{"192":{"position":[[925,11],[1256,12]]},"254":{"position":[[159,11],[811,10],[1008,11]]}}}],["invok",{"_index":1484,"t":{"221":{"position":[[291,7],[1051,6],[1546,7],[1786,6],[3033,6]]}}}],["involv",{"_index":1236,"t":{"170":{"position":[[3772,8]]}}}],["io.github.foxxmd.multiscrobbl",{"_index":1604,"t":{"246":{"position":[[113,31]]}}}],["io.github.foxxmd.multiscrobbler.yml",{"_index":1566,"t":{"239":{"position":[[68,35]]},"244":{"position":[[950,35]]}}}],["ip",{"_index":459,"t":{"37":{"position":[[1590,2]]},"168":{"position":[[362,2]]},"170":{"position":[[1184,3]]},"250":{"position":[[1827,2]]},"270":{"position":[[197,2]]},"276":{"position":[[2298,2]]},"313":{"position":[[2681,2],[2718,2]]},"315":{"position":[[189,2]]}}}],["ipv4/v6",{"_index":1120,"t":{"154":{"position":[[167,7]]}}}],["isn't",{"_index":531,"t":{"49":{"position":[[1169,5]]},"56":{"position":[[1243,5]]}}}],["iso8601",{"_index":1965,"t":{"334":{"position":[[888,7]]}}}],["issu",{"_index":158,"t":{"15":{"position":[[34,6]]},"27":{"position":[[211,5]]},"35":{"position":[[530,6]]},"88":{"position":[[143,5]]},"94":{"position":[[270,5],[347,5],[381,6],[3198,7],[3379,6]]},"188":{"position":[[156,6]]},"192":{"position":[[482,6]]},"198":{"position":[[2242,5]]},"250":{"position":[[1317,5],[1407,6]]},"262":{"position":[[408,6],[633,6]]},"266":{"position":[[20,5]]},"268":{"position":[[1224,7],[1269,6],[1354,6],[2676,5],[3253,5],[3339,6]]},"305":{"position":[[7,6],[82,6]]},"319":{"position":[[675,5]]}}}],["it'",{"_index":335,"t":{"25":{"position":[[367,4]]},"49":{"position":[[400,5]]},"56":{"position":[[482,5]]},"72":{"position":[[657,4]]},"84":{"position":[[425,4]]},"170":{"position":[[3631,4]]},"352":{"position":[[1277,4]]}}}],["it'll",{"_index":2110,"t":{"354":{"position":[[2011,5]]}}}],["itself",{"_index":247,"t":{"17":{"position":[[3600,7]]}}}],["i’m",{"_index":1691,"t":{"268":{"position":[[1802,3]]}}}],["javascript",{"_index":1323,"t":{"192":{"position":[[2271,10]]},"289":{"position":[[2,10]]}}}],["javascript'",{"_index":2114,"t":{"354":{"position":[[2319,12]]}}}],["jellyfin",{"_index":607,"t":{"63":{"position":[[136,9]]},"65":{"position":[[240,8]]},"98":{"position":[[14,8],[84,8],[428,8],[482,8],[789,8],[1033,8],[1296,8],[1663,9],[1753,9],[3311,10]]},"112":{"position":[[838,8]]},"114":{"position":[[2392,11]]},"270":{"position":[[323,8]]},"274":{"position":[[96,8],[124,8],[347,8],[481,8]]},"289":{"position":[[185,8]]},"293":{"position":[[188,9]]},"315":{"position":[[94,8]]},"319":{"position":[[941,11]]},"343":{"position":[[1207,9],[1603,9]]}}}],["jellyfin.json",{"_index":661,"t":{"72":{"position":[[183,13]]}}}],["jellyfin/plex",{"_index":1506,"t":{"221":{"position":[[1678,13]]},"325":{"position":[[999,13]]}}}],["jellyfin_apikey",{"_index":919,"t":{"98":{"position":[[1393,15]]},"313":{"position":[[587,16]]}}}],["jellyfin_apikey=c9fae8756fbf481ebd9c5bb56b",{"_index":1737,"t":{"274":{"position":[[361,42]]}}}],["jellyfin_apikey=c9fae8756fbf481ebd9c5bb56bd6540c",{"_index":1843,"t":{"315":{"position":[[399,50],[1167,48]]},"319":{"position":[[723,48]]}}}],["jellyfin_devices_allow",{"_index":924,"t":{"98":{"position":[[1788,22]]}}}],["jellyfin_devices_block",{"_index":925,"t":{"98":{"position":[[1863,22]]}}}],["jellyfin_libraries_allow",{"_index":911,"t":{"98":{"position":[[855,24],[1948,24]]}}}],["jellyfin_libraries_block",{"_index":926,"t":{"98":{"position":[[2034,24]]}}}],["jellyfin_password",{"_index":920,"t":{"98":{"position":[[1491,17]]}}}],["jellyfin_url",{"_index":916,"t":{"98":{"position":[[1264,12]]},"313":{"position":[[607,13]]}}}],["jellyfin_url=192.168.0.101:8096",{"_index":1844,"t":{"315":{"position":[[453,33],[1218,31]]},"319":{"position":[[772,31]]}}}],["jellyfin_url=192.168.0.110:8096",{"_index":1736,"t":{"274":{"position":[[306,31]]}}}],["jellyfin_us",{"_index":918,"t":{"98":{"position":[[1337,13]]},"313":{"position":[[624,14]]}}}],["jellyfin_user=myus",{"_index":1739,"t":{"274":{"position":[[441,20]]},"315":{"position":[[490,22],[1252,20]]},"319":{"position":[[804,20]]}}}],["jellyfin_users_allow",{"_index":906,"t":{"98":{"position":[[652,21],[1599,20]]}}}],["jellyfin_users_block",{"_index":922,"t":{"98":{"position":[[1689,20]]}}}],["journey",{"_index":2079,"t":{"350":{"position":[[100,7]]}}}],["jq0t1mbbkl",{"_index":436,"t":{"37":{"position":[[400,10]]},"276":{"position":[[1571,10]]}}}],["jriver",{"_index":621,"t":{"65":{"position":[[273,6]]},"100":{"position":[[49,6],[123,6]]},"102":{"position":[[27,7],[388,6],[730,7]]},"104":{"position":[[143,6],[687,8]]},"289":{"position":[[194,6]]}}}],["jriver.mydomain.com",{"_index":951,"t":{"102":{"position":[[801,19]]}}}],["jriver_password",{"_index":958,"t":{"104":{"position":[[223,15]]}}}],["jriver_url",{"_index":956,"t":{"104":{"position":[[81,10]]}}}],["jriver_usernam",{"_index":957,"t":{"104":{"position":[[157,15]]}}}],["json",{"_index":161,"t":{"17":{"position":[[95,4],[127,4],[2074,6]]},"35":{"position":[[478,4]]},"49":{"position":[[411,6],[752,4]]},"56":{"position":[[493,6],[834,4]]},"257":{"position":[[291,4]]},"289":{"position":[[1051,4]]},"336":{"position":[[2539,4]]}}}],["jsonlint",{"_index":1656,"t":{"257":{"position":[[388,8]]}}}],["jtrnwqwd__xmjf8st3jc",{"_index":1020,"t":{"114":{"position":[[1768,23],[1938,23],[2295,23]]},"116":{"position":[[615,23],[769,23],[929,23]]}}}],["keep",{"_index":116,"t":{"11":{"position":[[308,4]]},"68":{"position":[[905,5]]},"192":{"position":[[1567,4]]},"254":{"position":[[721,4]]},"289":{"position":[[1865,4],[2112,4]]},"338":{"position":[[298,4]]},"343":{"position":[[2235,5]]},"352":{"position":[[1110,4]]}}}],["key",{"_index":129,"t":{"13":{"position":[[105,3]]},"33":{"position":[[1724,7]]},"37":{"position":[[171,3],[255,4],[273,3],[311,3],[355,3]]},"39":{"position":[[102,3]]},"41":{"position":[[388,4],[452,3],[484,3],[537,3]]},"43":{"position":[[150,3]]},"51":{"position":[[244,3]]},"54":{"position":[[618,3],[767,6],[1033,6]]},"98":{"position":[[53,3],[158,4],[251,3],[306,3],[376,3],[1420,3]]},"166":{"position":[[542,6],[808,6]]},"198":{"position":[[907,4]]},"219":{"position":[[326,5]]},"274":{"position":[[182,4],[410,3]]},"276":{"position":[[572,4],[639,3],[671,3],[1342,3],[1426,4],[1444,3],[1482,3],[1526,3]]},"356":{"position":[[75,3],[123,3],[175,4],[232,3]]}}}],["kfa",{"_index":1357,"t":{"192":{"position":[[5125,3]]}}}],["kind",{"_index":645,"t":{"68":{"position":[[697,4]]},"202":{"position":[[719,4]]}}}],["kitchensink",{"_index":226,"t":{"17":{"position":[[2199,11],[3824,11]]},"280":{"position":[[350,11]]}}}],["know",{"_index":527,"t":{"49":{"position":[[985,5]]},"54":{"position":[[292,4]]},"56":{"position":[[1063,5]]},"61":{"position":[[292,4]]},"94":{"position":[[1804,4]]},"116":{"position":[[66,5]]},"289":{"position":[[1526,7]]},"330":{"position":[[524,4]]},"343":{"position":[[2986,4]]}}}],["knower",{"_index":1690,"t":{"268":{"position":[[1793,6]]}}}],["known",{"_index":522,"t":{"49":{"position":[[826,5]]},"56":{"position":[[908,5]]},"188":{"position":[[150,5]]},"221":{"position":[[3185,5]]}}}],["kodi",{"_index":622,"t":{"65":{"position":[[304,4]]},"106":{"position":[[49,4],[119,4]]},"108":{"position":[[27,5],[384,4],[722,5]]},"110":{"position":[[139,4],[656,6]]},"289":{"position":[[201,4]]}}}],["kodi.mydomain.com",{"_index":966,"t":{"108":{"position":[[789,17]]}}}],["kodi_password",{"_index":973,"t":{"110":{"position":[[185,13]]}}}],["kodi_url",{"_index":971,"t":{"110":{"position":[[81,8]]}}}],["kodi_usernam",{"_index":972,"t":{"110":{"position":[[151,13]]}}}],["koito",{"_index":15,"t":{"4":{"position":[[42,5]]},"37":{"position":[[54,5],[77,5],[100,5],[185,5],[429,5],[486,5],[535,5],[708,5],[761,5],[802,5],[898,5],[1483,5],[1546,5]]},"39":{"position":[[116,5],[150,5],[199,5],[259,6],[550,6],[718,7]]},"65":{"position":[[333,5]]},"68":{"position":[[1111,6]]},"144":{"position":[[23,5],[147,5],[170,5],[193,5],[463,5],[510,5],[612,5],[678,6],[969,6],[1137,7]]},"276":{"position":[[178,5],[1271,5],[1356,5],[1600,5],[1653,5],[1702,5],[2191,5],[2254,5]]},"289":{"position":[[90,6],[206,5],[516,5]]}}}],["koito_allowed_host",{"_index":458,"t":{"37":{"position":[[1563,19]]},"276":{"position":[[2271,19]]}}}],["koito_token",{"_index":460,"t":{"39":{"position":[[82,11]]}}}],["koito_url",{"_index":444,"t":{"37":{"position":[[662,9],[986,9]]},"39":{"position":[[165,9]]}}}],["koito_url=myurl",{"_index":1758,"t":{"276":{"position":[[2159,15]]}}}],["koito_us",{"_index":439,"t":{"37":{"position":[[459,11]]},"39":{"position":[[130,10]]}}}],["kotio_token=mytoken",{"_index":1756,"t":{"276":{"position":[[2117,19]]}}}],["kotio_user=myus",{"_index":1757,"t":{"276":{"position":[[2139,17]]}}}],["label",{"_index":909,"t":{"98":{"position":[[818,8]]},"168":{"position":[[1454,8]]}}}],["last",{"_index":1687,"t":{"268":{"position":[[1760,4]]},"285":{"position":[[186,4]]},"358":{"position":[[195,4]]}}}],["last.fm",{"_index":10,"t":{"2":{"position":[[133,8]]},"4":{"position":[[17,7]]},"11":{"position":[[58,7],[83,7],[172,8],[190,7]]},"49":{"position":[[1200,7]]},"56":{"position":[[1274,7]]},"65":{"position":[[362,7],[393,7]]},"68":{"position":[[1122,7]]},"112":{"position":[[304,7]]},"118":{"position":[[97,7],[139,8],[157,7],[220,7],[246,7]]},"120":{"position":[[76,7],[148,7],[229,7]]},"140":{"position":[[26,7],[130,8],[148,7],[237,8],[255,7],[370,7]]},"142":{"position":[[76,7],[125,7],[229,7]]},"260":{"position":[[28,7],[86,7],[206,7]]},"276":{"position":[[170,7],[926,8]]},"289":{"position":[[63,8],[212,7],[220,7],[522,7],[1987,7]]},"295":{"position":[[133,8]]},"303":{"position":[[267,7]]},"338":{"position":[[152,7]]},"343":{"position":[[296,8],[548,9]]}}}],["last.fm'",{"_index":672,"t":{"74":{"position":[[274,9]]}}}],["last.fm/listenbrainz",{"_index":1796,"t":{"289":{"position":[[1921,21]]}}}],["lastfm",{"_index":154,"t":{"13":{"position":[[1035,8]]},"23":{"position":[[97,6],[479,6],[576,6]]},"114":{"position":[[3540,9]]},"142":{"position":[[875,8]]},"270":{"position":[[385,6]]}}}],["lastfm.json",{"_index":2089,"t":{"352":{"position":[[367,11]]},"354":{"position":[[537,11],[1550,11]]},"363":{"position":[[8,11]]}}}],["lastfm/callback",{"_index":136,"t":{"13":{"position":[[290,15]]}}}],["lastfm_api_key",{"_index":127,"t":{"13":{"position":[[82,14]]}}}],["lastfm_api_key=myapikey",{"_index":1752,"t":{"276":{"position":[[1211,23]]}}}],["lastfm_redirect_uri",{"_index":133,"t":{"13":{"position":[[185,19]]}}}],["lastfm_secret",{"_index":130,"t":{"13":{"position":[[131,13]]}}}],["lastfm_secret=myapisecret",{"_index":1753,"t":{"276":{"position":[[1237,25]]}}}],["lastfm_sess",{"_index":138,"t":{"13":{"position":[[322,14]]}}}],["later",{"_index":1745,"t":{"274":{"position":[[1044,6]]},"352":{"position":[[1217,5],[1406,5]]}}}],["latest",{"_index":1780,"t":{"287":{"position":[[96,6]]}}}],["launch",{"_index":1461,"t":{"215":{"position":[[98,6]]}}}],["learn",{"_index":1168,"t":{"162":{"position":[[264,5]]},"174":{"position":[[343,5]]},"280":{"position":[[121,5],[294,5]]}}}],["leav",{"_index":1322,"t":{"192":{"position":[[2251,5],[2387,5]]}}}],["left",{"_index":431,"t":{"37":{"position":[[237,4]]},"198":{"position":[[136,4]]},"276":{"position":[[1408,4]]}}}],["length",{"_index":678,"t":{"74":{"position":[[595,6]]},"78":{"position":[[62,6]]},"90":{"position":[[804,7]]},"170":{"position":[[258,6]]},"184":{"position":[[140,7]]}}}],["less",{"_index":828,"t":{"94":{"position":[[489,4]]},"338":{"position":[[1434,4]]}}}],["let'",{"_index":2077,"t":{"350":{"position":[[7,5]]}}}],["level",{"_index":371,"t":{"29":{"position":[[351,5]]},"33":{"position":[[261,5]]},"356":{"position":[[22,5],[895,5],[1767,5],[1789,5],[1879,5]]}}}],["lfm",{"_index":1054,"t":{"122":{"position":[[108,3],[278,3]]}}}],["lfm/lz",{"_index":1829,"t":{"313":{"position":[[2182,6]]}}}],["lfm_slug",{"_index":1056,"t":{"122":{"position":[[219,8]]}}}],["lfmendpoint_en",{"_index":1053,"t":{"122":{"position":[[82,18]]}}}],["librari",{"_index":908,"t":{"98":{"position":[[798,9],[2000,9],[2086,9]]},"100":{"position":[[207,10]]},"112":{"position":[[631,7],[670,7],[769,7]]},"168":{"position":[[1346,9],[1435,9],[2117,9],[2199,9]]},"192":{"position":[[1476,7]]},"254":{"position":[[583,7]]},"268":{"position":[[2997,7]]}}}],["librariesallow",{"_index":910,"t":{"98":{"position":[[837,14],[2478,17],[3093,17]]},"114":{"position":[[2114,17],[2349,17]]},"116":{"position":[[851,17],[983,17]]},"168":{"position":[[1473,14],[2534,17],[3082,17]]}}}],["librariesblock",{"_index":935,"t":{"98":{"position":[[2511,17],[3128,17]]},"168":{"position":[[2569,17],[3117,17]]}}}],["lifecycl",{"_index":2070,"t":{"345":{"position":[[200,10]]},"350":{"position":[[23,9]]},"352":{"position":[[220,9],[1172,9],[1230,10]]},"356":{"position":[[2145,9],[2261,9]]}}}],["limit",{"_index":660,"t":{"72":{"position":[[3,5]]},"94":{"position":[[1073,11]]},"192":{"position":[[893,5]]},"254":{"position":[[969,5]]},"260":{"position":[[10,10]]}}}],["line",{"_index":1384,"t":{"198":{"position":[[763,4],[953,4]]},"264":{"position":[[164,5]]}}}],["link",{"_index":687,"t":{"76":{"position":[[433,4]]},"78":{"position":[[1117,4]]},"192":{"position":[[5160,4],[5460,4]]},"254":{"position":[[514,4]]},"303":{"position":[[406,4]]}}}],["lint",{"_index":1462,"t":{"215":{"position":[[241,7]]}}}],["linux",{"_index":838,"t":{"94":{"position":[[990,5],[1139,5]]},"158":{"position":[[70,5],[106,5]]},"227":{"position":[[67,5]]},"250":{"position":[[549,5],[760,5]]},"278":{"position":[[59,5]]},"289":{"position":[[322,6]]},"313":{"position":[[737,5],[836,5],[3104,5],[3172,5]]},"315":{"position":[[304,5]]}}}],["list",{"_index":97,"t":{"9":{"position":[[1175,4],[1266,4]]},"49":{"position":[[880,4]]},"56":{"position":[[958,4]]},"68":{"position":[[1326,5]]},"94":{"position":[[2238,4],[2740,4]]},"96":{"position":[[330,5],[441,4],[521,5],[624,4]]},"98":{"position":[[1639,4],[1729,4],[1830,4],[1905,4],[1992,4],[2078,4]]},"148":{"position":[[193,4]]},"150":{"position":[[231,5]]},"160":{"position":[[202,4],[279,4]]},"168":{"position":[[593,4],[1780,4],[1862,4],[1955,4],[2026,4],[2109,4],[2191,4]]},"188":{"position":[[703,4]]},"208":{"position":[[241,4],[330,4]]},"221":{"position":[[312,7]]},"268":{"position":[[165,4],[232,4],[598,4],[641,4],[750,4],[847,4],[1770,5]]},"293":{"position":[[364,4]]},"325":{"position":[[440,5]]},"328":{"position":[[1181,4],[1671,4]]},"338":{"position":[[2515,4]]},"341":{"position":[[871,4]]},"343":{"position":[[2970,4],[4040,4]]},"354":{"position":[[185,4]]}}}],["listen",{"_index":638,"t":{"68":{"position":[[292,9],[634,9],[653,9],[715,9],[823,8],[1257,9]]},"74":{"position":[[30,9],[115,10],[143,8],[208,8],[486,8],[552,8]]},"76":{"position":[[182,9]]},"78":{"position":[[124,9],[1659,8]]},"80":{"position":[[292,9],[312,9]]},"84":{"position":[[179,9]]},"88":{"position":[[101,9]]},"90":{"position":[[573,9],[928,9]]},"126":{"position":[[142,7]]},"146":{"position":[[244,6]]},"158":{"position":[[171,9],[238,6],[1520,9]]},"184":{"position":[[190,9]]},"192":{"position":[[277,9]]},"211":{"position":[[168,6]]},"223":{"position":[[63,6],[264,6]]},"268":{"position":[[1001,6],[2728,9],[2836,9],[2874,9],[2934,8]]},"270":{"position":[[336,9]]},"274":{"position":[[76,9]]},"276":{"position":[[77,9]]},"289":{"position":[[39,8],[1627,6]]},"293":{"position":[[88,8]]},"338":{"position":[[332,9],[2702,8]]},"343":{"position":[[3405,6]]},"347":{"position":[[385,6]]},"350":{"position":[[132,8],[499,6]]}}}],["listen:6644,reuseaddr,fork",{"_index":1160,"t":{"158":{"position":[[1610,26]]}}}],["listenbrainz",{"_index":11,"t":{"2":{"position":[[142,15]]},"4":{"position":[[27,12]]},"45":{"position":[[55,12],[85,12],[181,12],[211,12],[265,12]]},"47":{"position":[[780,14]]},"49":{"position":[[1211,13]]},"56":{"position":[[1285,13]]},"65":{"position":[[436,12],[472,12]]},"68":{"position":[[1097,13]]},"112":{"position":[[956,12]]},"124":{"position":[[97,12],[144,13],[167,12],[235,12],[266,12]]},"126":{"position":[[76,12],[174,12],[539,12],[707,12],[752,12]]},"128":{"position":[[5,12]]},"132":{"position":[[23,12],[154,12],[184,12],[280,12],[310,12],[364,12]]},"134":{"position":[[76,12],[130,12],[239,12],[818,14]]},"188":{"position":[[356,12],[410,12]]},"250":{"position":[[115,12]]},"289":{"position":[[72,13],[239,12],[252,12],[530,12],[2010,12]]},"295":{"position":[[142,15]]},"338":{"position":[[135,12]]},"343":{"position":[[282,13],[533,14]]}}}],["listenbrainz.baseurl",{"_index":1066,"t":{"126":{"position":[[405,20]]}}}],["listenbrainzfoxx",{"_index":1036,"t":{"114":{"position":[[3080,19]]},"116":{"position":[[1480,19]]}}}],["live",{"_index":151,"t":{"13":{"position":[[722,4],[1092,4]]},"39":{"position":[[464,4],[774,4]]},"43":{"position":[[377,4],[658,4]]},"47":{"position":[[506,4],[843,4]]},"54":{"position":[[893,4],[1180,4]]},"61":{"position":[[869,4],[1140,4]]},"78":{"position":[[1612,4]]},"80":{"position":[[602,4],[888,4]]},"86":{"position":[[398,4],[720,4]]},"92":{"position":[[257,4],[475,4]]},"96":{"position":[[841,4],[1108,4]]},"98":{"position":[[2728,4],[3370,4]]},"104":{"position":[[489,4],[744,4]]},"110":{"position":[[436,4],[711,4]]},"122":{"position":[[445,4],[656,4]]},"130":{"position":[[524,4],[735,4]]},"134":{"position":[[544,4],[881,4]]},"138":{"position":[[471,4],[752,4]]},"142":{"position":[[562,4],[932,4]]},"144":{"position":[[883,4],[1193,4]]},"152":{"position":[[259,4],[532,4]]},"156":{"position":[[349,4],[632,4]]},"160":{"position":[[533,4],[780,4]]},"166":{"position":[[668,4],[955,4]]},"168":{"position":[[2744,4],[3310,4]]},"172":{"position":[[525,4],[898,4]]},"178":{"position":[[658,4],[935,4]]},"182":{"position":[[376,4],[628,4]]},"186":{"position":[[281,4],[499,4]]},"190":{"position":[[432,4],[746,4]]},"194":{"position":[[670,4],[1048,4]]},"200":{"position":[[301,4],[535,4]]},"208":{"position":[[524,4],[771,4]]}}}],["live|remast",{"_index":2128,"t":{"356":{"position":[[1487,15]]}}}],["load",{"_index":471,"t":{"41":{"position":[[157,10]]},"276":{"position":[[341,10]]}}}],["local",{"_index":201,"t":{"17":{"position":[[1271,5],[2931,5]]},"158":{"position":[[463,5],[511,5],[780,5]]},"168":{"position":[[244,5],[259,5],[356,5],[629,5],[799,5],[1005,5],[1304,5]]},"170":{"position":[[1356,7],[2228,5]]},"202":{"position":[[627,5]]},"213":{"position":[[91,7]]},"289":{"position":[[1172,7]]}}}],["local/nod",{"_index":193,"t":{"17":{"position":[[1002,10]]}}}],["localhost",{"_index":948,"t":{"102":{"position":[[575,9]]},"108":{"position":[[567,9]]},"146":{"position":[[885,9]]},"152":{"position":[[137,12],[390,12]]},"170":{"position":[[1161,9]]},"202":{"position":[[333,10]]},"250":{"position":[[1914,9]]},"252":{"position":[[563,9]]},"270":{"position":[[510,10],[619,10]]}}}],["localhost:6600",{"_index":1124,"t":{"156":{"position":[[93,14]]}}}],["localhost:8080",{"_index":1407,"t":{"200":{"position":[[93,14],[212,17],[429,17]]}}}],["localhost:9078",{"_index":121,"t":{"11":{"position":[[395,14]]}}}],["locat",{"_index":198,"t":{"17":{"position":[[1167,7],[1980,7],[2827,7]]},"49":{"position":[[832,8]]},"56":{"position":[[914,8]]},"170":{"position":[[2286,8]]},"184":{"position":[[434,7]]},"242":{"position":[[155,7]]},"289":{"position":[[2217,9]]},"315":{"position":[[166,7]]}}}],["lock.json",{"_index":1588,"t":{"244":{"position":[[332,9],[518,9]]}}}],["log",{"_index":300,"t":{"23":{"position":[[123,7]]},"27":{"position":[[107,3],[242,4],[347,4]]},"84":{"position":[[204,7]]},"94":{"position":[[3107,4],[3304,7],[3324,3]]},"192":{"position":[[2852,3],[5034,6],[5356,3]]},"194":{"position":[[326,3]]},"198":{"position":[[1829,4],[2272,7],[2309,4]]},"219":{"position":[[507,7]]},"221":{"position":[[638,3]]},"250":{"position":[[233,3],[313,4],[882,4],[1164,4],[1428,8],[1458,7],[2419,5],[2474,4]]},"257":{"position":[[39,5]]},"262":{"position":[[439,7],[501,4],[559,6]]},"264":{"position":[[105,4]]},"266":{"position":[[43,7]]},"268":{"position":[[1688,3],[2205,8],[2234,4],[2283,3],[2296,4],[2498,4],[2521,4],[3225,4],[3278,4],[3319,5]]},"278":{"position":[[596,3]]},"289":{"position":[[861,4]]},"303":{"position":[[38,5]]},"358":{"position":[[7,3],[124,4],[129,6],[218,6],[405,6]]}}}],["logauthupdatechang",{"_index":1303,"t":{"192":{"position":[[1159,23],[2749,23],[4052,23]]}}}],["logdiff",{"_index":1304,"t":{"192":{"position":[[1189,10],[2779,10],[4082,10]]},"194":{"position":[[606,10],[963,10]]},"268":{"position":[[1491,7],[1592,10],[2427,10]]}}}],["logfilenamepattern",{"_index":1403,"t":{"198":{"position":[[1889,22]]}}}],["logfilterfailur",{"_index":256,"t":{"17":{"position":[[4141,19]]},"98":{"position":[[2652,19],[3272,19]]},"168":{"position":[[2638,19],[3186,19]]}}}],["logic",{"_index":1442,"t":{"211":{"position":[[128,6]]}}}],["login",{"_index":744,"t":{"84":{"position":[[59,5]]},"168":{"position":[[387,7]]},"170":{"position":[[590,5]]},"192":{"position":[[1769,5]]},"227":{"position":[[185,6]]},"231":{"position":[[248,5]]}}}],["logpayload",{"_index":255,"t":{"17":{"position":[[4120,13]]},"94":{"position":[[3556,13]]},"98":{"position":[[2632,13],[3252,13]]},"168":{"position":[[2618,13],[3166,13]]}}}],["logplayerst",{"_index":258,"t":{"17":{"position":[[4169,17]]}}}],["logtofil",{"_index":1712,"t":{"268":{"position":[[2334,9],[2444,12]]}}}],["long",{"_index":2012,"t":{"338":{"position":[[1381,4],[1471,4],[2714,4]]},"350":{"position":[[144,4]]}}}],["longer",{"_index":1199,"t":{"170":{"position":[[1074,6],[1207,6]]},"192":{"position":[[1386,6]]},"321":{"position":[[44,6]]}}}],["look",{"_index":1399,"t":{"198":{"position":[[1730,4]]},"250":{"position":[[321,5]]},"274":{"position":[[67,4]]},"330":{"position":[[556,5]]},"341":{"position":[[886,5]]},"352":{"position":[[44,5]]}}}],["lose",{"_index":42,"t":{"7":{"position":[[338,4]]}}}],["lost",{"_index":1827,"t":{"313":{"position":[[1736,4]]}}}],["lua",{"_index":1379,"t":{"198":{"position":[[373,3],[380,3]]}}}],["lz",{"_index":495,"t":{"47":{"position":[[116,2],[144,2],[217,2]]},"130":{"position":[[107,2],[230,2],[358,2]]}}}],["lz_token",{"_index":494,"t":{"47":{"position":[[82,8]]}}}],["lz_url",{"_index":497,"t":{"47":{"position":[[156,6]]}}}],["lz_user",{"_index":496,"t":{"47":{"position":[[127,7]]}}}],["lze_slug",{"_index":1076,"t":{"130":{"position":[[299,8]]}}}],["lze_token",{"_index":1075,"t":{"130":{"position":[[217,9]]}}}],["lzendpoint_en",{"_index":1074,"t":{"130":{"position":[[82,17]]}}}],["machin",{"_index":833,"t":{"94":{"position":[[874,7],[1020,7]]},"102":{"position":[[538,7]]},"108":{"position":[[530,7]]},"170":{"position":[[1987,7],[2368,7],[2577,7]]},"250":{"position":[[1788,7],[2189,7],[2389,8]]},"252":{"position":[[336,7]]},"270":{"position":[[176,7],[459,7]]},"313":{"position":[[1006,7],[2609,7],[2696,8]]},"315":{"position":[[254,7]]},"338":{"position":[[233,7],[558,7],[968,7],[2607,7]]},"343":{"position":[[52,7],[682,7],[1576,7]]}}}],["made",{"_index":1515,"t":{"221":{"position":[[2504,4]]},"354":{"position":[[1513,4]]}}}],["magic",{"_index":862,"t":{"94":{"position":[[1794,9]]}}}],["main",{"_index":1376,"t":{"198":{"position":[[223,4],[354,4]]},"313":{"position":[[753,4],[852,4]]}}}],["major",{"_index":795,"t":{"90":{"position":[[168,8]]},"94":{"position":[[1133,5]]},"283":{"position":[[140,8]]},"338":{"position":[[4,8]]}}}],["major/minor",{"_index":1770,"t":{"283":{"position":[[152,11]]}}}],["majorli",{"_index":1479,"t":{"219":{"position":[[468,7]]}}}],["make",{"_index":416,"t":{"35":{"position":[[308,4]]},"68":{"position":[[197,5]]},"84":{"position":[[116,4]]},"102":{"position":[[404,4]]},"108":{"position":[[398,4]]},"114":{"position":[[264,4],[639,4],[2213,6],[2235,4],[2449,6],[2471,4]]},"128":{"position":[[136,4]]},"146":{"position":[[762,4]]},"158":{"position":[[976,4],[1543,4]]},"168":{"position":[[25,4]]},"192":{"position":[[4370,4],[4418,4]]},"221":{"position":[[1814,4],[3165,4]]},"244":{"position":[[168,4]]},"250":{"position":[[2313,4]]},"268":{"position":[[271,5]]},"356":{"position":[[1837,5]]}}}],["maloja",{"_index":9,"t":{"2":{"position":[[125,7]]},"4":{"position":[[50,6]]},"17":{"position":[[626,6],[1662,6],[3345,6],[4682,9]]},"41":{"position":[[8,6],[57,6],[511,6]]},"43":{"position":[[601,8]]},"65":{"position":[[520,6]]},"112":{"position":[[99,6]]},"114":{"position":[[3186,9],[3304,9],[3422,9]]},"136":{"position":[[28,6],[52,6],[76,6]]},"138":{"position":[[76,6],[124,6],[228,6],[695,8]]},"270":{"position":[[399,6]]},"276":{"position":[[163,6],[192,6],[241,6]]},"289":{"position":[[55,7],[276,6],[543,6]]},"295":{"position":[[125,7]]},"313":{"position":[[1295,6],[1389,6]]},"315":{"position":[[110,6]]},"319":{"position":[[1145,9]]}}}],["maloja'",{"_index":469,"t":{"41":{"position":[[88,8]]},"276":{"position":[[272,8]]}}}],["maloja.json",{"_index":235,"t":{"17":{"position":[[2493,11]]}}}],["maloja_api_key",{"_index":487,"t":{"43":{"position":[[127,14]]},"313":{"position":[[676,15]]}}}],["maloja_api_key=1234",{"_index":192,"t":{"17":{"position":[[964,19]]},"315":{"position":[[578,21],[1349,19]]}}}],["maloja_api_key=myapikey",{"_index":1749,"t":{"276":{"position":[[871,23]]}}}],["maloja_force_password=change_m",{"_index":475,"t":{"41":{"position":[[213,31]]},"276":{"position":[[397,31]]}}}],["maloja_url",{"_index":486,"t":{"43":{"position":[[82,10]]}}}],["maloja_url=\"http://domain.tld",{"_index":1863,"t":{"319":{"position":[[825,30]]}}}],["maloja_url=http://192.168.0.100:42010",{"_index":1748,"t":{"276":{"position":[[831,37]]}}}],["maloja_url=http://domain.tld",{"_index":1846,"t":{"315":{"position":[[544,30]]}}}],["maloja_url=http://domain.tld:42010",{"_index":191,"t":{"17":{"position":[[927,34]]},"315":{"position":[[1312,34]]}}}],["maloja_url=http://maloja:42010",{"_index":1816,"t":{"313":{"position":[[642,30]]}}}],["malojadata",{"_index":476,"t":{"41":{"position":[[291,12]]},"276":{"position":[[475,12]]}}}],["malojadata/dock",{"_index":470,"t":{"41":{"position":[[125,19]]},"276":{"position":[[309,19]]}}}],["manag",{"_index":1452,"t":{"213":{"position":[[144,6]]},"227":{"position":[[30,7]]},"233":{"position":[[85,9]]},"289":{"position":[[1720,6]]}}}],["mani",{"_index":206,"t":{"17":{"position":[[1453,4],[1475,4],[3136,4],[3158,4]]},"88":{"position":[[87,4]]},"94":{"position":[[1177,4]]},"146":{"position":[[67,4]]},"268":{"position":[[2255,4]]},"289":{"position":[[122,4],[503,4],[1651,4]]},"325":{"position":[[131,4]]},"345":{"position":[[158,4]]}}}],["manual",{"_index":713,"t":{"78":{"position":[[1045,9],[1902,8]]},"90":{"position":[[1434,8]]},"94":{"position":[[758,8]]},"96":{"position":[[18,8]]},"170":{"position":[[2461,8]]},"244":{"position":[[47,8]]}}}],["map",{"_index":386,"t":{"33":{"position":[[791,9],[1144,9]]},"313":{"position":[[2077,3]]}}}],["mari",{"_index":982,"t":{"112":{"position":[[68,4],[287,4],[548,4]]},"114":{"position":[[2045,4]]}}}],["maryapikey",{"_index":1043,"t":{"114":{"position":[[3512,12],[3589,13]]},"116":{"position":[[1870,12],[1955,13]]}}}],["marylfm",{"_index":1044,"t":{"114":{"position":[[3558,10]]},"116":{"position":[[1924,10]]}}}],["marymaloja",{"_index":1009,"t":{"114":{"position":[[1231,15],[1903,15],[3440,13]]},"116":{"position":[[274,15],[734,15],[1798,13]]}}}],["maryplex",{"_index":1023,"t":{"114":{"position":[[1880,11]]},"116":{"position":[[711,11]]}}}],["marysecret",{"_index":1045,"t":{"114":{"position":[[3613,13]]},"116":{"position":[[1979,13]]}}}],["maryspot",{"_index":1008,"t":{"114":{"position":[[1208,11]]},"116":{"position":[[251,11]]}}}],["maryus",{"_index":1024,"t":{"114":{"position":[[2006,13]]},"116":{"position":[[837,13]]}}}],["match",{"_index":166,"t":{"17":{"position":[[218,5]]},"49":{"position":[[1591,7],[1738,8]]},"102":{"position":[[430,7]]},"108":{"position":[[424,7]]},"146":{"position":[[801,5]]},"148":{"position":[[219,7]]},"198":{"position":[[1378,8],[1502,7]]},"204":{"position":[[64,7],[560,7]]},"283":{"position":[[536,5]]},"345":{"position":[[95,8]]},"354":{"position":[[408,5],[1890,7],[2065,7],[2167,7]]},"356":{"position":[[482,5],[550,5],[639,5],[716,5],[1401,7]]}}}],["max",{"_index":1006,"t":{"114":{"position":[[1133,3]]}}}],["maxpollretri",{"_index":264,"t":{"17":{"position":[[4251,17]]},"114":{"position":[[45,17]]}}}],["maxrequestretri",{"_index":266,"t":{"17":{"position":[[4272,20],[4342,20]]},"114":{"position":[[180,20],[555,20],[1089,20]]}}}],["mc_password",{"_index":1255,"t":{"182":{"position":[[145,11]]}}}],["mc_url",{"_index":1254,"t":{"182":{"position":[[82,6]]}}}],["mcast_url",{"_index":1264,"t":{"186":{"position":[[82,9]]}}}],["mdn",{"_index":832,"t":{"94":{"position":[[843,5],[849,4],[934,4]]}}}],["mean",{"_index":173,"t":{"17":{"position":[[408,5]]},"49":{"position":[[1112,7]]},"56":{"position":[[1186,7]]},"102":{"position":[[306,5]]},"108":{"position":[[302,5]]},"146":{"position":[[659,5]]},"192":{"position":[[96,5]]},"250":{"position":[[38,5],[1299,5]]},"257":{"position":[[281,5]]}}}],["mechan",{"_index":2048,"t":{"343":{"position":[[1241,9]]}}}],["media",{"_index":817,"t":{"94":{"position":[[8,5],[1559,5],[1617,5],[1739,5],[1818,5],[1936,5],[1988,5],[2000,5],[2032,5],[2189,5],[2451,5],[2483,5],[2525,5],[2565,5],[2632,5],[2878,5],[2968,5],[3038,5]]},"98":{"position":[[774,5],[1027,5],[1102,5]]},"100":{"position":[[155,5],[179,5]]},"102":{"position":[[479,5]]},"158":{"position":[[157,5],[297,5]]},"168":{"position":[[1415,5]]},"264":{"position":[[77,5],[138,5],[216,5],[294,5],[363,5],[407,5]]},"325":{"position":[[60,5]]}}}],["meet",{"_index":653,"t":{"68":{"position":[[988,5]]}}}],["memorysourc",{"_index":1915,"t":{"330":{"position":[[266,12],[378,12],[485,12]]},"334":{"position":[[382,12]]},"336":{"position":[[403,12],[1663,12],[2301,12]]},"338":{"position":[[584,12],[949,12],[1025,12],[1730,12]]},"341":{"position":[[485,12]]},"343":{"position":[[928,12],[1584,12]]}}}],["memorysource.j",{"_index":1916,"t":{"330":{"position":[[284,20]]}}}],["mendhak/http",{"_index":1216,"t":{"170":{"position":[[2611,12],[2766,12],[3392,12]]}}}],["mention",{"_index":965,"t":{"108":{"position":[[477,9]]}}}],["menu",{"_index":1374,"t":{"198":{"position":[[102,4]]}}}],["messag",{"_index":385,"t":{"33":{"position":[[737,7],[1090,7]]},"35":{"position":[[496,8]]},"336":{"position":[[2607,7]]}}}],["met",{"_index":720,"t":{"78":{"position":[[1815,4]]}}}],["meta",{"_index":1968,"t":{"334":{"position":[[935,5]]}}}],["metadata",{"_index":542,"t":{"49":{"position":[[1471,8]]},"90":{"position":[[6,8],[204,8],[263,8],[1117,8],[1266,8],[1513,8]]},"94":{"position":[[1652,8]]},"180":{"position":[[99,8],[343,8]]},"182":{"position":[[129,8]]},"198":{"position":[[2263,8]]},"223":{"position":[[271,8]]},"266":{"position":[[34,8]]}}}],["metdata",{"_index":538,"t":{"49":{"position":[[1394,7]]}}}],["method",{"_index":172,"t":{"17":{"position":[[401,6]]},"68":{"position":[[100,7]]},"82":{"position":[[36,7],[146,7]]},"84":{"position":[[240,7]]},"158":{"position":[[1308,6]]},"170":{"position":[[1245,7],[1869,6]]},"192":{"position":[[523,7],[4896,6]]},"242":{"position":[[140,6]]},"268":{"position":[[496,6]]},"274":{"position":[[698,6]]},"280":{"position":[[58,7]]},"313":{"position":[[1811,6]]},"328":{"position":[[2101,7]]}}}],["metric",{"_index":670,"t":{"74":{"position":[[56,7]]}}}],["mind",{"_index":1791,"t":{"289":{"position":[[1521,4]]},"352":{"position":[[1118,4]]}}}],["mini",{"_index":887,"t":{"96":{"position":[[339,4]]}}}],["minim",{"_index":2033,"t":{"338":{"position":[[3033,9]]}}}],["minimum",{"_index":1472,"t":{"219":{"position":[[58,7]]}}}],["minut",{"_index":26,"t":{"7":{"position":[[128,7]]},"74":{"position":[[223,7]]},"192":{"position":[[4197,7]]},"268":{"position":[[3308,7]]}}}],["miss",{"_index":947,"t":{"102":{"position":[[246,7]]},"108":{"position":[[242,7]]},"146":{"position":[[599,7]]},"192":{"position":[[338,6]]},"341":{"position":[[36,8]]}}}],["mit",{"_index":1804,"t":{"309":{"position":[[0,3]]}}}],["mix",{"_index":165,"t":{"17":{"position":[[210,3]]},"98":{"position":[[962,5]]},"170":{"position":[[195,7]]}}}],["mixcloud",{"_index":1112,"t":{"150":{"position":[[388,11]]}}}],["mkdir",{"_index":1540,"t":{"229":{"position":[[70,5]]}}}],["mobil",{"_index":1715,"t":{"268":{"position":[[2751,7]]},"289":{"position":[[1264,6]]}}}],["mode",{"_index":349,"t":{"27":{"position":[[17,4],[285,4],[323,4],[418,4]]},"94":{"position":[[3450,5]]},"332":{"position":[[927,5]]}}}],["modif",{"_index":1140,"t":{"158":{"position":[[750,13]]},"354":{"position":[[245,12],[890,13],[1495,13]]},"356":{"position":[[150,12]]}}}],["modifi",{"_index":778,"t":{"88":{"position":[[149,6]]},"158":{"position":[[1081,6]]},"170":{"position":[[298,8]]},"198":{"position":[[858,6]]},"289":{"position":[[1056,6]]},"313":{"position":[[297,9]]},"319":{"position":[[445,6],[1324,8]]},"332":{"position":[[191,6]]},"345":{"position":[[47,6]]},"352":{"position":[[234,6],[614,6],[679,6],[774,6],[852,6],[917,6],[1009,6],[1128,9],[1257,6],[1352,6],[1453,8]]},"354":{"position":[[83,7],[1431,9],[1458,6],[1667,6],[1732,6]]}}}],["modul",{"_index":1373,"t":{"198":{"position":[[56,6],[262,7]]}}}],["monitor",{"_index":48,"t":{"9":{"position":[[62,10]]},"11":{"position":[[15,7]]},"31":{"position":[[85,7]]},"35":{"position":[[16,10]]},"37":{"position":[[14,7]]},"45":{"position":[[15,7]]},"49":{"position":[[14,7]]},"56":{"position":[[14,7]]},"68":{"position":[[284,7],[1244,8]]},"70":{"position":[[156,7]]},"74":{"position":[[14,8]]},"94":{"position":[[102,7]]},"96":{"position":[[203,10]]},"118":{"position":[[177,7]]},"124":{"position":[[192,7]]},"132":{"position":[[12,8]]},"140":{"position":[[12,8]]},"144":{"position":[[12,8]]},"162":{"position":[[158,8]]},"174":{"position":[[237,8]]},"184":{"position":[[0,7]]},"192":{"position":[[248,10],[5474,11]]},"270":{"position":[[297,10]]},"274":{"position":[[55,8],[1229,10]]},"278":{"position":[[304,7]]},"289":{"position":[[566,7]]},"291":{"position":[[78,8]]},"330":{"position":[[978,9]]},"338":{"position":[[27,8],[382,10]]}}}],["monitoring/webhook",{"_index":245,"t":{"17":{"position":[[3424,19]]}}}],["monitorwhenl",{"_index":715,"t":{"78":{"position":[[1639,16]]},"80":{"position":[[503,18],[787,18]]}}}],["monitorwhenlisten",{"_index":718,"t":{"78":{"position":[[1698,21]]},"80":{"position":[[528,23],[812,23]]}}}],["mopidi",{"_index":623,"t":{"65":{"position":[[550,6]]},"146":{"position":[[0,6],[197,6],[279,6],[375,6],[741,6],[828,6],[1031,7]]},"148":{"position":[[82,6],[434,6]]},"150":{"position":[[33,6]]},"152":{"position":[[475,8]]},"289":{"position":[[283,6]]}}}],["mopidy.conf",{"_index":1091,"t":{"146":{"position":[[854,12]]}}}],["mopidy.mydomain.com",{"_index":1093,"t":{"146":{"position":[[1100,19]]}}}],["mopidy.mydomain.com:80/mopw",{"_index":1096,"t":{"146":{"position":[[1215,28]]}}}],["more",{"_index":214,"t":{"17":{"position":[[1596,4],[1741,4],[3279,4]]},"74":{"position":[[163,5],[234,5],[516,4],[575,4]]},"84":{"position":[[407,4]]},"88":{"position":[[666,4]]},"98":{"position":[[945,4]]},"162":{"position":[[270,4]]},"174":{"position":[[349,4]]},"188":{"position":[[515,4],[541,4]]},"192":{"position":[[407,4]]},"223":{"position":[[697,4]]},"262":{"position":[[329,4]]},"276":{"position":[[1880,4]]},"280":{"position":[[4,4],[182,4]]},"289":{"position":[[1447,4]]},"291":{"position":[[37,4],[61,4]]},"315":{"position":[[888,4]]},"319":{"position":[[685,4]]},"321":{"position":[[119,4]]},"338":{"position":[[1426,4]]},"352":{"position":[[254,4]]},"356":{"position":[[750,4]]},"369":{"position":[[385,4]]}}}],["mount",{"_index":1142,"t":{"158":{"position":[[916,5]]},"211":{"position":[[135,6]]}}}],["move",{"_index":1589,"t":{"244":{"position":[[342,4],[528,4]]},"268":{"position":[[1837,5],[1927,5],[2027,5],[2110,5]]}}}],["movi",{"_index":1665,"t":{"264":{"position":[[355,7]]}}}],["mozilla/5.0",{"_index":1614,"t":{"250":{"position":[[531,11],[742,11]]}}}],["mpd",{"_index":624,"t":{"65":{"position":[[581,3]]},"154":{"position":[[21,3],[117,3]]},"156":{"position":[[578,5]]},"160":{"position":[[449,5],[677,5]]},"289":{"position":[[290,3]]}}}],["mpd_password",{"_index":1125,"t":{"156":{"position":[[108,12]]}}}],["mpd_url",{"_index":1123,"t":{"156":{"position":[[82,7]]}}}],["mpri",{"_index":1131,"t":{"158":{"position":[[0,5],[211,6],[357,6],[376,5],[575,5],[877,6]]},"160":{"position":[[102,5],[724,7]]},"289":{"position":[[316,5]]}}}],["mpris_blacklist",{"_index":1164,"t":{"160":{"position":[[167,15]]}}}],["mpris_en",{"_index":1163,"t":{"160":{"position":[[82,12]]}}}],["mpris_whitelist",{"_index":1165,"t":{"160":{"position":[[244,15]]}}}],["ms",{"_index":163,"t":{"17":{"position":[[144,2],[314,2],[414,2],[515,2],[569,2],[1133,2],[2780,2],[3597,2]]},"23":{"position":[[277,2]]},"25":{"position":[[556,2]]},"37":{"position":[[996,2]]},"68":{"position":[[187,2],[270,2],[329,2],[571,2]]},"76":{"position":[[329,2]]},"78":{"position":[[358,2],[424,2],[727,2],[1749,2]]},"88":{"position":[[456,2]]},"94":{"position":[[1570,2],[1917,2],[2499,2],[3262,2]]},"154":{"position":[[0,2]]},"168":{"position":[[404,2]]},"170":{"position":[[112,2],[436,2],[1353,2]]},"180":{"position":[[222,2],[394,2],[447,2]]},"192":{"position":[[1212,2],[2375,3],[2429,2],[2810,2],[3094,2],[3240,2],[3379,2],[4241,3],[4563,2],[4686,2],[5348,2]]},"198":{"position":[[0,2],[681,3],[1450,2],[1848,2]]},"202":{"position":[[665,2]]},"206":{"position":[[0,2]]},"221":{"position":[[148,2],[1461,2],[1557,2],[1952,2],[2171,2]]},"223":{"position":[[46,2]]},"239":{"position":[[40,2]]},"244":{"position":[[268,2]]},"246":{"position":[[77,2]]},"254":{"position":[[591,2],[1148,2],[1249,2]]},"262":{"position":[[480,3]]},"264":{"position":[[102,2]]},"266":{"position":[[58,2]]},"268":{"position":[[4,2],[1682,2],[2482,2]]},"291":{"position":[[75,2],[158,2]]},"313":{"position":[[976,2],[1072,2],[2146,2],[2591,2]]},"321":{"position":[[82,2]]},"323":{"position":[[87,2]]},"325":{"position":[[841,2],[898,2],[1065,3]]},"328":{"position":[[87,2]]},"330":{"position":[[937,2]]},"332":{"position":[[5,2]]},"338":{"position":[[24,2],[211,2],[2854,2]]},"341":{"position":[[57,2],[558,2]]},"343":{"position":[[610,2],[1001,2],[1289,2],[1328,2]]},"358":{"position":[[0,2]]}}}],["ms'",{"_index":1191,"t":{"170":{"position":[[350,4]]},"192":{"position":[[426,4],[3311,4]]},"206":{"position":[[205,4]]},"254":{"position":[[524,4]]},"268":{"position":[[1297,4]]}}}],["msdata",{"_index":1760,"t":{"278":{"position":[[221,8]]}}}],["msdata/dock",{"_index":1725,"t":{"272":{"position":[[107,15]]},"274":{"position":[[276,15],[873,15]]},"276":{"position":[[801,15],[1181,15],[2087,15]]}}}],["mtg8v6xa2nc",{"_index":1695,"t":{"268":{"position":[[1864,13]]}}}],["multi",{"_index":18,"t":{"7":{"position":[[3,5]]},"9":{"position":[[0,5],[223,5]]},"11":{"position":[[152,5],[285,5]]},"17":{"position":[[803,5]]},"21":{"position":[[21,5]]},"25":{"position":[[0,5]]},"31":{"position":[[0,5]]},"33":{"position":[[693,5],[1046,5],[1449,5]]},"37":{"position":[[591,5],[821,5],[1526,5],[1597,5]]},"45":{"position":[[159,5]]},"49":{"position":[[689,5]]},"54":{"position":[[21,5],[342,5]]},"56":{"position":[[771,5],[1595,5]]},"61":{"position":[[21,5],[342,5]]},"65":{"position":[[29,5]]},"68":{"position":[[27,5],[389,5],[442,5],[889,5],[1228,5]]},"72":{"position":[[509,5]]},"76":{"position":[[139,5],[238,5]]},"78":{"position":[[181,5],[1503,5]]},"84":{"position":[[78,5]]},"90":{"position":[[287,5],[515,5],[815,5],[1562,5]]},"94":{"position":[[82,5],[890,5]]},"98":{"position":[[61,5],[269,5],[547,5],[739,5],[992,5],[1069,5]]},"100":{"position":[[13,5]]},"102":{"position":[[254,5],[691,5]]},"106":{"position":[[13,5]]},"108":{"position":[[250,5],[683,5]]},"114":{"position":[[1355,5]]},"118":{"position":[[20,5]]},"120":{"position":[[48,5]]},"124":{"position":[[20,5]]},"126":{"position":[[48,5],[342,5],[861,5],[995,5]]},"128":{"position":[[186,5]]},"132":{"position":[[258,5]]},"134":{"position":[[106,5]]},"138":{"position":[[100,5]]},"140":{"position":[[217,5]]},"142":{"position":[[101,5]]},"144":{"position":[[486,5]]},"146":{"position":[[145,5],[607,5],[992,5]]},"148":{"position":[[162,5],[398,5]]},"150":{"position":[[146,5],[237,5],[505,5]]},"158":{"position":[[218,5],[405,5],[479,5],[696,5],[831,5],[1702,5]]},"166":{"position":[[290,5]]},"168":{"position":[[121,5],[1380,5]]},"170":{"position":[[485,5],[1016,5],[1326,5],[1539,5],[1694,5],[1797,5],[1923,5],[2132,5],[2234,5],[2304,5],[2520,5],[2826,5],[2930,5],[3205,5],[3471,5],[3996,5],[4240,5]]},"178":{"position":[[290,5]]},"184":{"position":[[247,5],[329,5]]},"192":{"position":[[4945,5]]},"198":{"position":[[1078,5],[2038,5]]},"202":{"position":[[517,5]]},"211":{"position":[[0,5]]},"213":{"position":[[316,5]]},"229":{"position":[[30,5],[216,5]]},"231":{"position":[[72,5],[119,5],[190,5]]},"233":{"position":[[51,5]]},"250":{"position":[[49,5],[148,5],[179,5],[212,5],[1216,5],[1271,5],[1470,5],[1745,5],[1858,5],[2041,5],[2197,5]]},"252":{"position":[[166,5],[293,5]]},"254":{"position":[[21,5],[927,5],[1216,5]]},"260":{"position":[[150,5],[275,5]]},"262":{"position":[[277,5]]},"268":{"position":[[40,5],[289,5],[414,5],[552,5]]},"270":{"position":[[44,5],[281,5],[355,5],[418,5]]},"272":{"position":[[24,5],[145,5],[208,5]]},"274":{"position":[[39,5],[1066,5],[1192,5]]},"276":{"position":[[43,5],[776,5],[1156,5],[1758,5],[2062,5],[2234,5],[2305,5]]},"278":{"position":[[28,5],[264,5],[606,5]]},"280":{"position":[[150,5]]},"283":{"position":[[11,5],[457,5]]},"285":{"position":[[92,5],[128,5],[162,5],[247,5]]},"287":{"position":[[132,5]]},"289":{"position":[[1318,5],[1946,5]]},"313":{"position":[[366,5],[429,5],[1473,5],[1946,5],[2391,5],[2919,5]]},"315":{"position":[[380,5],[711,5],[947,5],[1010,5]]},"317":{"position":[[47,5]]},"319":{"position":[[137,5]]},"338":{"position":[[3078,5]]},"345":{"position":[[0,5],[182,5]]},"347":{"position":[[663,5]]},"350":{"position":[[50,5]]},"352":{"position":[[1319,5]]},"369":{"position":[[45,5]]}}}],["multipl",{"_index":80,"t":{"9":{"position":[[699,8]]},"17":{"position":[[1653,8],[3336,8]]},"33":{"position":[[277,8]]},"120":{"position":[[220,8]]},"126":{"position":[[530,8]]},"188":{"position":[[163,8],[558,9]]},"198":{"position":[[1461,8]]},"204":{"position":[[22,8]]},"289":{"position":[[744,8]]},"356":{"position":[[1852,8]]}}}],["multipli",{"_index":999,"t":{"114":{"position":[[401,10],[429,10],[776,10],[804,10]]}}}],["music",{"_index":425,"t":{"35":{"position":[[678,6]]},"49":{"position":[[97,5]]},"63":{"position":[[88,5],[160,6]]},"65":{"position":[[585,6],[951,5]]},"94":{"position":[[134,5],[429,5],[2666,6]]},"98":{"position":[[830,6]]},"112":{"position":[[247,5],[916,5]]},"146":{"position":[[21,5],[56,5]]},"158":{"position":[[53,5]]},"162":{"position":[[72,5]]},"168":{"position":[[1466,6]]},"184":{"position":[[39,5]]},"192":{"position":[[30,5],[188,5],[4978,5],[5384,5]]},"264":{"position":[[95,6]]},"268":{"position":[[1060,6],[2887,5]]},"289":{"position":[[29,5],[294,6],[474,5],[1912,5]]},"293":{"position":[[58,5],[128,5],[151,5],[212,6]]},"295":{"position":[[77,5]]},"338":{"position":[[81,5],[115,5],[183,5],[273,5]]},"343":{"position":[[362,5],[512,5],[572,5]]},"347":{"position":[[132,5]]}}}],["musicbrainz'",{"_index":548,"t":{"49":{"position":[[1626,13]]}}}],["musiccast",{"_index":630,"t":{"65":{"position":[[909,9]]},"184":{"position":[[8,9],[99,9],[386,9],[414,9]]},"186":{"position":[[100,9],[439,11]]},"289":{"position":[[456,9]]}}}],["musictrack",{"_index":865,"t":{"94":{"position":[[1962,11]]}}}],["musicvideo",{"_index":937,"t":{"98":{"position":[[2576,16],[3197,13]]}}}],["musikcub",{"_index":626,"t":{"65":{"position":[[631,9]]},"180":{"position":[[16,9],[166,9]]},"182":{"position":[[212,12],[249,12],[462,12],[499,12]]},"289":{"position":[[338,9]]},"332":{"position":[[684,12],[1274,12]]}}}],["musl",{"_index":844,"t":{"94":{"position":[[1112,4]]}}}],["mutli",{"_index":1393,"t":{"198":{"position":[[1203,5],[2140,5]]}}}],["mvp",{"_index":2052,"t":{"343":{"position":[[2084,3]]}}}],["my\",\"optional\",\"tag",{"_index":401,"t":{"33":{"position":[[1841,24]]}}}],["my.domain.local:80",{"_index":319,"t":{"23":{"position":[[854,18]]}}}],["my.domain.local:9000",{"_index":321,"t":{"23":{"position":[[913,20]]}}}],["my.domain.tld/api",{"_index":1341,"t":{"192":{"position":[[3561,20]]}}}],["my_password",{"_index":1129,"t":{"156":{"position":[[245,13],[511,13]]},"182":{"position":[[314,13],[564,13]]}}}],["my_token",{"_index":1877,"t":{"325":{"position":[[399,8]]}}}],["myapprisefriendlynameforlog",{"_index":397,"t":{"33":{"position":[[1583,31]]}}}],["mybasicsourc",{"_index":2058,"t":{"343":{"position":[[2822,13]]}}}],["mybasicsourcesourc",{"_index":2064,"t":{"343":{"position":[[3494,19]]}}}],["mycast",{"_index":868,"t":{"94":{"position":[[2301,9],[2833,9],[3492,9]]},"96":{"position":[[676,9],[919,9]]}}}],["myconfig",{"_index":270,"t":{"17":{"position":[[4453,13],[4716,11]]},"219":{"position":[[166,8]]},"319":{"position":[[964,13],[1163,11]]}}}],["mydeez",{"_index":782,"t":{"88":{"position":[[303,11]]}}}],["mydomain.com",{"_index":571,"t":{"54":{"position":[[235,12]]},"61":{"position":[[235,12]]}}}],["mydomain.com:80/jriverreverse/mcws/v1",{"_index":955,"t":{"102":{"position":[[917,38],[956,38]]}}}],["mydomain.com:80/kodireverse/jsonrpc",{"_index":969,"t":{"108":{"position":[[898,35]]}}}],["mygotifyfriendlynameforlog",{"_index":387,"t":{"33":{"position":[[849,30]]}}}],["mygotifytoken",{"_index":279,"t":{"17":{"position":[[4906,16]]}}}],["myici",{"_index":810,"t":{"90":{"position":[[1314,8]]},"92":{"position":[[138,8],[335,8]]}}}],["myjellyfin",{"_index":662,"t":{"72":{"position":[[207,13]]},"98":{"position":[[2160,13],[2798,13]]}}}],["myjellyfinsourc",{"_index":1865,"t":{"319":{"position":[[986,19]]}}}],["myjriv",{"_index":960,"t":{"104":{"position":[[340,11],[575,11]]}}}],["mykodi",{"_index":975,"t":{"110":{"position":[[265,9],[522,9]]}}}],["mylastfm",{"_index":2090,"t":{"352":{"position":[[391,11]]},"354":{"position":[[561,11],[1574,11]]},"363":{"position":[[32,11]]}}}],["mylastfmcli",{"_index":90,"t":{"9":{"position":[[1039,17]]},"13":{"position":[[458,17],[808,17]]}}}],["mylastfmsourc",{"_index":1083,"t":{"142":{"position":[[298,17],[648,17]]}}}],["mylfm",{"_index":1059,"t":{"122":{"position":[[345,8],[531,8]]}}}],["mylz",{"_index":1078,"t":{"130":{"position":[[423,7],[610,7]]}}}],["mymaloja",{"_index":489,"t":{"43":{"position":[[202,9],[463,9]]},"138":{"position":[[296,9],[557,9]]}}}],["mymaloja\",\"koitoa\",\"listenbrainzfoo",{"_index":663,"t":{"72":{"position":[[232,39]]}}}],["mymalojakey",{"_index":273,"t":{"17":{"position":[[4781,13]]},"43":{"position":[[315,13],[576,13]]},"138":{"position":[[409,13],[670,13]]},"319":{"position":[[1228,13]]}}}],["mymopidi",{"_index":1116,"t":{"152":{"position":[[92,11],[345,11]]}}}],["mympd",{"_index":1127,"t":{"156":{"position":[[185,8],[451,8]]}}}],["mymultiscrobblertop",{"_index":288,"t":{"17":{"position":[[5074,24]]}}}],["myntfyfriendlynameforlog",{"_index":285,"t":{"17":{"position":[[5004,28]]},"33":{"position":[[1200,28]]}}}],["myoptionalslug",{"_index":1437,"t":{"208":{"position":[[425,17],[646,17]]}}}],["mypassword",{"_index":977,"t":{"110":{"position":[[375,12],[632,12]]}}}],["myplexapi",{"_index":1185,"t":{"168":{"position":[[2282,12],[2830,12]]}}}],["myrockskycli",{"_index":579,"t":{"54":{"position":[[713,18],[979,18]]}}}],["myrockskysourc",{"_index":1169,"t":{"166":{"position":[[488,18],[754,18]]}}}],["mysite.com",{"_index":2113,"t":{"354":{"position":[[2232,14],[2274,14]]}}}],["myslug",{"_index":1060,"t":{"122":{"position":[[388,8],[574,8]]}}}],["mysourc",{"_index":1503,"t":{"221":{"position":[[1377,8]]}}}],["myspotifi",{"_index":237,"t":{"17":{"position":[[2556,12]]},"172":{"position":[[259,12],[611,12]]}}}],["myspotify1\",\"myjellyfin2",{"_index":101,"t":{"9":{"position":[[1333,28]]}}}],["myspotifysourc",{"_index":271,"t":{"17":{"position":[[4475,18]]}}}],["mysubson",{"_index":1277,"t":{"190":{"position":[[226,13],[518,13]]}}}],["myteal",{"_index":599,"t":{"61":{"position":[[704,9],[955,9]]}}}],["mytealsourc",{"_index":1248,"t":{"178":{"position":[[487,15],[744,15]]}}}],["myth",{"_index":2135,"t":{"358":{"position":[[318,10]]}}}],["mytoken",{"_index":1037,"t":{"114":{"position":[[3146,9]]},"116":{"position":[[1546,10]]},"130":{"position":[[466,9],[653,9]]}}}],["myurl",{"_index":1754,"t":{"276":{"position":[[1837,5]]}}}],["myuser",{"_index":976,"t":{"110":{"position":[[353,9],[610,9]]},"276":{"position":[[1630,7]]},"319":{"position":[[1106,8]]}}}],["myuser.bsky.soci",{"_index":576,"t":{"54":{"position":[[579,18]]},"61":{"position":[[582,18]]}}}],["myvlc",{"_index":1397,"t":{"198":{"position":[[1601,8],[2365,8]]},"200":{"position":[[186,8],[403,8]]}}}],["mywebscrobbl",{"_index":1436,"t":{"208":{"position":[[389,17],[610,17]]}}}],["myyamaha",{"_index":1266,"t":{"186":{"position":[[172,11],[367,11]]}}}],["myytm",{"_index":1300,"t":{"192":{"position":[[1069,8],[2616,8],[3845,8]]},"268":{"position":[[1553,8],[1740,6],[2388,8]]}}}],["myytm.log",{"_index":1714,"t":{"268":{"position":[[2547,9]]}}}],["myytmus",{"_index":1370,"t":{"194":{"position":[[399,12],[756,12]]}}}],["n+1",{"_index":1674,"t":{"268":{"position":[[788,3]]}}}],["name",{"_index":12,"t":{"4":{"position":[[0,4]]},"9":{"position":[[829,5],[862,4],[1031,7],[1199,5]]},"13":{"position":[[450,7],[800,7]]},"17":{"position":[[2312,5],[2548,7],[4467,7],[4708,7],[4818,7],[4996,7]]},"25":{"position":[[551,4]]},"33":{"position":[[418,7],[522,7],[581,7],[841,7],[1192,7],[1575,7]]},"35":{"position":[[356,4]]},"39":{"position":[[251,7],[542,7]]},"43":{"position":[[194,7],[455,7]]},"47":{"position":[[273,7],[584,7]]},"54":{"position":[[705,7],[971,7]]},"61":{"position":[[696,7],[947,7]]},"65":{"position":[[0,4]]},"72":{"position":[[126,4],[199,7],[493,5],[549,4],[620,4]]},"80":{"position":[[107,4],[139,4],[417,7],[496,6],[701,7],[780,6]]},"84":{"position":[[500,4],[729,5]]},"86":{"position":[[157,7],[460,7]]},"88":{"position":[[295,7]]},"90":{"position":[[1306,7]]},"92":{"position":[[130,7],[327,7]]},"94":{"position":[[2258,6],[2293,7],[2372,4],[2760,5],[2825,7],[3484,7]]},"96":{"position":[[668,7],[911,7]]},"98":{"position":[[264,4],[2152,7],[2790,7]]},"104":{"position":[[332,7],[567,7]]},"110":{"position":[[257,7],[514,7]]},"114":{"position":[[944,7],[1200,7],[1446,7],[1702,7],[1872,7],[2168,7],[2404,7],[2672,7],[2842,7],[3072,7],[3196,7],[3314,7],[3432,7],[3550,7]]},"116":{"position":[[108,7],[243,7],[378,7],[549,7],[703,7],[889,7],[1046,7],[1234,7],[1472,7],[1590,7],[1690,7],[1790,7],[1916,7]]},"122":{"position":[[337,7],[523,7]]},"130":{"position":[[415,7],[602,7]]},"134":{"position":[[311,7],[622,7]]},"138":{"position":[[288,7],[549,7]]},"142":{"position":[[290,7],[640,7]]},"144":{"position":[[670,7],[961,7]]},"150":{"position":[[124,5],[218,4]]},"152":{"position":[[84,7],[337,7]]},"156":{"position":[[177,7],[443,7]]},"160":{"position":[[217,5],[295,5],[383,7],[611,7]]},"166":{"position":[[480,7],[746,7]]},"168":{"position":[[2274,7],[2822,7]]},"172":{"position":[[251,7],[603,7]]},"178":{"position":[[479,7],[736,7]]},"182":{"position":[[241,7],[491,7]]},"186":{"position":[[164,7],[359,7]]},"190":{"position":[[218,7],[510,7]]},"192":{"position":[[1061,7],[2224,4],[2608,7],[3837,7]]},"194":{"position":[[391,7],[748,7]]},"198":{"position":[[1338,5],[1593,7],[2103,4],[2183,4],[2357,7]]},"200":{"position":[[178,7],[395,7]]},"202":{"position":[[218,5]]},"204":{"position":[[183,7],[267,7]]},"206":{"position":[[89,4]]},"208":{"position":[[381,7],[602,7]]},"219":{"position":[[177,5]]},"250":{"position":[[1607,4],[1848,4],[1985,4]]},"268":{"position":[[1545,7],[2380,7],[2533,5],[2579,6]]},"272":{"position":[[286,4]]},"285":{"position":[[157,4]]},"293":{"position":[[282,5],[379,5]]},"295":{"position":[[203,5]]},"313":{"position":[[507,4]]},"315":{"position":[[375,4],[706,4],[1088,4]]},"319":{"position":[[978,7],[1155,7]]},"330":{"position":[[733,5]]},"332":{"position":[[895,5]]},"352":{"position":[[383,7]]},"354":{"position":[[553,7],[1566,7]]},"358":{"position":[[310,7]]},"363":{"position":[[24,7]]}}}],["name=[nameofsourc",{"_index":1344,"t":{"192":{"position":[[3660,19]]}}}],["name}.json",{"_index":1504,"t":{"221":{"position":[[1386,13]]}}}],["nativ",{"_index":1855,"t":{"319":{"position":[[424,6]]}}}],["navidrom",{"_index":1065,"t":{"126":{"position":[[386,10]]},"188":{"position":[[139,10],[378,11]]},"289":{"position":[[413,10]]},"293":{"position":[[219,10]]}}}],["navig",{"_index":429,"t":{"37":{"position":[[208,8]]},"41":{"position":[[325,8]]},"51":{"position":[[108,8],[182,8]]},"58":{"position":[[65,8]]},"98":{"position":[[108,8]]},"170":{"position":[[691,8],[913,8],[3311,8]]},"192":{"position":[[2117,8]]},"198":{"position":[[535,10]]},"276":{"position":[[509,8],[1379,8]]}}}],["nd_listenbrainz_baseurl",{"_index":1067,"t":{"126":{"position":[[431,24]]}}}],["nearli",{"_index":1661,"t":{"262":{"position":[[599,6]]}}}],["necessari",{"_index":907,"t":{"98":{"position":[[683,9]]},"170":{"position":[[1002,9]]},"192":{"position":[[1822,10]]},"221":{"position":[[1719,10]]}}}],["necessarili",{"_index":2011,"t":{"338":{"position":[[1327,11]]}}}],["need",{"_index":216,"t":{"17":{"position":[[1727,4],[3410,4]]},"23":{"position":[[414,4]]},"29":{"position":[[14,4]]},"45":{"position":[[244,4]]},"49":{"position":[[1780,4]]},"51":{"position":[[9,4]]},"78":{"position":[[611,4]]},"96":{"position":[[222,7]]},"100":{"position":[[262,4]]},"106":{"position":[[251,4]]},"114":{"position":[[1297,4],[2029,4]]},"120":{"position":[[206,4]]},"126":{"position":[[516,4]]},"132":{"position":[[343,4]]},"160":{"position":[[143,4]]},"168":{"position":[[379,4]]},"192":{"position":[[531,5],[3299,4],[4178,4],[4639,4]]},"208":{"position":[[130,7]]},"221":{"position":[[960,6],[2327,5]]},"250":{"position":[[1805,4]]},"268":{"position":[[112,5]]},"289":{"position":[[1452,4]]},"293":{"position":[[297,6]]},"295":{"position":[[218,6]]},"303":{"position":[[234,4]]},"323":{"position":[[138,4]]},"332":{"position":[[104,4]]},"338":{"position":[[680,4],[1339,4]]},"343":{"position":[[1391,4]]},"347":{"position":[[8,4]]},"352":{"position":[[1344,4]]}}}],["network",{"_index":516,"t":{"49":{"position":[[522,8]]},"56":{"position":[[604,8]]},"61":{"position":[[635,7]]},"65":{"position":[[5,10]]},"68":{"position":[[203,7]]},"100":{"position":[[161,7],[185,7]]},"102":{"position":[[485,7]]},"158":{"position":[[1362,7],[1418,7]]},"202":{"position":[[633,7]]},"221":{"position":[[366,7],[901,9],[2779,7]]},"250":{"position":[[1331,8],[2296,7]]},"289":{"position":[[875,7]]},"313":{"position":[[1221,10],[1282,7],[1346,10],[1999,11],[2037,7],[2569,7]]}}}],["network/usb/cd",{"_index":1258,"t":{"184":{"position":[[55,14]]}}}],["network/your",{"_index":582,"t":{"56":{"position":[[196,12]]},"174":{"position":[[168,12]]}}}],["never",{"_index":41,"t":{"7":{"position":[[332,5]]},"76":{"position":[[781,5]]},"78":{"position":[[1446,5]]}}}],["new",{"_index":433,"t":{"37":{"position":[[269,3]]},"41":{"position":[[448,3]]},"58":{"position":[[176,3]]},"68":{"position":[[1309,3]]},"98":{"position":[[247,3]]},"140":{"position":[[68,3]]},"170":{"position":[[4048,3]]},"192":{"position":[[1333,3],[1842,3],[1952,3]]},"215":{"position":[[418,3]]},"229":{"position":[[9,3]]},"231":{"position":[[162,3]]},"250":{"position":[[473,3]]},"254":{"position":[[1193,3]]},"268":{"position":[[357,3],[705,3],[815,3],[2985,3]]},"272":{"position":[[9,3]]},"276":{"position":[[635,3],[1440,3]]},"283":{"position":[[196,3]]},"291":{"position":[[124,3]]},"323":{"position":[[73,3]]},"325":{"position":[[34,3]]},"328":{"position":[[17,3],[138,3],[1160,3],[1897,3]]},"330":{"position":[[18,3]]},"332":{"position":[[1066,3],[1338,3]]},"336":{"position":[[581,3],[948,3],[1101,3],[1230,3],[2588,3]]},"338":{"position":[[2840,3]]},"341":{"position":[[1070,3]]},"343":{"position":[[726,3],[1039,4],[1841,3],[2688,3],[2911,5]]},"350":{"position":[[192,3],[232,3]]},"354":{"position":[[1678,5],[1773,3]]}}}],["newli",{"_index":1328,"t":{"192":{"position":[[2452,5]]},"338":{"position":[[763,7]]}}}],["newplay",{"_index":2029,"t":{"338":{"position":[[2760,8],[2775,8],[2971,9]]}}}],["newsourc",{"_index":1945,"t":{"332":{"position":[[1219,10],[1320,9]]}}}],["next",{"_index":330,"t":{"25":{"position":[[197,5]]},"76":{"position":[[438,4]]},"78":{"position":[[1122,4]]},"315":{"position":[[277,4]]},"336":{"position":[[0,4]]},"343":{"position":[[1880,4]]}}}],["nginx/traefik/caddi",{"_index":1206,"t":{"170":{"position":[[1578,21]]}}}],["nice",{"_index":2075,"t":{"347":{"position":[[564,4]]}}}],["nightmar",{"_index":1701,"t":{"268":{"position":[[1968,10]]}}}],["node",{"_index":1447,"t":{"213":{"position":[[21,4],[165,4],[365,4]]},"237":{"position":[[48,4]]},"244":{"position":[[125,4],[305,4],[483,4]]},"319":{"position":[[188,4],[498,4],[572,6],[856,4]]}}}],["node/npm",{"_index":1138,"t":{"158":{"position":[[545,9]]}}}],["node@^4.9.6",{"_index":1862,"t":{"319":{"position":[[649,12]]}}}],["node_modul",{"_index":1584,"t":{"244":{"position":[[178,12]]}}}],["nodej",{"_index":860,"t":{"94":{"position":[[1513,6]]},"289":{"position":[[1185,6]]}}}],["noisi",{"_index":354,"t":{"27":{"position":[[267,5]]}}}],["non",{"_index":572,"t":{"54":{"position":[[252,3]]},"61":{"position":[[252,3]]},"146":{"position":[[85,3]]},"262":{"position":[[349,3]]},"343":{"position":[[1135,3]]}}}],["none",{"_index":706,"t":{"78":{"position":[[531,4]]},"102":{"position":[[758,5]]},"108":{"position":[[748,5]]},"146":{"position":[[1059,5]]},"250":{"position":[[845,8]]}}}],["normal",{"_index":1297,"t":{"192":{"position":[[942,6]]},"336":{"position":[[487,6],[1341,11]]},"354":{"position":[[1974,8]]},"356":{"position":[[143,6]]}}}],["normalizeprotocol",{"_index":1973,"t":{"336":{"position":[[543,18]]}}}],["normalizeurl(v",{"_index":1971,"t":{"336":{"position":[[496,17]]}}}],["note",{"_index":438,"t":{"37":{"position":[[416,4]]},"51":{"position":[[48,4]]},"56":{"position":[[1320,4]]},"72":{"position":[[294,4],[423,4]]},"76":{"position":[[0,4]]},"90":{"position":[[73,4]]},"94":{"position":[[150,4],[388,4]]},"96":{"position":[[13,4]]},"126":{"position":[[697,4]]},"134":{"position":[[29,4]]},"138":{"position":[[29,4]]},"142":{"position":[[29,4]]},"144":{"position":[[416,4]]},"146":{"position":[[260,4]]},"166":{"position":[[218,4]]},"168":{"position":[[30,4]]},"178":{"position":[[218,4]]},"202":{"position":[[291,4]]},"206":{"position":[[182,4]]},"270":{"position":[[406,4]]},"276":{"position":[[1587,4]]},"283":{"position":[[380,6]]},"343":{"position":[[3888,4]]},"354":{"position":[[764,4]]}}}],["notic",{"_index":2086,"t":{"352":{"position":[[7,6]]}}}],["notif",{"_index":375,"t":{"33":{"position":[[21,12],[745,12],[1098,12]]},"158":{"position":[[123,12]]},"215":{"position":[[360,12]]},"280":{"position":[[314,12]]}}}],["now",{"_index":13,"t":{"4":{"position":[[5,3]]},"9":{"position":[[119,3],[146,3],[260,3],[283,3],[466,3],[936,3],[1238,3],[1305,3]]},"78":{"position":[[272,3]]},"192":{"position":[[2383,3],[2799,4]]},"198":{"position":[[657,3]]},"231":{"position":[[286,3]]},"246":{"position":[[69,3]]},"278":{"position":[[283,3],[565,3]]},"289":{"position":[[676,3]]},"328":{"position":[[1876,3],[2140,3]]},"334":{"position":[[0,3]]},"338":{"position":[[3063,3]]}}}],["now_playing=fals",{"_index":63,"t":{"9":{"position":[[372,17]]}}}],["now_playing=tru",{"_index":62,"t":{"9":{"position":[[352,16]]}}}],["nowplay",{"_index":94,"t":{"9":{"position":[[1136,15],[1317,15]]}}}],["npm",{"_index":196,"t":{"17":{"position":[[1119,3]]},"213":{"position":[[412,3],[424,3]]},"215":{"position":[[387,3]]},"244":{"position":[[320,3],[498,3]]},"319":{"position":[[201,3],[213,3],[237,3],[251,3],[1251,3]]}}}],["npm:@rollup/wasm",{"_index":1861,"t":{"319":{"position":[[631,17]]}}}],["ntfi",{"_index":284,"t":{"17":{"position":[[4988,7]]},"33":{"position":[[614,7],[998,5],[1184,7]]},"289":{"position":[[628,5]]}}}],["ntfyconfig",{"_index":389,"t":{"33":{"position":[[1035,10]]}}}],["ntfyserveron",{"_index":383,"t":{"33":{"position":[[589,16]]}}}],["null",{"_index":1487,"t":{"221":{"position":[[491,4]]},"336":{"position":[[615,4],[857,4],[1004,4]]}}}],["number",{"_index":27,"t":{"7":{"position":[[142,6]]},"102":{"position":[[423,6]]},"108":{"position":[[417,6]]},"146":{"position":[[794,6]]},"338":{"position":[[2131,6]]},"347":{"position":[[96,6]]}}}],["nvm",{"_index":1451,"t":{"213":{"position":[[137,3],[332,3]]},"319":{"position":[[153,3]]}}}],["o",{"_index":1573,"t":{"242":{"position":[[263,1],[302,1]]},"268":{"position":[[2079,1]]}}}],["oauth",{"_index":1287,"t":{"192":{"position":[[557,5],[1369,5],[1549,5],[1893,5],[2170,6],[2893,5],[3174,5],[3786,5]]},"194":{"position":[[159,5],[218,5],[284,5]]},"254":{"position":[[409,6],[427,5]]}}}],["obj",{"_index":1957,"t":{"334":{"position":[[407,5],[750,4]]}}}],["object",{"_index":1476,"t":{"219":{"position":[[197,6],[214,6]]},"341":{"position":[[939,6]]},"354":{"position":[[36,6],[307,8],[1365,6]]},"356":{"position":[[273,6],[497,6],[565,6],[654,6],[731,6],[836,7],[2022,6]]},"358":{"position":[[87,6]]}}}],["object.values(cp).every(x",{"_index":1939,"t":{"332":{"position":[[809,27]]}}}],["obtain",{"_index":562,"t":{"51":{"position":[[230,6]]},"54":{"position":[[622,8]]},"192":{"position":[[665,6]]}}}],["occasion",{"_index":1773,"t":{"283":{"position":[[218,12]]}}}],["occur",{"_index":77,"t":{"9":{"position":[[631,5]]},"221":{"position":[[2815,8]]},"268":{"position":[[371,6],[914,5],[2682,9],[3259,8]]},"341":{"position":[[1087,8]]},"358":{"position":[[59,6]]}}}],["off",{"_index":786,"t":{"88":{"position":[[450,5]]}}}],["offici",{"_index":490,"t":{"45":{"position":[[311,8]]},"132":{"position":[[410,8]]},"254":{"position":[[768,8]]},"260":{"position":[[189,8]]}}}],["offlin",{"_index":1570,"t":{"242":{"position":[[64,7]]}}}],["ogg",{"_index":813,"t":{"90":{"position":[[1405,6],[1619,4]]}}}],["ok",{"_index":406,"t":{"35":{"position":[[128,2]]},"268":{"position":[[758,4]]},"343":{"position":[[2997,2]]}}}],["old",{"_index":1317,"t":{"192":{"position":[[1922,3]]}}}],["omit",{"_index":665,"t":{"72":{"position":[[341,7]]},"114":{"position":[[2192,8],[2428,8]]},"116":{"position":[[35,4]]},"293":{"position":[[424,7]]}}}],["on",{"_index":162,"t":{"17":{"position":[[123,3],[278,3],[580,3],[604,3],[1606,3],[2804,3],[3289,3]]},"23":{"position":[[211,3]]},"29":{"position":[[330,3]]},"58":{"position":[[61,3]]},"74":{"position":[[45,3]]},"84":{"position":[[229,3]]},"114":{"position":[[1302,3]]},"170":{"position":[[1224,3]]},"188":{"position":[[196,3],[457,4]]},"192":{"position":[[510,3],[2059,3]]},"198":{"position":[[1493,3]]},"260":{"position":[[71,3]]},"289":{"position":[[1667,3]]},"291":{"position":[[30,3],[54,3]]},"313":{"position":[[2626,3]]},"328":{"position":[[1069,3]]},"369":{"position":[[172,3],[216,3],[559,3],[624,4]]}}}],["onc",{"_index":848,"t":{"94":{"position":[[1200,4]]},"192":{"position":[[4537,4]]}}}],["one/mi",{"_index":2142,"t":{"369":{"position":[[459,6]]}}}],["onlin",{"_index":726,"t":{"80":{"position":[[224,6]]}}}],["open",{"_index":332,"t":{"25":{"position":[[237,4]]},"68":{"position":[[509,4]]},"84":{"position":[[331,4],[599,4]]},"94":{"position":[[262,4]]},"198":{"position":[[86,4]]},"202":{"position":[[44,4]]},"215":{"position":[[298,4]]},"221":{"position":[[1880,4]]},"233":{"position":[[0,4]]},"250":{"position":[[2267,5],[2369,4]]},"289":{"position":[[1493,4]]}}}],["oper",{"_index":1132,"t":{"158":{"position":[[76,9],[335,9]]},"217":{"position":[[385,8],[490,8]]},"219":{"position":[[278,7]]},"221":{"position":[[988,8]]},"338":{"position":[[46,7],[160,7]]}}}],["oppos",{"_index":1606,"t":{"250":{"position":[[168,7]]},"325":{"position":[[965,7]]}}}],["option",{"_index":93,"t":{"9":{"position":[[1102,10]]},"17":{"position":[[3539,7],[3585,7],[5111,11],[5135,11]]},"19":{"position":[[43,7]]},"21":{"position":[[6,7]]},"27":{"position":[[51,8],[72,7]]},"33":{"position":[[709,10],[1062,10],[1306,11],[1330,11]]},"74":{"position":[[341,7],[416,10]]},"76":{"position":[[633,7],[701,10]]},"78":{"position":[[1298,7],[1366,10]]},"88":{"position":[[215,6],[360,10],[421,6]]},"90":{"position":[[1488,7]]},"94":{"position":[[3543,10]]},"98":{"position":[[2334,8],[2619,10],[3239,10]]},"100":{"position":[[144,7]]},"102":{"position":[[493,8]]},"114":{"position":[[69,9],[207,9],[371,9],[582,9],[746,9],[1076,10]]},"122":{"position":[[231,10]]},"130":{"position":[[311,10]]},"156":{"position":[[262,10],[528,10]]},"160":{"position":[[158,8]]},"168":{"position":[[2605,10],[3153,10]]},"188":{"position":[[615,8]]},"192":{"position":[[1146,10],[2736,10],[4039,10]]},"194":{"position":[[593,10],[950,10]]},"198":{"position":[[782,8],[1646,10],[2410,10]]},"213":{"position":[[342,9]]},"219":{"position":[[204,9],[350,7],[362,8]]},"223":{"position":[[283,8]]},"268":{"position":[[1505,7],[1579,10],[2214,11],[2351,7],[2414,10]]},"278":{"position":[[500,7]]},"280":{"position":[[25,7]]},"293":{"position":[[355,8]]},"303":{"position":[[75,7]]},"313":{"position":[[1236,9],[2286,8],[2445,11],[2994,12]]},"315":{"position":[[893,7]]},"319":{"position":[[163,9]]},"332":{"position":[[247,7]]},"334":{"position":[[631,8]]},"341":{"position":[[681,9]]},"352":{"position":[[464,10]]},"354":{"position":[[634,10],[1593,10]]},"358":{"position":[[348,10]]},"363":{"position":[[51,10]]}}}],["order",{"_index":99,"t":{"9":{"position":[[1253,5]]},"31":{"position":[[76,5]]},"94":{"position":[[116,5]]},"100":{"position":[[3,5]]},"106":{"position":[[3,5]]},"170":{"position":[[2014,5]]},"180":{"position":[[3,5]]},"192":{"position":[[2067,5]]},"211":{"position":[[339,5]]},"221":{"position":[[306,5],[2401,5]]},"268":{"position":[[30,5]]},"313":{"position":[[2108,5]]},"338":{"position":[[289,5]]}}}],["origin",{"_index":1324,"t":{"192":{"position":[[2282,7]]},"268":{"position":[[1845,10],[1935,10],[2035,10],[2118,10]]},"358":{"position":[[151,8],[241,8]]}}}],["os",{"_index":836,"t":{"94":{"position":[[965,2]]}}}],["os/contain",{"_index":170,"t":{"17":{"position":[[367,12]]}}}],["other",{"_index":1793,"t":{"289":{"position":[[1742,6]]}}}],["otherwis",{"_index":668,"t":{"72":{"position":[[601,10]]},"78":{"position":[[601,9]]},"313":{"position":[[1711,10]]},"334":{"position":[[505,9]]}}}],["out",{"_index":992,"t":{"112":{"position":[[739,4]]},"126":{"position":[[937,3]]},"192":{"position":[[1988,3]]},"257":{"position":[[405,3]]},"280":{"position":[[342,3]]}}}],["output",{"_index":350,"t":{"27":{"position":[[111,6],[163,6]]},"94":{"position":[[3121,6],[3328,6]]},"198":{"position":[[2292,6]]},"221":{"position":[[642,6]]},"250":{"position":[[1557,6]]},"262":{"position":[[516,6]]},"303":{"position":[[121,6]]},"356":{"position":[[2029,6]]},"358":{"position":[[15,6],[144,6],[185,6],[234,6],[275,6]]}}}],["outsid",{"_index":107,"t":{"11":{"position":[[125,7]]},"45":{"position":[[132,7]]},"118":{"position":[[61,7]]},"124":{"position":[[61,7]]},"132":{"position":[[231,7]]},"140":{"position":[[190,7]]},"170":{"position":[[2946,8]]},"202":{"position":[[614,7]]}}}],["outta",{"_index":1704,"t":{"268":{"position":[[2012,5]]}}}],["over",{"_index":1152,"t":{"158":{"position":[[1355,4]]},"289":{"position":[[1232,4]]},"338":{"position":[[1238,4]]}}}],["overrid",{"_index":310,"t":{"23":{"position":[[312,8]]},"27":{"position":[[27,8]]},"98":{"position":[[885,8]]},"114":{"position":[[1116,8]]},"160":{"position":[[324,9]]},"168":{"position":[[536,10],[1517,8]]},"319":{"position":[[452,9],[540,12]]}}}],["overridden",{"_index":996,"t":{"114":{"position":[[136,10],[300,10],[488,10],[675,10],[863,10]]}}}],["overview",{"_index":587,"t":{"56":{"position":[[1497,8]]}}}],["overwrit",{"_index":1577,"t":{"242":{"position":[[318,9]]}}}],["own",{"_index":1834,"t":{"313":{"position":[[3239,4]]}}}],["p",{"_index":1221,"t":{"170":{"position":[[2744,1]]},"229":{"position":[[77,1]]},"313":{"position":[[2311,1]]},"315":{"position":[[631,1],[786,1]]}}}],["packag",{"_index":847,"t":{"94":{"position":[[1159,7]]},"244":{"position":[[324,7]]},"313":{"position":[[114,8]]}}}],["package.json",{"_index":1856,"t":{"319":{"position":[[465,12]]}}}],["page",{"_index":492,"t":{"45":{"position":[[345,4]]},"80":{"position":[[164,4]]},"132":{"position":[[445,4]]},"170":{"position":[[3074,4],[4121,5]]},"283":{"position":[[419,4]]},"303":{"position":[[9,4],[348,6],[372,4]]},"313":{"position":[[134,4],[190,4]]},"343":{"position":[[3192,5]]}}}],["pandora",{"_index":893,"t":{"96":{"position":[[539,7]]},"146":{"position":[[114,8]]},"262":{"position":[[147,8]]}}}],["pane",{"_index":760,"t":{"84":{"position":[[558,5]]}}}],["panel",{"_index":478,"t":{"41":{"position":[[347,5]]},"276":{"position":[[531,5]]}}}],["param",{"_index":418,"t":{"35":{"position":[[341,6]]}}}],["pars",{"_index":164,"t":{"17":{"position":[[152,5],[322,5],[1141,5],[2788,5]]},"90":{"position":[[0,5],[279,7],[323,5],[1161,7]]},"94":{"position":[[515,6]]},"198":{"position":[[993,8],[2061,7]]},"221":{"position":[[849,5],[1079,5]]},"257":{"position":[[124,7],[271,6]]},"336":{"position":[[235,5],[1251,5],[2553,5]]},"354":{"position":[[2034,7]]}}}],["parseconnectionurl(v",{"_index":1970,"t":{"336":{"position":[[447,23]]}}}],["parsedconfig",{"_index":1934,"t":{"332":{"position":[[472,14],[1158,13]]}}}],["part",{"_index":946,"t":{"102":{"position":[[226,4],[324,4]]},"108":{"position":[[222,4],[320,4]]},"146":{"position":[[579,4],[677,4]]},"192":{"position":[[3465,5]]},"217":{"position":[[187,6],[402,5]]},"289":{"position":[[1816,5]]},"354":{"position":[[63,4]]},"356":{"position":[[284,5],[771,5],[831,4]]}}}],["parti",{"_index":541,"t":{"49":{"position":[[1416,5]]},"88":{"position":[[6,5]]},"112":{"position":[[693,5]]},"114":{"position":[[2367,9]]},"116":{"position":[[1001,9]]},"268":{"position":[[2763,5]]}}}],["partyplex",{"_index":1025,"t":{"114":{"position":[[2176,12]]},"116":{"position":[[897,12]]}}}],["pass",{"_index":849,"t":{"94":{"position":[[1231,4]]},"338":{"position":[[1067,4],[1347,4]]},"356":{"position":[[337,6],[368,4],[1968,5]]}}}],["password",{"_index":290,"t":{"17":{"position":[[5123,11]]},"33":{"position":[[1318,11]]},"41":{"position":[[261,8]]},"58":{"position":[[107,9],[157,9],[184,8]]},"61":{"position":[[647,8]]},"98":{"position":[[504,9],[1481,9],[1516,8],[1589,9]]},"100":{"position":[[295,8]]},"104":{"position":[[275,8],[417,11],[652,11]]},"106":{"position":[[228,8]]},"110":{"position":[[206,8],[363,11],[620,11]]},"114":{"position":[[2749,11]]},"156":{"position":[[233,11],[499,11]]},"180":{"position":[[121,8]]},"182":{"position":[[302,11],[552,11]]},"188":{"position":[[261,8]]},"190":{"position":[[327,11],[619,11]]},"198":{"position":[[392,8],[410,8],[640,9]]},"200":{"position":[[230,11],[447,11]]},"221":{"position":[[1303,8]]},"276":{"position":[[445,8]]}}}],["past",{"_index":1655,"t":{"257":{"position":[[346,5]]}}}],["path",{"_index":445,"t":{"37":{"position":[[737,4],[885,4]]},"78":{"position":[[454,4],[583,4],[625,4],[655,4]]},"120":{"position":[[163,4]]},"126":{"position":[[194,4],[288,4]]},"184":{"position":[[400,5],[520,4]]},"242":{"position":[[378,4]]}}}],["path/to/flatpak/build/dir",{"_index":1575,"t":{"242":{"position":[[268,26]]}}}],["pattern",{"_index":1787,"t":{"289":{"position":[[1120,8]]},"347":{"position":[[519,7]]},"352":{"position":[[25,7]]}}}],["pattern/replac",{"_index":2097,"t":{"354":{"position":[[195,20]]}}}],["paus",{"_index":648,"t":{"68":{"position":[[760,8]]},"338":{"position":[[2106,11]]}}}],["payload",{"_index":423,"t":{"35":{"position":[[483,7]]},"94":{"position":[[3296,7]]},"262":{"position":[[431,7]]}}}],["pd",{"_index":511,"t":{"49":{"position":[[344,3],[1097,3]]},"56":{"position":[[225,3],[426,3],[1171,3]]},"162":{"position":[[197,3]]},"164":{"position":[[89,3]]},"174":{"position":[[37,4],[197,3],[276,3]]},"176":{"position":[[89,3]]}}}],["pds/repositori",{"_index":519,"t":{"49":{"position":[[574,14]]},"56":{"position":[[656,14]]}}}],["peac",{"_index":1790,"t":{"289":{"position":[[1512,5]]}}}],["percent",{"_index":262,"t":{"17":{"position":[[4234,10]]},"74":{"position":[[126,7],[521,10]]},"90":{"position":[[879,7]]}}}],["perform",{"_index":698,"t":{"78":{"position":[[260,11]]}}}],["period",{"_index":1678,"t":{"268":{"position":[[1033,7]]}}}],["permiss",{"_index":1145,"t":{"158":{"position":[[1041,11]]},"192":{"position":[[1406,10],[4843,11]]},"278":{"position":[[117,12]]},"313":{"position":[[3211,11],[3305,10]]}}}],["persist",{"_index":38,"t":{"7":{"position":[[296,7]]},"25":{"position":[[62,10]]},"33":{"position":[[1488,10],[1802,12]]},"49":{"position":[[1334,10],[1762,10]]},"198":{"position":[[459,7]]},"289":{"position":[[976,12]]}}}],["person",{"_index":174,"t":{"17":{"position":[[499,6]]},"49":{"position":[[319,8],[348,9]]},"56":{"position":[[229,9],[401,8],[430,9]]},"112":{"position":[[78,6],[118,6]]},"170":{"position":[[3562,8]]},"174":{"position":[[201,9]]},"289":{"position":[[1551,8]]},"325":{"position":[[683,8]]}}}],["pgid",{"_index":1144,"t":{"158":{"position":[[995,4]]},"313":{"position":[[3392,5]]}}}],["pgid=1000",{"_index":1819,"t":{"313":{"position":[[794,9]]},"315":{"position":[[618,11],[745,11],[1383,9]]}}}],["phone",{"_index":1717,"t":{"268":{"position":[[2852,8]]}}}],["phone/comput",{"_index":819,"t":{"94":{"position":[[62,14]]}}}],["phrase",{"_index":869,"t":{"94":{"position":[[2399,7],[2922,7]]},"361":{"position":[[12,6]]}}}],["phu7",{"_index":603,"t":{"61":{"position":[[805,4],[1056,4]]},"178":{"position":[[594,4],[851,4]]}}}],["pi",{"_index":1810,"t":{"313":{"position":[[76,3]]}}}],["pickup",{"_index":1557,"t":{"231":{"position":[[179,6]]}}}],["pin",{"_index":1776,"t":{"283":{"position":[[488,6]]}}}],["ping",{"_index":1509,"t":{"221":{"position":[[1924,4]]}}}],["pip/pipx",{"_index":1563,"t":{"237":{"position":[[86,8]]}}}],["place",{"_index":22,"t":{"7":{"position":[[70,6]]},"252":{"position":[[554,5]]}}}],["plain",{"_index":412,"t":{"35":{"position":[[210,5]]},"354":{"position":[[1855,5]]}}}],["platform",{"_index":503,"t":{"49":{"position":[[126,8],[1495,9]]},"63":{"position":[[104,9]]},"162":{"position":[[101,8]]},"223":{"position":[[404,8]]},"262":{"position":[[114,8],[303,9]]},"268":{"position":[[2719,8],[2800,8]]},"289":{"position":[[1286,8],[1475,8]]},"313":{"position":[[6,8]]},"319":{"position":[[346,8]]}}}],["platformid",{"_index":2026,"t":{"338":{"position":[[2333,11]]}}}],["play",{"_index":6,"t":{"2":{"position":[[92,6]]},"4":{"position":[[9,7]]},"9":{"position":[[41,7],[123,7],[150,7],[264,7],[287,7],[470,7],[594,8],[940,7],[1242,7],[1309,7]]},"49":{"position":[[722,5]]},"56":{"position":[[804,5]]},"63":{"position":[[73,7]]},"68":{"position":[[608,6],[778,8],[850,7]]},"70":{"position":[[34,7],[91,7]]},"78":{"position":[[276,7]]},"90":{"position":[[887,7]]},"94":{"position":[[144,5],[1727,7]]},"112":{"position":[[31,5],[542,5],[608,5],[713,4],[753,5],[890,5]]},"114":{"position":[[2079,4]]},"146":{"position":[[48,7],[181,6]]},"148":{"position":[[67,6]]},"158":{"position":[[283,6]]},"170":{"position":[[232,4],[307,4],[451,7]]},"184":{"position":[[45,6]]},"198":{"position":[[1020,6]]},"223":{"position":[[246,6],[332,4],[391,4],[464,6]]},"260":{"position":[[113,5]]},"264":{"position":[[21,7]]},"268":{"position":[[2899,7]]},"278":{"position":[[569,7]]},"289":{"position":[[680,7],[1406,4],[1435,4],[1870,5]]},"291":{"position":[[139,6]]},"293":{"position":[[72,7]]},"295":{"position":[[92,6]]},"325":{"position":[[455,6],[501,7]]},"328":{"position":[[2144,7]]},"338":{"position":[[108,6],[408,8],[771,7],[834,5],[1464,6],[1854,6],[1899,7],[1985,9],[2080,9],[2212,5],[2370,5],[2680,6],[2844,5]]},"341":{"position":[[166,6],[934,4],[1119,8]]},"343":{"position":[[1845,5],[2041,6],[2258,7],[2321,4],[2441,4],[2473,6],[3218,4],[3296,5],[3361,4],[3638,5],[3751,4],[3996,4]]},"350":{"position":[[114,4],[202,4],[236,4],[258,5],[292,4],[379,5],[396,5],[442,4],[521,5],[569,4],[613,4],[673,4],[760,4]]},"352":{"position":[[621,4],[686,4],[732,4],[781,4],[859,4],[924,4],[1016,4]]},"354":{"position":[[75,4],[1684,4],[1777,4]]},"356":{"position":[[492,4],[560,4],[649,4],[726,4],[2017,4]]},"358":{"position":[[160,4],[250,4]]},"361":{"position":[[55,4]]}}}],["play/scrobbl",{"_index":2108,"t":{"354":{"position":[[1754,14]]}}}],["playdat",{"_index":1966,"t":{"334":{"position":[[906,9]]}}}],["playedat",{"_index":1964,"t":{"334":{"position":[[736,9],[873,8]]}}}],["player",{"_index":73,"t":{"9":{"position":[[572,6],[669,6],[730,7]]},"63":{"position":[[94,6]]},"65":{"position":[[592,6]]},"68":{"position":[[747,6],[787,6]]},"94":{"position":[[3265,6]]},"158":{"position":[[59,7],[303,6]]},"160":{"position":[[210,6],[287,7]]},"170":{"position":[[36,6]]},"274":{"position":[[31,7]]},"289":{"position":[[301,6]]},"293":{"position":[[116,7],[134,7]]},"325":{"position":[[66,6],[85,7],[98,6],[566,6],[593,6],[635,6],[709,6],[924,6]]},"328":{"position":[[47,6],[622,6],[650,6],[791,6],[2120,6]]},"330":{"position":[[775,6]]},"336":{"position":[[1984,6],[2511,6]]},"338":{"position":[[87,6],[279,6],[1085,6],[1194,6],[1356,6],[2200,6],[2277,6],[2437,6],[2456,6],[2580,6],[2642,6]]},"343":{"position":[[578,7]]}}}],["player'",{"_index":1952,"t":{"334":{"position":[[92,8],[587,8]]}}}],["playerdata",{"_index":2025,"t":{"338":{"position":[[2301,11]]}}}],["playerst",{"_index":2022,"t":{"338":{"position":[[2064,12]]}}}],["playerstatedata",{"_index":2015,"t":{"338":{"position":[[1591,16],[2313,15]]}}}],["playlist/queu",{"_index":1189,"t":{"170":{"position":[[92,14]]}}}],["playobject",{"_index":1526,"t":{"223":{"position":[[4,10],[523,10],[648,10],[736,10]]},"328":{"position":[[2043,10]]},"334":{"position":[[127,11],[294,10],[671,10]]},"338":{"position":[[742,11],[2496,10]]},"341":{"position":[[375,11]]},"343":{"position":[[2878,11],[3055,12],[3556,11],[3588,12]]}}}],["plays.push(playerdata",{"_index":2028,"t":{"338":{"position":[[2520,23]]}}}],["playtransform",{"_index":2091,"t":{"352":{"position":[[477,16]]},"354":{"position":[[647,16],[1003,13],[1110,13],[1139,16],[1606,16]]},"356":{"position":[[1089,16],[1536,16],[2101,16]]},"358":{"position":[[73,13],[361,16]]},"361":{"position":[[102,16]]},"363":{"position":[[64,16]]},"365":{"position":[[42,16]]},"367":{"position":[[42,16]]},"369":{"position":[[698,16]]}}}],["pleas",{"_index":822,"t":{"94":{"position":[[255,6],[3084,6],[3281,6]]},"170":{"position":[[3528,6]]},"198":{"position":[[2248,6]]},"268":{"position":[[1361,6]]}}}],["plex",{"_index":179,"t":{"17":{"position":[[618,4],[1535,4],[3218,4]]},"63":{"position":[[146,5]]},"65":{"position":[[665,4]]},"112":{"position":[[494,4],[565,4],[681,4]]},"114":{"position":[[1694,7],[1864,7],[2160,7]]},"168":{"position":[[10,4],[79,4],[225,4],[295,4],[341,4],[765,4],[921,4],[967,4],[1085,4],[1233,4],[1257,4],[1430,4],[1656,4],[1713,4],[1804,5],[1886,5],[3255,6]]},"289":{"position":[[348,4]]},"293":{"position":[[198,5]]},"343":{"position":[[266,5],[1177,5]]}}}],["plex.json",{"_index":233,"t":{"17":{"position":[[2470,9]]}}}],["plex_devices_allow",{"_index":1181,"t":{"168":{"position":[[1917,18]]}}}],["plex_devices_block",{"_index":1182,"t":{"168":{"position":[[1988,18]]}}}],["plex_libraries_allow",{"_index":1176,"t":{"168":{"position":[[1491,20],[2069,20]]}}}],["plex_libraries_block",{"_index":1183,"t":{"168":{"position":[[2151,20]]}}}],["plex_local_us",{"_index":1171,"t":{"168":{"position":[[270,17],[1145,18]]}}}],["plex_token",{"_index":1179,"t":{"168":{"position":[[1694,10]]}}}],["plex_url",{"_index":1177,"t":{"168":{"position":[[1628,8]]}}}],["plex_users_allow",{"_index":1173,"t":{"168":{"position":[[453,16],[723,16],[885,17],[1179,17],[1744,16]]}}}],["plex_users_block",{"_index":1180,"t":{"168":{"position":[[1826,16]]}}}],["plexmediaserver/1.24.5.5173",{"_index":1628,"t":{"250":{"position":[[1054,27]]}}}],["plkex",{"_index":1631,"t":{"250":{"position":[[1111,6]]}}}],["pm195xpv98cdpk0qw47fiior8akatax5dblbf",{"_index":435,"t":{"37":{"position":[[362,37]]},"276":{"position":[[1533,37]]}}}],["podcast",{"_index":988,"t":{"112":{"position":[[623,7]]},"114":{"position":[[2089,10],[2132,12]]},"116":{"position":[[869,12]]}}}],["point",{"_index":1305,"t":{"192":{"position":[[1277,5]]},"352":{"position":[[131,7]]}}}],["poll",{"_index":377,"t":{"33":{"position":[[85,7],[108,7],[129,7]]},"35":{"position":[[660,4],[728,7]]},"114":{"position":[[102,7]]},"192":{"position":[[4601,7]]},"325":{"position":[[877,7]]},"330":{"position":[[418,7]]},"338":{"position":[[645,7]]},"343":{"position":[[31,7],[407,7],[1139,7],[1233,7],[2148,7]]}}}],["pollingopt",{"_index":1885,"t":{"328":{"position":[[236,14],[522,14]]}}}],["pong",{"_index":1510,"t":{"221":{"position":[[1929,4]]}}}],["pop!_o",{"_index":1537,"t":{"227":{"position":[[107,8]]}}}],["popular",{"_index":1064,"t":{"126":{"position":[[373,7]]},"227":{"position":[[59,7]]}}}],["popup",{"_index":1329,"t":{"192":{"position":[[2473,5]]}}}],["port",{"_index":308,"t":{"23":{"position":[[296,4],[345,4]]},"25":{"position":[[1129,4]]},"68":{"position":[[514,4]]},"94":{"position":[[950,4]]},"102":{"position":[[418,4]]},"108":{"position":[[412,4],[449,4]]},"146":{"position":[[789,4],[895,4]]},"154":{"position":[[183,4]]},"158":{"position":[[1391,4],[1534,5],[1589,4]]},"168":{"position":[[50,4]]},"180":{"position":[[268,4],[374,4]]},"182":{"position":[[116,4]]},"198":{"position":[[711,5],[841,4],[978,5]]},"250":{"position":[[2165,4],[2254,4],[2354,4]]},"270":{"position":[[156,4]]},"272":{"position":[[487,6]]},"313":{"position":[[1424,6],[1451,4],[1468,4],[2083,4],[2223,4],[2414,6]]},"315":{"position":[[139,4],[1423,6]]},"319":{"position":[[1301,4],[1343,4]]},"325":{"position":[[668,4]]},"328":{"position":[[775,4]]}}}],["ports/prefix",{"_index":1969,"t":{"336":{"position":[[269,13]]}}}],["posit",{"_index":649,"t":{"68":{"position":[[794,8]]},"78":{"position":[[72,9]]},"325":{"position":[[600,8]]},"338":{"position":[[2118,9],[2170,8],[2414,8]]}}}],["possibl",{"_index":221,"t":{"17":{"position":[[1876,8]]},"158":{"position":[[629,9]]},"170":{"position":[[3640,8]]},"192":{"position":[[1940,8]]},"221":{"position":[[2866,9]]}}}],["post",{"_index":1626,"t":{"250":{"position":[[1010,4]]}}}],["postcompar",{"_index":2093,"t":{"352":{"position":[[547,14],[760,11],[995,11]]},"354":{"position":[[1334,12]]}}}],["potenti",{"_index":1650,"t":{"254":{"position":[[1255,11]]}}}],["pr",{"_index":1558,"t":{"233":{"position":[[7,2]]}}}],["practic",{"_index":2068,"t":{"343":{"position":[[3826,8]]}}}],["pre",{"_index":337,"t":{"25":{"position":[[534,3]]}}}],["precompar",{"_index":2092,"t":{"352":{"position":[[496,13],[601,10],[839,10],[1378,10]]},"354":{"position":[[10,11],[666,13],[1158,13],[1319,10]]},"356":{"position":[[973,10],[1108,13],[1341,10],[1555,13],[2120,13],[2163,10],[2279,10]]},"358":{"position":[[380,13]]},"361":{"position":[[121,13]]},"365":{"position":[[61,13]]},"367":{"position":[[61,13]]},"369":{"position":[[717,13]]}}}],["prefer",{"_index":1375,"t":{"198":{"position":[[110,11]]},"343":{"position":[[309,6]]}}}],["preferences/set",{"_index":1410,"t":{"202":{"position":[[53,20]]}}}],["prefix",{"_index":345,"t":{"25":{"position":[[1149,8]]}}}],["premium",{"_index":740,"t":{"82":{"position":[[271,7]]}}}],["present",{"_index":169,"t":{"17":{"position":[[352,7]]},"25":{"position":[[330,8]]},"90":{"position":[[110,10]]},"215":{"position":[[376,10]]}}}],["presid",{"_index":1692,"t":{"268":{"position":[[1810,9]]}}}],["press",{"_index":750,"t":{"84":{"position":[[318,5],[392,5]]}}}],["pretend",{"_index":1646,"t":{"254":{"position":[[676,7]]}}}],["prevent",{"_index":790,"t":{"88":{"position":[[586,7]]},"148":{"position":[[390,7]]},"150":{"position":[[138,7]]},"343":{"position":[[2485,8],[4048,7]]},"347":{"position":[[633,7]]}}}],["previou",{"_index":1738,"t":{"274":{"position":[[425,8]]},"356":{"position":[[2043,8]]}}}],["previous",{"_index":2005,"t":{"338":{"position":[[810,10],[2889,10]]}}}],["primarili",{"_index":2000,"t":{"338":{"position":[[36,9]]}}}],["print",{"_index":1838,"t":{"313":{"position":[[3487,6],[3507,6]]}}}],["prioriti",{"_index":100,"t":{"9":{"position":[[1282,8]]},"17":{"position":[[4923,13],[5147,13]]},"33":{"position":[[758,8],[944,13],[1111,8],[1342,13]]}}}],["privaci",{"_index":533,"t":{"49":{"position":[[1237,8]]},"56":{"position":[[1311,8]]},"58":{"position":[[129,7]]}}}],["probabl",{"_index":573,"t":{"54":{"position":[[275,8]]},"61":{"position":[[275,8]]}}}],["problem",{"_index":823,"t":{"94":{"position":[[294,8]]},"254":{"position":[[1279,8]]},"280":{"position":[[410,8]]},"313":{"position":[[3316,9]]}}}],["proce",{"_index":1582,"t":{"242":{"position":[[491,7]]}}}],["process",{"_index":1196,"t":{"170":{"position":[[761,7],[2481,7],[4351,7]]},"338":{"position":[[2572,7]]},"352":{"position":[[169,10],[1306,9],[1412,9]]},"356":{"position":[[390,10]]}}}],["process.env.cool_token",{"_index":1938,"t":{"332":{"position":[[781,22]]}}}],["process.env.cool_url",{"_index":1937,"t":{"332":{"position":[[752,21]]}}}],["processrecentplay",{"_index":2008,"t":{"338":{"position":[[1001,18],[1134,21],[1272,18]]},"343":{"position":[[1815,19]]}}}],["profil",{"_index":491,"t":{"45":{"position":[[337,7]]},"47":{"position":[[119,7]]},"56":{"position":[[62,7]]},"132":{"position":[[437,7]]},"289":{"position":[[2066,7]]}}}],["project",{"_index":222,"t":{"17":{"position":[[2021,8],[3660,7]]},"126":{"position":[[962,7]]},"192":{"position":[[1846,7]]},"223":{"position":[[772,7]]},"242":{"position":[[170,7]]},"244":{"position":[[224,7],[271,7]]},"343":{"position":[[1498,7]]}}}],["project_dir",{"_index":1587,"t":{"244":{"position":[[285,11],[463,11]]}}}],["project_dir/config",{"_index":202,"t":{"17":{"position":[[1293,18]]}}}],["project_dir/config/config.json",{"_index":243,"t":{"17":{"position":[[2953,30]]}}}],["project_dir/flatpak",{"_index":1591,"t":{"244":{"position":[[375,19],[561,19],[761,19]]}}}],["promise<playobject",{"_index":2019,"t":{"338":{"position":[[1824,21]]},"341":{"position":[[715,21]]}}}],["promise<tru",{"_index":1978,"t":{"336":{"position":[[766,12],[1722,12]]}}}],["proper",{"_index":1759,"t":{"278":{"position":[[105,6]]}}}],["properli",{"_index":1286,"t":{"192":{"position":[[463,8]]},"325":{"position":[[298,8]]},"338":{"position":[[668,8]]}}}],["properti",{"_index":84,"t":{"9":{"position":[[867,8]]},"25":{"position":[[383,11]]},"29":{"position":[[357,8]]},"33":{"position":[[267,9]]},"72":{"position":[[65,8],[131,8],[625,8]]},"94":{"position":[[1661,8]]},"114":{"position":[[150,8],[314,8],[502,8],[689,8],[877,8]]},"116":{"position":[[47,8]]},"188":{"position":[[635,8]]},"221":{"position":[[1287,10],[2021,11],[2054,10],[3154,10]]},"328":{"position":[[570,11]]},"336":{"position":[[170,10]]},"354":{"position":[[2305,8]]}}}],["properties/behavior",{"_index":1470,"t":{"217":{"position":[[441,19]]}}}],["protect",{"_index":1977,"t":{"336":{"position":[[731,9],[1685,9]]},"338":{"position":[[1752,9]]},"341":{"position":[[644,9]]}}}],["protocol",{"_index":305,"t":{"23":{"position":[[232,8],[255,8]]},"49":{"position":[[151,8],[198,8]]},"56":{"position":[[280,8]]},"162":{"position":[[126,8]]}}}],["protocol]://[hostname]:[port]/[path",{"_index":944,"t":{"102":{"position":[[138,37]]},"108":{"position":[[136,37]]},"146":{"position":[[493,37]]}}}],["provid",{"_index":143,"t":{"13":{"position":[[400,9]]},"17":{"position":[[2224,8],[3849,8]]},"25":{"position":[[922,11],[1245,11]]},"78":{"position":[[539,9],[686,7]]},"94":{"position":[[440,8]]},"98":{"position":[[1456,7],[1564,7]]},"100":{"position":[[270,7]]},"106":{"position":[[259,7]]},"112":{"position":[[391,8]]},"120":{"position":[[17,8]]},"122":{"position":[[202,8]]},"126":{"position":[[17,8]]},"128":{"position":[[71,8]]},"130":{"position":[[200,8],[260,8]]},"180":{"position":[[382,8],[435,8]]},"184":{"position":[[317,8],[503,7]]},"188":{"position":[[533,7]]},"192":{"position":[[3336,7],[5272,8]]},"242":{"position":[[29,8]]},"268":{"position":[[1320,9],[1388,7],[2586,7],[2614,7],[3213,7]]},"303":{"position":[[136,8]]},"323":{"position":[[19,7]]},"336":{"position":[[191,8]]},"341":{"position":[[107,8]]}}}],["proxi",{"_index":641,"t":{"68":{"position":[[530,6]]},"78":{"position":[[570,5]]},"126":{"position":[[894,5]]},"170":{"position":[[1572,5]]},"184":{"position":[[474,6]]},"202":{"position":[[703,5]]}}}],["public",{"_index":530,"t":{"49":{"position":[[1065,6],[1104,7],[1144,6]]},"56":{"position":[[1178,7],[1218,6],[1378,6]]},"80":{"position":[[157,6]]}}}],["publicli",{"_index":1418,"t":{"202":{"position":[[555,8]]}}}],["publish",{"_index":1830,"t":{"313":{"position":[[2278,7]]}}}],["puid",{"_index":1143,"t":{"158":{"position":[[986,4]]},"313":{"position":[[3383,4]]}}}],["puid=1000",{"_index":1817,"t":{"313":{"position":[[695,9]]},"315":{"position":[[603,11],[730,11],[1371,9]]}}}],["pull",{"_index":514,"t":{"49":{"position":[[467,5],[1020,6]]},"56":{"position":[[549,5],[1098,6]]},"285":{"position":[[35,4],[279,4]]},"287":{"position":[[84,7],[115,4]]}}}],["purpos",{"_index":328,"t":{"25":{"position":[[51,7]]}}}],["push",{"_index":374,"t":{"33":{"position":[[14,4]]},"338":{"position":[[2481,4]]}}}],["put",{"_index":2101,"t":{"354":{"position":[[512,7]]}}}],["pwd)/config:/config",{"_index":1828,"t":{"313":{"position":[[1848,23]]},"315":{"position":[[801,23]]}}}],["python",{"_index":1561,"t":{"237":{"position":[[73,6]]}}}],["qualiti",{"_index":801,"t":{"90":{"position":[[383,7]]}}}],["queri",{"_index":417,"t":{"35":{"position":[[335,5]]},"192":{"position":[[3687,5]]}}}],["querystrings/data",{"_index":1233,"t":{"170":{"position":[[3583,17]]}}}],["queu",{"_index":329,"t":{"25":{"position":[[73,6]]},"289":{"position":[[911,7]]}}}],["queue",{"_index":23,"t":{"7":{"position":[[97,5]]},"170":{"position":[[211,5]]},"268":{"position":[[3048,8]]}}}],["quick",{"_index":1789,"t":{"289":{"position":[[1192,5]]},"297":{"position":[[8,5]]},"315":{"position":[[12,5]]}}}],["raspberri",{"_index":1809,"t":{"313":{"position":[[66,9]]}}}],["raw",{"_index":589,"t":{"56":{"position":[[1551,3]]},"94":{"position":[[3117,3]]},"198":{"position":[[1163,3]]},"262":{"position":[[550,3]]}}}],["re",{"_index":103,"t":{"11":{"position":[[27,2]]},"37":{"position":[[26,2]]},"45":{"position":[[27,2]]},"49":{"position":[[26,2]]},"56":{"position":[[26,2]]},"118":{"position":[[189,2]]},"124":{"position":[[204,2]]},"132":{"position":[[72,2]]},"140":{"position":[[55,2]]},"144":{"position":[[65,2]]},"162":{"position":[[210,2]]},"174":{"position":[[289,2]]},"192":{"position":[[4647,2]]},"221":{"position":[[2846,2]]},"254":{"position":[[1132,2]]},"268":{"position":[[1162,3]]}}}],["re)authent",{"_index":1243,"t":{"170":{"position":[[4296,16]]},"192":{"position":[[4270,16]]},"254":{"position":[[497,16]]},"274":{"position":[[1142,16]]}}}],["reach",{"_index":1338,"t":{"192":{"position":[[3084,5]]},"252":{"position":[[474,5]]}}}],["reachabl",{"_index":1634,"t":{"250":{"position":[[1877,9]]}}}],["read",{"_index":528,"t":{"49":{"position":[[998,4],[1151,5]]},"56":{"position":[[1076,4],[1225,5]]},"221":{"position":[[386,7],[1317,4],[3230,4]]},"325":{"position":[[857,4]]},"332":{"position":[[18,5]]},"336":{"position":[[1889,4]]}}}],["readi",{"_index":1382,"t":{"198":{"position":[[661,5]]}}}],["readm",{"_index":1818,"t":{"313":{"position":[[758,6],[857,6]]}}}],["real",{"_index":646,"t":{"68":{"position":[[705,4],[924,4]]},"126":{"position":[[778,4]]},"278":{"position":[[586,4]]},"334":{"position":[[433,4]]}}}],["reason",{"_index":1491,"t":{"221":{"position":[[711,6]]},"343":{"position":[[3873,6]]},"347":{"position":[[106,8]]}}}],["reauthent",{"_index":1525,"t":{"221":{"position":[[3313,14]]},"254":{"position":[[370,14]]}}}],["recap",{"_index":2078,"t":{"350":{"position":[[13,5]]}}}],["receiv",{"_index":871,"t":{"94":{"position":[[2457,10],[3044,10]]},"223":{"position":[[562,8]]},"250":{"position":[[449,8],[814,8],[1001,8]]},"262":{"position":[[73,8]]},"343":{"position":[[215,8],[1627,8],[1787,8]]},"350":{"position":[[558,8]]},"352":{"position":[[648,8],[886,8],[1427,7]]}}}],["recent",{"_index":1800,"t":{"303":{"position":[[31,6]]},"325":{"position":[[446,8]]},"341":{"position":[[1110,8]]},"343":{"position":[[762,8],[4019,9]]}}}],["recentlyplayedopt",{"_index":2018,"t":{"338":{"position":[[1795,21]]},"341":{"position":[[691,23]]}}}],["reciev",{"_index":1219,"t":{"170":{"position":[[2717,9]]}}}],["recogn",{"_index":1621,"t":{"250":{"position":[[942,10]]},"260":{"position":[[103,9]]}}}],["recommend",{"_index":829,"t":{"94":{"position":[[590,11]]},"98":{"position":[[353,11]]},"192":{"position":[[826,11]]},"202":{"position":[[768,13]]},"242":{"position":[[130,9]]},"283":{"position":[[393,11]]},"313":{"position":[[1538,11]]}}}],["recov",{"_index":1518,"t":{"221":{"position":[[2938,7]]}}}],["redi",{"_index":334,"t":{"25":{"position":[[257,6],[1163,8]]}}}],["redirect",{"_index":299,"t":{"23":{"position":[[49,8],[430,8],[486,8],[607,8],[841,8]]},"170":{"position":[[791,8],[843,8],[871,8],[1272,8],[1485,8],[1655,8],[2115,8],[2809,8],[2961,8],[3052,8],[3979,8],[4158,8]]},"192":{"position":[[2307,8],[2941,8],[3033,8],[3210,8],[3362,8],[3442,8],[3750,8],[4132,8]]},"194":{"position":[[267,8]]},"274":{"position":[[594,8],[714,8]]},"313":{"position":[[926,8],[2498,9]]}}}],["redirecturi",{"_index":148,"t":{"13":{"position":[[619,14],[969,14]]},"17":{"position":[[2710,14],[4604,14]]},"23":{"position":[[547,11]]},"114":{"position":[[3627,14]]},"116":{"position":[[1993,14]]},"142":{"position":[[459,14],[809,14]]},"172":{"position":[[413,14],[765,14]]},"192":{"position":[[3963,14]]}}}],["redis://192.168.0.120:6379",{"_index":346,"t":{"25":{"position":[[1179,26],[1281,28]]}}}],["reduc",{"_index":696,"t":{"78":{"position":[[113,6]]},"184":{"position":[[179,6]]}}}],["refer",{"_index":294,"t":{"19":{"position":[[98,9],[156,9]]},"33":{"position":[[649,5],[1004,5],[1404,5]]},"217":{"position":[[28,9],[128,8]]},"223":{"position":[[702,5]]},"264":{"position":[[271,5],[392,5]]},"274":{"position":[[608,5]]},"343":{"position":[[1509,10]]}}}],["refresh",{"_index":983,"t":{"112":{"position":[[429,7]]},"192":{"position":[[5432,11]]},"254":{"position":[[456,7]]}}}],["refreshtoken",{"_index":1014,"t":{"114":{"position":[[1532,15]]},"116":{"position":[[464,15]]}}}],["regardless",{"_index":873,"t":{"94":{"position":[[2551,10],[2954,10]]},"146":{"position":[[220,10]]},"289":{"position":[[1411,10],[1603,10]]},"343":{"position":[[744,10]]}}}],["regex",{"_index":2109,"t":{"354":{"position":[[1959,5]]},"356":{"position":[[1050,5],[1436,5],[1503,5]]},"369":{"position":[[281,5]]}}}],["regist",{"_index":109,"t":{"11":{"position":[[209,8]]},"276":{"position":[[895,8]]}}}],["registr",{"_index":1082,"t":{"140":{"position":[[312,12]]}}}],["regular",{"_index":567,"t":{"54":{"position":[[92,7]]},"61":{"position":[[92,7]]},"90":{"position":[[1182,7]]},"198":{"position":[[1182,7]]},"289":{"position":[[1091,7]]},"338":{"position":[[2488,7]]},"354":{"position":[[1819,7],[1927,7]]}}}],["relat",{"_index":1528,"t":{"223":{"position":[[308,7]]},"272":{"position":[[40,7]]}}}],["relay",{"_index":1156,"t":{"158":{"position":[[1467,5]]}}}],["releas",{"_index":1771,"t":{"283":{"position":[[172,8],[372,7],[542,7]]}}}],["reli",{"_index":827,"t":{"94":{"position":[[405,6],[672,7]]},"254":{"position":[[599,6]]},"262":{"position":[[28,6]]}}}],["reload",{"_index":1413,"t":{"202":{"position":[[244,6]]},"231":{"position":[[41,6]]}}}],["remast",{"_index":2123,"t":{"356":{"position":[[598,18]]}}}],["rememb",{"_index":1345,"t":{"192":{"position":[[3700,8]]},"328":{"position":[[542,8]]}}}],["remot",{"_index":963,"t":{"106":{"position":[[173,6]]},"158":{"position":[[608,6],[647,6],[1275,6]]},"250":{"position":[[477,6]]}}}],["remov",{"_index":737,"t":{"82":{"position":[[133,6]]},"268":{"position":[[1086,8]]},"270":{"position":[[529,6]]},"354":{"position":[[332,6],[877,8],[1902,7],[2123,7]]},"356":{"position":[[1062,6],[1509,6]]},"361":{"position":[[0,7]]}}}],["removetrailingslash",{"_index":1972,"t":{"336":{"position":[[514,21]]}}}],["renam",{"_index":223,"t":{"17":{"position":[[2057,8]]},"244":{"position":[[399,6],[585,6]]}}}],["render",{"_index":515,"t":{"49":{"position":[[502,6],[1050,6]]},"56":{"position":[[584,6],[1128,6]]},"211":{"position":[[348,6]]}}}],["repeat",{"_index":787,"t":{"88":{"position":[[484,8],[608,8]]},"347":{"position":[[167,9],[509,9]]}}}],["replac",{"_index":120,"t":{"11":{"position":[[387,7]]},"170":{"position":[[3153,7]]},"244":{"position":[[653,7]]},"270":{"position":[[583,7]]},"276":{"position":[[1829,7]]},"319":{"position":[[516,11]]},"345":{"position":[[108,9]]},"354":{"position":[[299,7],[448,10],[473,7],[727,10],[2221,10],[2250,7],[2297,7],[2332,9]]},"356":{"position":[[1026,7],[1201,10],[1368,7],[1449,7],[1636,10],[2219,10],[2337,10]]},"365":{"position":[[116,10]]},"367":{"position":[[119,10]]},"369":{"position":[[93,7],[106,7],[294,7],[793,10]]}}}],["repo",{"_index":1814,"t":{"313":{"position":[[285,5]]}}}],["repo=/home/youruser/multi",{"_index":1596,"t":{"244":{"position":[[799,25]]}}}],["report",{"_index":45,"t":{"9":{"position":[[20,6],[272,10],[494,8],[618,9],[779,9],[1231,6],[1295,9]]},"27":{"position":[[217,10]]},"70":{"position":[[13,6]]},"78":{"position":[[49,6]]},"88":{"position":[[65,6]]},"90":{"position":[[791,6]]},"94":{"position":[[1597,6],[1681,8],[1758,6],[1855,6],[1950,8],[2622,7],[2979,8]]},"170":{"position":[[286,6],[439,7]]},"184":{"position":[[127,6]]},"188":{"position":[[184,8]]},"192":{"position":[[472,6],[1447,8]]},"198":{"position":[[1270,8],[1940,10],[1987,9],[2129,10],[2229,9]]},"264":{"position":[[63,9],[147,8]]},"266":{"position":[[7,9]]},"268":{"position":[[1201,9],[1412,7]]},"338":{"position":[[423,8]]}}}],["repositori",{"_index":510,"t":{"49":{"position":[[328,10],[488,10],[736,10],[1036,10]]},"56":{"position":[[209,10],[410,10],[570,10],[818,10],[1114,10]]},"164":{"position":[[93,10]]},"174":{"position":[[181,10]]},"176":{"position":[[93,10]]},"213":{"position":[[190,10]]},"215":{"position":[[5,10],[307,10]]},"287":{"position":[[13,10]]},"313":{"position":[[123,10],[179,10]]},"319":{"position":[[11,10]]}}}],["repres",{"_index":1959,"t":{"334":{"position":[[556,9]]}}}],["request",{"_index":457,"t":{"37":{"position":[[1512,8]]},"68":{"position":[[211,8]]},"84":{"position":[[132,8]]},"114":{"position":[[235,7],[610,7]]},"170":{"position":[[2706,7],[3609,8]]},"221":{"position":[[374,8],[1821,7],[2496,7],[3172,7]]},"250":{"position":[[458,7],[1015,7],[2522,9]]},"254":{"position":[[110,7]]},"276":{"position":[[2220,8]]},"325":{"position":[[907,8]]},"336":{"position":[[1516,7],[2154,7],[2381,7]]},"338":{"position":[[1543,7],[1951,7]]},"341":{"position":[[339,7],[767,7]]}}}],["request.get(`${this.baseurl}/health",{"_index":1993,"t":{"336":{"position":[[1784,38]]}}}],["requir",{"_index":125,"t":{"13":{"position":[[52,9]]},"17":{"position":[[426,7]]},"25":{"position":[[703,9],[1011,9]]},"35":{"position":[[566,7]]},"37":{"position":[[788,9]]},"39":{"position":[[52,9]]},"43":{"position":[[52,9]]},"47":{"position":[[52,9]]},"54":{"position":[[471,9]]},"61":{"position":[[471,9]]},"68":{"position":[[429,7]]},"76":{"position":[[272,7]]},"78":{"position":[[459,8]]},"80":{"position":[[36,9]]},"86":{"position":[[36,9]]},"92":{"position":[[36,9]]},"94":{"position":[[1470,9],[1544,9]]},"96":{"position":[[131,9]]},"98":{"position":[[1234,9]]},"104":{"position":[[52,8]]},"110":{"position":[[52,8]]},"122":{"position":[[52,9],[171,8]]},"126":{"position":[[737,7]]},"128":{"position":[[26,7]]},"130":{"position":[[52,9],[169,8]]},"156":{"position":[[52,9]]},"158":{"position":[[396,8],[598,9],[768,11]]},"160":{"position":[[52,9]]},"168":{"position":[[1598,9]]},"172":{"position":[[52,9]]},"182":{"position":[[52,9]]},"186":{"position":[[52,9]]},"190":{"position":[[52,9]]},"194":{"position":[[52,9]]},"200":{"position":[[52,9]]},"202":{"position":[[399,9]]},"204":{"position":[[117,8]]},"208":{"position":[[52,9]]},"213":{"position":[[12,8]]},"219":{"position":[[250,8],[449,8]]},"221":{"position":[[516,8],[1278,8],[1977,8],[2293,8],[2374,8],[2446,8],[2708,8]]},"223":{"position":[[99,8]]},"237":{"position":[[64,8]]},"283":{"position":[[76,7]]},"313":{"position":[[707,8],[806,8]]},"325":{"position":[[340,7]]},"328":{"position":[[355,8],[2065,8],[2092,8]]},"330":{"position":[[782,8],[848,7]]},"332":{"position":[[1048,10]]},"336":{"position":[[34,8]]}}}],["requiresauth",{"_index":1512,"t":{"221":{"position":[[2125,12]]}}}],["requiresauthinteract",{"_index":1514,"t":{"221":{"position":[[2216,23]]}}}],["reset",{"_index":1672,"t":{"268":{"position":[[568,6]]}}}],["resolut",{"_index":842,"t":{"94":{"position":[[1094,10]]}}}],["resolv",{"_index":1517,"t":{"221":{"position":[[2737,7]]},"254":{"position":[[1267,7]]},"262":{"position":[[620,7]]},"313":{"position":[[1366,7]]}}}],["resp",{"_index":1992,"t":{"336":{"position":[[1771,4],[2368,4]]},"338":{"position":[[1938,4],[2244,5]]},"341":{"position":[[754,4],[987,5]]}}}],["resp.body.vers",{"_index":1995,"t":{"336":{"position":[[2000,22]]}}}],["respect",{"_index":340,"t":{"25":{"position":[[626,10]]},"170":{"position":[[4178,10]]},"219":{"position":[[82,12]]}}}],["respons",{"_index":422,"t":{"35":{"position":[[459,8]]},"68":{"position":[[251,8]]},"336":{"position":[[1894,8]]}}}],["restart",{"_index":40,"t":{"7":{"position":[[312,7]]},"25":{"position":[[105,11]]},"114":{"position":[[110,8]]},"192":{"position":[[4233,7],[4675,10]]},"198":{"position":[[480,7]]},"221":{"position":[[180,10],[1611,7]]},"254":{"position":[[1241,7]]},"272":{"position":[[508,8]]},"287":{"position":[[124,7]]},"313":{"position":[[1514,8]]},"315":{"position":[[1444,8]]}}}],["restart=no",{"_index":1553,"t":{"229":{"position":[[395,10]]}}}],["restrict",{"_index":419,"t":{"35":{"position":[[364,8]]},"158":{"position":[[1399,10]]},"188":{"position":[[678,8]]},"192":{"position":[[4826,11]]}}}],["result",{"_index":1489,"t":{"221":{"position":[[624,6]]}}}],["retri",{"_index":24,"t":{"7":{"position":[[112,7],[207,8],[253,7]]},"33":{"position":[[116,5]]},"114":{"position":[[243,7],[389,5],[412,6],[470,10],[618,7],[764,5],[787,6],[845,10],[1137,7]]},"289":{"position":[[939,6]]}}}],["retriev",{"_index":746,"t":{"84":{"position":[[170,8],[257,8]]},"86":{"position":[[102,9]]},"254":{"position":[[1182,8]]}}}],["retrymultipli",{"_index":267,"t":{"17":{"position":[[4296,18],[4366,18]]},"114":{"position":[[344,18],[719,18]]}}}],["return",{"_index":404,"t":{"35":{"position":[[116,7],[320,6],[468,7],[602,6]]},"68":{"position":[[241,7]]},"221":{"position":[[459,6],[484,6],[525,6],[560,6],[2586,7],[2903,6],[3274,7]]},"262":{"position":[[322,6]]},"325":{"position":[[260,7],[523,7]]},"334":{"position":[[73,8],[109,6],[755,6]]},"336":{"position":[[717,6],[1381,6],[1823,6],[1850,8],[1907,6],[1971,6],[2473,6],[2518,8]]},"338":{"position":[[521,8],[734,7],[1098,8],[2449,6],[2750,6],[2833,6],[2964,6]]},"341":{"position":[[908,8],[993,6]]},"343":{"position":[[429,8],[702,6],[2182,8],[2943,8]]}}}],["revers",{"_index":640,"t":{"68":{"position":[[522,7]]},"78":{"position":[[562,7]]},"126":{"position":[[886,7]]},"170":{"position":[[1564,7]]},"184":{"position":[[466,7]]},"202":{"position":[[695,7]]}}}],["review",{"_index":1764,"t":{"280":{"position":[[91,6]]},"323":{"position":[[229,6]]}}}],["rich",{"_index":543,"t":{"49":{"position":[[1480,4]]}}}],["right",{"_index":434,"t":{"37":{"position":[[342,5]]},"41":{"position":[[367,5]]},"84":{"position":[[774,5]]},"276":{"position":[[551,5],[1513,5]]},"343":{"position":[[71,5]]}}}],["risk",{"_index":739,"t":{"82":{"position":[[219,5]]},"170":{"position":[[3767,4],[3838,4]]}}}],["rm",{"_index":1220,"t":{"170":{"position":[[2740,2]]},"285":{"position":[[125,2]]}}}],["rockski",{"_index":16,"t":{"4":{"position":[[59,7]]},"49":{"position":[[52,7],[69,7],[86,7],[948,8],[1270,7]]},"51":{"position":[[39,8],[75,7],[198,7]]},"54":{"position":[[636,7],[1122,9]]},"65":{"position":[[694,7]]},"162":{"position":[[26,8],[44,7],[61,7],[171,7],[285,7],[315,7]]},"164":{"position":[[37,7]]},"166":{"position":[[8,7],[265,7],[314,7],[418,7],[897,9]]},"289":{"position":[[353,7],[550,7]]}}}],["rocksky'",{"_index":521,"t":{"49":{"position":[[787,9],[845,9],[1345,9]]}}}],["rocksky.app",{"_index":558,"t":{"51":{"position":[[120,11]]}}}],["rocksky_handl",{"_index":575,"t":{"54":{"position":[[501,14]]}}}],["rocksky_key",{"_index":577,"t":{"54":{"position":[[598,11]]}}}],["rollup",{"_index":1853,"t":{"319":{"position":[[265,6],[431,6],[532,7],[621,9]]}}}],["rollup/wasm",{"_index":1857,"t":{"319":{"position":[[485,12]]}}}],["romanian",{"_index":1697,"t":{"268":{"position":[[1889,8]]}}}],["root",{"_index":1586,"t":{"244":{"position":[[279,5]]}}}],["rout",{"_index":1630,"t":{"250":{"position":[[1104,6]]}}}],["router",{"_index":1638,"t":{"250":{"position":[[2328,6]]}}}],["row",{"_index":766,"t":{"84":{"position":[[709,3]]},"268":{"position":[[2961,4]]}}}],["rule",{"_index":2117,"t":{"356":{"position":[[49,5],[1300,4],[1472,4]]}}}],["run",{"_index":171,"t":{"17":{"position":[[391,4],[443,4],[679,3],[1050,10],[1123,3]]},"23":{"position":[[375,7]]},"45":{"position":[[252,3]]},"94":{"position":[[882,7],[1051,7],[1214,7],[1304,3],[3349,7]]},"132":{"position":[[351,3]]},"158":{"position":[[102,3],[498,7],[715,7],[825,3]]},"170":{"position":[[1349,3],[1531,7],[1919,3],[2328,4],[2660,4],[2734,3],[3384,3]]},"213":{"position":[[83,7],[383,7],[428,3]]},"215":{"position":[[253,7],[407,3]]},"227":{"position":[[177,4]]},"229":{"position":[[385,3]]},"231":{"position":[[19,4],[241,3]]},"242":{"position":[[199,3]]},"246":{"position":[[73,3],[106,3]]},"250":{"position":[[1689,7],[2216,7]]},"252":{"position":[[316,7]]},"262":{"position":[[476,3],[533,4]]},"270":{"position":[[31,7]]},"278":{"position":[[15,7],[287,8]]},"285":{"position":[[151,3],[243,3]]},"313":{"position":[[719,7],[818,7],[986,7],[1837,3],[2274,3],[2302,3],[2808,3],[3132,7],[3442,3]]},"315":{"position":[[369,3],[700,3]]},"317":{"position":[[66,3]]},"319":{"position":[[217,3],[241,3],[255,3],[1255,3]]},"325":{"position":[[290,7]]},"336":{"position":[[67,8]]},"356":{"position":[[109,4],[969,3],[1015,3],[1046,3],[1337,3],[1432,3],[1483,3],[1941,3],[2177,3],[2293,3]]}}}],["run/debug",{"_index":1460,"t":{"215":{"position":[[88,9]]}}}],["run/start",{"_index":1492,"t":{"221":{"position":[[759,9]]}}}],["run/user/uid/bus:/run/user/uid/bus:ro",{"_index":1150,"t":{"158":{"position":[[1236,38]]}}}],["runtim",{"_index":1801,"t":{"303":{"position":[[53,7]]}}}],["rv:139.0",{"_index":1617,"t":{"250":{"position":[[563,9],[774,9]]}}}],["rvowkj1xtivmxglr",{"_index":391,"t":{"33":{"position":[[1274,19]]}}}],["rxbcaiyysxm",{"_index":1700,"t":{"268":{"position":[[1954,13]]}}}],["s",{"_index":2126,"t":{"356":{"position":[[1231,6],[1594,7],[1697,8]]},"363":{"position":[[122,16],[169,16]]}}}],["s)et",{"_index":1250,"t":{"180":{"position":[[179,10]]}}}],["s*(?<artist",{"_index":1401,"t":{"198":{"position":[[1774,21]]}}}],["safeti",{"_index":1349,"t":{"192":{"position":[[4410,7]]}}}],["salt",{"_index":1501,"t":{"221":{"position":[[1312,4]]}}}],["same",{"_index":69,"t":{"9":{"position":[[510,4]]},"88":{"position":[[76,4]]},"90":{"position":[[1237,4],[1473,4]]},"102":{"position":[[533,4]]},"108":{"position":[[525,4]]},"128":{"position":[[157,4]]},"140":{"position":[[307,4]]},"158":{"position":[[562,4],[864,4]]},"170":{"position":[[1982,4],[2363,4],[2572,4]]},"180":{"position":[[280,4]]},"192":{"position":[[1308,4],[2346,4],[3283,4],[3499,5]]},"198":{"position":[[921,4]]},"250":{"position":[[1730,4],[1783,4],[1975,4]]},"252":{"position":[[125,4],[331,4]]},"260":{"position":[[176,4]]},"262":{"position":[[192,4]]},"270":{"position":[[235,4],[454,4]]},"278":{"position":[[139,4]]},"285":{"position":[[206,4]]},"313":{"position":[[1001,4],[1270,4]]},"352":{"position":[[1286,4]]}}}],["sampl",{"_index":1848,"t":{"315":{"position":[[871,6]]}}}],["save",{"_index":592,"t":{"58":{"position":[[197,4]]},"170":{"position":[[4038,4]]},"192":{"position":[[2076,5],[2479,4],[4695,5]]},"198":{"position":[[437,4]]},"231":{"position":[[0,4]]},"270":{"position":[[222,5]]}}}],["scagg",{"_index":2138,"t":{"365":{"position":[[132,7]]}}}],["scan",{"_index":1556,"t":{"231":{"position":[[153,4]]}}}],["scenario",{"_index":978,"t":{"112":{"position":[[0,9]]},"158":{"position":[[892,8]]},"170":{"position":[[2048,8]]},"280":{"position":[[213,9]]},"315":{"position":[[84,9]]},"343":{"position":[[15,9]]},"347":{"position":[[492,8]]},"356":{"position":[[1861,9]]},"369":{"position":[[397,10]]}}}],["schema",{"_index":150,"t":{"13":{"position":[[695,6],[1065,6]]},"17":{"position":[[3936,6]]},"33":{"position":[[669,6],[1024,6],[1424,6]]},"39":{"position":[[437,6],[747,6]]},"43":{"position":[[350,6],[631,6]]},"47":{"position":[[479,6],[816,6]]},"54":{"position":[[866,6],[1153,6]]},"61":{"position":[[842,6],[1113,6]]},"80":{"position":[[575,6],[861,6]]},"86":{"position":[[371,6],[693,6]]},"92":{"position":[[230,6],[448,6]]},"96":{"position":[[814,6],[1081,6]]},"98":{"position":[[2701,6],[3343,6]]},"104":{"position":[[462,6],[717,6]]},"110":{"position":[[409,6],[684,6]]},"122":{"position":[[418,6],[629,6]]},"130":{"position":[[497,6],[708,6]]},"134":{"position":[[517,6],[854,6]]},"138":{"position":[[444,6],[725,6]]},"142":{"position":[[535,6],[905,6]]},"144":{"position":[[856,6],[1166,6]]},"152":{"position":[[232,6],[505,6]]},"156":{"position":[[322,6],[605,6]]},"160":{"position":[[506,6],[753,6]]},"166":{"position":[[641,6],[928,6]]},"168":{"position":[[2717,6],[3283,6]]},"172":{"position":[[498,6],[871,6]]},"178":{"position":[[631,6],[908,6]]},"182":{"position":[[349,6],[601,6]]},"186":{"position":[[254,6],[472,6]]},"190":{"position":[[405,6],[719,6]]},"194":{"position":[[643,6],[1021,6]]},"200":{"position":[[274,6],[508,6]]},"208":{"position":[[497,6],[744,6]]}}}],["schvitz",{"_index":1699,"t":{"268":{"position":[[1916,7]]}}}],["scope",{"_index":1072,"t":{"126":{"position":[[948,5]]}}}],["scopes/permissions/gr",{"_index":1350,"t":{"192":{"position":[[4442,25]]}}}],["scrape",{"_index":1645,"t":{"254":{"position":[[609,8]]},"268":{"position":[[170,7],[517,11]]}}}],["screen",{"_index":1316,"t":{"192":{"position":[[1907,6],[4347,6]]}}}],["screenshot",{"_index":1251,"t":{"180":{"position":[[314,10]]}}}],["script",{"_index":1568,"t":{"242":{"position":[[19,6]]}}}],["scrobbabl",{"_index":643,"t":{"68":{"position":[[622,11]]},"74":{"position":[[90,10],[472,10],[538,10]]}}}],["scrobbl",{"_index":7,"t":{"2":{"position":[[99,12]]},"7":{"position":[[41,8],[81,8],[220,8],[286,9],[345,8]]},"9":{"position":[[81,8],[549,8],[747,8]]},"11":{"position":[[30,8],[110,9]]},"17":{"position":[[521,10],[584,8],[1515,8],[1610,8],[1638,8],[1694,8],[3198,8],[3293,8],[3321,8],[3377,8]]},"19":{"position":[[108,8],[166,8]]},"25":{"position":[[89,9],[908,11],[1231,11]]},"33":{"position":[[154,8],[170,8]]},"37":{"position":[[29,8],[1025,8]]},"45":{"position":[[30,8],[117,9]]},"49":{"position":[[29,8],[705,11],[924,8],[1125,9],[1249,10],[1308,8],[1379,9],[1531,8],[1604,8],[1677,8],[1713,8],[1790,9],[1836,8],[1862,8]]},"56":{"position":[[29,8],[154,9],[787,11],[1002,8],[1199,9],[1420,9],[1514,9]]},"65":{"position":[[16,8],[47,8],[86,8]]},"68":{"position":[[314,10],[961,9],[1002,8],[1085,11],[1138,8],[1192,9],[1284,9]]},"72":{"position":[[37,8],[170,8],[387,8]]},"74":{"position":[[284,8]]},"76":{"position":[[196,8],[361,9],[453,8],[556,10],[739,8],[787,8]]},"78":{"position":[[0,10],[153,8],[197,9],[970,8],[1024,10],[1137,8],[1221,10],[1404,8],[1452,8],[1540,10],[1771,8],[1855,8]]},"80":{"position":[[192,8],[264,8]]},"88":{"position":[[635,10]]},"90":{"position":[[61,11],[495,10],[618,10],[679,8],[709,10],[743,9],[753,10],[861,8],[957,8]]},"94":{"position":[[125,8],[706,11],[1573,10]]},"96":{"position":[[280,8],[391,8],[472,8],[575,8]]},"98":{"position":[[573,8],[708,8],[765,8],[1018,8],[1088,8],[1676,8],[1775,8],[1849,8],[1933,9],[2019,9],[2108,9]]},"112":{"position":[[22,8],[207,8],[273,8],[338,8],[519,8],[595,8],[783,9],[867,8],[935,8]]},"114":{"position":[[2104,9],[2252,8],[2488,8]]},"118":{"position":[[46,9],[127,8],[192,8]]},"120":{"position":[[84,9],[172,10]]},"122":{"position":[[282,9]]},"124":{"position":[[46,9],[132,8],[207,8]]},"126":{"position":[[89,9],[203,11],[330,8]]},"130":{"position":[[276,10],[361,9]]},"132":{"position":[[46,8],[75,9],[140,8],[216,9]]},"136":{"position":[[14,8]]},"140":{"position":[[34,8],[58,9],[118,8],[175,9]]},"144":{"position":[[39,8],[68,9],[133,8]]},"146":{"position":[[165,8]]},"148":{"position":[[38,10],[419,10]]},"150":{"position":[[264,8],[422,9],[534,8]]},"158":{"position":[[267,8]]},"160":{"position":[[230,8],[309,8]]},"162":{"position":[[14,8],[179,9],[213,9],[293,9]]},"164":{"position":[[108,8]]},"168":{"position":[[156,8],[410,8],[676,9],[818,9],[948,9],[1028,9],[1323,9],[1406,8],[1813,8],[1904,8],[1974,8],[2054,9],[2136,9],[2221,9]]},"170":{"position":[[366,8]]},"174":{"position":[[14,8],[126,9],[258,9],[292,9],[372,9]]},"176":{"position":[[108,8]]},"184":{"position":[[78,10],[219,8],[263,9]]},"188":{"position":[[342,10],[479,8],[687,10]]},"192":{"position":[[216,8],[345,10]]},"206":{"position":[[29,9],[46,9]]},"208":{"position":[[180,8],[269,8]]},"223":{"position":[[112,11]]},"260":{"position":[[243,9]]},"268":{"position":[[99,9],[361,9],[709,9],[895,9],[1215,8],[1250,8],[3103,9],[3164,9]]},"270":{"position":[[371,10]]},"276":{"position":[[32,10],[64,8]]},"278":{"position":[[343,8]]},"289":{"position":[[20,8],[106,10],[489,10],[692,8],[759,11],[919,9],[1075,10],[1382,8],[1637,8],[1727,10],[1752,8],[1900,8],[2046,9],[2130,8]]},"291":{"position":[[202,10]]},"293":{"position":[[408,8],[448,9]]},"295":{"position":[[99,12]]},"325":{"position":[[938,8]]},"338":{"position":[[355,10],[914,9],[1486,9],[2732,9],[2954,9]]},"341":{"position":[[27,8]]},"343":{"position":[[131,10],[169,8],[241,9],[330,8],[455,9],[1026,8],[1644,10],[1904,11],[2032,8],[2302,11],[2504,10],[2561,10],[3026,10],[3198,11],[3264,8],[3656,9],[3759,9],[3899,10],[3949,10],[3964,8],[4029,10]]},"345":{"position":[[54,8]]},"347":{"position":[[69,8],[475,9],[651,11]]},"350":{"position":[[38,8],[457,9],[482,8],[635,9],[746,9],[783,8],[817,8]]},"352":{"position":[[211,8],[809,8],[985,9],[1033,10],[1096,9]]}}}],["scrobblabl",{"_index":2081,"t":{"350":{"position":[[162,12]]}}}],["scrobble.cach",{"_index":338,"t":{"25":{"position":[[559,15]]}}}],["scrobble/play",{"_index":2095,"t":{"352":{"position":[[1138,13]]}}}],["scrobblecli",{"_index":2062,"t":{"343":{"position":[[3309,15]]}}}],["scrobbler",{"_index":19,"t":{"7":{"position":[[9,9]]},"9":{"position":[[6,9],[229,9]]},"11":{"position":[[158,9],[291,9]]},"17":{"position":[[809,10],[840,9]]},"25":{"position":[[6,9]]},"31":{"position":[[6,9]]},"33":{"position":[[699,9],[1052,9],[1455,9]]},"37":{"position":[[597,9],[827,9],[1532,10],[1603,9]]},"45":{"position":[[165,9]]},"49":{"position":[[695,9]]},"54":{"position":[[27,9],[348,9]]},"56":{"position":[[777,9],[1601,9]]},"61":{"position":[[27,9],[348,9]]},"68":{"position":[[33,9],[395,10],[448,9],[895,9],[1234,9]]},"72":{"position":[[515,9]]},"76":{"position":[[145,9],[244,9]]},"78":{"position":[[187,9],[1509,9]]},"84":{"position":[[84,9]]},"90":{"position":[[293,9],[521,9],[821,9],[1568,9]]},"94":{"position":[[88,9],[896,9],[1421,9]]},"98":{"position":[[67,9],[275,9],[553,9],[745,9],[998,9],[1075,9]]},"100":{"position":[[19,9]]},"102":{"position":[[260,9],[697,9]]},"106":{"position":[[19,9]]},"108":{"position":[[256,9],[689,9]]},"114":{"position":[[1361,9]]},"118":{"position":[[26,9]]},"120":{"position":[[54,9]]},"124":{"position":[[26,9]]},"126":{"position":[[54,9],[348,10],[867,9],[1001,10]]},"128":{"position":[[192,9]]},"132":{"position":[[264,9]]},"134":{"position":[[112,9]]},"138":{"position":[[106,9]]},"140":{"position":[[223,9]]},"142":{"position":[[107,9]]},"144":{"position":[[492,9]]},"146":{"position":[[151,9],[613,9],[998,9]]},"148":{"position":[[168,9],[404,9]]},"150":{"position":[[152,9],[243,9],[511,9]]},"158":{"position":[[224,9],[411,9],[485,9],[702,9],[837,9]]},"166":{"position":[[296,9]]},"168":{"position":[[127,9],[1386,9]]},"170":{"position":[[491,10],[1022,9],[1332,10],[1545,9],[1700,9],[1803,9],[1929,10],[2138,9],[2310,9],[2526,9],[2832,9],[2936,9],[3211,9],[3477,9],[4002,9],[4246,10]]},"178":{"position":[[296,9]]},"184":{"position":[[253,9],[335,9]]},"192":{"position":[[4951,9]]},"198":{"position":[[1084,9],[1209,9],[2044,9],[2146,9]]},"202":{"position":[[523,9]]},"211":{"position":[[6,9]]},"213":{"position":[[322,9]]},"229":{"position":[[36,9],[266,9]]},"231":{"position":[[196,9]]},"233":{"position":[[57,9]]},"244":{"position":[[682,9],[825,9],[881,9],[926,9]]},"250":{"position":[[55,9],[154,10],[185,9],[218,9],[1222,9],[1277,9],[1476,9],[1751,10],[1864,9],[2047,10],[2203,9]]},"252":{"position":[[172,9],[299,9]]},"254":{"position":[[27,9],[933,9],[1222,9]]},"260":{"position":[[156,9]]},"262":{"position":[[283,10]]},"268":{"position":[[46,9],[295,9],[420,9],[558,9]]},"270":{"position":[[50,9],[287,9],[361,9],[424,9]]},"272":{"position":[[30,9],[151,10],[182,9],[214,9]]},"274":{"position":[[45,9],[1072,10],[1198,9]]},"276":{"position":[[49,9],[782,9],[1162,9],[1764,9],[2068,9],[2240,10],[2311,9]]},"278":{"position":[[34,9],[270,9]]},"280":{"position":[[156,9]]},"283":{"position":[[17,9],[463,9]]},"285":{"position":[[98,9],[134,9],[168,9],[253,10]]},"287":{"position":[[138,10]]},"289":{"position":[[1275,10],[1324,9],[1952,9]]},"313":{"position":[[372,10],[403,9],[435,9],[1479,9],[1885,9],[1952,10],[2336,9],[2397,10],[2864,9],[2925,10]]},"315":{"position":[[386,9],[683,9],[717,9],[838,9],[953,10],[984,9],[1016,9]]},"317":{"position":[[53,9]]},"319":{"position":[[143,9]]},"338":{"position":[[3084,10]]},"345":{"position":[[6,9]]},"347":{"position":[[669,9]]},"350":{"position":[[56,10]]},"352":{"position":[[1325,9]]}}}],["scrobbler'",{"_index":298,"t":{"21":{"position":[[27,11]]},"158":{"position":[[1708,11]]},"170":{"position":[[2240,11]]},"278":{"position":[[612,11]]},"345":{"position":[[188,11]]}}}],["scrobbler.app",{"_index":1204,"t":{"170":{"position":[[1390,13]]}}}],["scrobbler.app/callback",{"_index":1239,"t":{"170":{"position":[[3945,22]]}}}],["scrobbler.git",{"_index":1456,"t":{"213":{"position":[[297,13]]},"319":{"position":[[118,13]]}}}],["scrobbler.mydomain.com/callback",{"_index":1744,"t":{"274":{"position":[[1012,31]]}}}],["scrobbler.servic",{"_index":1544,"t":{"229":{"position":[[137,17],[222,18]]},"231":{"position":[[78,17],[125,17]]}}}],["scrobbler/directori",{"_index":1551,"t":{"229":{"position":[[351,19]]}}}],["scrobbler:0.9.7",{"_index":1777,"t":{"283":{"position":[[575,15]]}}}],["scrobbler:latest",{"_index":1778,"t":{"285":{"position":[[53,16]]},"313":{"position":[[162,16],[216,16]]}}}],["scrobblesourc",{"_index":1931,"t":{"332":{"position":[[396,15]]}}}],["scrobblesources.t",{"_index":1927,"t":{"332":{"position":[[198,18]]}}}],["scrobblethreshold",{"_index":259,"t":{"17":{"position":[[4194,21]]},"74":{"position":[[429,21]]}}}],["search",{"_index":1786,"t":{"289":{"position":[[1113,6]]},"354":{"position":[[292,6],[368,9],[706,9],[2136,9]]},"356":{"position":[[1019,6],[1181,9],[1361,6],[1442,6],[1584,9],[2196,9],[2312,9]]},"365":{"position":[[92,9]]},"367":{"position":[[90,9]]},"369":{"position":[[82,6],[748,9]]}}}],["second",{"_index":675,"t":{"74":{"position":[[505,7]]},"114":{"position":[[447,7],[822,7]]},"334":{"position":[[843,7]]},"336":{"position":[[1416,6]]},"338":{"position":[[2141,7]]},"356":{"position":[[2254,6]]}}}],["secondgotifyserv",{"_index":382,"t":{"33":{"position":[[530,21]]}}}],["secret",{"_index":132,"t":{"13":{"position":[[156,6],[573,9],[923,9]]},"114":{"position":[[3603,9]]},"116":{"position":[[1969,9]]},"142":{"position":[[413,9],[763,9]]},"170":{"position":[[4146,7]]},"192":{"position":[[2509,7],[2929,7]]},"194":{"position":[[207,6]]},"252":{"position":[[24,7]]}}}],["section",{"_index":230,"t":{"17":{"position":[[2366,9]]},"19":{"position":[[270,7]]},"102":{"position":[[464,7]]},"108":{"position":[[469,7]]},"158":{"position":[[666,7]]},"170":{"position":[[4220,7]]},"192":{"position":[[3187,7],[3764,7]]},"198":{"position":[[270,7]]},"239":{"position":[[57,7]]},"264":{"position":[[305,7],[422,7]]},"274":{"position":[[229,7],[826,7]]},"276":{"position":[[726,7],[1106,7],[2012,7]]},"341":{"position":[[957,7]]},"343":{"position":[[1885,7]]}}}],["secur",{"_index":361,"t":{"29":{"position":[[65,8]]},"58":{"position":[[141,8]]},"158":{"position":[[808,6]]}}}],["see",{"_index":203,"t":{"17":{"position":[[1352,3],[3036,3]]},"19":{"position":[[0,3]]},"37":{"position":[[934,3]]},"68":{"position":[[1302,4]]},"76":{"position":[[101,3]]},"88":{"position":[[646,3]]},"94":{"position":[[1647,4]]},"136":{"position":[[68,3]]},"144":{"position":[[185,3]]},"148":{"position":[[201,3]]},"158":{"position":[[639,3]]},"166":{"position":[[0,3]]},"178":{"position":[[0,3]]},"192":{"position":[[356,3],[403,3]]},"221":{"position":[[3255,3]]},"250":{"position":[[1136,3],[2439,3]]},"254":{"position":[[7,3]]},"257":{"position":[[7,3]]},"266":{"position":[[80,3]]},"278":{"position":[[70,3],[410,3]]},"280":{"position":[[0,3],[223,3]]},"297":{"position":[[0,3]]},"299":{"position":[[0,3]]},"301":{"position":[[0,3]]},"311":{"position":[[70,3]]},"313":{"position":[[749,3],[848,3]]},"315":{"position":[[4,3],[848,3]]},"317":{"position":[[19,3]]},"319":{"position":[[666,3]]},"321":{"position":[[115,3]]},"338":{"position":[[2867,3]]},"343":{"position":[[1466,3],[1872,3],[2352,3]]},"352":{"position":[[725,3],[963,3]]}}}],["seem",{"_index":1309,"t":{"192":{"position":[[1393,4]]}}}],["seen",{"_index":1688,"t":{"268":{"position":[[1765,4]]},"338":{"position":[[2900,4]]},"343":{"position":[[480,4],[738,5],[778,5],[2072,4],[2925,4]]},"350":{"position":[[279,5],[409,4],[660,5],[833,4]]},"352":{"position":[[1091,4]]}}}],["select",{"_index":765,"t":{"84":{"position":[[682,6]]},"192":{"position":[[4431,6],[4486,6],[4526,6]]},"198":{"position":[[203,6],[334,6]]}}}],["self",{"_index":1231,"t":{"170":{"position":[[3517,4]]},"289":{"position":[[2205,4]]},"325":{"position":[[38,4]]}}}],["send",{"_index":535,"t":{"49":{"position":[[1321,4]]},"68":{"position":[[376,4]]},"254":{"position":[[91,4]]},"291":{"position":[[193,5]]},"325":{"position":[[901,5],[1052,4]]},"347":{"position":[[56,7]]},"352":{"position":[[798,7]]}}}],["sent",{"_index":1234,"t":{"170":{"position":[[3601,4],[3672,4]]},"343":{"position":[[3006,4]]}}}],["separ",{"_index":921,"t":{"98":{"position":[[1629,9],[1719,9],[1820,9],[1895,9],[1982,9],[2068,9]]},"168":{"position":[[1770,9],[1852,9],[1945,9],[2016,9],[2099,9],[2181,9]]},"188":{"position":[[220,9]]},"268":{"position":[[1041,9]]},"289":{"position":[[1876,9]]}}}],["sept",{"_index":1307,"t":{"192":{"position":[[1360,4]]}}}],["serivc",{"_index":1269,"t":{"188":{"position":[[325,7]]}}}],["serv",{"_index":1444,"t":{"211":{"position":[[234,6]]},"270":{"position":[[146,6]]},"313":{"position":[[1494,5]]},"315":{"position":[[124,7]]},"319":{"position":[[1291,6]]}}}],["server",{"_index":215,"t":{"17":{"position":[[1669,7],[3352,7]]},"29":{"position":[[150,6]]},"33":{"position":[[53,7]]},"35":{"position":[[174,6]]},"37":{"position":[[106,6],[191,6]]},"39":{"position":[[205,6]]},"41":{"position":[[15,6],[518,6]]},"45":{"position":[[194,7],[278,6]]},"47":{"position":[[220,6]]},"49":{"position":[[363,8]]},"56":{"position":[[244,8],[445,8]]},"78":{"position":[[232,6]]},"98":{"position":[[1305,6]]},"100":{"position":[[74,6]]},"104":{"position":[[150,6]]},"110":{"position":[[144,6]]},"112":{"position":[[106,6],[193,6],[499,6],[570,6],[807,8],[847,6],[969,6]]},"118":{"position":[[105,7]]},"120":{"position":[[156,6]]},"124":{"position":[[110,7]]},"126":{"position":[[187,6]]},"132":{"position":[[167,7],[293,7],[377,6]]},"136":{"position":[[35,7]]},"144":{"position":[[153,7]]},"146":{"position":[[27,6],[382,7]]},"168":{"position":[[1661,6]]},"170":{"position":[[2679,6]]},"174":{"position":[[216,8]]},"180":{"position":[[74,6],[108,6],[193,6],[301,6],[352,6]]},"182":{"position":[[138,6]]},"190":{"position":[[169,6]]},"211":{"position":[[146,6]]},"221":{"position":[[1846,6]]},"250":{"position":[[259,6],[892,6],[994,6],[1735,6]]},"276":{"position":[[199,6],[1277,6],[1362,6]]},"289":{"position":[[805,6]]}}}],["servic",{"_index":187,"t":{"17":{"position":[[793,9]]},"56":{"position":[[142,7]]},"68":{"position":[[227,7],[479,8],[1147,8]]},"106":{"position":[[141,8]]},"170":{"position":[[3797,7]]},"174":{"position":[[114,7]]},"188":{"position":[[462,7]]},"192":{"position":[[1435,8],[1869,9]]},"221":{"position":[[1489,7],[2429,7],[2516,7]]},"223":{"position":[[605,7]]},"227":{"position":[[22,7],[164,7]]},"229":{"position":[[13,7],[297,9]]},"231":{"position":[[166,8],[211,7],[230,7],[278,7]]},"233":{"position":[[77,7]]},"250":{"position":[[296,9],[2411,7]]},"252":{"position":[[103,8]]},"254":{"position":[[795,7]]},"272":{"position":[[135,9]]},"276":{"position":[[12,8]]},"289":{"position":[[1361,7]]},"293":{"position":[[157,8]]},"313":{"position":[[356,9],[1936,9],[2381,9],[2909,9]]},"315":{"position":[[937,9]]},"323":{"position":[[174,7]]},"325":{"position":[[279,7],[1041,7]]},"338":{"position":[[446,8],[539,8],[1123,7],[1310,7]]},"341":{"position":[[83,7]]},"343":{"position":[[153,7],[499,7],[1076,7],[1272,7],[1355,8],[3325,7],[3716,7]]},"347":{"position":[[242,7]]},"350":{"position":[[792,7]]},"352":{"position":[[1061,7]]}}}],["service'",{"_index":1508,"t":{"221":{"position":[[1836,9]]}}}],["service.md",{"_index":1850,"t":{"317":{"position":[[23,10]]}}}],["service/appl",{"_index":637,"t":{"68":{"position":[[147,20],[353,19]]}}}],["services/mus",{"_index":1735,"t":{"274":{"position":[[16,14]]}}}],["session",{"_index":139,"t":{"13":{"position":[[340,7]]},"158":{"position":[[931,7]]},"192":{"position":[[882,7],[914,7],[1247,8]]},"254":{"position":[[855,7],[994,7],[1068,7]]}}}],["set",{"_index":66,"t":{"9":{"position":[[441,3],[876,3]]},"17":{"position":[[3523,7]]},"23":{"position":[[171,3],[337,3]]},"27":{"position":[[103,3],[408,3],[519,3]]},"33":{"position":[[729,7],[1082,7]]},"37":{"position":[[220,8],[675,3],[1559,3]]},"41":{"position":[[248,3]]},"58":{"position":[[117,8]]},"76":{"position":[[585,3],[717,3],[765,3]]},"78":{"position":[[328,8],[1250,3],[1382,3],[1430,3],[1524,3],[1588,8],[1937,3]]},"90":{"position":[[914,3],[1443,3]]},"94":{"position":[[2072,7],[2673,3]]},"96":{"position":[[174,3]]},"102":{"position":[[35,3],[395,8],[764,4]]},"104":{"position":[[219,3],[284,3]]},"106":{"position":[[129,8],[237,4]]},"108":{"position":[[33,3],[389,8],[754,4]]},"110":{"position":[[181,3],[215,3]]},"126":{"position":[[397,3]]},"146":{"position":[[390,3],[1065,4]]},"154":{"position":[[100,8]]},"168":{"position":[[559,8]]},"170":{"position":[[815,3],[834,8],[1639,3],[2793,3]]},"180":{"position":[[115,3],[144,8]]},"182":{"position":[[121,3]]},"192":{"position":[[1648,7],[3307,3],[3392,7]]},"198":{"position":[[153,8],[404,3],[685,7],[730,3]]},"204":{"position":[[372,3],[454,3]]},"208":{"position":[[95,3]]},"213":{"position":[[352,4]]},"215":{"position":[[35,8]]},"219":{"position":[[371,8]]},"221":{"position":[[2044,3],[2156,3],[2258,3]]},"233":{"position":[[40,7]]},"239":{"position":[[0,3]]},"242":{"position":[[518,8]]},"250":{"position":[[1489,7]]},"254":{"position":[[1197,3]]},"268":{"position":[[1615,3]]},"274":{"position":[[164,7],[582,3]]},"276":{"position":[[432,3],[1391,8],[2267,3]]},"278":{"position":[[97,7],[367,3]]},"280":{"position":[[307,3]]},"291":{"position":[[4,3]]},"313":{"position":[[892,3],[968,3],[1119,3],[2657,3],[3007,3]]},"319":{"position":[[176,3]]},"328":{"position":[[660,8]]},"341":{"position":[[221,3],[225,7]]},"343":{"position":[[641,7]]},"354":{"position":[[995,7]]}}}],["set('author",{"_index":1997,"t":{"336":{"position":[[2420,21]]},"338":{"position":[[1995,21]]},"341":{"position":[[806,21]]}}}],["setup",{"_index":177,"t":{"17":{"position":[[559,5],[1735,5],[3418,5],[3456,5]]},"37":{"position":[[92,5]]},"41":{"position":[[0,5],[64,5]]},"120":{"position":[[214,5]]},"126":{"position":[[363,5],[524,5],[855,5]]},"128":{"position":[[87,6]]},"134":{"position":[[233,5]]},"136":{"position":[[118,6],[181,5]]},"138":{"position":[[222,5]]},"142":{"position":[[223,5]]},"144":{"position":[[234,6],[297,5],[606,5]]},"158":{"position":[[369,6],[589,5],[615,5]]},"164":{"position":[[11,5]]},"166":{"position":[[51,6],[114,5],[412,5]]},"176":{"position":[[11,5]]},"178":{"position":[[51,6],[114,5],[412,5]]},"180":{"position":[[81,6],[200,5],[308,5]]},"192":{"position":[[5337,5]]},"227":{"position":[[139,5]]},"276":{"position":[[184,5],[248,5],[1263,5]]},"289":{"position":[[1801,5],[2139,5]]},"313":{"position":[[772,5],[871,5],[2061,6]]},"330":{"position":[[57,5]]}}}],["setup.sh",{"_index":1572,"t":{"242":{"position":[[251,10]]},"244":{"position":[[18,8]]},"246":{"position":[[51,9]]}}}],["sevenhtml",{"_index":814,"t":{"90":{"position":[[1412,12]]}}}],["sever",{"_index":1311,"t":{"192":{"position":[[1498,7]]}}}],["shape",{"_index":1473,"t":{"219":{"position":[[66,6]]},"221":{"position":[[928,5]]}}}],["share",{"_index":131,"t":{"13":{"position":[[149,6]]},"49":{"position":[[256,5]]},"56":{"position":[[338,5]]},"100":{"position":[[196,5]]},"112":{"position":[[663,6]]},"217":{"position":[[81,6],[423,5]]}}}],["shortcut",{"_index":351,"t":{"27":{"position":[[141,8]]}}}],["shorter",{"_index":806,"t":{"90":{"position":[[920,7]]},"170":{"position":[[224,7]]}}}],["show",{"_index":1134,"t":{"158":{"position":[[146,5]]},"198":{"position":[[148,4]]},"278":{"position":[[461,4],[600,5]]}}}],["shown",{"_index":593,"t":{"58":{"position":[[231,5]]},"80":{"position":[[144,5]]},"84":{"position":[[532,5]]},"90":{"position":[[1249,5]]},"134":{"position":[[63,5]]},"138":{"position":[[63,5]]},"140":{"position":[[361,5]]},"142":{"position":[[63,5]]},"144":{"position":[[450,5]]},"166":{"position":[[252,5]]},"178":{"position":[[252,5]]},"180":{"position":[[288,5]]},"198":{"position":[[313,5]]}}}],["side",{"_index":1669,"t":{"268":{"position":[[453,4]]}}}],["side(",{"_index":2105,"t":{"354":{"position":[[1395,7]]}}}],["sidebar",{"_index":764,"t":{"84":{"position":[[670,7]]}}}],["sign",{"_index":559,"t":{"51":{"position":[[136,4]]},"192":{"position":[[5098,4]]}}}],["signal",{"_index":2031,"t":{"338":{"position":[[2915,10]]}}}],["silo",{"_index":1795,"t":{"289":{"position":[[1829,4]]}}}],["similar",{"_index":1228,"t":{"170":{"position":[[3244,7]]},"268":{"position":[[1712,7]]},"356":{"position":[[130,7]]}}}],["simpl",{"_index":176,"t":{"17":{"position":[[552,6]]},"56":{"position":[[1484,6]]},"170":{"position":[[2667,6]]},"198":{"position":[[167,6]]},"215":{"position":[[291,6]]},"354":{"position":[[274,6]]}}}],["simpli",{"_index":1141,"t":{"158":{"position":[[909,6]]},"343":{"position":[[591,6]]}}}],["simplifi",{"_index":2053,"t":{"343":{"position":[[2550,10]]}}}],["singl",{"_index":796,"t":{"90":{"position":[[224,6]]},"289":{"position":[[734,6]]},"332":{"position":[[933,9]]},"356":{"position":[[189,6],[266,6]]}}}],["single_user_platform_id",{"_index":2016,"t":{"338":{"position":[[1608,23],[2345,24]]}}}],["site",{"_index":1235,"t":{"170":{"position":[[3626,4],[3857,4]]},"254":{"position":[[626,4]]},"257":{"position":[[378,4]]}}}],["skagg",{"_index":2137,"t":{"365":{"position":[[107,8]]}}}],["skip",{"_index":2066,"t":{"343":{"position":[[3789,4]]},"356":{"position":[[994,4],[1462,4]]}}}],["slash",{"_index":2140,"t":{"369":{"position":[[264,5],[440,5],[540,5]]}}}],["slick",{"_index":1871,"t":{"325":{"position":[[111,5]]}}}],["slight",{"_index":1658,"t":{"262":{"position":[[211,6]]}}}],["slightli",{"_index":2104,"t":{"354":{"position":[[1295,8]]}}}],["slower",{"_index":1017,"t":{"114":{"position":[[1605,6]]}}}],["slug",{"_index":1050,"t":{"120":{"position":[[5,4],[189,4],[292,4]]},"122":{"position":[[380,7],[566,7]]},"126":{"position":[[5,4],[499,4],[607,4]]},"204":{"position":[[80,4],[244,7],[328,7],[616,4]]},"208":{"position":[[417,7],[638,7]]},"250":{"position":[[840,4]]}}}],["slug/token",{"_index":1055,"t":{"122":{"position":[[183,10]]},"130":{"position":[[181,10]]}}}],["smart",{"_index":1784,"t":{"289":{"position":[[946,5]]}}}],["smarttub",{"_index":870,"t":{"94":{"position":[[2428,13],[3015,13]]}}}],["socat",{"_index":1154,"t":{"158":{"position":[[1442,5],[1600,5]]}}}],["social",{"_index":509,"t":{"49":{"position":[[281,6]]},"56":{"position":[[109,6],[363,6]]},"174":{"position":[[81,6]]}}}],["socket",{"_index":851,"t":{"94":{"position":[[1263,6]]},"158":{"position":[[659,6],[791,7],[949,6],[1067,7],[1287,7],[1508,6]]}}}],["sole",{"_index":802,"t":{"90":{"position":[[419,6]]},"94":{"position":[[680,6]]},"126":{"position":[[981,6]]}}}],["solut",{"_index":1768,"t":{"280":{"position":[[390,9]]}}}],["some_ip",{"_index":1500,"t":{"221":{"position":[[1193,9]]}}}],["someotherus",{"_index":938,"t":{"98":{"position":[[2975,15]]},"168":{"position":[[2416,15],[2964,15]]}}}],["someth",{"_index":1335,"t":{"192":{"position":[[2856,9]]},"250":{"position":[[327,9],[1261,9]]},"254":{"position":[[917,9]]},"257":{"position":[[11,9]]},"268":{"position":[[404,9]]},"356":{"position":[[2206,12]]}}}],["sometim",{"_index":1679,"t":{"268":{"position":[[1076,9]]}}}],["someus",{"_index":1174,"t":{"168":{"position":[[869,12],[903,8],[931,8],[1164,11],[1243,9]]}}}],["somewher",{"_index":137,"t":{"13":{"position":[[306,9]]},"58":{"position":[[205,10]]},"213":{"position":[[201,9]]},"319":{"position":[[22,9]]}}}],["song",{"_index":5,"t":{"2":{"position":[[77,5]]},"68":{"position":[[594,4]]},"74":{"position":[[82,4]]},"268":{"position":[[85,4],[1907,4],[2950,5],[2989,4],[3036,4],[3113,5],[3174,5]]},"338":{"position":[[319,4]]},"350":{"position":[[119,5]]}}}],["sono",{"_index":775,"t":{"88":{"position":[[37,7]]}}}],["sot",{"_index":610,"t":{"65":{"position":[[25,3]]}}}],["sound",{"_index":1705,"t":{"268":{"position":[[2018,5]]}}}],["soundcloud",{"_index":1105,"t":{"148":{"position":[[368,14]]},"150":{"position":[[20,12],[98,12],[373,14],[444,11]]}}}],["soundcloud:song:mysong",{"_index":1106,"t":{"148":{"position":[[474,22]]}}}],["sourc",{"_index":70,"t":{"9":{"position":[[525,6],[708,7],[808,6],[895,6],[988,6],[1183,6]]},"11":{"position":[[91,8]]},"17":{"position":[[0,7],[608,6],[1458,7],[1496,6],[3141,7],[3179,6],[4392,10]]},"19":{"position":[[64,6],[117,7],[134,7]]},"25":{"position":[[242,6]]},"27":{"position":[[489,10]]},"29":{"position":[[48,8],[208,7]]},"31":{"position":[[93,7]]},"33":{"position":[[78,6],[101,6],[122,6],[358,10]]},"35":{"position":[[647,7]]},"37":{"position":[[83,8]]},"45":{"position":[[98,8]]},"49":{"position":[[77,8],[1545,6]]},"56":{"position":[[87,8]]},"63":{"position":[[2,6],[19,6]]},"68":{"position":[[4,7],[122,6],[190,6],[332,6],[421,7],[545,6],[677,7],[881,7],[1028,7],[1220,7]]},"70":{"position":[[5,7],[105,7]]},"72":{"position":[[25,6],[377,6]]},"74":{"position":[[2,6],[654,7]]},"76":{"position":[[55,8],[131,7],[224,7],[522,8]]},"78":{"position":[[999,6]]},"80":{"position":[[649,10]]},"82":{"position":[[13,6],[200,6],[235,6]]},"86":{"position":[[445,10]]},"88":{"position":[[168,6]]},"90":{"position":[[641,7],[986,8],[1063,7],[1204,7],[1386,10],[1453,7],[1535,7]]},"92":{"position":[[312,10]]},"94":{"position":[[247,7],[398,6],[532,6],[577,6],[3342,6]]},"96":{"position":[[896,10]]},"98":{"position":[[2775,10]]},"104":{"position":[[552,10]]},"110":{"position":[[499,10]]},"114":{"position":[[253,6],[910,10],[2245,6],[2481,6]]},"118":{"position":[[5,6],[254,8]]},"120":{"position":[[246,7]]},"122":{"position":[[126,6],[508,10]]},"124":{"position":[[5,6],[279,8]]},"126":{"position":[[561,7]]},"130":{"position":[[124,6],[587,10]]},"132":{"position":[[5,6]]},"134":{"position":[[257,7],[366,9],[607,10],[677,9]]},"136":{"position":[[149,6],[247,8]]},"138":{"position":[[240,7],[306,8],[346,9],[534,10],[567,8],[607,9]]},"140":{"position":[[5,6],[292,6],[428,8]]},"142":{"position":[[242,7],[347,9],[625,10],[697,9]]},"144":{"position":[[5,6],[265,6],[363,8],[623,7],[685,8],[709,9],[946,10],[976,8],[1000,9]]},"146":{"position":[[98,7],[212,7]]},"148":{"position":[[59,7]]},"150":{"position":[[12,7]]},"152":{"position":[[322,10]]},"156":{"position":[[412,10]]},"160":{"position":[[113,6],[596,10]]},"162":{"position":[[151,6]]},"166":{"position":[[82,6],[180,8],[431,7],[522,9],[731,10],[788,9]]},"168":{"position":[[2807,10]]},"170":{"position":[[1965,7]]},"172":{"position":[[588,10]]},"174":{"position":[[230,6]]},"178":{"position":[[82,6],[180,8],[431,7],[518,9],[721,10],[775,9]]},"182":{"position":[[439,10]]},"186":{"position":[[344,10]]},"188":{"position":[[5,6],[434,6]]},"190":{"position":[[495,10]]},"192":{"position":[[1667,6],[4302,6]]},"194":{"position":[[733,10]]},"200":{"position":[[364,10]]},"204":{"position":[[44,7],[365,6],[447,6],[583,6]]},"208":{"position":[[587,10]]},"211":{"position":[[198,6]]},"217":{"position":[[52,7]]},"221":{"position":[[886,7]]},"223":{"position":[[495,7]]},"225":{"position":[[0,6]]},"239":{"position":[[50,6]]},"242":{"position":[[72,7],[351,7]]},"244":{"position":[[65,7],[152,8],[454,8]]},"250":{"position":[[6,7],[1178,6],[1947,8],[2404,6]]},"262":{"position":[[468,7]]},"268":{"position":[[120,6],[607,7],[768,6],[2266,8],[2572,6]]},"274":{"position":[[0,7]]},"276":{"position":[[105,7]]},"278":{"position":[[316,7]]},"280":{"position":[[241,7]]},"289":{"position":[[127,7],[584,7],[1498,6],[1656,7],[1834,7],[2000,6],[2028,6]]},"291":{"position":[[42,7],[110,8],[151,6],[237,6]]},"293":{"position":[[2,6],[19,6],[237,6],[344,7],[394,6],[436,6]]},"313":{"position":[[2159,7],[2470,6]]},"315":{"position":[[103,6]]},"319":{"position":[[918,10]]},"321":{"position":[[107,7]]},"323":{"position":[[77,6],[131,6]]},"325":{"position":[[885,6],[987,6]]},"328":{"position":[[1124,6],[1210,8],[1641,6],[1901,6]]},"330":{"position":[[22,6],[431,7],[950,6]]},"332":{"position":[[57,6],[912,7],[1090,6]]},"334":{"position":[[943,7]]},"338":{"position":[[16,7],[59,6],[173,6],[653,6],[1116,6],[1187,6],[1303,6]]},"341":{"position":[[13,6],[181,6]]},"343":{"position":[[146,6],[376,7],[391,6],[492,6],[526,6],[617,6],[1147,7],[1163,7],[1374,7],[1483,7],[1753,6],[1922,7],[1947,6],[2228,6],[2576,7]]},"347":{"position":[[39,6],[432,6]]},"350":{"position":[[67,7],[177,6],[211,6],[358,6],[532,8],[581,6]]},"352":{"position":[[151,6],[348,6],[434,9],[592,8]]},"354":{"position":[[604,9],[931,7],[1131,7],[1212,10]]}}}],["source'",{"_index":72,"t":{"9":{"position":[[563,8]]},"72":{"position":[[79,8]]},"74":{"position":[[352,8]]},"76":{"position":[[75,8],[476,8],[624,8]]},"78":{"position":[[1160,8],[1289,8]]},"338":{"position":[[437,8]]},"341":{"position":[[74,8]]},"343":{"position":[[2528,8],[3419,8]]},"347":{"position":[[233,8]]},"352":{"position":[[1369,8]]}}}],["source/cli",{"_index":218,"t":{"17":{"position":[[1775,13],[1794,14],[1945,13]]},"19":{"position":[[231,13]]},"21":{"position":[[76,14]]},"211":{"position":[[114,13]]},"217":{"position":[[106,13],[408,14]]},"223":{"position":[[360,13]]},"280":{"position":[[199,13]]},"313":{"position":[[907,13]]},"358":{"position":[[99,13]]}}}],["source_scrobble_duration=40",{"_index":679,"t":{"74":{"position":[[674,27]]}}}],["source_scrobble_percent=20",{"_index":680,"t":{"74":{"position":[[702,26]]}}}],["source_sot",{"_index":2044,"t":{"343":{"position":[[833,10]]}}}],["source_sot.histori",{"_index":2047,"t":{"343":{"position":[[1111,19]]}}}],["sourceaioconfig",{"_index":1906,"t":{"328":{"position":[[1547,15]]}}}],["sourceconfig",{"_index":1904,"t":{"328":{"position":[[1467,12]]}}}],["sourcedata",{"_index":2014,"t":{"338":{"position":[[1579,11],[1861,12]]}}}],["sourcedefault",{"_index":254,"t":{"17":{"position":[[4100,17]]},"114":{"position":[[25,17]]},"332":{"position":[[1182,14]]},"354":{"position":[[1020,14],[1076,17]]},"356":{"position":[[1069,17],[1516,17],[2081,17]]},"361":{"position":[[82,17]]},"365":{"position":[[22,17]]},"367":{"position":[[22,17]]},"369":{"position":[[678,17]]}}}],["sources.0.json",{"_index":1592,"t":{"244":{"position":[[416,14]]}}}],["sources.1.json",{"_index":1594,"t":{"244":{"position":[[602,14]]}}}],["sources.json",{"_index":1590,"t":{"244":{"position":[[357,12],[543,12]]}}}],["sources/cli",{"_index":227,"t":{"17":{"position":[[2255,15],[3479,15],[3551,15],[3880,15]]},"35":{"position":[[41,15]]},"278":{"position":[[445,15]]},"307":{"position":[[49,15]]}}}],["sourcetyp",{"_index":1909,"t":{"328":{"position":[[1753,10],[1812,12],[1825,12]]},"332":{"position":[[621,10],[635,12],[657,12]]}}}],["space",{"_index":1703,"t":{"268":{"position":[[2006,5]]},"369":{"position":[[249,6],[425,6]]}}}],["special",{"_index":2115,"t":{"354":{"position":[[2370,7]]}}}],["specif",{"_index":160,"t":{"17":{"position":[[86,8],[1706,8],[3389,8]]},"21":{"position":[[60,8]]},"70":{"position":[[177,8]]},"94":{"position":[[968,8],[2205,8]]},"154":{"position":[[158,8]]},"168":{"position":[[840,8],[1045,8]]},"188":{"position":[[470,8]]},"198":{"position":[[773,8]]},"223":{"position":[[323,8],[340,9],[413,8]]},"262":{"position":[[294,8]]},"289":{"position":[[1845,8]]}}}],["specifi",{"_index":115,"t":{"11":{"position":[[272,9]]},"17":{"position":[[1192,9],[2852,9]]},"23":{"position":[[267,9],[422,7],[562,9]]},"72":{"position":[[114,7]]},"114":{"position":[[2037,7]]},"148":{"position":[[97,7]]},"170":{"position":[[1256,7]]},"254":{"position":[[100,9]]},"272":{"position":[[252,7]]},"303":{"position":[[181,9]]},"313":{"position":[[473,7],[3192,7],[3339,9]]},"315":{"position":[[1054,7]]},"330":{"position":[[104,7]]},"354":{"position":[[48,9]]}}}],["spell",{"_index":2074,"t":{"347":{"position":[[404,7]]}}}],["spotifi",{"_index":211,"t":{"17":{"position":[[1553,7],[3236,7],[4415,10]]},"23":{"position":[[85,7]]},"35":{"position":[[665,9]]},"63":{"position":[[127,8]]},"65":{"position":[[725,7]]},"96":{"position":[[530,8]]},"112":{"position":[[139,7],[367,7]]},"114":{"position":[[933,10],[1153,7],[1189,10],[1435,10]]},"116":{"position":[[92,7]]},"160":{"position":[[473,9],[701,9]]},"170":{"position":[[0,7],[28,7],[67,7],[269,7],[380,7],[472,7],[517,7],[551,7],[648,7],[708,7],[900,7],[1041,7],[1063,7],[1298,7],[1647,7],[1677,7],[1957,7],[2107,7],[2432,7],[2801,7],[2917,7],[3039,7],[3680,7],[3971,7],[4320,7]]},"172":{"position":[[840,9]]},"260":{"position":[[198,7]]},"262":{"position":[[137,9]]},"270":{"position":[[308,7]]},"274":{"position":[[105,7],[505,7],[540,7],[621,7],[1166,7]]},"289":{"position":[[361,7]]},"293":{"position":[[179,8]]},"303":{"position":[[252,7]]},"319":{"position":[[555,8]]},"328":{"position":[[1766,9],[1842,10]]}}}],["spotify'",{"_index":549,"t":{"49":{"position":[[1647,9]]}}}],["spotify.json",{"_index":234,"t":{"17":{"position":[[2480,12]]},"74":{"position":[[381,12]]}}}],["spotify_client_id",{"_index":1245,"t":{"172":{"position":[[82,17]]}}}],["spotify_client_id=yourclientid",{"_index":1741,"t":{"274":{"position":[[903,30]]}}}],["spotify_client_id=yourid",{"_index":183,"t":{"17":{"position":[[686,26],[865,24],[1061,24]]}}}],["spotify_client_secret",{"_index":1246,"t":{"172":{"position":[[104,21]]}}}],["spotify_client_secret=yourclientsecret",{"_index":1742,"t":{"274":{"position":[[936,38]]}}}],["spotify_client_secret=yoursecret",{"_index":184,"t":{"17":{"position":[[716,34],[892,32],[1086,32]]}}}],["spotify_redirect_uri",{"_index":1208,"t":{"170":{"position":[[1710,20],[2148,20],[2842,20],[4012,20]]},"172":{"position":[[130,20]]}}}],["spotify_redirect_uri=https://multi",{"_index":1743,"t":{"274":{"position":[[977,34]]}}}],["spotifysourceaioconfig",{"_index":1907,"t":{"328":{"position":[[1565,22]]}}}],["spotifysourceconfig",{"_index":1905,"t":{"328":{"position":[[1482,19]]}}}],["src/backend/common/infrastructure/atomic.t",{"_index":1908,"t":{"328":{"position":[[1697,43]]}}}],["src/backend/common/infrastructure/config/source/coolplayer.t",{"_index":1884,"t":{"328":{"position":[[164,62]]}}}],["src/backend/common/infrastructure/config/source/sources.t",{"_index":1899,"t":{"328":{"position":[[1219,58]]}}}],["src/backend/sources/coolplayersource.t",{"_index":1953,"t":{"334":{"position":[[139,39]]},"336":{"position":[[283,39],[1469,39],[2107,39]]},"338":{"position":[[1496,39]]},"341":{"position":[[292,39]]},"343":{"position":[[784,39]]}}}],["src/backend/sources/mybasicsource.t",{"_index":2057,"t":{"343":{"position":[[2764,36],[3436,36]]}}}],["src/backend/sources/scrobblesources.t",{"_index":1928,"t":{"332":{"position":[[255,38]]}}}],["src/backend/sources/spotifysource.t",{"_index":1913,"t":{"330":{"position":[[127,36]]}}}],["src/index.j",{"_index":1864,"t":{"319":{"position":[[861,12]]}}}],["src/service/api.t",{"_index":2049,"t":{"343":{"position":[[1422,18]]}}}],["ssl",{"_index":1070,"t":{"126":{"position":[[815,3]]},"170":{"position":[[1435,3]]}}}],["stack",{"_index":1146,"t":{"158":{"position":[[1101,5]]}}}],["stage",{"_index":1481,"t":{"221":{"position":[[90,8],[266,7],[274,6],[324,6],[405,5],[439,5],[503,5],[544,5],[583,5],[658,5],[690,5],[772,6],[796,5],[1063,6],[1400,6],[1430,5],[1537,5],[1706,5],[1798,6],[1934,6],[2484,5],[2573,5],[3045,6]]},"328":{"position":[[402,6],[2074,6]]},"336":{"position":[[27,6],[122,6],[1462,6],[2100,6]]}}}],["standalon",{"_index":1445,"t":{"211":{"position":[[273,10]]}}}],["standard",{"_index":506,"t":{"49":{"position":[[212,8]]},"56":{"position":[[294,8]]},"90":{"position":[[90,8]]},"102":{"position":[[348,8]]},"108":{"position":[[344,8]]},"120":{"position":[[137,10]]},"126":{"position":[[163,10]]},"146":{"position":[[72,8],[89,8],[701,8]]},"158":{"position":[[11,8]]},"223":{"position":[[22,8],[156,8]]},"334":{"position":[[118,8]]},"338":{"position":[[2268,8]]}}}],["start",{"_index":197,"t":{"17":{"position":[[1127,5]]},"33":{"position":[[93,7]]},"41":{"position":[[270,5]]},"148":{"position":[[231,5],[452,5]]},"170":{"position":[[740,5],[1102,6],[3899,8],[4234,5],[4336,5]]},"192":{"position":[[2804,5],[3513,5],[4595,5],[4939,5],[5454,5]]},"198":{"position":[[737,8]]},"213":{"position":[[432,5]]},"221":{"position":[[157,6]]},"229":{"position":[[389,5]]},"231":{"position":[[113,5],[268,5]]},"268":{"position":[[2916,5]]},"274":{"position":[[1057,8]]},"276":{"position":[[454,5]]},"278":{"position":[[200,5]]},"289":{"position":[[1198,5]]},"297":{"position":[[14,5]]},"315":{"position":[[18,5]]},"319":{"position":[[259,5],[1259,5]]},"332":{"position":[[8,6]]},"341":{"position":[[60,6]]},"354":{"position":[[2089,6],[2191,6]]}}}],["startup",{"_index":1334,"t":{"192":{"position":[[2836,7]]},"217":{"position":[[315,9]]},"221":{"position":[[1560,7]]},"303":{"position":[[218,7]]},"341":{"position":[[603,7]]}}}],["stat",{"_index":586,"t":{"56":{"position":[[1491,5]]},"90":{"position":[[1126,6],[1275,6],[1522,6]]},"289":{"position":[[826,6]]}}}],["state",{"_index":647,"t":{"68":{"position":[[754,5],[934,5]]},"244":{"position":[[850,5]]},"325":{"position":[[553,5]]},"328":{"position":[[2127,5]]},"338":{"position":[[227,5],[552,5],[962,5],[1092,5],[1201,5],[1921,5],[2284,5],[2463,5],[2587,5],[2601,5],[2649,5]]},"343":{"position":[[46,5],[676,5],[1570,5]]}}}],["stateless",{"_index":394,"t":{"33":{"position":[[1474,9],[1704,9]]}}}],["statement",{"_index":1935,"t":{"332":{"position":[[595,9]]}}}],["static",{"_index":1951,"t":{"334":{"position":[[21,6],[600,6]]},"336":{"position":[[440,6]]}}}],["station",{"_index":724,"t":{"80":{"position":[[99,7],[131,7],[206,7],[276,7],[473,10],[488,7],[757,10],[772,7]]},"90":{"position":[[32,7],[588,8]]}}}],["statist",{"_index":1762,"t":{"278":{"position":[[516,10]]},"303":{"position":[[19,11]]}}}],["statu",{"_index":74,"t":{"9":{"position":[[579,6],[642,6]]},"35":{"position":[[241,6],[313,6]]},"76":{"position":[[485,6]]},"78":{"position":[[1169,6],[1617,6]]},"80":{"position":[[214,6]]},"254":{"position":[[129,6]]},"278":{"position":[[474,6],[577,6]]},"289":{"position":[[574,6]]},"303":{"position":[[2,6],[341,6],[365,6]]}}}],["stdout/stderr",{"_index":1802,"t":{"303":{"position":[[148,13]]}}}],["step",{"_index":858,"t":{"94":{"position":[[1460,5],[1534,5]]},"170":{"position":[[2990,4],[3913,4]]},"250":{"position":[[1380,5]]},"274":{"position":[[434,4]]},"313":{"position":[[1564,5]]},"323":{"position":[[29,4],[37,4]]}}}],["stick",{"_index":168,"t":{"17":{"position":[[269,5]]}}}],["still",{"_index":34,"t":{"7":{"position":[[229,5]]},"56":{"position":[[1336,5]]},"114":{"position":[[2023,5]]},"150":{"position":[[258,5]]},"202":{"position":[[758,5]]},"289":{"position":[[2155,5]]},"321":{"position":[[70,5]]},"343":{"position":[[401,5],[1548,5]]}}}],["stop",{"_index":32,"t":{"7":{"position":[[187,5]]},"33":{"position":[[137,7]]},"68":{"position":[[769,8]]},"192":{"position":[[128,4]]},"221":{"position":[[221,5]]},"254":{"position":[[342,7]]},"272":{"position":[[524,7]]},"285":{"position":[[87,4]]},"313":{"position":[[1530,7]]},"315":{"position":[[1460,7]]},"338":{"position":[[2093,9]]}}}],["storag",{"_index":395,"t":{"33":{"position":[[1499,7],[1815,7]]},"84":{"position":[[630,7]]},"313":{"position":[[1606,8]]}}}],["store",{"_index":2,"t":{"2":{"position":[[32,6]]},"25":{"position":[[162,6],[489,6],[862,5]]},"49":{"position":[[307,6],[1373,5]]},"56":{"position":[[389,6]]},"84":{"position":[[48,5]]},"221":{"position":[[1212,5],[1322,6],[3139,5]]},"223":{"position":[[57,5],[176,7]]},"244":{"position":[[728,7]]},"276":{"position":[[26,5]]},"295":{"position":[[32,6]]},"313":{"position":[[1671,7]]}}}],["stored/avail",{"_index":581,"t":{"56":{"position":[[164,16]]},"174":{"position":[[136,16]]}}}],["strang",{"_index":882,"t":{"94":{"position":[[3254,7]]}}}],["stream",{"_index":793,"t":{"90":{"position":[[40,9],[153,6],[180,7],[1038,6]]}}}],["streamtitl",{"_index":798,"t":{"90":{"position":[[238,13]]}}}],["string",{"_index":797,"t":{"90":{"position":[[231,6]]},"148":{"position":[[212,6],[312,7]]},"150":{"position":[[315,7]]},"192":{"position":[[3693,6]]},"219":{"position":[[183,6]]},"221":{"position":[[569,6]]},"260":{"position":[[75,6]]},"328":{"position":[[749,6],[861,6]]},"336":{"position":[[471,7],[781,6],[906,8],[1057,8],[1737,6],[1916,6]]},"345":{"position":[[118,7]]},"354":{"position":[[281,7],[490,6],[833,6],[1861,7],[1999,7],[2077,6],[2179,6],[2267,6],[2378,6]]},"356":{"position":[[196,6]]},"369":{"position":[[24,6],[69,7],[118,6]]}}}],["structur",{"_index":232,"t":{"17":{"position":[[2447,10]]},"49":{"position":[[762,9],[811,9]]},"56":{"position":[[844,9],[893,9]]},"217":{"position":[[227,9]]},"223":{"position":[[36,9]]},"352":{"position":[[286,9]]}}}],["subdirectori",{"_index":1340,"t":{"192":{"position":[[3545,12]]}}}],["subhead",{"_index":667,"t":{"72":{"position":[[559,9]]}}}],["submit",{"_index":21,"t":{"7":{"position":[[32,6],[384,9]]},"49":{"position":[[1695,10]]},"250":{"position":[[1393,10]]}}}],["subson",{"_index":426,"t":{"35":{"position":[[685,9]]},"65":{"position":[[757,8]]},"112":{"position":[[182,10]]},"114":{"position":[[2660,11]]},"188":{"position":[[64,8],[593,8]]},"190":{"position":[[156,8],[687,10]]},"289":{"position":[[369,8]]}}}],["subsonic_password",{"_index":1274,"t":{"190":{"position":[[100,17]]}}}],["subsonic_url",{"_index":1275,"t":{"190":{"position":[[122,12]]}}}],["subsonic_us",{"_index":1273,"t":{"190":{"position":[[82,13]]}}}],["succe",{"_index":1522,"t":{"221":{"position":[[3262,8]]}}}],["succeed",{"_index":1488,"t":{"221":{"position":[[550,9],[589,9],[2607,9]]}}}],["success",{"_index":1361,"t":{"192":{"position":[[5365,7]]}}}],["successfulli",{"_index":44,"t":{"7":{"position":[[371,12]]}}}],["succinctli",{"_index":2125,"t":{"356":{"position":[[755,11]]}}}],["such",{"_index":178,"t":{"17":{"position":[[572,4]]},"146":{"position":[[106,4]]},"188":{"position":[[117,5],[369,5]]},"219":{"position":[[286,4]]},"223":{"position":[[396,4]]},"252":{"position":[[501,5]]}}}],["suffix",{"_index":1057,"t":{"122":{"position":[[250,6]]},"130":{"position":[[330,6]]}}}],["super",{"_index":2037,"t":{"341":{"position":[[525,8]]},"343":{"position":[[968,8]]}}}],["super('coolplay",{"_index":1923,"t":{"330":{"position":[[713,19]]}}}],["superag",{"_index":1859,"t":{"319":{"position":[[581,13],[595,13]]},"336":{"position":[[1529,13],[2167,13]]},"338":{"position":[[1556,13]]},"341":{"position":[[352,13]]}}}],["support",{"_index":54,"t":{"9":{"position":[[198,7]]},"17":{"position":[[1814,7]]},"25":{"position":[[120,8]]},"31":{"position":[[16,8]]},"33":{"position":[[720,8],[1073,8],[1465,8]]},"76":{"position":[[111,10]]},"78":{"position":[[1006,8]]},"90":{"position":[[1075,9]]},"94":{"position":[[167,7]]},"126":{"position":[[903,7]]},"146":{"position":[[39,8]]},"152":{"position":[[36,7]]},"188":{"position":[[81,8],[333,8]]},"192":{"position":[[58,9]]},"202":{"position":[[362,9]]},"206":{"position":[[118,9]]},"289":{"position":[[97,8],[480,8],[667,8],[709,8]]},"319":{"position":[[407,9]]},"321":{"position":[[51,10]]},"345":{"position":[[24,7]]},"356":{"position":[[60,7]]}}}],["sure",{"_index":875,"t":{"94":{"position":[[2651,4]]},"102":{"position":[[409,4]]},"108":{"position":[[403,4]]},"128":{"position":[[141,4]]},"146":{"position":[[767,4]]},"158":{"position":[[981,4]]},"192":{"position":[[4375,4],[4423,4]]},"244":{"position":[[173,4]]},"250":{"position":[[2318,4]]}}}],["surfac",{"_index":2006,"t":{"338":{"position":[[891,8]]},"343":{"position":[[3127,8]]}}}],["switch",{"_index":1716,"t":{"268":{"position":[[2811,8]]},"332":{"position":[[650,6],[1246,6]]}}}],["syntax",{"_index":702,"t":{"78":{"position":[[393,7]]},"102":{"position":[[128,6]]},"108":{"position":[[126,6]]},"146":{"position":[[483,6]]},"180":{"position":[[233,7]]},"242":{"position":[[243,7]]}}}],["system",{"_index":701,"t":{"78":{"position":[[321,6]]},"158":{"position":[[86,8],[345,6]]},"213":{"position":[[66,7]]},"227":{"position":[[11,6]]}}}],["systemctl",{"_index":1555,"t":{"231":{"position":[[24,9],[48,9],[96,9]]}}}],["systemd",{"_index":1534,"t":{"227":{"position":[[0,7]]}}}],["systemscrobbl",{"_index":694,"t":{"76":{"position":[[810,17]]},"78":{"position":[[1475,17]]}}}],["s|\\\\s)(feat\\\\.(.+)|live|remastered(.+))$/i",{"_index":2130,"t":{"356":{"position":[[1706,45]]}}}],["s滾石40\\\\s滾石撞樂隊\\\\s40團拚經典(.+)$/i",{"_index":2129,"t":{"356":{"position":[[1602,33]]}}}],["s滾石40\\s滾石撞樂隊\\s40團拚經典(.+)$/i",{"_index":2127,"t":{"356":{"position":[[1238,30]]}}}],["tab",{"_index":755,"t":{"84":{"position":[[387,4],[412,4],[638,4]]},"158":{"position":[[688,4]]},"206":{"position":[[160,3]]}}}],["tabl",{"_index":448,"t":{"37":{"position":[[942,5]]}}}],["tag",{"_index":396,"t":{"33":{"position":[[1528,5],[1833,7]]},"239":{"position":[[15,3]]},"283":{"position":[[505,4],[526,4]]},"347":{"position":[[119,4]]}}}],["tags/metadata",{"_index":1389,"t":{"198":{"position":[[1052,13]]}}}],["take",{"_index":437,"t":{"37":{"position":[[411,4]]},"192":{"position":[[4215,4]]},"276":{"position":[[1582,4]]},"334":{"position":[[53,4]]},"338":{"position":[[927,4],[1164,5]]},"343":{"position":[[2737,4]]}}}],["taken",{"_index":685,"t":{"76":{"position":[[390,5]]},"78":{"position":[[1074,5]]}}}],["tautulli",{"_index":2043,"t":{"343":{"position":[[272,9],[1183,9]]}}}],["tcp",{"_index":1117,"t":{"154":{"position":[[35,3]]},"158":{"position":[[1530,3],[1606,3]]}}}],["teal.fm",{"_index":17,"t":{"4":{"position":[[69,7]]},"56":{"position":[[79,7],[96,7],[1026,8],[1325,7],[1412,7]]},"65":{"position":[[806,7]]},"174":{"position":[[51,7],[68,7],[250,7],[364,7],[394,7]]},"176":{"position":[[37,7]]},"178":{"position":[[8,7],[265,7],[314,7],[418,7]]},"289":{"position":[[424,7],[558,7]]}}}],["teal.fm'",{"_index":583,"t":{"56":{"position":[[869,9],[927,9]]}}}],["tealfm",{"_index":606,"t":{"61":{"position":[[1083,8]]},"178":{"position":[[878,8]]}}}],["tealfm_app_pw",{"_index":596,"t":{"61":{"position":[[601,13]]}}}],["tealfm_identifi",{"_index":595,"t":{"61":{"position":[[501,17]]}}}],["technic",{"_index":1676,"t":{"268":{"position":[[956,11]]},"343":{"position":[[3777,11]]}}}],["tell",{"_index":1663,"t":{"264":{"position":[[115,4]]},"328":{"position":[[82,4]]},"330":{"position":[[931,5]]},"332":{"position":[[112,4]]},"341":{"position":[[553,4]]},"343":{"position":[[996,4]]}}}],["templat",{"_index":825,"t":{"94":{"position":[[353,8]]}}}],["temporarili",{"_index":2094,"t":{"352":{"position":[[667,11],[905,11]]}}}],["tend",{"_index":1271,"t":{"188":{"position":[[504,4]]}}}],["term",{"_index":532,"t":{"49":{"position":[[1228,5]]},"56":{"position":[[1302,5]]},"170":{"position":[[685,5]]},"352":{"position":[[268,5]]}}}],["termin",{"_index":1837,"t":{"313":{"position":[[3468,9]]}}}],["test",{"_index":1348,"t":{"192":{"position":[[4360,9]]},"215":{"position":[[144,5],[261,5]]},"221":{"position":[[1941,4]]},"328":{"position":[[392,4]]},"336":{"position":[[2052,4],[2095,4]]},"356":{"position":[[83,7],[324,4]]}}}],["text",{"_index":757,"t":{"84":{"position":[[491,4]]},"229":{"position":[[160,4]]}}}],["textbox",{"_index":1378,"t":{"198":{"position":[[326,7]]}}}],["therefor",{"_index":804,"t":{"90":{"position":[[597,10]]},"268":{"position":[[800,10]]}}}],["these",{"_index":652,"t":{"68":{"position":[[874,6]]}}}],["thing",{"_index":117,"t":{"11":{"position":[[313,6]]},"268":{"position":[[2702,6]]}}}],["third",{"_index":773,"t":{"88":{"position":[[0,5]]}}}],["this.baseurl",{"_index":1985,"t":{"336":{"position":[[1149,12]]}}}],["this.canbacklog",{"_index":2038,"t":{"341":{"position":[[611,15]]}}}],["this.canpol",{"_index":1926,"t":{"330":{"position":[[1000,12]]}}}],["this.config",{"_index":1979,"t":{"336":{"position":[[830,12]]}}}],["this.config.token",{"_index":1998,"t":{"336":{"position":[[2449,23]]},"338":{"position":[[2024,23]]},"341":{"position":[[835,23]]}}}],["this.configdir}/currentcr",{"_index":1502,"t":{"221":{"position":[[1346,30]]}}}],["this.discover([someplay",{"_index":2060,"t":{"343":{"position":[[3070,26],[3603,26]]}}}],["this.emitt",{"_index":1950,"t":{"332":{"position":[[1418,14]]}}}],["this.logger.verbose(`config",{"_index":1988,"t":{"336":{"position":[[1294,27]]}}}],["this.playersourceoftruth",{"_index":2046,"t":{"343":{"position":[[1084,24]]}}}],["this.processrecentplays(play",{"_index":2030,"t":{"338":{"position":[[2786,31]]}}}],["this.requiresauth",{"_index":1924,"t":{"330":{"position":[[806,17]]}}}],["this.requiresauthinteract",{"_index":1925,"t":{"330":{"position":[[890,28]]}}}],["this.scrobble(discov",{"_index":2065,"t":{"343":{"position":[[3677,26]]}}}],["this.url.tostr",{"_index":1989,"t":{"336":{"position":[[1353,27]]}}}],["thorough",{"_index":1684,"t":{"268":{"position":[[1330,8]]}}}],["those",{"_index":808,"t":{"90":{"position":[[1094,5]]}}}],["though",{"_index":518,"t":{"49":{"position":[[543,6]]},"56":{"position":[[625,6]]},"202":{"position":[[742,7]]}}}],["thread",{"_index":792,"t":{"88":{"position":[[655,6]]}}}],["three",{"_index":989,"t":{"112":{"position":[[643,5]]},"192":{"position":[[3459,5]]}}}],["threshold",{"_index":613,"t":{"65":{"position":[[68,10]]},"68":{"position":[[1011,11]]},"78":{"position":[[11,9],[162,10]]},"90":{"position":[[764,9],[966,11]]},"184":{"position":[[89,9],[228,10]]},"343":{"position":[[178,9]]}}}],["through",{"_index":220,"t":{"17":{"position":[[1842,7]]},"25":{"position":[[413,7]]},"68":{"position":[[498,7]]},"96":{"position":[[81,7]]},"148":{"position":[[74,7]]},"202":{"position":[[668,7],[685,7]]},"289":{"position":[[1003,7],[1035,7]]},"330":{"position":[[988,7]]},"338":{"position":[[2593,7]]}}}],["throw",{"_index":1486,"t":{"221":{"position":[[477,6],[664,5],[2757,5],[2881,5]]},"336":{"position":[[942,5],[1095,5],[1224,5],[2037,5],[2582,5],[2615,5]]},"338":{"position":[[2558,5]]},"341":{"position":[[1064,5]]}}}],["thrown",{"_index":997,"t":{"114":{"position":[[285,7],[660,7]]}}}],["time",{"_index":28,"t":{"7":{"position":[[152,5]]},"17":{"position":[[2173,4],[3798,4]]},"68":{"position":[[710,4],[929,4]]},"74":{"position":[[182,4]]},"82":{"position":[[161,5]]},"88":{"position":[[92,5],[519,4]]},"94":{"position":[[1507,5]]},"170":{"position":[[237,4],[312,4]]},"192":{"position":[[148,4],[1688,4]]},"221":{"position":[[1583,4]]},"250":{"position":[[868,5]]},"254":{"position":[[870,5]]},"268":{"position":[[1122,4],[3239,4]]},"278":{"position":[[591,4]]},"338":{"position":[[1243,5]]},"345":{"position":[[173,5]]},"352":{"position":[[1211,5]]}}}],["timestamp",{"_index":1879,"t":{"325":{"position":[[476,9]]},"334":{"position":[[896,9]]},"338":{"position":[[850,9]]},"341":{"position":[[134,9]]},"343":{"position":[[2424,9]]}}}],["timezon",{"_index":1728,"t":{"272":{"position":[[260,8]]},"313":{"position":[[481,8],[3015,8]]},"315":{"position":[[1062,8]]}}}],["tip",{"_index":155,"t":{"15":{"position":[[0,3]]},"17":{"position":[[1900,3],[3608,3]]},"37":{"position":[[1467,3]]},"188":{"position":[[313,3]]},"204":{"position":[[514,3]]},"213":{"position":[[74,3]]},"276":{"position":[[2175,3]]},"278":{"position":[[0,3]]},"311":{"position":[[0,3]]},"315":{"position":[[0,3]]},"319":{"position":[[1265,3]]},"352":{"position":[[1106,3]]},"354":{"position":[[886,3]]}}}],["titl",{"_index":1391,"t":{"198":{"position":[[1125,6],[1430,5],[1704,5]]},"345":{"position":[[129,6]]},"347":{"position":[[225,5],[310,5],[341,5],[365,5]]},"354":{"position":[[93,8],[682,8],[795,7],[1174,8]]},"356":{"position":[[589,8],[791,6],[1056,5],[1222,8],[1379,8],[1571,8],[2183,8],[2299,8]]},"361":{"position":[[44,5],[137,8]]},"363":{"position":[[111,8],[158,8]]}}}],["title.mp4",{"_index":1400,"t":{"198":{"position":[[1764,9]]}}}],["title/artist/album/listen",{"_index":2083,"t":{"350":{"position":[[307,28],[688,28]]}}}],["title>.+?)\\\\.\\\\w+$/i",{"_index":1402,"t":{"198":{"position":[[1798,24]]}}}],["tld",{"_index":566,"t":{"54":{"position":[[83,4],[333,3]]},"61":{"position":[[83,4],[333,3]]}}}],["tldr",{"_index":2088,"t":{"352":{"position":[[245,5]]}}}],["tmt_yxr90am",{"_index":1706,"t":{"268":{"position":[[2054,13]]}}}],["to",{"_index":735,"t":{"82":{"position":[[107,4]]}}}],["to/great",{"_index":728,"t":{"80":{"position":[[332,10]]}}}],["togeth",{"_index":2102,"t":{"354":{"position":[[527,9]]}}}],["toggl",{"_index":712,"t":{"78":{"position":[[1015,8]]},"219":{"position":[[515,7]]}}}],["token",{"_index":278,"t":{"17":{"position":[[4897,8]]},"33":{"position":[[501,8],[916,8]]},"39":{"position":[[310,8],[601,8]]},"45":{"position":[[365,5]]},"47":{"position":[[100,5],[348,8],[659,8]]},"112":{"position":[[437,5]]},"114":{"position":[[1759,8],[1929,8],[2286,8],[3137,8]]},"116":{"position":[[606,8],[760,8],[920,8],[1537,8]]},"120":{"position":[[279,7]]},"126":{"position":[[594,7]]},"128":{"position":[[36,5],[58,6],[172,5]]},"130":{"position":[[249,6],[457,8],[644,8]]},"132":{"position":[[465,5]]},"134":{"position":[[386,8],[697,8]]},"144":{"position":[[729,8],[1020,8]]},"168":{"position":[[15,5],[230,5],[770,5],[972,5],[1262,5],[1718,5],[2336,8],[2884,8]]},"170":{"position":[[1056,6]]},"221":{"position":[[3079,5],[3219,5]]},"325":{"position":[[365,5]]},"328":{"position":[[607,5],[680,6],[742,6]]},"332":{"position":[[774,6]]},"336":{"position":[[152,5],[811,6],[846,6],[865,5],[896,5],[2442,6]]},"338":{"position":[[2017,6]]},"341":{"position":[[828,6]]}}}],["token.trim",{"_index":1981,"t":{"336":{"position":[[918,12]]}}}],["tool",{"_index":752,"t":{"84":{"position":[[350,5],[614,5]]},"100":{"position":[[135,5]]},"198":{"position":[[96,5]]},"343":{"position":[[77,4]]}}}],["top",{"_index":370,"t":{"29":{"position":[[347,3]]},"33":{"position":[[257,3]]},"268":{"position":[[1181,3]]},"356":{"position":[[18,3],[891,3],[1763,3],[1785,3],[1875,3]]}}}],["topic",{"_index":287,"t":{"17":{"position":[[5065,8]]},"33":{"position":[[1265,8]]}}}],["touch",{"_index":1542,"t":{"229":{"position":[[102,5]]}}}],["track",{"_index":47,"t":{"9":{"position":[[49,6],[793,5]]},"49":{"position":[[103,8],[1433,5]]},"63":{"position":[[58,6]]},"68":{"position":[[841,6],[911,5],[973,5],[1070,5],[1202,7]]},"70":{"position":[[44,5],[76,5]]},"74":{"position":[[137,5],[198,5]]},"78":{"position":[[56,5]]},"88":{"position":[[81,5],[493,6],[617,6]]},"90":{"position":[[121,5],[487,7],[798,5]]},"94":{"position":[[1930,5],[2489,9],[2519,5],[2788,8],[2945,8],[3233,5]]},"132":{"position":[[96,6]]},"144":{"position":[[89,6]]},"146":{"position":[[174,6]]},"148":{"position":[[253,6],[441,5]]},"150":{"position":[[58,5],[277,6],[407,5],[456,6],[471,6],[543,6],[558,6]]},"158":{"position":[[276,6]]},"162":{"position":[[78,8],[234,6]]},"170":{"position":[[150,5],[186,5]]},"174":{"position":[[313,6]]},"184":{"position":[[134,5]]},"192":{"position":[[444,7]]},"198":{"position":[[1997,5]]},"223":{"position":[[70,7],[140,5],[184,6],[207,5],[236,5],[437,6],[476,6],[571,5]]},"260":{"position":[[288,6]]},"264":{"position":[[196,5],[265,5],[345,5],[386,5],[413,8]]},"268":{"position":[[819,6],[1013,5],[1099,5]]},"278":{"position":[[554,6]]},"289":{"position":[[1583,5],[1712,7]]},"291":{"position":[[128,6]]},"325":{"position":[[462,6],[586,6],[616,6]]},"328":{"position":[[2025,5],[2152,5]]},"334":{"position":[[62,5],[566,5],[813,6]]},"338":{"position":[[303,5],[417,5],[1072,5],[1393,5],[2158,5],[2223,5],[2625,5],[2687,5]]},"341":{"position":[[45,6],[116,5],[156,5],[593,6],[897,5]]},"343":{"position":[[423,5],[711,5],[1051,6],[2241,5],[2409,5],[2635,5],[2902,5],[3172,7],[3931,5]]},"352":{"position":[[1268,5],[1462,6]]}}}],["track'",{"_index":677,"t":{"74":{"position":[[587,7]]}}}],["tracknam",{"_index":1961,"t":{"334":{"position":[[692,10],[820,10]]}}}],["tracks/play",{"_index":2020,"t":{"338":{"position":[[1907,13]]}}}],["trade",{"_index":785,"t":{"88":{"position":[[444,5]]}}}],["traffic",{"_index":834,"t":{"94":{"position":[[939,7]]}}}],["transform",{"_index":950,"t":{"102":{"position":[[610,9],[742,11]]},"108":{"position":[[602,9],[732,11]]},"146":{"position":[[911,9],[1043,11]]},"184":{"position":[[540,11]]},"223":{"position":[[621,9]]},"328":{"position":[[2002,9]]},"338":{"position":[[2253,9]]},"341":{"position":[[946,10]]},"354":{"position":[[846,12]]},"358":{"position":[[30,15],[173,11],[263,11]]}}}],["tray",{"_index":1133,"t":{"158":{"position":[[136,4]]}}}],["tri",{"_index":307,"t":{"23":{"position":[[285,3]]},"90":{"position":[[1600,3]]},"102":{"position":[[585,3]]},"108":{"position":[[577,3]]},"180":{"position":[[458,3]]},"192":{"position":[[1710,3]]},"198":{"position":[[1851,5]]},"221":{"position":[[1602,5]]},"250":{"position":[[899,5],[1366,3]]},"336":{"position":[[1143,3],[1759,3],[2356,3]]},"338":{"position":[[1880,3]]},"341":{"position":[[20,3],[571,3],[742,3]]}}}],["trigger",{"_index":1647,"t":{"254":{"position":[[888,9]]},"303":{"position":[[414,7]]}}}],["trivial",{"_index":1869,"t":{"323":{"position":[[63,9]]}}}],["troubleshoot",{"_index":352,"t":{"27":{"position":[[191,15],[356,15]]},"94":{"position":[[3067,16]]},"192":{"position":[[225,15]]},"250":{"position":[[1340,16]]},"268":{"position":[[2161,15]]}}}],["true",{"_index":95,"t":{"9":{"position":[[1152,4]]},"13":{"position":[[486,5],[836,5]]},"17":{"position":[[2579,5],[4436,5],[4702,5]]},"27":{"position":[[483,5]]},"29":{"position":[[380,4]]},"43":{"position":[[231,5],[492,5]]},"47":{"position":[[307,5],[618,5]]},"76":{"position":[[724,4],[828,4]]},"78":{"position":[[1389,4],[1493,4]]},"80":{"position":[[254,4],[302,6],[411,5],[522,5],[695,5],[806,5]]},"86":{"position":[[188,5],[491,5]]},"90":{"position":[[1333,5]]},"92":{"position":[[157,5],[354,5]]},"94":{"position":[[2101,4],[3570,4]]},"96":{"position":[[181,6]]},"98":{"position":[[1151,4],[2184,5],[2646,5],[2822,5],[3266,5]]},"104":{"position":[[362,5],[597,5]]},"110":{"position":[[285,5],[542,5]]},"122":{"position":[[364,5],[550,5]]},"130":{"position":[[441,5],[628,5]]},"134":{"position":[[345,5],[656,5]]},"138":{"position":[[325,5],[586,5]]},"142":{"position":[[326,5],[676,5]]},"152":{"position":[[114,5],[367,5]]},"156":{"position":[[171,5],[437,5]]},"160":{"position":[[411,5],[639,5]]},"168":{"position":[[2305,5],[2632,5],[2853,5],[3180,5]]},"172":{"position":[[282,5],[634,5]]},"182":{"position":[[235,5],[485,5]]},"186":{"position":[[194,5],[389,5]]},"190":{"position":[[250,5],[542,5]]},"192":{"position":[[1055,5],[1183,5],[1200,4],[2602,5],[2773,5],[2790,4],[3831,5],[4076,5],[4093,4]]},"194":{"position":[[422,5],[617,4],[779,5],[974,4]]},"198":{"position":[[1620,5],[1912,5],[2384,5],[2442,4]]},"200":{"position":[[172,5],[389,5]]},"208":{"position":[[102,6]]},"221":{"position":[[532,4],[2163,4],[2265,4],[2594,4]]},"268":{"position":[[1603,4],[2438,5],[2457,4]]},"330":{"position":[[826,5],[1015,5]]},"336":{"position":[[562,6],[1388,5],[1830,5],[2480,5]]},"341":{"position":[[629,5]]},"352":{"position":[[413,5]]},"354":{"position":[[583,5]]},"356":{"position":[[329,4]]},"358":{"position":[[136,4],[412,4]]}}}],["trust",{"_index":985,"t":{"112":{"position":[[462,5]]},"158":{"position":[[1429,8]]},"170":{"position":[[3786,8]]},"268":{"position":[[308,7]]}}}],["truth",{"_index":545,"t":{"49":{"position":[[1555,6]]},"68":{"position":[[555,6]]},"268":{"position":[[130,6],[618,6],[778,5]]},"338":{"position":[[69,5]]},"343":{"position":[[627,5]]}}}],["ts",{"_index":1531,"t":{"223":{"position":[[715,2]]},"330":{"position":[[518,2]]},"334":{"position":[[438,2]]}}}],["ts/j",{"_index":1958,"t":{"334":{"position":[[474,5]]}}}],["tuhe1cphrxi",{"_index":1689,"t":{"268":{"position":[[1779,13]]}}}],["tune",{"_index":1478,"t":{"219":{"position":[[405,4]]}}}],["tunein",{"_index":1086,"t":{"146":{"position":[[137,7]]}}}],["turn",{"_index":347,"t":{"27":{"position":[[0,7],[381,4]]},"94":{"position":[[3288,4]]},"198":{"position":[[2255,4],[2326,6]]},"250":{"position":[[1414,4],[1444,4]]},"266":{"position":[[26,4]]},"268":{"position":[[1420,4],[2192,4],[2312,4]]}}}],["tutori",{"_index":1533,"t":{"225":{"position":[[23,8],[55,8]]}}}],["tv",{"_index":890,"t":{"96":{"position":[[357,2]]},"192":{"position":[[4855,2]]}}}],["twice",{"_index":1677,"t":{"268":{"position":[[1019,5]]}}}],["two",{"_index":634,"t":{"68":{"position":[[67,3]]},"74":{"position":[[52,3]]},"217":{"position":[[183,3]]},"221":{"position":[[2011,3]]},"268":{"position":[[942,3],[2946,3]]},"369":{"position":[[188,3],[575,3],[639,4]]}}}],["two/anoth",{"_index":2143,"t":{"369":{"position":[[473,11]]}}}],["twog",{"_index":602,"t":{"61":{"position":[[799,5],[1050,5]]},"178":{"position":[[588,5],[845,5]]}}}],["type",{"_index":122,"t":{"13":{"position":[[24,4],[422,4],[755,4],[1027,7]]},"17":{"position":[[195,6],[1488,4],[1959,5],[2325,4],[2406,4],[3171,4],[4407,7],[4674,7],[4847,7],[4980,7]]},"19":{"position":[[22,5],[335,5]]},"25":{"position":[[343,4],[766,4],[1077,4]]},"33":{"position":[[330,5],[447,7],[552,7],[606,7],[823,7],[1176,7],[1556,7]]},"35":{"position":[[348,4]]},"39":{"position":[[24,4],[224,4],[497,4],[710,7]]},"41":{"position":[[562,4]]},"43":{"position":[[24,4],[166,4],[410,4],[593,7]]},"47":{"position":[[24,4],[239,4],[539,4],[772,7]]},"49":{"position":[[386,4],[802,4]]},"54":{"position":[[443,4],[676,4],[926,4],[1114,7]]},"56":{"position":[[468,4],[884,4]]},"61":{"position":[[443,4],[668,4],[902,4],[1075,7]]},"68":{"position":[[412,5]]},"72":{"position":[[586,5]]},"80":{"position":[[380,7],[664,7]]},"86":{"position":[[655,7]]},"92":{"position":[[409,7]]},"94":{"position":[[1609,4],[1690,4],[1864,4],[1994,5],[2038,4],[2195,5],[2311,7],[2571,5],[2638,4],[2843,7],[2974,4],[3502,7]]},"96":{"position":[[1039,7]]},"98":{"position":[[950,5],[3303,7]]},"104":{"position":[[24,4],[300,4],[522,4],[679,7]]},"110":{"position":[[24,4],[231,4],[469,4],[648,7]]},"114":{"position":[[925,7],[1181,7],[1427,7],[1686,7],[1856,7],[2152,7],[2384,7],[2652,7],[2823,7],[3050,7],[3178,7],[3296,7],[3414,7],[3532,7]]},"116":{"position":[[40,6]]},"122":{"position":[[24,4],[304,4],[478,4],[586,7]]},"130":{"position":[[24,4],[383,4],[557,4],[666,7]]},"134":{"position":[[24,4],[277,4],[577,4],[810,7]]},"138":{"position":[[24,4],[260,4],[504,4],[687,7]]},"142":{"position":[[24,4],[262,4],[595,4],[867,7]]},"144":{"position":[[411,4],[643,4],[916,4],[1129,7]]},"152":{"position":[[24,4],[56,4],[292,4],[467,7]]},"156":{"position":[[24,4],[136,4],[382,4],[570,7]]},"160":{"position":[[24,4],[356,4],[566,4],[716,7]]},"166":{"position":[[213,4],[451,4],[701,4],[889,7]]},"168":{"position":[[1570,4],[2248,4],[2777,4],[3247,7]]},"172":{"position":[[24,4],[222,4],[558,4],[832,7]]},"178":{"position":[[213,4],[451,4],[691,4],[870,7]]},"182":{"position":[[24,4],[173,4],[204,7],[409,4],[454,7]]},"186":{"position":[[24,4],[133,4],[314,4],[431,7]]},"190":{"position":[[24,4],[188,4],[465,4],[679,7]]},"192":{"position":[[1026,7],[2200,4],[2573,7],[3802,7]]},"194":{"position":[[24,4],[362,4],[703,4],[982,7]]},"198":{"position":[[625,6]]},"200":{"position":[[24,4],[137,4],[334,4],[473,7]]},"208":{"position":[[24,4],[347,4],[557,4],[700,7]]},"264":{"position":[[83,4],[129,4],[222,4],[300,4],[369,4]]},"268":{"position":[[1526,7],[2361,7]]},"311":{"position":[[88,6]]},"319":{"position":[[933,7],[1137,7]]},"328":{"position":[[1131,5],[1462,4],[1542,4],[1648,4],[1748,4]]},"330":{"position":[[426,4],[503,4]]},"332":{"position":[[173,4],[875,5],[1104,4],[1253,6]]},"343":{"position":[[633,4]]}}}],["type=simpl",{"_index":1549,"t":{"229":{"position":[[307,11]]}}}],["typeof",{"_index":1980,"t":{"336":{"position":[[888,7],[1037,7]]}}}],["typescript",{"_index":1440,"t":{"211":{"position":[[39,11]]},"217":{"position":[[194,10]]}}}],["tz",{"_index":1729,"t":{"272":{"position":[[274,2]]},"313":{"position":[[495,2],[3075,2]]},"315":{"position":[[1076,2]]}}}],["tz=etc/gmt",{"_index":1727,"t":{"272":{"position":[[239,10]]},"313":{"position":[[460,10]]},"315":{"position":[[1041,10]]}}}],["u",{"_index":1603,"t":{"246":{"position":[[111,1]]},"313":{"position":[[3482,1]]}}}],["ua",{"_index":1613,"t":{"250":{"position":[[526,4],[737,4],[1049,4]]}}}],["ubuntu",{"_index":1167,"t":{"160":{"position":[[391,9],[619,9]]},"227":{"position":[[91,7]]}}}],["ui",{"_index":79,"t":{"9":{"position":[[676,2]]},"98":{"position":[[105,2]]},"168":{"position":[[346,2]]},"274":{"position":[[356,2]]},"313":{"position":[[1500,2]]},"319":{"position":[[1277,2]]},"338":{"position":[[2207,2]]}}}],["uid",{"_index":1157,"t":{"158":{"position":[[1567,3]]},"313":{"position":[[3409,3],[3494,3]]}}}],["uid/gid",{"_index":1841,"t":{"315":{"position":[[310,7]]}}}],["ultim",{"_index":942,"t":{"102":{"position":[[91,10]]},"108":{"position":[[89,10]]},"146":{"position":[[446,10]]}}}],["unabl",{"_index":20,"t":{"7":{"position":[[22,6]]}}}],["unauthent",{"_index":1875,"t":{"325":{"position":[[208,15]]}}}],["unavoid",{"_index":1318,"t":{"192":{"position":[[1959,11]]}}}],["uncaught",{"_index":1654,"t":{"257":{"position":[[184,8]]}}}],["uncom",{"_index":474,"t":{"41":{"position":[[183,9]]},"276":{"position":[[367,9]]}}}],["uncomment/cr",{"_index":1118,"t":{"154":{"position":[[69,16]]}}}],["undefin",{"_index":1693,"t":{"268":{"position":[[1824,9],[2097,9]]},"332":{"position":[[846,11]]},"336":{"position":[[790,10],[875,9],[1024,9],[1746,10]]}}}],["under",{"_index":379,"t":{"33":{"position":[[239,5]]},"72":{"position":[[569,5]]},"84":{"position":[[438,5]]},"180":{"position":[[337,5]]},"188":{"position":[[275,6]]},"192":{"position":[[2009,5]]},"202":{"position":[[82,5]]},"229":{"position":[[46,5]]},"268":{"position":[[1499,5]]}}}],["undocu",{"_index":1660,"t":{"262":{"position":[[376,13]]}}}],["unexpect",{"_index":1516,"t":{"221":{"position":[[2646,10],[2798,10]]}}}],["unfortun",{"_index":1666,"t":{"268":{"position":[[200,14]]}}}],["uniqu",{"_index":2082,"t":{"350":{"position":[[300,6],[681,6]]},"356":{"position":[[2236,7],[2328,8]]}}}],["unit",{"_index":1546,"t":{"229":{"position":[[241,6]]}}}],["unix",{"_index":1139,"t":{"158":{"position":[[654,4],[786,4],[944,4],[1282,4],[1637,4]]}}}],["unknown",{"_index":864,"t":{"94":{"position":[[1896,8],[1980,7],[2014,7],[2181,7],[2357,7]]},"98":{"position":[[1123,7]]},"250":{"position":[[1096,7]]},"254":{"position":[[901,7]]},"264":{"position":[[206,9],[286,7]]}}}],["unless",{"_index":1153,"t":{"158":{"position":[[1370,6]]},"170":{"position":[[1123,6]]},"272":{"position":[[517,6]]},"313":{"position":[[1523,6]]},"315":{"position":[[1453,6]]},"343":{"position":[[3845,6]]}}}],["unlik",{"_index":1353,"t":{"192":{"position":[[4795,8]]}}}],["unnam",{"_index":1941,"t":{"332":{"position":[[901,10]]}}}],["unoffici",{"_index":732,"t":{"82":{"position":[[25,10]]},"192":{"position":[[39,10],[265,11]]},"268":{"position":[[485,10]]}}}],["unseen",{"_index":2045,"t":{"343":{"position":[[1044,6]]}}}],["unsupport",{"_index":859,"t":{"94":{"position":[[1487,11]]},"321":{"position":[[0,11]]}}}],["untest",{"_index":1417,"t":{"202":{"position":[[500,8]]}}}],["unus",{"_index":366,"t":{"29":{"position":[[224,8]]}}}],["uosrpjt3u5dhaaup3x",{"_index":783,"t":{"88":{"position":[[332,24]]}}}],["uosrpjt3u5dhaaup3xq30dwfosgqugdsyzl3qe743waavy2eur2ckyjcz4rv123q3psbkxklwa6ahc9xmefev6btfsp8luje3jswwrqogzcduowvzwo5saig",{"_index":772,"t":{"86":{"position":[[226,123],[529,122]]}}}],["up",{"_index":31,"t":{"7":{"position":[[174,3]]},"41":{"position":[[319,2]]},"49":{"position":[[1735,2]]},"192":{"position":[[1656,2]]},"221":{"position":[[769,2]]},"233":{"position":[[48,2]]},"254":{"position":[[732,2]]},"270":{"position":[[24,2]]},"274":{"position":[[172,2]]},"276":{"position":[[503,2]]},"278":{"position":[[245,2],[371,3]]},"280":{"position":[[311,2]]},"285":{"position":[[299,2]]},"291":{"position":[[8,2]]},"341":{"position":[[67,2]]},"347":{"position":[[23,3]]}}}],["up/logn",{"_index":560,"t":{"51":{"position":[[141,7]]}}}],["updat",{"_index":699,"t":{"78":{"position":[[284,7]]},"198":{"position":[[188,7]]},"283":{"position":[[126,9],[321,6]]},"287":{"position":[[74,6]]},"313":{"position":[[1763,8]]}}}],["upgrad",{"_index":1775,"t":{"283":{"position":[[431,10]]}}}],["upper",{"_index":480,"t":{"41":{"position":[[361,5]]},"276":{"position":[[545,5]]}}}],["upstream",{"_index":1310,"t":{"192":{"position":[[1463,8]]},"343":{"position":[[1067,8],[1263,8],[1346,8]]}}}],["upstreamerror",{"_index":1990,"t":{"336":{"position":[[1552,13],[2190,13]]}}}],["uri",{"_index":1101,"t":{"148":{"position":[[244,3],[465,3]]},"170":{"position":[[800,3],[852,3],[880,3],[1097,4],[1281,3],[1494,4],[1664,3],[2124,3],[2818,3],[3988,3],[4167,3]]},"172":{"position":[[185,3]]},"192":{"position":[[2316,4],[2950,4],[3042,3],[3219,4],[3371,3],[3451,3],[3759,4],[4141,4]]},"194":{"position":[[276,3]]},"274":{"position":[[603,4],[723,3]]},"313":{"position":[[935,3],[2508,4]]}}}],["uriblacklist",{"_index":1099,"t":{"148":{"position":[[117,12],[352,15]]},"152":{"position":[[150,15],[403,15]]}}}],["uriwhitelist",{"_index":1100,"t":{"148":{"position":[[133,12]]},"152":{"position":[[170,15],[423,15]]}}}],["url",{"_index":113,"t":{"11":{"position":[[256,3],[429,4]]},"13":{"position":[[246,3]]},"17":{"position":[[4738,6],[4865,6],[5033,6]]},"23":{"position":[[12,3],[58,4],[439,4],[495,3],[616,3],[850,3]]},"33":{"position":[[465,6],[880,6],[1229,6],[1652,7]]},"35":{"position":[[216,3]]},"37":{"position":[[492,3],[508,3],[563,3],[719,3],[733,3],[808,3],[861,4],[881,3],[909,3],[973,3],[1013,3],[1038,3]]},"39":{"position":[[187,3],[381,6],[672,6]]},"41":{"position":[[525,3]]},"43":{"position":[[102,3],[272,6],[533,6]]},"47":{"position":[[205,3],[420,6],[731,6]]},"56":{"position":[[1573,4]]},"78":{"position":[[337,4],[346,3],[524,3],[594,3],[708,3]]},"80":{"position":[[87,3],[444,6],[728,6]]},"90":{"position":[[978,3],[999,3],[1017,3],[1190,3],[1349,6]]},"92":{"position":[[90,3],[173,6],[370,6]]},"98":{"position":[[1285,3],[2215,6],[2853,6]]},"102":{"position":[[4,3],[62,4],[71,3],[239,3],[337,3],[606,3],[649,3],[687,3],[738,3],[754,3]]},"104":{"position":[[132,3],[378,6],[613,6]]},"108":{"position":[[4,3],[60,4],[69,3],[235,3],[333,3],[598,3],[641,3],[679,3],[728,3],[744,3]]},"110":{"position":[[128,3],[301,6],[558,6]]},"114":{"position":[[1792,6],[1962,6],[2319,6],[2522,6],[2777,6],[3228,6],[3346,6],[3464,6]]},"116":{"position":[[639,6],[793,6],[953,6],[1077,6],[1622,6],[1722,6],[1822,6]]},"120":{"position":[[314,3]]},"122":{"position":[[246,3]]},"126":{"position":[[359,3],[629,3],[765,4]]},"130":{"position":[[326,3]]},"134":{"position":[[458,6],[769,6]]},"138":{"position":[[366,6],[627,6]]},"144":{"position":[[800,6],[1091,6]]},"146":{"position":[[339,4],[348,3],[417,4],[426,3],[592,3],[690,3],[907,3],[950,3],[988,3],[1039,3],[1055,3]]},"152":{"position":[[130,6],[383,6]]},"156":{"position":[[204,6],[470,6]]},"168":{"position":[[42,3],[1645,3],[2353,6],[2901,6]]},"170":{"position":[[891,3],[976,3],[2423,3],[3086,3],[3148,4],[3237,3],[3328,3],[3696,3]]},"180":{"position":[[210,3],[428,3]]},"182":{"position":[[272,6],[522,6]]},"184":{"position":[[284,4],[458,3],[536,3],[552,3]]},"186":{"position":[[117,3],[210,6],[405,6]]},"190":{"position":[[144,3],[266,6],[558,6]]},"192":{"position":[[3236,3],[3321,3],[3478,3],[3728,3],[5240,3]]},"200":{"position":[[205,6],[422,6]]},"202":{"position":[[113,4],[380,3],[473,3]]},"204":{"position":[[107,4],[380,3],[462,3]]},"219":{"position":[[316,5]]},"221":{"position":[[1092,3],[1170,3],[2353,3]]},"223":{"position":[[430,3]]},"250":{"position":[[836,3],[921,3],[1616,4],[1625,4]]},"252":{"position":[[89,3],[589,5]]},"274":{"position":[[340,3]]},"276":{"position":[[966,4],[1659,3],[1675,3],[1730,3],[1897,3]]},"303":{"position":[[300,3]]},"313":{"position":[[1396,3],[2440,4],[2670,3]]},"315":{"position":[[220,3]]},"319":{"position":[[1062,6],[1185,6]]},"336":{"position":[[332,3],[343,6],[428,4],[575,3],[724,4],[1322,4]]}}}],["url(norm",{"_index":1974,"t":{"336":{"position":[[585,12]]}}}],["url.pathnam",{"_index":1976,"t":{"336":{"position":[[666,13],[691,12]]}}}],["url.port",{"_index":1975,"t":{"336":{"position":[[601,9],[623,8],[642,8]]}}}],["url/cod",{"_index":1354,"t":{"192":{"position":[[5017,8]]}}}],["us",{"_index":56,"t":{"9":{"position":[[239,4],[342,5],[970,5]]},"11":{"position":[[342,3]]},"13":{"position":[[253,3]]},"17":{"position":[[35,6],[448,3],[1409,3],[1885,5],[2043,4],[2178,4],[2245,5],[3093,3],[3803,4],[3870,5]]},"19":{"position":[[313,5]]},"23":{"position":[[24,4],[292,3],[353,3],[363,6]]},"25":{"position":[[137,5],[357,5],[524,5],[774,3],[1085,3]]},"27":{"position":[[127,3],[182,4]]},"29":{"position":[[285,5],[339,3]]},"35":{"position":[[331,3]]},"37":{"position":[[6,4],[281,3],[315,5],[444,5],[516,3],[723,5],[812,4]]},"41":{"position":[[82,5],[581,4]]},"45":{"position":[[374,3]]},"49":{"position":[[6,4],[1194,5]]},"51":{"position":[[35,3],[149,5]]},"54":{"position":[[11,4],[179,3]]},"56":{"position":[[6,4],[1268,5],[1439,3],[1524,3]]},"61":{"position":[[11,4],[179,3]]},"68":{"position":[[277,3]]},"72":{"position":[[49,3],[454,5],[612,3]]},"74":{"position":[[40,4],[662,5]]},"78":{"position":[[147,5],[251,3],[350,4],[556,3],[730,4]]},"82":{"position":[[20,4],[191,3]]},"84":{"position":[[40,4],[94,4],[225,3]]},"90":{"position":[[53,3],[218,3],[668,3],[951,5],[1031,3],[1136,3],[1607,3]]},"94":{"position":[[36,5],[236,5],[778,5],[837,5],[2230,5],[2585,6],[3410,5]]},"98":{"position":[[8,5],[320,3],[368,3],[902,3],[1131,3],[1427,3]]},"100":{"position":[[175,3]]},"102":{"position":[[8,4],[75,4],[275,3],[569,5],[712,3]]},"108":{"position":[[8,4],[73,4],[271,3],[561,5],[704,3]]},"112":{"position":[[553,4]]},"114":{"position":[[1329,4]]},"118":{"position":[[119,4]]},"120":{"position":[[183,3],[265,3],[300,4]]},"122":{"position":[[104,3],[260,3]]},"124":{"position":[[124,4]]},"126":{"position":[[238,3],[493,3],[580,3],[615,4],[811,3]]},"128":{"position":[[149,3]]},"130":{"position":[[103,3],[340,3]]},"132":{"position":[[132,4],[474,3]]},"134":{"position":[[45,3],[159,4],[203,3]]},"136":{"position":[[6,4]]},"138":{"position":[[45,3],[147,4],[191,3]]},"140":{"position":[[110,4],[299,3]]},"142":{"position":[[45,3],[149,4],[193,3]]},"144":{"position":[[125,4],[432,3],[532,4],[576,3]]},"146":{"position":[[352,4],[430,4],[628,3],[1013,3]]},"148":{"position":[[111,5],[276,4]]},"150":{"position":[[94,3],[167,5]]},"154":{"position":[[25,5]]},"158":{"position":[[1438,3]]},"160":{"position":[[98,3],[120,7]]},"162":{"position":[[6,4]]},"166":{"position":[[234,3],[338,4],[382,3]]},"168":{"position":[[55,4],[435,3],[1727,3]]},"170":{"position":[[75,4],[807,3],[1220,3],[1404,3],[1856,3],[2065,3],[2333,3],[2601,5],[3659,3],[3846,5],[3876,3]]},"174":{"position":[[6,4]]},"178":{"position":[[234,3],[338,4],[382,3]]},"180":{"position":[[12,3],[214,4],[465,3]]},"182":{"position":[[112,3]]},"184":{"position":[[213,5],[528,4]]},"188":{"position":[[19,4],[233,5],[270,4],[402,5],[607,3]]},"192":{"position":[[543,5],[580,3],[1572,5],[1717,3],[1914,3],[2882,3],[3385,3],[3427,5],[4748,5],[4917,5],[5135,5]]},"198":{"position":[[25,5],[673,4],[1176,5],[1334,3],[1529,5],[2156,4],[2211,3]]},"202":{"position":[[597,3]]},"204":{"position":[[18,3],[72,5],[126,5],[353,3],[435,3]]},"206":{"position":[[81,3]]},"211":{"position":[[213,5]]},"213":{"position":[[133,3],[336,3]]},"215":{"position":[[219,6],[270,3],[332,4]]},"219":{"position":[[392,4]]},"221":{"position":[[812,4],[1439,4]]},"223":{"position":[[49,4],[296,6],[515,3]]},"227":{"position":[[46,4]]},"239":{"position":[[32,3]]},"242":{"position":[[150,4],[415,4],[469,3]]},"244":{"position":[[14,3],[113,3],[720,3]]},"246":{"position":[[45,5],[80,5]]},"250":{"position":[[109,5],[1894,3],[2005,3]]},"252":{"position":[[148,3],[542,3]]},"254":{"position":[[218,5],[316,5],[385,5],[421,5],[487,5],[549,5],[594,4],[634,5]]},"262":{"position":[[171,3]]},"268":{"position":[[478,3],[1405,6],[2657,5]]},"270":{"position":[[60,5]]},"274":{"position":[[683,4],[1211,3]]},"276":{"position":[[266,5],[935,3],[1036,3],[1452,3],[1486,5],[1615,5],[1683,3],[1904,3]]},"280":{"position":[[166,5]]},"283":{"position":[[495,5]]},"285":{"position":[[226,4]]},"287":{"position":[[28,4]]},"289":{"position":[[604,5],[1137,5],[1223,3],[1488,4],[1983,3]]},"313":{"position":[[236,3],[899,5],[1326,3],[1802,5],[1895,5],[2022,5],[2142,3],[2462,5],[2554,5],[2630,4],[2731,3],[3042,5],[3349,5]]},"315":{"position":[[211,3]]},"319":{"position":[[157,3],[481,3],[1333,5]]},"323":{"position":[[186,4],[198,5]]},"325":{"position":[[1018,4]]},"328":{"position":[[54,5],[123,5],[1052,5]]},"330":{"position":[[409,4]]},"334":{"position":[[45,4],[496,3]]},"338":{"position":[[997,3],[1266,5],[3070,4]]},"343":{"position":[[1562,3],[1810,4],[2518,5],[3794,5],[3838,3],[3893,5]]},"352":{"position":[[336,4]]},"354":{"position":[[233,3],[261,5],[959,5],[1527,3],[1923,3],[2314,4],[2362,3]]},"358":{"position":[[120,3]]},"369":{"position":[[370,3]]}}}],["usag",{"_index":555,"t":{"51":{"position":[[53,5]]},"114":{"position":[[1673,5]]},"198":{"position":[[1543,5]]},"219":{"position":[[414,5]]},"270":{"position":[[556,5],[591,5]]},"313":{"position":[[1599,6]]},"319":{"position":[[698,5]]}}}],["user",{"_index":102,"t":{"11":{"position":[[6,5]]},"45":{"position":[[6,5],[360,4]]},"47":{"position":[[95,4]]},"54":{"position":[[264,6]]},"61":{"position":[[264,6]]},"68":{"position":[[734,6]]},"70":{"position":[[26,4],[197,6]]},"76":{"position":[[174,4],[308,4]]},"98":{"position":[[590,4],[631,5],[732,6],[1359,4],[1532,4],[2247,7],[2885,7]]},"114":{"position":[[1341,5],[2053,4],[2069,5],[2554,7],[2733,7]]},"116":{"position":[[1109,7]]},"132":{"position":[[460,4]]},"158":{"position":[[926,4],[1557,4]]},"168":{"position":[[102,5],[175,5],[197,4],[250,4],[265,4],[429,5],[616,4],[635,4],[790,4],[805,4],[849,5],[926,4],[992,4],[1011,4],[1054,4],[1104,4],[1238,4],[1282,4],[1310,4]]},"188":{"position":[[719,6]]},"190":{"position":[[307,7],[599,7]]},"192":{"position":[[1512,6],[2112,4]]},"221":{"position":[[829,4],[1140,4],[1298,4],[2273,4],[2322,4],[2717,4]]},"227":{"position":[[159,4]]},"231":{"position":[[60,4],[108,4],[206,4]]},"244":{"position":[[1024,4]]},"246":{"position":[[26,4]]},"254":{"position":[[296,5]]},"289":{"position":[[753,5]]},"313":{"position":[[3230,4],[3437,4]]},"319":{"position":[[1098,7]]},"325":{"position":[[350,4]]},"328":{"position":[[592,4],[672,4],[1099,5]]},"330":{"position":[[856,4]]},"336":{"position":[[207,5],[1963,4]]},"343":{"position":[[3143,4]]}}}],["user/password",{"_index":1521,"t":{"221":{"position":[[3105,13],[3353,13]]}}}],["user:group",{"_index":1833,"t":{"313":{"position":[[3200,10]]}}}],["usera",{"_index":1424,"t":{"204":{"position":[[252,7]]}}}],["userb",{"_index":1427,"t":{"204":{"position":[[336,7]]}}}],["usernam",{"_index":289,"t":{"17":{"position":[[5099,11]]},"33":{"position":[[1294,11]]},"37":{"position":[[435,8]]},"39":{"position":[[156,8],[360,11],[651,11]]},"47":{"position":[[147,8],[398,11],[709,11]]},"98":{"position":[[382,8],[491,8],[1647,9],[1737,9]]},"100":{"position":[[282,8]]},"104":{"position":[[210,8],[396,11],[631,11]]},"106":{"position":[[215,8]]},"110":{"position":[[172,8],[341,11],[598,11]]},"134":{"position":[[436,11],[747,11]]},"144":{"position":[[779,11],[1070,11]]},"168":{"position":[[1788,9],[1870,9]]},"274":{"position":[[469,8]]},"276":{"position":[[1606,8]]}}}],["usersallow",{"_index":905,"t":{"98":{"position":[[637,11],[2343,13],[2949,13]]},"114":{"position":[[1822,13],[1992,13],[2618,13]]},"116":{"position":[[669,13],[823,13],[1173,13]]},"168":{"position":[[439,10],[708,10],[855,13],[1120,13],[2390,13],[2938,13]]},"188":{"position":[[624,10]]},"190":{"position":[[355,13],[647,13]]}}}],["usersblock",{"_index":930,"t":{"98":{"position":[[2385,13],[2994,13]]},"168":{"position":[[2435,13],[2983,13]]}}}],["v",{"_index":852,"t":{"94":{"position":[[1313,1],[1344,1]]},"313":{"position":[[1809,1],[1846,1]]},"315":{"position":[[644,1],[799,1]]}}}],["v18.19.1",{"_index":1448,"t":{"213":{"position":[[26,8]]}}}],["valid",{"_index":250,"t":{"17":{"position":[[4003,10]]},"170":{"position":[[1266,5],[1479,5]]},"221":{"position":[[820,8],[1243,8],[1447,8],[2561,6],[2698,5]]},"257":{"position":[[330,6]]},"274":{"position":[[588,5]]},"328":{"position":[[98,5],[1189,5],[1679,5]]},"343":{"position":[[2292,5],[2329,5]]},"350":{"position":[[196,5]]}}}],["valkey",{"_index":331,"t":{"25":{"position":[[226,7],[468,6],[1060,6],[1257,9]]}}}],["valu",{"_index":483,"t":{"41":{"position":[[488,5]]},"54":{"position":[[412,6]]},"61":{"position":[[412,6]]},"74":{"position":[[254,6],[309,6]]},"76":{"position":[[613,5]]},"78":{"position":[[1278,5]]},"84":{"position":[[107,5],[281,6],[552,5],[757,5],[798,5]]},"86":{"position":[[96,5]]},"98":{"position":[[310,5]]},"102":{"position":[[289,6]]},"108":{"position":[[285,6]]},"128":{"position":[[99,5],[162,5]]},"146":{"position":[[642,6]]},"158":{"position":[[1129,7],[1693,5]]},"188":{"position":[[200,5]]},"192":{"position":[[791,5]]},"194":{"position":[[96,5]]},"198":{"position":[[926,6]]},"221":{"position":[[468,5]]},"274":{"position":[[203,6],[800,6]]},"276":{"position":[[675,5],[700,6],[1080,6],[1940,6],[1973,6]]},"354":{"position":[[776,5]]}}}],["var/run/avahi",{"_index":854,"t":{"94":{"position":[[1346,14]]}}}],["var/run/dbus:/var/run/dbu",{"_index":853,"t":{"94":{"position":[[1315,27]]}}}],["vari",{"_index":2002,"t":{"338":{"position":[[460,7]]}}}],["variabl",{"_index":124,"t":{"13":{"position":[[43,8]]},"17":{"position":[[62,9],[342,9],[1033,9],[1234,9],[1249,8],[2894,9],[2909,8]]},"25":{"position":[[694,8],[1002,8]]},"39":{"position":[[43,8]]},"43":{"position":[[43,8]]},"47":{"position":[[43,8]]},"54":{"position":[[462,8]]},"61":{"position":[[462,8]]},"80":{"position":[[27,8]]},"86":{"position":[[27,8]]},"92":{"position":[[27,8]]},"96":{"position":[[122,8]]},"98":{"position":[[1225,8]]},"104":{"position":[[43,8]]},"110":{"position":[[43,8]]},"122":{"position":[[43,8]]},"130":{"position":[[43,8]]},"134":{"position":[[53,9]]},"138":{"position":[[53,9]]},"142":{"position":[[53,9]]},"144":{"position":[[440,9]]},"156":{"position":[[43,8]]},"160":{"position":[[43,8]]},"166":{"position":[[242,9]]},"168":{"position":[[1589,8]]},"172":{"position":[[43,8]]},"178":{"position":[[242,9]]},"182":{"position":[[43,8]]},"186":{"position":[[43,8]]},"190":{"position":[[43,8]]},"194":{"position":[[43,8]]},"200":{"position":[[43,8]]},"208":{"position":[[43,8]]},"250":{"position":[[1515,8]]},"272":{"position":[[420,9]]},"313":{"position":[[3066,8],[3373,9]]},"319":{"position":[[1362,9]]}}}],["variou",{"_index":2124,"t":{"356":{"position":[[676,8]]},"367":{"position":[[100,8]]}}}],["veri",{"_index":175,"t":{"17":{"position":[[547,4]]},"27":{"position":[[262,4]]},"343":{"position":[[3863,4]]},"356":{"position":[[2348,5]]}}}],["verifi",{"_index":78,"t":{"9":{"position":[[656,8]]},"49":{"position":[[1422,10]]},"198":{"position":[[293,6],[492,6]]},"343":{"position":[[3226,8]]}}}],["version",{"_index":655,"t":{"68":{"position":[[1053,7]]},"213":{"position":[[170,8],[370,7]]},"283":{"position":[[164,7],[473,7],[550,8]]},"319":{"position":[[193,7]]},"336":{"position":[[1859,7],[1928,7],[1991,8]]},"347":{"position":[[323,8]]},"354":{"position":[[1193,9]]},"361":{"position":[[26,8],[156,9]]}}}],["via",{"_index":49,"t":{"9":{"position":[[98,3],[445,3],[665,3]]},"33":{"position":[[767,3],[1120,3]]},"106":{"position":[[188,3]]},"211":{"position":[[313,3]]},"313":{"position":[[1400,3]]}}}],["view",{"_index":472,"t":{"41":{"position":[[168,4]]},"56":{"position":[[134,7],[1402,4],[1542,4]]},"174":{"position":[[106,7]]},"270":{"position":[[479,7]]},"276":{"position":[[352,4]]},"313":{"position":[[1028,4],[1067,4],[2638,4],[2738,4]]}}}],["violat",{"_index":733,"t":{"82":{"position":[[85,9]]}}}],["visibl",{"_index":1994,"t":{"336":{"position":[[1945,10]]}}}],["visit",{"_index":1242,"t":{"170":{"position":[[4262,5]]},"192":{"position":[[5215,5]]},"221":{"position":[[2336,5]]},"274":{"position":[[1083,5]]},"278":{"position":[[375,5]]},"303":{"position":[[278,8],[355,5]]}}}],["vite",{"_index":1860,"t":{"319":{"position":[[611,7]]}}}],["vitej",{"_index":1446,"t":{"211":{"position":[[284,6]]}}}],["vlc",{"_index":628,"t":{"65":{"position":[[874,3]]},"160":{"position":[[442,6],[670,6]]},"198":{"position":[[21,3],[91,4],[488,3],[650,3],[693,3],[746,3],[791,3],[830,3],[892,3],[1030,3],[1282,3],[1924,3],[1968,3],[2122,3]]},"200":{"position":[[481,5]]},"266":{"position":[[61,3],[88,3]]},"289":{"position":[[445,3]]}}}],["vlc_password",{"_index":1408,"t":{"200":{"position":[[108,12]]}}}],["vlc_url",{"_index":1406,"t":{"200":{"position":[[82,7]]}}}],["volum",{"_index":1149,"t":{"158":{"position":[[1225,8]]},"272":{"position":[[457,8]]},"313":{"position":[[1191,8],[1969,8]]},"315":{"position":[[1393,8]]}}}],["vpn",{"_index":1420,"t":{"202":{"position":[[678,3]]}}}],["vscode",{"_index":1459,"t":{"215":{"position":[[65,7],[321,6]]}}}],["vulfpeck",{"_index":1696,"t":{"268":{"position":[[1878,8]]}}}],["w+.com)/i",{"_index":2111,"t":{"354":{"position":[[2044,17],[2146,17]]}}}],["wait",{"_index":639,"t":{"68":{"position":[[339,5]]},"114":{"position":[[458,4],[833,4]]},"192":{"position":[[4186,4]]},"250":{"position":[[65,5]]}}}],["want",{"_index":208,"t":{"17":{"position":[[1507,4],[1630,4],[1681,4],[3190,4],[3313,4],[3364,4],[3448,4]]},"98":{"position":[[700,4]]},"112":{"position":[[14,4],[265,4],[748,4]]},"128":{"position":[[125,5]]},"168":{"position":[[647,4]]},"192":{"position":[[2245,5]]},"202":{"position":[[238,5]]}}}],["wantedby=default.target",{"_index":1554,"t":{"229":{"position":[[416,23]]}}}],["warn",{"_index":257,"t":{"17":{"position":[[4161,7],[4950,7],[5174,7]]},"29":{"position":[[182,7]]},"33":{"position":[[776,4],[971,7],[1129,4],[1369,7]]},"56":{"position":[[1143,7]]},"82":{"position":[[0,7]]},"158":{"position":[[1295,7]]},"192":{"position":[[0,7],[1346,7],[4740,7]]},"202":{"position":[[509,7]]},"257":{"position":[[71,4]]}}}],["wax",{"_index":1702,"t":{"268":{"position":[[1982,3]]}}}],["way",{"_index":809,"t":{"90":{"position":[[1242,3]]},"158":{"position":[[815,3]]},"221":{"position":[[2931,3]]},"254":{"position":[[777,3]]},"268":{"position":[[673,3]]},"289":{"position":[[2100,3]]}}}],["web",{"_index":365,"t":{"29":{"position":[[146,3]]},"56":{"position":[[130,3]]},"76":{"position":[[403,3]]},"78":{"position":[[1087,3]]},"98":{"position":[[101,3]]},"100":{"position":[[70,3]]},"106":{"position":[[72,3]]},"170":{"position":[[3070,3],[4272,3]]},"174":{"position":[[102,3]]},"192":{"position":[[2208,3]]},"198":{"position":[[35,3],[285,3]]},"211":{"position":[[142,3]]},"223":{"position":[[426,3]]},"250":{"position":[[2023,3]]},"252":{"position":[[182,3],[200,3],[484,3]]},"254":{"position":[[529,3]]},"289":{"position":[[801,3]]},"293":{"position":[[124,3]]},"319":{"position":[[564,3],[1273,3]]},"325":{"position":[[50,3]]}}}],["webhook",{"_index":274,"t":{"17":{"position":[[4802,11]]},"31":{"position":[[37,8]]},"33":{"position":[[0,8],[187,8],[249,7],[286,8],[322,7],[402,11]]},"202":{"position":[[101,7],[282,8]]},"221":{"position":[[1692,8]]},"280":{"position":[[327,8]]},"289":{"position":[[610,8]]},"325":{"position":[[1023,8]]}}}],["webscrobbl",{"_index":367,"t":{"29":{"position":[[233,14]]},"65":{"position":[[837,12]]},"202":{"position":[[21,12],[601,12]]},"204":{"position":[[31,12]]},"206":{"position":[[301,12]]},"208":{"position":[[200,12],[289,12],[708,14]]},"250":{"position":[[79,12],[409,14],[434,14],[664,14],[689,14],[2425,13]]},"289":{"position":[[432,12]]},"313":{"position":[[2167,14]]},"343":{"position":[[251,14],[1193,13]]}}}],["webscrobbler.json",{"_index":1421,"t":{"204":{"position":[[161,17]]}}}],["webscrobbler/lfm",{"_index":1633,"t":{"250":{"position":[[1697,16]]}}}],["websit",{"_index":569,"t":{"54":{"position":[[189,7]]},"56":{"position":[[1385,8]]},"61":{"position":[[189,7]]},"206":{"position":[[101,7],[128,8]]},"268":{"position":[[191,8]]}}}],["websocket",{"_index":704,"t":{"78":{"position":[[472,11],[644,10]]},"180":{"position":[[49,9]]},"221":{"position":[[1887,9]]}}}],["well",{"_index":246,"t":{"17":{"position":[[3570,4]]},"23":{"position":[[110,4]]},"33":{"position":[[1520,4]]},"221":{"position":[[167,4],[1571,4]]},"260":{"position":[[119,5]]},"280":{"position":[[36,4]]},"303":{"position":[[165,4]]}}}],["went",{"_index":1718,"t":{"268":{"position":[[3021,4]]}}}],["wgxl6bsuq343",{"_index":1333,"t":{"192":{"position":[[2716,16],[3945,17]]}}}],["whatev",{"_index":441,"t":{"37":{"position":[[554,8]]},"192":{"position":[[2232,8]]},"202":{"position":[[224,9]]},"276":{"position":[[1721,8]]}}}],["whatever.tld/subdir/api",{"_index":1342,"t":{"192":{"position":[[3585,26]]}}}],["when'",{"_index":2133,"t":{"356":{"position":[[1961,6]]}}}],["when/if",{"_index":1668,"t":{"268":{"position":[[349,7]]}}}],["whether",{"_index":2056,"t":{"343":{"position":[[2676,7]]}}}],["whistl",{"_index":1873,"t":{"325":{"position":[[146,9]]}}}],["whitelist",{"_index":1102,"t":{"148":{"position":[[263,9]]},"160":{"position":[[427,12],[655,12]]},"208":{"position":[[443,12],[664,12]]}}}],["whitelistedapp",{"_index":899,"t":{"96":{"position":[[771,18],[1014,18]]}}}],["whitelisteddevic",{"_index":897,"t":{"96":{"position":[[722,21],[965,21]]}}}],["window",{"_index":753,"t":{"84":{"position":[[356,7]]},"88":{"position":[[509,6]]},"94":{"position":[[996,7]]},"198":{"position":[[196,6]]}}}],["wish",{"_index":1098,"t":{"148":{"position":[[7,4]]},"221":{"position":[[607,4]]},"268":{"position":[[1992,4]]},"343":{"position":[[1554,4]]}}}],["within",{"_index":342,"t":{"25":{"position":[[837,6]]},"88":{"position":[[500,6]]},"126":{"position":[[988,6]]},"206":{"position":[[290,6]]},"352":{"position":[[305,6]]}}}],["without",{"_index":723,"t":{"80":{"position":[[91,7]]},"96":{"position":[[214,7]]},"122":{"position":[[133,7]]},"130":{"position":[[131,7]]},"150":{"position":[[289,7]]},"170":{"position":[[3700,7]]},"208":{"position":[[122,7]]},"213":{"position":[[391,7]]},"221":{"position":[[2638,7]]},"242":{"position":[[499,7]]},"262":{"position":[[538,7]]},"289":{"position":[[1692,7],[1789,7]]},"343":{"position":[[2646,7]]}}}],["work",{"_index":408,"t":{"35":{"position":[[150,7]]},"49":{"position":[[185,5]]},"56":{"position":[[267,5]]},"82":{"position":[[247,4]]},"88":{"position":[[695,6]]},"146":{"position":[[333,5]]},"162":{"position":[[303,4]]},"170":{"position":[[1214,5]]},"174":{"position":[[382,4]]},"192":{"position":[[133,7],[194,5],[1541,7],[1631,5],[4807,4]]},"202":{"position":[[460,4]]},"213":{"position":[[237,7]]},"252":{"position":[[429,5]]},"254":{"position":[[350,8]]},"260":{"position":[[166,5],[226,5]]},"319":{"position":[[58,7]]},"330":{"position":[[885,4]]},"338":{"position":[[663,4]]}}}],["workingdirectory=/path/to/multi",{"_index":1550,"t":{"229":{"position":[[319,31]]}}}],["workspac",{"_index":1458,"t":{"215":{"position":[[25,9]]}}}],["world",{"_index":1709,"t":{"268":{"position":[[2087,5]]}}}],["worri",{"_index":2055,"t":{"343":{"position":[[2664,5]]}}}],["wrapped.baileytownsend.dev",{"_index":585,"t":{"56":{"position":[[1443,26]]}}}],["write",{"_index":1713,"t":{"268":{"position":[[2488,5]]},"354":{"position":[[1948,5]]}}}],["written",{"_index":1438,"t":{"211":{"position":[[19,7]]}}}],["ws",{"_index":1430,"t":{"206":{"position":[[66,2]]},"208":{"position":[[119,2]]}}}],["ws://192.168.0.101",{"_index":707,"t":{"78":{"position":[[735,20]]},"80":{"position":[[451,21],[735,21]]}}}],["ws://192.168.0.101/api/live/nowplaying/websocket",{"_index":708,"t":{"78":{"position":[[759,48]]}}}],["ws://192.168.0.101:3456/mopidy/w",{"_index":1095,"t":{"146":{"position":[[1180,34]]}}}],["ws://azura.mydomain.com",{"_index":709,"t":{"78":{"position":[[808,25]]}}}],["ws://azura.mydomain.com.com/api/live/nowplaying/websocket",{"_index":710,"t":{"78":{"position":[[837,57]]}}}],["ws://localhost:6680/mopidy/w",{"_index":1089,"t":{"146":{"position":[[542,29],[1070,29]]}}}],["ws://localhost:7905",{"_index":1253,"t":{"180":{"position":[[469,19]]},"182":{"position":[[92,19],[279,22],[529,22]]}}}],["ws://mopidy.mydomain.com:6680/mopidy/w",{"_index":1094,"t":{"146":{"position":[[1120,40]]}}}],["ws://mopidy.mydomain.com:80/mopw",{"_index":1097,"t":{"146":{"position":[[1244,33]]}}}],["ws_blacklist",{"_index":1434,"t":{"208":{"position":[[246,12]]}}}],["ws_enabl",{"_index":1432,"t":{"208":{"position":[[82,9]]}}}],["ws_whitelist",{"_index":1433,"t":{"208":{"position":[[159,12]]}}}],["wss://mydomain.com/custom/azura/w",{"_index":711,"t":{"78":{"position":[[895,36],[935,34]]}}}],["ws|wss]://host:[port",{"_index":703,"t":{"78":{"position":[[401,22]]},"180":{"position":[[241,22]]}}}],["wtf",{"_index":986,"t":{"112":{"position":[[472,4]]}}}],["x",{"_index":729,"t":{"80":{"position":[[348,1]]},"268":{"position":[[3119,2],[3180,2],[3196,1]]},"332":{"position":[[840,1]]}}}],["x11",{"_index":1615,"t":{"250":{"position":[[543,5],[754,5]]}}}],["x86",{"_index":1806,"t":{"313":{"position":[[36,3]]}}}],["x86/arm",{"_index":1788,"t":{"289":{"position":[[1161,7]]}}}],["x86_64",{"_index":1616,"t":{"250":{"position":[[555,7],[766,7]]}}}],["xxx",{"_index":1854,"t":{"319":{"position":[[355,5],[378,5]]}}}],["y",{"_index":1581,"t":{"242":{"position":[[486,1]]},"268":{"position":[[3122,2],[3188,2]]}}}],["y4j3",{"_index":605,"t":{"61":{"position":[[815,5],[1066,5]]},"178":{"position":[[604,5],[861,5]]}}}],["yamaha",{"_index":629,"t":{"65":{"position":[[902,6]]},"289":{"position":[[449,6]]}}}],["ye",{"_index":128,"t":{"13":{"position":[[97,3],[145,3]]},"25":{"position":[[1056,3],[1109,3]]},"39":{"position":[[94,3],[141,3]]},"43":{"position":[[93,3],[142,3]]},"47":{"position":[[91,3],[135,3]]},"54":{"position":[[516,3],[610,3]]},"61":{"position":[[519,3],[615,3]]},"80":{"position":[[73,3],[123,3],[183,3]]},"86":{"position":[[77,3]]},"92":{"position":[[78,3]]},"98":{"position":[[1277,3],[1351,3]]},"104":{"position":[[92,3]]},"110":{"position":[[90,3]]},"168":{"position":[[1637,3],[1705,3]]},"172":{"position":[[100,3],[126,3]]},"182":{"position":[[157,3]]},"186":{"position":[[92,3]]},"190":{"position":[[96,3],[118,3],[135,3]]},"200":{"position":[[121,3]]},"289":{"position":[[1970,4]]}}}],["you'll",{"_index":2085,"t":{"352":{"position":[[0,6]]}}}],["you'r",{"_index":1761,"t":{"278":{"position":[[251,6]]}}}],["you'v",{"_index":2080,"t":{"350":{"position":[[125,6]]}}}],["yourappnam",{"_index":1352,"t":{"192":{"position":[[4498,13]]}}}],["yourhostip:yourport",{"_index":1385,"t":{"198":{"position":[[807,19]]}}}],["yourmultiscrobblerinstance]/api/webscrobbl",{"_index":1411,"t":{"202":{"position":[[118,45]]}}}],["yourmusic.com",{"_index":2112,"t":{"354":{"position":[[2101,17],[2203,17]]}}}],["yourmusicsource.com",{"_index":2073,"t":{"347":{"position":[[188,21]]}}}],["yourpassword",{"_index":1280,"t":{"190":{"position":[[339,15],[631,15]]}}}],["yourport",{"_index":1386,"t":{"198":{"position":[[846,8]]}}}],["yourself",{"_index":979,"t":{"112":{"position":[[41,8]]},"170":{"position":[[3866,9]]},"192":{"position":[[2086,8]]},"343":{"position":[[353,8]]}}}],["yourus",{"_index":1279,"t":{"190":{"position":[[315,11],[371,10],[607,11],[663,10]]}}}],["youtub",{"_index":608,"t":{"63":{"position":[[152,7]]},"65":{"position":[[943,7]]},"112":{"position":[[239,7]]},"289":{"position":[[466,7]]},"293":{"position":[[204,7]]}}}],["youtube.js/wiki/how",{"_index":1290,"t":{"192":{"position":[[642,19]]}}}],["youtubetv",{"_index":1288,"t":{"192":{"position":[[570,9],[4767,9]]},"254":{"position":[[224,9],[322,9]]}}}],["yt",{"_index":424,"t":{"35":{"position":[[675,2]]},"192":{"position":[[27,2],[185,2],[4975,2],[5381,2]]}}}],["ytm",{"_index":1283,"t":{"192":{"position":[[300,3],[1431,3],[1472,3],[1663,3]]},"194":{"position":[[330,3]]},"254":{"position":[[41,3],[151,3],[622,3],[803,3],[1162,3]]},"268":{"position":[[15,3],[141,3],[187,3],[513,3],[1067,3],[1211,3],[1302,3],[1454,3],[1692,3],[2292,3],[2494,3],[2663,3]]}}}],["ytm_client_id",{"_index":1364,"t":{"194":{"position":[[128,13]]}}}],["ytm_client_secret",{"_index":1366,"t":{"194":{"position":[[179,17]]}}}],["ytm_cooki",{"_index":1363,"t":{"194":{"position":[[82,10]]}}}],["ytm_log_diff",{"_index":1368,"t":{"194":{"position":[[304,12]]}}}],["ytm_log_diff=tru",{"_index":1686,"t":{"268":{"position":[[1632,17]]}}}],["ytm_redirect_uri",{"_index":1367,"t":{"194":{"position":[[238,16]]}}}],["ytmusic",{"_index":1030,"t":{"114":{"position":[[2831,10]]},"192":{"position":[[1034,10],[2581,10],[2828,7],[3810,10],[4294,7]]},"194":{"position":[[990,9]]},"268":{"position":[[1534,10],[1729,8],[2369,10],[2539,7]]}}}],["ytmusic.json",{"_index":1299,"t":{"192":{"position":[[982,12],[2537,12],[3406,12]]},"268":{"position":[[1472,14]]}}}],["ytmusic/callback",{"_index":1343,"t":{"192":{"position":[[3627,16]]}}}],["z",{"_index":1721,"t":{"268":{"position":[[3130,2],[3210,2]]}}}]],"pipeline":["stemmer"]}}]11+[{"documents":[{"i":1,"t":"Overview","u":"/multi-scrobbler/configuration/","b":["Docs","Configuration"]},{"i":23,"t":"Koito","u":"/multi-scrobbler/configuration/clients/koito/","b":["Docs","Configuration","Scrobble Clients"]},{"i":27,"t":"Last.fm","u":"/multi-scrobbler/configuration/clients/lastfm/","b":["Docs","Configuration","Scrobble Clients"]},{"i":31,"t":"Listenbrainz","u":"/multi-scrobbler/configuration/clients/listenbrainz/","b":["Docs","Configuration","Scrobble Clients"]},{"i":35,"t":"Maloja","u":"/multi-scrobbler/configuration/clients/maloja/","b":["Docs","Configuration","Scrobble Clients"]},{"i":39,"t":"Rocksky","u":"/multi-scrobbler/configuration/clients/rocksky/","b":["Docs","Configuration","Scrobble Clients"]},{"i":46,"t":"Teal.fm","u":"/multi-scrobbler/configuration/clients/tealfm/","b":["Docs","Configuration","Scrobble Clients"]},{"i":53,"t":"Example Complex Scenario","u":"/multi-scrobbler/configuration/kitchensink/","b":["Docs","Configuration"]},{"i":59,"t":"Overview","u":"/multi-scrobbler/configuration/sources/","b":["Docs","Configuration","Scrobble Sources"]},{"i":74,"t":"Azuracast","u":"/multi-scrobbler/configuration/sources/azuracast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":78,"t":"Deezer","u":"/multi-scrobbler/configuration/sources/deezer/","b":["Docs","Configuration","Scrobble Sources"]},{"i":86,"t":"Google Cast (Chromecast)","u":"/multi-scrobbler/configuration/sources/google-cast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":90,"t":"Icecast","u":"/multi-scrobbler/configuration/sources/icecast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":94,"t":"Jellyfin","u":"/multi-scrobbler/configuration/sources/jellyfin/","b":["Docs","Configuration","Scrobble Sources"]},{"i":96,"t":"JRiver","u":"/multi-scrobbler/configuration/sources/jriver/","b":["Docs","Configuration","Scrobble Sources"]},{"i":102,"t":"Kodi","u":"/multi-scrobbler/configuration/sources/kodi/","b":["Docs","Configuration","Scrobble Sources"]},{"i":108,"t":"Koito","u":"/multi-scrobbler/configuration/sources/koito-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":110,"t":"Lastfm (Endpoint)","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","b":["Docs","Configuration","Scrobble Sources"]},{"i":116,"t":"Lastfm","u":"/multi-scrobbler/configuration/sources/lastfm-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":120,"t":"Listenbrainz (Endpoint)","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","b":["Docs","Configuration","Scrobble Sources"]},{"i":128,"t":"Listenbrainz","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":132,"t":"Maloja","u":"/multi-scrobbler/configuration/sources/maloja/","b":["Docs","Configuration","Scrobble Sources"]},{"i":136,"t":"Mopidy","u":"/multi-scrobbler/configuration/sources/mopidy/","b":["Docs","Configuration","Scrobble Sources"]},{"i":144,"t":"MPD (Music Player Daemon)","u":"/multi-scrobbler/configuration/sources/mpd/","b":["Docs","Configuration","Scrobble Sources"]},{"i":148,"t":"MPRIS","u":"/multi-scrobbler/configuration/sources/mpris/","b":["Docs","Configuration","Scrobble Sources"]},{"i":152,"t":"Musikcube","u":"/multi-scrobbler/configuration/sources/musikcube/","b":["Docs","Configuration","Scrobble Sources"]},{"i":156,"t":"Plex","u":"/multi-scrobbler/configuration/sources/plex/","b":["Docs","Configuration","Scrobble Sources"]},{"i":158,"t":"Rocksky","u":"/multi-scrobbler/configuration/sources/rocksky-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":164,"t":"Spotify","u":"/multi-scrobbler/configuration/sources/spotify/","b":["Docs","Configuration","Scrobble Sources"]},{"i":168,"t":"Subsonic","u":"/multi-scrobbler/configuration/sources/subsonic/","b":["Docs","Configuration","Scrobble Sources"]},{"i":172,"t":"Teal.fm","u":"/multi-scrobbler/configuration/sources/tealfm-source/","b":["Docs","Configuration","Scrobble Sources"]},{"i":178,"t":"VLC","u":"/multi-scrobbler/configuration/sources/vlc/","b":["Docs","Configuration","Scrobble Sources"]},{"i":182,"t":"Webscrobbler","u":"/multi-scrobbler/configuration/sources/webscrobbler/","b":["Docs","Configuration","Scrobble Sources"]},{"i":190,"t":"Yamaha MusicCast","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","b":["Docs","Configuration","Scrobble Sources"]},{"i":194,"t":"Youtube Music","u":"/multi-scrobbler/configuration/sources/youtube-music/","b":["Docs","Configuration","Scrobble Sources"]},{"i":198,"t":"Enhancing Scrobbles","u":"/multi-scrobbler/configuration/transforms/","b":["Docs","Configuration","Enhance Scrobbles"]},{"i":216,"t":"Musicbrainz Stage","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","b":["Docs","Configuration","Enhance Scrobbles"]},{"i":258,"t":"Native Stage","u":"/multi-scrobbler/configuration/transforms/native/","b":["Docs","Configuration","Enhance Scrobbles"]},{"i":275,"t":"User Stage","u":"/multi-scrobbler/configuration/transforms/user/","b":["Docs","Configuration","Enhance Scrobbles"]},{"i":296,"t":"Client Development/Tutorial","u":"/multi-scrobbler/development/dev-client/","b":["Docs","Development"]},{"i":298,"t":"Development","u":"/multi-scrobbler/development/dev-common/","b":["Docs","Development"]},{"i":315,"t":"Source Development/Tutorial","u":"/multi-scrobbler/development/dev-source/","b":["Docs","Development"]},{"i":337,"t":"Flatpak","u":"/multi-scrobbler/development/flatpak/","b":["Docs","Development"]},{"i":350,"t":"FAQ","u":"/multi-scrobbler/FAQ/","b":["Docs"]},{"i":372,"t":"Overview","u":"/multi-scrobbler/installation/","b":["Docs","Installation"]},{"i":384,"t":"Systemd","u":"/multi-scrobbler/installation/service/","b":["Docs","Installation"]},{"i":392,"t":"Quickstart","u":"/multi-scrobbler/quickstart/","b":["Docs"]},{"i":404,"t":"Overview","u":"/multi-scrobbler/updating/","b":["Docs","Updating"]},{"i":411,"t":"Overview","u":"/multi-scrobbler/","b":["Docs"]},{"i":433,"t":"Overview","u":"/multi-scrobbler/configuration/clients/","b":["Docs","Configuration","Scrobble Clients"]}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/1",[0,2.299]],["t/23",[1,3.365]],["t/27",[2,3.935]],["t/31",[3,2.989]],["t/35",[4,3.365]],["t/39",[5,3.365]],["t/46",[6,3.365]],["t/53",[7,2.34,8,2.34,9,2.34]],["t/59",[0,2.299]],["t/74",[10,3.935]],["t/78",[11,3.935]],["t/86",[12,2.34,13,2.34,14,2.34]],["t/90",[15,3.935]],["t/94",[16,3.935]],["t/96",[17,3.935]],["t/102",[18,3.935]],["t/108",[1,3.365]],["t/110",[19,2.51,20,2.51]],["t/116",[19,3.365]],["t/120",[3,2.23,20,2.51]],["t/128",[3,2.989]],["t/132",[4,3.365]],["t/136",[21,3.935]],["t/144",[22,1.946,23,1.664,24,1.946,25,1.946]],["t/148",[26,3.935]],["t/152",[27,3.935]],["t/156",[28,3.935]],["t/158",[5,3.365]],["t/164",[29,3.935]],["t/168",[30,3.935]],["t/172",[6,3.365]],["t/178",[31,3.935]],["t/182",[32,3.935]],["t/190",[33,2.935,34,2.935]],["t/194",[23,2.51,35,2.935]],["t/198",[36,2.935,37,2.935]],["t/216",[38,2.935,39,2.23]],["t/258",[39,2.23,40,2.935]],["t/275",[39,2.23,41,2.935]],["t/296",[42,2.935,43,2.51]],["t/298",[44,3.935]],["t/315",[43,2.51,45,2.935]],["t/337",[46,3.935]],["t/350",[47,3.935]],["t/372",[0,2.299]],["t/384",[48,3.935]],["t/392",[49,3.935]],["t/404",[0,2.299]],["t/411",[0,2.299]],["t/433",[0,2.299]]],"invertedIndex":[["azuracast",{"_index":10,"t":{"74":{"position":[[0,9]]}}}],["cast",{"_index":13,"t":{"86":{"position":[[7,4]]}}}],["chromecast",{"_index":14,"t":{"86":{"position":[[12,12]]}}}],["client",{"_index":42,"t":{"296":{"position":[[0,6]]}}}],["complex",{"_index":8,"t":{"53":{"position":[[8,7]]}}}],["daemon",{"_index":25,"t":{"144":{"position":[[18,7]]}}}],["deezer",{"_index":11,"t":{"78":{"position":[[0,6]]}}}],["develop",{"_index":44,"t":{"298":{"position":[[0,11]]}}}],["development/tutori",{"_index":43,"t":{"296":{"position":[[7,20]]},"315":{"position":[[7,20]]}}}],["endpoint",{"_index":20,"t":{"110":{"position":[[7,10]]},"120":{"position":[[13,10]]}}}],["enhanc",{"_index":36,"t":{"198":{"position":[[0,9]]}}}],["exampl",{"_index":7,"t":{"53":{"position":[[0,7]]}}}],["faq",{"_index":47,"t":{"350":{"position":[[0,3]]}}}],["flatpak",{"_index":46,"t":{"337":{"position":[[0,7]]}}}],["googl",{"_index":12,"t":{"86":{"position":[[0,6]]}}}],["icecast",{"_index":15,"t":{"90":{"position":[[0,7]]}}}],["jellyfin",{"_index":16,"t":{"94":{"position":[[0,8]]}}}],["jriver",{"_index":17,"t":{"96":{"position":[[0,6]]}}}],["kodi",{"_index":18,"t":{"102":{"position":[[0,4]]}}}],["koito",{"_index":1,"t":{"23":{"position":[[0,5]]},"108":{"position":[[0,5]]}}}],["last.fm",{"_index":2,"t":{"27":{"position":[[0,7]]}}}],["lastfm",{"_index":19,"t":{"110":{"position":[[0,6]]},"116":{"position":[[0,6]]}}}],["listenbrainz",{"_index":3,"t":{"31":{"position":[[0,12]]},"120":{"position":[[0,12]]},"128":{"position":[[0,12]]}}}],["maloja",{"_index":4,"t":{"35":{"position":[[0,6]]},"132":{"position":[[0,6]]}}}],["mopidi",{"_index":21,"t":{"136":{"position":[[0,6]]}}}],["mpd",{"_index":22,"t":{"144":{"position":[[0,3]]}}}],["mpri",{"_index":26,"t":{"148":{"position":[[0,5]]}}}],["music",{"_index":23,"t":{"144":{"position":[[4,6]]},"194":{"position":[[8,5]]}}}],["musicbrainz",{"_index":38,"t":{"216":{"position":[[0,11]]}}}],["musiccast",{"_index":34,"t":{"190":{"position":[[7,9]]}}}],["musikcub",{"_index":27,"t":{"152":{"position":[[0,9]]}}}],["nativ",{"_index":40,"t":{"258":{"position":[[0,6]]}}}],["overview",{"_index":0,"t":{"1":{"position":[[0,8]]},"59":{"position":[[0,8]]},"372":{"position":[[0,8]]},"404":{"position":[[0,8]]},"411":{"position":[[0,8]]},"433":{"position":[[0,8]]}}}],["player",{"_index":24,"t":{"144":{"position":[[11,6]]}}}],["plex",{"_index":28,"t":{"156":{"position":[[0,4]]}}}],["quickstart",{"_index":49,"t":{"392":{"position":[[0,10]]}}}],["rockski",{"_index":5,"t":{"39":{"position":[[0,7]]},"158":{"position":[[0,7]]}}}],["scenario",{"_index":9,"t":{"53":{"position":[[16,8]]}}}],["scrobbl",{"_index":37,"t":{"198":{"position":[[10,9]]}}}],["sourc",{"_index":45,"t":{"315":{"position":[[0,6]]}}}],["spotifi",{"_index":29,"t":{"164":{"position":[[0,7]]}}}],["stage",{"_index":39,"t":{"216":{"position":[[12,5]]},"258":{"position":[[7,5]]},"275":{"position":[[5,5]]}}}],["subson",{"_index":30,"t":{"168":{"position":[[0,8]]}}}],["systemd",{"_index":48,"t":{"384":{"position":[[0,7]]}}}],["teal.fm",{"_index":6,"t":{"46":{"position":[[0,7]]},"172":{"position":[[0,7]]}}}],["user",{"_index":41,"t":{"275":{"position":[[0,4]]}}}],["vlc",{"_index":31,"t":{"178":{"position":[[0,3]]}}}],["webscrobbl",{"_index":32,"t":{"182":{"position":[[0,12]]}}}],["yamaha",{"_index":33,"t":{"190":{"position":[[0,6]]}}}],["youtub",{"_index":35,"t":{"194":{"position":[[0,7]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":3,"t":"Configuration Types","u":"/multi-scrobbler/configuration/","h":"#configuration-types","p":1},{"i":5,"t":"Setup Sources and Clients","u":"/multi-scrobbler/configuration/","h":"#setup-sources-and-clients","p":1},{"i":7,"t":"Application Options","u":"/multi-scrobbler/configuration/","h":"#application-options","p":1},{"i":9,"t":"Base URL","u":"/multi-scrobbler/configuration/","h":"#base-url","p":1},{"i":11,"t":"Caching","u":"/multi-scrobbler/configuration/","h":"#caching","p":1},{"i":13,"t":"Debug Mode","u":"/multi-scrobbler/configuration/","h":"#debug-mode","p":1},{"i":15,"t":"Disable Web","u":"/multi-scrobbler/configuration/","h":"#disable-web","p":1},{"i":17,"t":"Monitoring","u":"/multi-scrobbler/configuration/","h":"#monitoring","p":1},{"i":19,"t":"Webhook Configurations","u":"/multi-scrobbler/configuration/","h":"#webhook-configurations","p":1},{"i":21,"t":"Health Endpoint","u":"/multi-scrobbler/configuration/","h":"#health-endpoint","p":1},{"i":25,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/koito/","h":"#configuration","p":23},{"i":29,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/lastfm/","h":"#configuration","p":27},{"i":33,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/listenbrainz/","h":"#configuration","p":31},{"i":37,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/maloja/","h":"#configuration","p":35},{"i":41,"t":"Setup","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#setup","p":39},{"i":43,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#configuration","p":39},{"i":44,"t":"Handle","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#handle","p":39},{"i":48,"t":"Setup","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#setup","p":46},{"i":50,"t":"Configuration","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#configuration","p":46},{"i":51,"t":"Identifier","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#identifier","p":46},{"i":55,"t":"All-in-one Config","u":"/multi-scrobbler/configuration/kitchensink/","h":"#all-in-one-config","p":53},{"i":57,"t":"Separate JSON files","u":"/multi-scrobbler/configuration/kitchensink/","h":"#separate-json-files","p":53},{"i":61,"t":"Sources","u":"/multi-scrobbler/configuration/sources/","h":"#sources","p":59},{"i":63,"t":"Features","u":"/multi-scrobbler/configuration/sources/","h":"#features","p":59},{"i":64,"t":"Types of Sources","u":"/multi-scrobbler/configuration/sources/","h":"#types-of-sources","p":59},{"i":66,"t":"Multi-Device/User","u":"/multi-scrobbler/configuration/sources/","h":"#multi-deviceuser","p":59},{"i":68,"t":"Limiting Scrobble Destination","u":"/multi-scrobbler/configuration/sources/","h":"#limiting-scrobble-destination","p":59},{"i":70,"t":"Scrobble Thresholds","u":"/multi-scrobbler/configuration/sources/","h":"#scrobble-thresholds","p":59},{"i":72,"t":"Should Scrobble Behavior","u":"/multi-scrobbler/configuration/sources/","h":"#should-scrobble-behavior","p":59},{"i":76,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/azuracast/","h":"#configuration","p":74},{"i":80,"t":"Retrieve ARL","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#retrieve-arl","p":78},{"i":82,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#configuration","p":78},{"i":84,"t":"Duplicate detection","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#duplicate-detection","p":78},{"i":88,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/google-cast/","h":"#configuration","p":86},{"i":92,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/icecast/","h":"#configuration","p":90},{"i":98,"t":"URL","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#url","p":96},{"i":100,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#configuration","p":96},{"i":104,"t":"URL","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#url","p":102},{"i":106,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#configuration","p":102},{"i":112,"t":"URL","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#url","p":110},{"i":114,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#configuration","p":110},{"i":118,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-source/","h":"#configuration","p":116},{"i":122,"t":"URL","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#url","p":120},{"i":124,"t":"Token","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#token","p":120},{"i":126,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#configuration","p":120},{"i":130,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","h":"#configuration","p":128},{"i":134,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/maloja/","h":"#configuration","p":132},{"i":138,"t":"URI Blacklist/Whitelist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#uri-blacklistwhitelist","p":136},{"i":140,"t":"Album Blacklist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#album-blacklist","p":136},{"i":142,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#configuration","p":136},{"i":146,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/mpd/","h":"#configuration","p":144},{"i":150,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/mpris/","h":"#configuration","p":148},{"i":154,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/musikcube/","h":"#configuration","p":152},{"i":160,"t":"Setup","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#setup","p":158},{"i":162,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#configuration","p":158},{"i":166,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/spotify/","h":"#configuration","p":164},{"i":170,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/subsonic/","h":"#configuration","p":168},{"i":174,"t":"Setup","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#setup","p":172},{"i":176,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#configuration","p":172},{"i":180,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/vlc/","h":"#configuration","p":178},{"i":184,"t":"Multiple Users","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#multiple-users","p":182},{"i":186,"t":"Connectors Black/Whitelist","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#connectors-blackwhitelist","p":182},{"i":188,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#configuration","p":182},{"i":192,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","h":"#configuration","p":190},{"i":196,"t":"Configuration","u":"/multi-scrobbler/configuration/sources/youtube-music/","h":"#configuration","p":194},{"i":200,"t":"Journey of a Scrobble","u":"/multi-scrobbler/configuration/transforms/","h":"#journey-of-a-scrobble","p":198},{"i":202,"t":"Lifecyle Hooks","u":"/multi-scrobbler/configuration/transforms/","h":"#lifecyle-hooks","p":198},{"i":204,"t":"Hook","u":"/multi-scrobbler/configuration/transforms/","h":"#hook","p":198},{"i":206,"t":"Modification Stage","u":"/multi-scrobbler/configuration/transforms/","h":"#stage","p":198},{"i":208,"t":"Configuring Stages","u":"/multi-scrobbler/configuration/transforms/","h":"#configuring-stages","p":198},{"i":210,"t":"Rules for Play Data","u":"/multi-scrobbler/configuration/transforms/","h":"#stage-rules","p":198},{"i":212,"t":"Conditional Modification","u":"/multi-scrobbler/configuration/transforms/","h":"#conditional-modification","p":198},{"i":214,"t":"Logging","u":"/multi-scrobbler/configuration/transforms/","h":"#logging","p":198},{"i":218,"t":"More Than Mainstream Data","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"","p":216},{"i":220,"t":"As The Artist Intended","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"","p":216},{"i":222,"t":"Configuration","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#configuration","p":216},{"i":223,"t":"API Setup","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#api-setup","p":216},{"i":225,"t":"Stage Configuration","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#stage-configuration","p":216},{"i":227,"t":"Rules","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#rules","p":216},{"i":229,"t":"ENV Configuration","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#env-configuration","p":216},{"i":231,"t":"Matching with Musicbrainz","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#matching-with-musicbrainz","p":216},{"i":233,"t":"Searching","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#searching","p":216},{"i":235,"t":"Refining","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#refining","p":216},{"i":236,"t":"Score","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#score","p":216},{"i":238,"t":"Filtering","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#filtering","p":216},{"i":240,"t":"Sorting","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#sorting","p":216},{"i":242,"t":"Best Practices","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#best-practices","p":216},{"i":243,"t":"Sensible Default","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#sensible-default","p":216},{"i":245,"t":"Filter Considerations","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#filter-considerations","p":216},{"i":247,"t":"Using Partial Match","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#using-partial-match","p":216},{"i":249,"t":"Logging","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#logging","p":216},{"i":251,"t":"Examples","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#examples","p":216},{"i":252,"t":"Minimal","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#minimal","p":216},{"i":254,"t":"Sensible Default","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#sensible-default-1","p":216},{"i":256,"t":"Add Metadata Only (No Scrobble Modification)","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#add-metadata-only-no-scrobble-modification","p":216},{"i":260,"t":"Configuration","u":"/multi-scrobbler/configuration/transforms/native/","h":"#configuration","p":258},{"i":262,"t":"Rules","u":"/multi-scrobbler/configuration/transforms/native/","h":"#rules","p":258},{"i":264,"t":"Default Stage","u":"/multi-scrobbler/configuration/transforms/native/","h":"#default-stage","p":258},{"i":266,"t":"ENV Configuration","u":"/multi-scrobbler/configuration/transforms/native/","h":"#env-configuration","p":258},{"i":268,"t":"Examples","u":"/multi-scrobbler/configuration/transforms/native/","h":"#examples","p":258},{"i":269,"t":"Parse only artists string using a custom delimiter","u":"/multi-scrobbler/configuration/transforms/native/","h":"#parse-only-artists-string-using-a-custom-delimiter","p":258},{"i":271,"t":"Don't parse specific artists","u":"/multi-scrobbler/configuration/transforms/native/","h":"#dont-parse-specific-artists","p":258},{"i":273,"t":"Extract Artists from Title but do not modify Title","u":"/multi-scrobbler/configuration/transforms/native/","h":"#extract-artists-from-title-but-do-not-modify-title","p":258},{"i":277,"t":"Configuration","u":"/multi-scrobbler/configuration/transforms/user/","h":"#configuration","p":275},{"i":279,"t":"Search-And-Replace Expression","u":"/multi-scrobbler/configuration/transforms/user/","h":"#search-and-replace-expression","p":275},{"i":281,"t":"Rules","u":"/multi-scrobbler/configuration/transforms/user/","h":"#rules","p":275},{"i":283,"t":"Examples","u":"/multi-scrobbler/configuration/transforms/user/","h":"#examples","p":275},{"i":284,"t":"Usage with when condition","u":"/multi-scrobbler/configuration/transforms/user/","h":"#usage-with-when-condition","p":275},{"i":286,"t":"Remove phrase from Title in all new Plays","u":"/multi-scrobbler/configuration/transforms/user/","h":"#remove-phrase-from-title-in-all-new-plays","p":275},{"i":288,"t":"Remove all parenthesized content from the end of a title","u":"/multi-scrobbler/configuration/transforms/user/","h":"#remove-all-parenthesized-content-from-the-end-of-a-title","p":275},{"i":290,"t":"Rename misspelled artist in all new Plays","u":"/multi-scrobbler/configuration/transforms/user/","h":"#rename-misspelled-artist-in-all-new-plays","p":275},{"i":292,"t":"Remove \"Various Artists\" albums in all new Plays","u":"/multi-scrobbler/configuration/transforms/user/","h":"#remove-various-artists-albums-in-all-new-plays","p":275},{"i":294,"t":"Extract primary Artist from delimited, multi-Artist string","u":"/multi-scrobbler/configuration/transforms/user/","h":"#extract-primary-artist-from-delimited-multi-artist-string","p":275},{"i":299,"t":"Architecture","u":"/multi-scrobbler/development/dev-common/","h":"#architecture","p":298},{"i":301,"t":"Project Setup","u":"/multi-scrobbler/development/dev-common/","h":"#project-setup","p":298},{"i":303,"t":"VSCode","u":"/multi-scrobbler/development/dev-common/","h":"#vscode","p":298},{"i":305,"t":"Common Development","u":"/multi-scrobbler/development/dev-common/","h":"#common-development","p":298},{"i":307,"t":"Config","u":"/multi-scrobbler/development/dev-common/","h":"#config","p":298},{"i":309,"t":"Concrete Class","u":"/multi-scrobbler/development/dev-common/","h":"#concrete-class","p":298},{"i":311,"t":"Play Object","u":"/multi-scrobbler/development/dev-common/","h":"#play-object","p":298},{"i":313,"t":"Creating Clients and Sources","u":"/multi-scrobbler/development/dev-common/","h":"#creating-clients-and-sources","p":298},{"i":317,"t":"Scenario","u":"/multi-scrobbler/development/dev-source/","h":"#scenario","p":315},{"i":319,"t":"Minimal Implementation","u":"/multi-scrobbler/development/dev-source/","h":"#minimal-implementation","p":315},{"i":320,"t":"Define and Implement Config","u":"/multi-scrobbler/development/dev-source/","h":"#define-and-implement-config","p":315},{"i":322,"t":"Create CoolPlayer Source","u":"/multi-scrobbler/development/dev-source/","h":"#create-coolplayer-source","p":315},{"i":324,"t":"Initialize Source from Config","u":"/multi-scrobbler/development/dev-source/","h":"#initialize-source-from-config","p":315},{"i":326,"t":"Implement Play Object Transform","u":"/multi-scrobbler/development/dev-source/","h":"#implement-play-object-transform","p":315},{"i":328,"t":"Implement Stages","u":"/multi-scrobbler/development/dev-source/","h":"#implement-stages","p":315},{"i":330,"t":"Implement Polling","u":"/multi-scrobbler/development/dev-source/","h":"#implement-polling","p":315},{"i":332,"t":"Further Implementation","u":"/multi-scrobbler/development/dev-source/","h":"#further-implementation","p":315},{"i":333,"t":"Backlog","u":"/multi-scrobbler/development/dev-source/","h":"#backlog","p":315},{"i":335,"t":"Other Source Types","u":"/multi-scrobbler/development/dev-source/","h":"#other-source-types","p":315},{"i":338,"t":"Install Requirements","u":"/multi-scrobbler/development/flatpak/","h":"#install-requirements","p":337},{"i":339,"t":"Flatpak and flatpak-builder","u":"/multi-scrobbler/development/flatpak/","h":"#flatpak-and-flatpak-builder","p":337},{"i":341,"t":"Update Project source","u":"/multi-scrobbler/development/flatpak/","h":"#update-project-source","p":337},{"i":343,"t":"Generate Sources and Build","u":"/multi-scrobbler/development/flatpak/","h":"#generate-sources-and-build","p":337},{"i":344,"t":"Use Setup Script","u":"/multi-scrobbler/development/flatpak/","h":"#use-setup-script","p":337},{"i":346,"t":"Manual Setup","u":"/multi-scrobbler/development/flatpak/","h":"#manual-setup","p":337},{"i":348,"t":"Run App","u":"/multi-scrobbler/development/flatpak/","h":"","p":337},{"i":351,"t":"Connection Issues","u":"/multi-scrobbler/FAQ/","h":"#connection-issues","p":350},{"i":352,"t":"Webscrobbler/Listenbrainz Endpoint doesn't connect","u":"/multi-scrobbler/FAQ/","h":"#ingress-connection","p":350},{"i":354,"t":"Spotify/Deezer/LastFM won't authenticate","u":"/multi-scrobbler/FAQ/","h":"#spotifydeezerlastfm-wont-authenticate","p":350},{"i":356,"t":"Youtube Music fails after some time","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-fails-after-some-time","p":350},{"i":358,"t":"Configuration Issues","u":"/multi-scrobbler/FAQ/","h":"#configuration-issues","p":350},{"i":359,"t":"Config could not be parsed","u":"/multi-scrobbler/FAQ/","h":"#config-could-not-be-parsed","p":350},{"i":361,"t":"Scrobbling Issues","u":"/multi-scrobbler/FAQ/","h":"#scrobbling-issues","p":350},{"i":362,"t":"Last.fm does not scrobble tracks with multiple artists correctly","u":"/multi-scrobbler/FAQ/","h":"#lastfm-does-not-scrobble-tracks-with-multiple-artists-correctly","p":350},{"i":364,"t":"Google Cast track information is missing/incorrect or MS player has weird times","u":"/multi-scrobbler/FAQ/","h":"#google-cast-track-information-is-missingincorrect-or-ms-player-has-weird-times","p":350},{"i":366,"t":"Google Cast device does not track media","u":"/multi-scrobbler/FAQ/","h":"#google-cast-device-does-not-track-media","p":350},{"i":368,"t":"VLC is not scrobbling fields correctly","u":"/multi-scrobbler/FAQ/","h":"#vlc-is-not-scrobbling-fields-correctly","p":350},{"i":370,"t":"Youtube Music misses or duplicates scrobbles","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-misses-or-duplicates-scrobbles","p":350},{"i":374,"t":"Docker","u":"/multi-scrobbler/installation/","h":"#docker","p":372},{"i":376,"t":"Docker Usage Example","u":"/multi-scrobbler/installation/","h":"#docker-usage-example","p":372},{"i":378,"t":"Local Installation","u":"/multi-scrobbler/installation/","h":"#local-installation","p":372},{"i":380,"t":"Nodejs","u":"/multi-scrobbler/installation/","h":"#nodejs","p":372},{"i":382,"t":"Flatpak","u":"/multi-scrobbler/installation/","h":"#flatpak","p":372},{"i":386,"t":"Create A Unit File","u":"/multi-scrobbler/installation/service/","h":"#create-a-unit-file","p":384},{"i":388,"t":"Start the Service","u":"/multi-scrobbler/installation/service/","h":"#start-the-service","p":384},{"i":390,"t":"Other Service Methods","u":"/multi-scrobbler/installation/service/","h":"","p":384},{"i":394,"t":"Create Docker Compose File","u":"/multi-scrobbler/quickstart/","h":"#create-docker-compose-file","p":392},{"i":396,"t":"Setup Sources","u":"/multi-scrobbler/quickstart/","h":"#setup-sources","p":392},{"i":398,"t":"Setup Clients","u":"/multi-scrobbler/quickstart/","h":"#setup-clients","p":392},{"i":400,"t":"Start Multi-Scrobbler","u":"/multi-scrobbler/quickstart/","h":"#start-multi-scrobbler","p":392},{"i":402,"t":"Next Steps","u":"/multi-scrobbler/quickstart/","h":"#next-steps","p":392},{"i":405,"t":"Updating","u":"/multi-scrobbler/updating/","h":"#updating","p":404},{"i":407,"t":"Docker","u":"/multi-scrobbler/updating/","h":"#docker","p":404},{"i":409,"t":"Nodejs","u":"/multi-scrobbler/updating/","h":"#nodejs","p":404},{"i":413,"t":"How Does multi-scrobbler (MS) Work?","u":"/multi-scrobbler/","h":"#how-does-multi-scrobbler-ms-work","p":411},{"i":415,"t":"Source","u":"/multi-scrobbler/","h":"#source","p":411},{"i":417,"t":"Client","u":"/multi-scrobbler/","h":"#client","p":411},{"i":419,"t":"Quick Start","u":"/multi-scrobbler/","h":"#quick-start","p":411},{"i":421,"t":"Installation","u":"/multi-scrobbler/","h":"#installation","p":411},{"i":423,"t":"Configuration","u":"/multi-scrobbler/","h":"#configuration","p":411},{"i":425,"t":"Usage","u":"/multi-scrobbler/","h":"#usage","p":411},{"i":427,"t":"Help/FAQ","u":"/multi-scrobbler/","h":"#helpfaq","p":411},{"i":429,"t":"Development","u":"/multi-scrobbler/","h":"#development","p":411},{"i":431,"t":"License","u":"/multi-scrobbler/","h":"#license","p":411},{"i":435,"t":"Clients","u":"/multi-scrobbler/configuration/clients/","h":"#clients","p":433},{"i":437,"t":"Features","u":"/multi-scrobbler/configuration/clients/","h":"#features","p":433},{"i":438,"t":"Dead Scrobbles","u":"/multi-scrobbler/configuration/clients/","h":"#dead-scrobbles","p":433},{"i":440,"t":"Now Playing","u":"/multi-scrobbler/configuration/clients/","h":"#now-playing","p":433}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/3",[0,1.492,1,3.924]],["t/5",[2,2.273,3,2.273,4,2.88]],["t/7",[5,4.766,6,4.766]],["t/9",[7,4.766,8,3.475]],["t/11",[9,6.006]],["t/13",[10,4.766,11,4.766]],["t/15",[12,4.766,13,4.766]],["t/17",[14,6.006]],["t/19",[0,1.492,15,4.766]],["t/21",[16,4.766,17,4.258]],["t/25",[0,1.881]],["t/29",[0,1.881]],["t/33",[0,1.881]],["t/37",[0,1.881]],["t/41",[2,3.457]],["t/43",[0,1.881]],["t/44",[18,6.006]],["t/48",[2,3.457]],["t/50",[0,1.881]],["t/51",[19,6.006]],["t/55",[20,4.766,21,3.475]],["t/57",[22,3.95,23,3.95,24,3.252]],["t/61",[3,3.457]],["t/63",[25,5.367]],["t/64",[1,3.924,3,2.743]],["t/66",[26,3.675,27,4.766]],["t/68",[28,3.95,29,2.348,30,3.95]],["t/70",[29,2.833,31,4.766]],["t/72",[29,2.833,32,4.766]],["t/76",[0,1.881]],["t/80",[33,4.766,34,4.766]],["t/82",[0,1.881]],["t/84",[35,4.258,36,4.766]],["t/88",[0,1.881]],["t/92",[0,1.881]],["t/98",[8,4.38]],["t/100",[0,1.881]],["t/104",[8,4.38]],["t/106",[0,1.881]],["t/112",[8,4.38]],["t/114",[0,1.881]],["t/118",[0,1.881]],["t/122",[8,4.38]],["t/124",[37,6.006]],["t/126",[0,1.881]],["t/130",[0,1.881]],["t/134",[0,1.881]],["t/138",[38,4.766,39,4.766]],["t/140",[40,4.258,41,4.766]],["t/142",[0,1.881]],["t/146",[0,1.881]],["t/150",[0,1.881]],["t/154",[0,1.881]],["t/160",[2,3.457]],["t/162",[0,1.881]],["t/166",[0,1.881]],["t/170",[0,1.881]],["t/174",[2,3.457]],["t/176",[0,1.881]],["t/180",[0,1.881]],["t/184",[42,4.258,43,4.766]],["t/186",[44,4.766,45,4.766]],["t/188",[0,1.881]],["t/192",[0,1.881]],["t/196",[0,1.881]],["t/200",[29,2.833,46,4.766]],["t/202",[47,4.766,48,4.258]],["t/204",[48,5.367]],["t/206",[49,3.924,50,3.475]],["t/208",[0,1.492,50,3.475]],["t/210",[51,3.045,52,2.625,53,3.529]],["t/212",[49,3.924,54,4.258]],["t/214",[55,5.367]],["t/218",[53,3.529,56,3.95,57,3.95]],["t/220",[58,3.043,59,4.766]],["t/222",[0,1.881]],["t/223",[2,2.743,60,4.766]],["t/225",[0,1.492,50,3.475]],["t/227",[51,4.631]],["t/229",[0,1.492,61,4.258]],["t/231",[62,4.258,63,4.766]],["t/233",[64,5.367]],["t/235",[65,6.006]],["t/236",[66,6.006]],["t/238",[67,5.367]],["t/240",[68,6.006]],["t/242",[69,4.766,70,4.766]],["t/243",[71,4.258,72,3.924]],["t/245",[67,4.258,73,4.766]],["t/247",[62,3.529,74,3.252,75,3.95]],["t/249",[55,5.367]],["t/251",[76,4.631]],["t/252",[77,5.367]],["t/254",[71,4.258,72,3.924]],["t/256",[29,2.005,49,2.777,78,3.372,79,3.372]],["t/260",[0,1.881]],["t/262",[51,4.631]],["t/264",[50,3.475,72,3.924]],["t/266",[0,1.492,61,4.258]],["t/268",[76,4.631]],["t/269",[58,1.666,74,2.149,80,2.149,81,2.332,82,2.61,83,2.332]],["t/271",[58,2.153,80,2.777,84,3.372,85,3.372]],["t/273",[58,1.879,86,2.629,87,3.789,88,2.942]],["t/277",[0,1.881]],["t/279",[64,3.529,89,3.95,90,3.95]],["t/281",[51,4.631]],["t/283",[76,4.631]],["t/284",[54,4.258,91,3.924]],["t/286",[52,1.955,87,2.423,92,2.423,93,2.942,94,2.423]],["t/288",[87,2.423,92,2.423,95,2.942,96,2.942,97,2.942]],["t/290",[52,1.955,58,1.879,94,2.423,98,2.942,99,2.942]],["t/292",[40,2.332,52,1.734,58,1.666,92,2.149,94,2.149,100,2.61]],["t/294",[26,1.808,58,2.45,81,2.095,83,2.095,86,2.095,101,2.344]],["t/299",[102,6.006]],["t/301",[2,2.743,103,4.258]],["t/303",[104,6.006]],["t/305",[105,4.766,106,4.258]],["t/307",[21,4.38]],["t/309",[107,4.766,108,4.766]],["t/311",[52,3.167,109,4.258]],["t/313",[3,2.273,4,2.88,110,3.045]],["t/317",[111,6.006]],["t/319",[77,4.258,112,3.309]],["t/320",[21,2.88,112,2.743,113,3.95]],["t/322",[3,2.273,110,3.045,114,3.95]],["t/324",[3,2.273,21,2.88,115,3.95]],["t/326",[52,2.241,109,3.013,112,2.342,116,3.372]],["t/328",[50,3.475,112,3.309]],["t/330",[112,3.309,117,4.766]],["t/332",[112,3.309,118,4.766]],["t/333",[119,6.006]],["t/335",[1,3.924,3,2.743]],["t/338",[120,3.924,121,4.766]],["t/339",[122,5.137,123,3.95]],["t/341",[3,2.273,103,3.529,124,3.529]],["t/343",[3,2.273,125,3.95,126,3.95]],["t/344",[2,2.273,74,3.252,127,3.95]],["t/346",[2,2.743,128,4.766]],["t/348",[129,4.766,130,4.766]],["t/351",[131,4.258,132,3.924]],["t/352",[17,3.013,131,3.013,133,3.372,134,3.372]],["t/354",[135,3.95,136,3.95,137,3.95]],["t/356",[138,3.013,139,3.013,140,3.372,141,3.013]],["t/358",[0,1.492,132,3.924]],["t/359",[21,3.475,80,3.924]],["t/361",[29,2.833,132,3.924]],["t/362",[29,1.551,42,2.332,58,1.666,142,2.61,143,2.149,144,2.332]],["t/364",[141,1.741,143,1.604,145,1.741,146,1.741,147,1.948,148,1.948,149,1.741,150,1.948,151,1.948]],["t/366",[143,2.423,145,2.629,146,2.629,152,2.942,153,2.942]],["t/368",[29,2.005,144,3.013,154,3.372,155,3.372]],["t/370",[29,1.749,35,2.629,138,2.629,139,2.629,156,2.942]],["t/374",[157,4.631]],["t/376",[76,3.045,91,3.252,157,3.045]],["t/378",[120,3.924,158,4.766]],["t/380",[159,5.367]],["t/382",[122,5.367]],["t/386",[24,3.252,110,3.045,160,3.95]],["t/388",[161,3.924,162,4.258]],["t/390",[162,4.258,163,4.766]],["t/394",[24,2.777,110,2.6,157,2.6,164,3.372]],["t/396",[2,2.743,3,2.743]],["t/398",[2,2.743,4,3.475]],["t/400",[26,3.045,161,3.252,165,3.529]],["t/402",[166,4.766,167,4.766]],["t/405",[124,5.367]],["t/407",[157,4.631]],["t/409",[159,5.367]],["t/413",[26,2.6,149,3.013,165,3.013,168,3.372]],["t/415",[3,3.457]],["t/417",[4,4.38]],["t/419",[161,3.924,169,4.766]],["t/421",[120,4.946]],["t/423",[0,1.881]],["t/425",[91,4.946]],["t/427",[170,6.006]],["t/429",[106,5.367]],["t/431",[171,6.006]],["t/435",[4,4.38]],["t/437",[25,5.367]],["t/438",[29,2.833,172,4.766]],["t/440",[52,3.167,173,4.766]]],"invertedIndex":[["add",{"_index":78,"t":{"256":{"position":[[0,3]]}}}],["album",{"_index":40,"t":{"140":{"position":[[0,5]]},"292":{"position":[[25,6]]}}}],["api",{"_index":60,"t":{"223":{"position":[[0,3]]}}}],["app",{"_index":130,"t":{"348":{"position":[[4,3]]}}}],["applic",{"_index":5,"t":{"7":{"position":[[0,11]]}}}],["architectur",{"_index":102,"t":{"299":{"position":[[0,12]]}}}],["arl",{"_index":34,"t":{"80":{"position":[[9,3]]}}}],["artist",{"_index":58,"t":{"220":{"position":[[7,6]]},"269":{"position":[[11,7]]},"271":{"position":[[21,7]]},"273":{"position":[[8,7]]},"290":{"position":[[18,6]]},"292":{"position":[[16,8]]},"294":{"position":[[16,6],[45,6]]},"362":{"position":[[47,7]]}}}],["authent",{"_index":137,"t":{"354":{"position":[[28,12]]}}}],["backlog",{"_index":119,"t":{"333":{"position":[[0,7]]}}}],["base",{"_index":7,"t":{"9":{"position":[[0,4]]}}}],["behavior",{"_index":32,"t":{"72":{"position":[[16,8]]}}}],["best",{"_index":69,"t":{"242":{"position":[[0,4]]}}}],["black/whitelist",{"_index":45,"t":{"186":{"position":[[11,15]]}}}],["blacklist",{"_index":41,"t":{"140":{"position":[[6,9]]}}}],["blacklist/whitelist",{"_index":39,"t":{"138":{"position":[[4,19]]}}}],["build",{"_index":126,"t":{"343":{"position":[[21,5]]}}}],["builder",{"_index":123,"t":{"339":{"position":[[20,7]]}}}],["cach",{"_index":9,"t":{"11":{"position":[[0,7]]}}}],["cast",{"_index":146,"t":{"364":{"position":[[7,4]]},"366":{"position":[[7,4]]}}}],["class",{"_index":108,"t":{"309":{"position":[[9,5]]}}}],["client",{"_index":4,"t":{"5":{"position":[[18,7]]},"313":{"position":[[9,7]]},"398":{"position":[[6,7]]},"417":{"position":[[0,6]]},"435":{"position":[[0,7]]}}}],["common",{"_index":105,"t":{"305":{"position":[[0,6]]}}}],["compos",{"_index":164,"t":{"394":{"position":[[14,7]]}}}],["concret",{"_index":107,"t":{"309":{"position":[[0,8]]}}}],["condit",{"_index":54,"t":{"212":{"position":[[0,11]]},"284":{"position":[[16,9]]}}}],["config",{"_index":21,"t":{"55":{"position":[[11,6]]},"307":{"position":[[0,6]]},"320":{"position":[[21,6]]},"324":{"position":[[23,6]]},"359":{"position":[[0,6]]}}}],["configur",{"_index":0,"t":{"3":{"position":[[0,13]]},"19":{"position":[[8,14]]},"25":{"position":[[0,13]]},"29":{"position":[[0,13]]},"33":{"position":[[0,13]]},"37":{"position":[[0,13]]},"43":{"position":[[0,13]]},"50":{"position":[[0,13]]},"76":{"position":[[0,13]]},"82":{"position":[[0,13]]},"88":{"position":[[0,13]]},"92":{"position":[[0,13]]},"100":{"position":[[0,13]]},"106":{"position":[[0,13]]},"114":{"position":[[0,13]]},"118":{"position":[[0,13]]},"126":{"position":[[0,13]]},"130":{"position":[[0,13]]},"134":{"position":[[0,13]]},"142":{"position":[[0,13]]},"146":{"position":[[0,13]]},"150":{"position":[[0,13]]},"154":{"position":[[0,13]]},"162":{"position":[[0,13]]},"166":{"position":[[0,13]]},"170":{"position":[[0,13]]},"176":{"position":[[0,13]]},"180":{"position":[[0,13]]},"188":{"position":[[0,13]]},"192":{"position":[[0,13]]},"196":{"position":[[0,13]]},"208":{"position":[[0,11]]},"222":{"position":[[0,13]]},"225":{"position":[[6,13]]},"229":{"position":[[4,13]]},"260":{"position":[[0,13]]},"266":{"position":[[4,13]]},"277":{"position":[[0,13]]},"358":{"position":[[0,13]]},"423":{"position":[[0,13]]}}}],["connect",{"_index":131,"t":{"351":{"position":[[0,10]]},"352":{"position":[[43,7]]}}}],["connector",{"_index":44,"t":{"186":{"position":[[0,10]]}}}],["consider",{"_index":73,"t":{"245":{"position":[[7,14]]}}}],["content",{"_index":96,"t":{"288":{"position":[[25,7]]}}}],["coolplay",{"_index":114,"t":{"322":{"position":[[7,10]]}}}],["correctli",{"_index":144,"t":{"362":{"position":[[55,9]]},"368":{"position":[[29,9]]}}}],["creat",{"_index":110,"t":{"313":{"position":[[0,8]]},"322":{"position":[[0,6]]},"386":{"position":[[0,6]]},"394":{"position":[[0,6]]}}}],["custom",{"_index":82,"t":{"269":{"position":[[34,6]]}}}],["data",{"_index":53,"t":{"210":{"position":[[15,4]]},"218":{"position":[[21,4]]}}}],["dead",{"_index":172,"t":{"438":{"position":[[0,4]]}}}],["debug",{"_index":10,"t":{"13":{"position":[[0,5]]}}}],["default",{"_index":72,"t":{"243":{"position":[[9,7]]},"254":{"position":[[9,7]]},"264":{"position":[[0,7]]}}}],["defin",{"_index":113,"t":{"320":{"position":[[0,6]]}}}],["delimit",{"_index":83,"t":{"269":{"position":[[41,9]]},"294":{"position":[[28,10]]}}}],["destin",{"_index":30,"t":{"68":{"position":[[18,11]]}}}],["detect",{"_index":36,"t":{"84":{"position":[[10,9]]}}}],["develop",{"_index":106,"t":{"305":{"position":[[7,11]]},"429":{"position":[[0,11]]}}}],["devic",{"_index":152,"t":{"366":{"position":[[12,6]]}}}],["device/us",{"_index":27,"t":{"66":{"position":[[6,11]]}}}],["disabl",{"_index":12,"t":{"15":{"position":[[0,7]]}}}],["docker",{"_index":157,"t":{"374":{"position":[[0,6]]},"376":{"position":[[0,6]]},"394":{"position":[[7,6]]},"407":{"position":[[0,6]]}}}],["doesn't",{"_index":134,"t":{"352":{"position":[[35,7]]}}}],["don't",{"_index":84,"t":{"271":{"position":[[0,5]]}}}],["duplic",{"_index":35,"t":{"84":{"position":[[0,9]]},"370":{"position":[[24,10]]}}}],["end",{"_index":97,"t":{"288":{"position":[[42,3]]}}}],["endpoint",{"_index":17,"t":{"21":{"position":[[7,8]]},"352":{"position":[[26,8]]}}}],["env",{"_index":61,"t":{"229":{"position":[[0,3]]},"266":{"position":[[0,3]]}}}],["exampl",{"_index":76,"t":{"251":{"position":[[0,8]]},"268":{"position":[[0,8]]},"283":{"position":[[0,8]]},"376":{"position":[[13,7]]}}}],["express",{"_index":90,"t":{"279":{"position":[[19,10]]}}}],["extract",{"_index":86,"t":{"273":{"position":[[0,7]]},"294":{"position":[[0,7]]}}}],["fail",{"_index":140,"t":{"356":{"position":[[14,5]]}}}],["featur",{"_index":25,"t":{"63":{"position":[[0,8]]},"437":{"position":[[0,8]]}}}],["field",{"_index":155,"t":{"368":{"position":[[22,6]]}}}],["file",{"_index":24,"t":{"57":{"position":[[14,5]]},"386":{"position":[[14,4]]},"394":{"position":[[22,4]]}}}],["filter",{"_index":67,"t":{"238":{"position":[[0,9]]},"245":{"position":[[0,6]]}}}],["flatpak",{"_index":122,"t":{"339":{"position":[[0,7],[12,7]]},"382":{"position":[[0,7]]}}}],["further",{"_index":118,"t":{"332":{"position":[[0,7]]}}}],["gener",{"_index":125,"t":{"343":{"position":[[0,8]]}}}],["googl",{"_index":145,"t":{"364":{"position":[[0,6]]},"366":{"position":[[0,6]]}}}],["handl",{"_index":18,"t":{"44":{"position":[[0,6]]}}}],["health",{"_index":16,"t":{"21":{"position":[[0,6]]}}}],["help/faq",{"_index":170,"t":{"427":{"position":[[0,8]]}}}],["hook",{"_index":48,"t":{"202":{"position":[[9,5]]},"204":{"position":[[0,4]]}}}],["identifi",{"_index":19,"t":{"51":{"position":[[0,10]]}}}],["implement",{"_index":112,"t":{"319":{"position":[[8,14]]},"320":{"position":[[11,9]]},"326":{"position":[[0,9]]},"328":{"position":[[0,9]]},"330":{"position":[[0,9]]},"332":{"position":[[8,14]]}}}],["inform",{"_index":147,"t":{"364":{"position":[[18,11]]}}}],["initi",{"_index":115,"t":{"324":{"position":[[0,10]]}}}],["instal",{"_index":120,"t":{"338":{"position":[[0,7]]},"378":{"position":[[6,12]]},"421":{"position":[[0,12]]}}}],["intend",{"_index":59,"t":{"220":{"position":[[14,8]]}}}],["issu",{"_index":132,"t":{"351":{"position":[[11,6]]},"358":{"position":[[14,6]]},"361":{"position":[[11,6]]}}}],["journey",{"_index":46,"t":{"200":{"position":[[0,7]]}}}],["json",{"_index":23,"t":{"57":{"position":[[9,4]]}}}],["last.fm",{"_index":142,"t":{"362":{"position":[[0,7]]}}}],["licens",{"_index":171,"t":{"431":{"position":[[0,7]]}}}],["lifecyl",{"_index":47,"t":{"202":{"position":[[0,8]]}}}],["limit",{"_index":28,"t":{"68":{"position":[[0,8]]}}}],["local",{"_index":158,"t":{"378":{"position":[[0,5]]}}}],["log",{"_index":55,"t":{"214":{"position":[[0,7]]},"249":{"position":[[0,7]]}}}],["mainstream",{"_index":57,"t":{"218":{"position":[[10,10]]}}}],["manual",{"_index":128,"t":{"346":{"position":[[0,6]]}}}],["match",{"_index":62,"t":{"231":{"position":[[0,8]]},"247":{"position":[[14,5]]}}}],["media",{"_index":153,"t":{"366":{"position":[[34,5]]}}}],["metadata",{"_index":79,"t":{"256":{"position":[[4,8]]}}}],["method",{"_index":163,"t":{"390":{"position":[[14,7]]}}}],["minim",{"_index":77,"t":{"252":{"position":[[0,7]]},"319":{"position":[[0,7]]}}}],["miss",{"_index":156,"t":{"370":{"position":[[14,6]]}}}],["missing/incorrect",{"_index":148,"t":{"364":{"position":[[33,17]]}}}],["misspel",{"_index":99,"t":{"290":{"position":[[7,10]]}}}],["mode",{"_index":11,"t":{"13":{"position":[[6,4]]}}}],["modif",{"_index":49,"t":{"206":{"position":[[0,12]]},"212":{"position":[[12,12]]},"256":{"position":[[31,13]]}}}],["modifi",{"_index":88,"t":{"273":{"position":[[38,6]]}}}],["monitor",{"_index":14,"t":{"17":{"position":[[0,10]]}}}],["more",{"_index":56,"t":{"218":{"position":[[0,4]]}}}],["ms",{"_index":149,"t":{"364":{"position":[[54,2]]},"413":{"position":[[25,4]]}}}],["multi",{"_index":26,"t":{"66":{"position":[[0,5]]},"294":{"position":[[39,5]]},"400":{"position":[[6,5]]},"413":{"position":[[9,5]]}}}],["multipl",{"_index":42,"t":{"184":{"position":[[0,8]]},"362":{"position":[[38,8]]}}}],["music",{"_index":139,"t":{"356":{"position":[[8,5]]},"370":{"position":[[8,5]]}}}],["musicbrainz",{"_index":63,"t":{"231":{"position":[[14,11]]}}}],["new",{"_index":94,"t":{"286":{"position":[[32,3]]},"290":{"position":[[32,3]]},"292":{"position":[[39,3]]}}}],["next",{"_index":166,"t":{"402":{"position":[[0,4]]}}}],["nodej",{"_index":159,"t":{"380":{"position":[[0,6]]},"409":{"position":[[0,6]]}}}],["now",{"_index":173,"t":{"440":{"position":[[0,3]]}}}],["object",{"_index":109,"t":{"311":{"position":[[5,6]]},"326":{"position":[[15,6]]}}}],["on",{"_index":20,"t":{"55":{"position":[[7,3]]}}}],["option",{"_index":6,"t":{"7":{"position":[[12,7]]}}}],["parenthes",{"_index":95,"t":{"288":{"position":[[11,13]]}}}],["pars",{"_index":80,"t":{"269":{"position":[[0,5]]},"271":{"position":[[6,5]]},"359":{"position":[[20,6]]}}}],["partial",{"_index":75,"t":{"247":{"position":[[6,7]]}}}],["phrase",{"_index":93,"t":{"286":{"position":[[7,6]]}}}],["play",{"_index":52,"t":{"210":{"position":[[10,4]]},"286":{"position":[[36,5]]},"290":{"position":[[36,5]]},"292":{"position":[[43,5]]},"311":{"position":[[0,4]]},"326":{"position":[[10,4]]},"440":{"position":[[4,7]]}}}],["player",{"_index":150,"t":{"364":{"position":[[57,6]]}}}],["poll",{"_index":117,"t":{"330":{"position":[[10,7]]}}}],["practic",{"_index":70,"t":{"242":{"position":[[5,9]]}}}],["primari",{"_index":101,"t":{"294":{"position":[[8,7]]}}}],["project",{"_index":103,"t":{"301":{"position":[[0,7]]},"341":{"position":[[7,7]]}}}],["quick",{"_index":169,"t":{"419":{"position":[[0,5]]}}}],["refin",{"_index":65,"t":{"235":{"position":[[0,8]]}}}],["remov",{"_index":92,"t":{"286":{"position":[[0,6]]},"288":{"position":[[0,6]]},"292":{"position":[[0,6]]}}}],["renam",{"_index":98,"t":{"290":{"position":[[0,6]]}}}],["replac",{"_index":89,"t":{"279":{"position":[[11,7]]}}}],["requir",{"_index":121,"t":{"338":{"position":[[8,12]]}}}],["retriev",{"_index":33,"t":{"80":{"position":[[0,8]]}}}],["rule",{"_index":51,"t":{"210":{"position":[[0,5]]},"227":{"position":[[0,5]]},"262":{"position":[[0,5]]},"281":{"position":[[0,5]]}}}],["run",{"_index":129,"t":{"348":{"position":[[0,3]]}}}],["scenario",{"_index":111,"t":{"317":{"position":[[0,8]]}}}],["score",{"_index":66,"t":{"236":{"position":[[0,5]]}}}],["script",{"_index":127,"t":{"344":{"position":[[10,6]]}}}],["scrobbl",{"_index":29,"t":{"68":{"position":[[9,8]]},"70":{"position":[[0,8]]},"72":{"position":[[7,8]]},"200":{"position":[[13,8]]},"256":{"position":[[22,8]]},"361":{"position":[[0,10]]},"362":{"position":[[17,8]]},"368":{"position":[[11,10]]},"370":{"position":[[35,9]]},"438":{"position":[[5,9]]}}}],["scrobbler",{"_index":165,"t":{"400":{"position":[[12,9]]},"413":{"position":[[15,9]]}}}],["search",{"_index":64,"t":{"233":{"position":[[0,9]]},"279":{"position":[[0,6]]}}}],["sensibl",{"_index":71,"t":{"243":{"position":[[0,8]]},"254":{"position":[[0,8]]}}}],["separ",{"_index":22,"t":{"57":{"position":[[0,8]]}}}],["servic",{"_index":162,"t":{"388":{"position":[[10,7]]},"390":{"position":[[6,7]]}}}],["setup",{"_index":2,"t":{"5":{"position":[[0,5]]},"41":{"position":[[0,5]]},"48":{"position":[[0,5]]},"160":{"position":[[0,5]]},"174":{"position":[[0,5]]},"223":{"position":[[4,5]]},"301":{"position":[[8,5]]},"344":{"position":[[4,5]]},"346":{"position":[[7,5]]},"396":{"position":[[0,5]]},"398":{"position":[[0,5]]}}}],["sort",{"_index":68,"t":{"240":{"position":[[0,7]]}}}],["sourc",{"_index":3,"t":{"5":{"position":[[6,7]]},"61":{"position":[[0,7]]},"64":{"position":[[9,7]]},"313":{"position":[[21,7]]},"322":{"position":[[18,6]]},"324":{"position":[[11,6]]},"335":{"position":[[6,6]]},"341":{"position":[[15,6]]},"343":{"position":[[9,7]]},"396":{"position":[[6,7]]},"415":{"position":[[0,6]]}}}],["specif",{"_index":85,"t":{"271":{"position":[[12,8]]}}}],["spotify/deezer/lastfm",{"_index":135,"t":{"354":{"position":[[0,21]]}}}],["stage",{"_index":50,"t":{"206":{"position":[[13,5]]},"208":{"position":[[12,6]]},"225":{"position":[[0,5]]},"264":{"position":[[8,5]]},"328":{"position":[[10,6]]}}}],["start",{"_index":161,"t":{"388":{"position":[[0,5]]},"400":{"position":[[0,5]]},"419":{"position":[[6,5]]}}}],["step",{"_index":167,"t":{"402":{"position":[[5,5]]}}}],["string",{"_index":81,"t":{"269":{"position":[[19,6]]},"294":{"position":[[52,6]]}}}],["threshold",{"_index":31,"t":{"70":{"position":[[9,10]]}}}],["time",{"_index":141,"t":{"356":{"position":[[31,4]]},"364":{"position":[[74,5]]}}}],["titl",{"_index":87,"t":{"273":{"position":[[21,5],[45,5]]},"286":{"position":[[19,5]]},"288":{"position":[[51,5]]}}}],["token",{"_index":37,"t":{"124":{"position":[[0,5]]}}}],["track",{"_index":143,"t":{"362":{"position":[[26,6]]},"364":{"position":[[12,5]]},"366":{"position":[[28,5]]}}}],["transform",{"_index":116,"t":{"326":{"position":[[22,9]]}}}],["type",{"_index":1,"t":{"3":{"position":[[14,5]]},"64":{"position":[[0,5]]},"335":{"position":[[13,5]]}}}],["unit",{"_index":160,"t":{"386":{"position":[[9,4]]}}}],["updat",{"_index":124,"t":{"341":{"position":[[0,6]]},"405":{"position":[[0,8]]}}}],["uri",{"_index":38,"t":{"138":{"position":[[0,3]]}}}],["url",{"_index":8,"t":{"9":{"position":[[5,3]]},"98":{"position":[[0,3]]},"104":{"position":[[0,3]]},"112":{"position":[[0,3]]},"122":{"position":[[0,3]]}}}],["us",{"_index":74,"t":{"247":{"position":[[0,5]]},"269":{"position":[[26,5]]},"344":{"position":[[0,3]]}}}],["usag",{"_index":91,"t":{"284":{"position":[[0,5]]},"376":{"position":[[7,5]]},"425":{"position":[[0,5]]}}}],["user",{"_index":43,"t":{"184":{"position":[[9,5]]}}}],["variou",{"_index":100,"t":{"292":{"position":[[7,8]]}}}],["vlc",{"_index":154,"t":{"368":{"position":[[0,3]]}}}],["vscode",{"_index":104,"t":{"303":{"position":[[0,6]]}}}],["web",{"_index":13,"t":{"15":{"position":[[8,3]]}}}],["webhook",{"_index":15,"t":{"19":{"position":[[0,7]]}}}],["webscrobbler/listenbrainz",{"_index":133,"t":{"352":{"position":[[0,25]]}}}],["weird",{"_index":151,"t":{"364":{"position":[[68,5]]}}}],["won't",{"_index":136,"t":{"354":{"position":[[22,5]]}}}],["work",{"_index":168,"t":{"413":{"position":[[30,5]]}}}],["youtub",{"_index":138,"t":{"356":{"position":[[0,7]]},"370":{"position":[[0,7]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":1,"t":"Check the FAQ if you have any issues after configuration!","s":"Overview","u":"/multi-scrobbler/configuration/","p":1},{"i":23,"t":"To monitor and re-scrobble activity from a Koito account create a Koito (Source)","s":"Koito","u":"/multi-scrobbler/configuration/clients/koito/","p":23},{"i":27,"t":"* To monitor and re-scrobble activity from your Last.fm account create a Last.fm (Source)","s":"Last.fm","u":"/multi-scrobbler/configuration/clients/lastfm/","p":27},{"i":31,"t":"* To monitor and re-scrobble activity from a Listenbrainz account create a Listenbrainz (Source)","s":"Listenbrainz","u":"/multi-scrobbler/configuration/clients/listenbrainz/","p":31},{"i":35,"t":"Setup a Maloja server if you have not already done this.","s":"Maloja","u":"/multi-scrobbler/configuration/clients/maloja/","p":35},{"i":39,"t":"To monitor and re-scrobble activity from Rocksky create a Rocksky (Source)","s":"Rocksky","u":"/multi-scrobbler/configuration/clients/rocksky/","p":39},{"i":46,"t":"To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source)","s":"Teal.fm","u":"/multi-scrobbler/configuration/clients/tealfm/","p":46},{"i":53,"t":"Scenario:","s":"Example Complex Scenario","u":"/multi-scrobbler/configuration/kitchensink/","p":53},{"i":59,"t":"A Source is a data source that contains information about tracks you are playing like a music player or platform. Examples are Spotify, Jellyfin, Plex, Youtube Music, Airsonic, etc...","s":"Overview","u":"/multi-scrobbler/configuration/sources/","p":59},{"i":74,"t":"Azuracast may not correctly report track length or position. If this is the case you should reduce the \"listened to\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly.","s":"Azuracast","u":"/multi-scrobbler/configuration/sources/azuracast/","p":74},{"i":78,"t":"This Source uses unofficial methods to access Deezer data that are likely in violation of Deezer's TOS. Deezer may change or remove these methods at any time, breaking functionality. Use this Source at your own risk.","s":"Deezer","u":"/multi-scrobbler/configuration/sources/deezer/","p":78},{"i":86,"t":"If your media device can be Cast to using this button Chromecast Icon on your phone/computer then multi-scrobbler can monitor it in order to scrobble music you play.","s":"Google Cast (Chromecast)","u":"/multi-scrobbler/configuration/sources/google-cast/","p":86},{"i":90,"t":"Parse metadata from any Icecast Station (streams) to use for scrobbling.","s":"Icecast","u":"/multi-scrobbler/configuration/sources/icecast/","p":90},{"i":94,"t":"Must be using Jellyfin 10.7 or greater","s":"Jellyfin","u":"/multi-scrobbler/configuration/sources/jellyfin/","p":94},{"i":96,"t":"In order for multi-scrobbler to communicate with JRiver you must have Web Server Interface enabled. This can can be in the JRiver GUI:","s":"JRiver","u":"/multi-scrobbler/configuration/sources/jriver/","p":96},{"i":102,"t":"In order for multi-scrobbler to communicate with Kodi you must have the Web Interface enabled. This can be done in the Kodi GUI:","s":"Kodi","u":"/multi-scrobbler/configuration/sources/kodi/","p":102},{"i":108,"t":"This Source monitors a Koito account's scrobble history and then re-scrobbles discovered tracks to configured Clients.","s":"Koito","u":"/multi-scrobbler/configuration/sources/koito-source/","p":108},{"i":110,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Last.fm server.","s":"Lastfm (Endpoint)","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","p":110},{"i":116,"t":"This Source monitors your Last.fm scrobble history and re-scrobbles new activity to configured Clients.","s":"Lastfm","u":"/multi-scrobbler/configuration/sources/lastfm-source/","p":116},{"i":120,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Listenbrainz server.","s":"Listenbrainz (Endpoint)","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","p":120},{"i":128,"t":"This Source monitors a Listenbrainz account's scrobble history and then re-scrobbles discovered tracks to configured clients.","s":"Listenbrainz","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","p":128},{"i":132,"t":"To scrobble to a Maloja server, create a Maloja (Client)","s":"Maloja","u":"/multi-scrobbler/configuration/sources/maloja/","p":132},{"i":136,"t":"Mopidy is a headless music server that supports playing music from many standard and non-standard sources such as Pandora, Bandcamp, and Tunein.","s":"Mopidy","u":"/multi-scrobbler/configuration/sources/mopidy/","p":136},{"i":144,"t":"MS communicates with MPD using the TCP client connection.","s":"MPD (Music Player Daemon)","u":"/multi-scrobbler/configuration/sources/mpd/","p":144},{"i":148,"t":"MPRIS is a standard interface for communicating with Music Players on linux operating systems.","s":"MPRIS","u":"/multi-scrobbler/configuration/sources/mpris/","p":148},{"i":152,"t":"In order to use Musikcube configure it to accept websocket connections in server setup:","s":"Musikcube","u":"/multi-scrobbler/configuration/sources/musikcube/","p":152},{"i":156,"t":"Find your Plex Token and make note of the URL and Port used to connect to your Plex instance.","s":"Plex","u":"/multi-scrobbler/configuration/sources/plex/","p":156},{"i":158,"t":"To scrobble to* Rocksky, create a Rocksky (Client)","s":"Rocksky","u":"/multi-scrobbler/configuration/sources/rocksky-source/","p":158},{"i":164,"t":"Spotify and Automix","s":"Spotify","u":"/multi-scrobbler/configuration/sources/spotify/","p":164},{"i":168,"t":"This Source can be used for any application that implements the Subsonic API and supports the getNowPlaying endpoint (such as Airsonic and Navidrome)","s":"Subsonic","u":"/multi-scrobbler/configuration/sources/subsonic/","p":168},{"i":172,"t":"To scrobble to* an ATProto PDS, create a teal.fm (Client)","s":"Teal.fm","u":"/multi-scrobbler/configuration/sources/tealfm-source/","p":172},{"i":178,"t":"MS communicates with VLC using the Web (http) interface module","s":"VLC","u":"/multi-scrobbler/configuration/sources/vlc/","p":178},{"i":182,"t":"After installing the Webscrobbler extension open the preferences/settings for it:","s":"Webscrobbler","u":"/multi-scrobbler/configuration/sources/webscrobbler/","p":182},{"i":190,"t":"Monitor MusicCast device/receivers for music played on Network/USB/CD inputs.","s":"Yamaha MusicCast","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","p":190},{"i":194,"t":"Communication with YT Music is unofficial and not supported or endorsed by Google. This means that this integration may stop working at any time if Google decides to change how YT Music works in the browser.","s":"Youtube Music","u":"/multi-scrobbler/configuration/sources/youtube-music/","p":194},{"i":198,"t":"Multi-scrobbler configs support the ability to enhance scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler's lifecycle.","s":"Enhancing Scrobbles","u":"/multi-scrobbler/configuration/transforms/","p":198},{"i":216,"t":"The Musicbrainz Stage matches your Play data with the MusicBrainz database. If the match score is high enough then Multi-Scrobbler uses the match to correct and fill-in missing information in your Play data.","s":"Musicbrainz Stage","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","p":216},{"i":258,"t":"The Native Stage uses built-in heuristics to try to extract Artists from Play artist/track data.","s":"Native Stage","u":"/multi-scrobbler/configuration/transforms/native/","p":258},{"i":275,"t":"The User Stage uses search-and-replace expressions, provided by you, to modify/replace parts of Play data.","s":"User Stage","u":"/multi-scrobbler/configuration/transforms/user/","p":275},{"i":296,"t":"To do...","s":"Client Development/Tutorial","u":"/multi-scrobbler/development/dev-client/","p":296},{"i":298,"t":"Start here for MS development","s":"Development","u":"/multi-scrobbler/development/dev-common/","p":298},{"i":315,"t":"This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development.","s":"Source Development/Tutorial","u":"/multi-scrobbler/development/dev-source/","p":315},{"i":337,"t":"Building Flatpak App locally","s":"Flatpak","u":"/multi-scrobbler/development/flatpak/","p":337},{"i":350,"t":"Connection Issues","s":"FAQ","u":"/multi-scrobbler/FAQ/","p":350},{"i":372,"t":"For the difference between ENV and File examples in this document see Configuration Types.","s":"Overview","u":"/multi-scrobbler/installation/","p":372},{"i":384,"t":"If you have multi-scrobbler installed locally you can enable it to run as a background service when you login.","s":"Systemd","u":"/multi-scrobbler/installation/service/","p":384},{"i":392,"t":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have:","s":"Quickstart","u":"/multi-scrobbler/quickstart/","p":392},{"i":404,"t":"Updating","s":"Overview","u":"/multi-scrobbler/updating/","p":404},{"i":411,"t":"Latest Release","s":"Overview","u":"/multi-scrobbler/","p":411},{"i":433,"t":"A Client is an application that stores the historical information about what songs you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz...","s":"Overview","u":"/multi-scrobbler/configuration/clients/","p":433}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/1",[0,4.632,1,4.632,2,3.961,3,2.706]],["t/23",[4,1.622,5,1.839,6,1.041,7,2.114,8,4.221,9,2.749,10,1.725,11,1.222]],["t/27",[4,1.554,5,1.762,6,0.997,7,2.025,9,2.634,10,1.652,11,1.171,12,2.965,13,3.299]],["t/31",[4,1.554,5,1.762,6,0.997,7,2.025,9,2.634,10,1.652,11,1.171,12,2.965,14,3.299]],["t/35",[15,3.751,16,3.332,17,2.384,18,4.386,19,3.751]],["t/39",[4,1.696,5,1.923,6,1.088,7,2.211,10,1.803,11,1.278,20,4.35]],["t/46",[4,1.622,5,1.839,6,1.041,7,2.114,10,1.725,11,1.222,21,3.095,22,3.619,23,3.095]],["t/53",[24,5.566]],["t/59",[11,1.314,25,1.517,26,2.597,27,1.973,28,1.788,29,1.319,30,2.273,31,2.221,32,2.597,33,1.973,34,2.221,35,2.221,36,2.221,37,2.597,38,2.221,39,2.597]],["t/74",[6,1.146,28,1.846,40,2.681,41,3.985,42,2.681,43,2.681,44,2.681,45,2.681,46,2.681,47,2.681,48,2.681,49,0.905,50,2.681,51,1.202,52,1.202]],["t/78",[11,1.255,25,1.427,49,1.255,53,2.09,54,3.716,55,2.443,56,3.716,57,2.443,58,2.443,59,2.443,60,2.09,61,2.443,62,1.856,63,2.443,64,2.443,65,2.443]],["t/86",[4,1.285,6,0.824,29,1.457,30,1.675,49,0.968,51,1.285,52,1.285,66,2.867,67,2.867,68,2.867,69,2.867,70,2.867,71,2.867,72,2.867,73,1.974]],["t/90",[6,1.14,49,1.339,74,3.966,75,3.966,76,3.966,77,3.966,78,3.966]],["t/94",[35,3.961,49,1.564,79,4.632,80,4.632]],["t/96",[17,1.809,51,1.491,52,1.491,73,2.291,81,1.944,82,4.658,83,2.528,84,2.291,85,2.102,86,2.846]],["t/102",[19,2.846,51,1.491,52,1.491,73,2.291,81,1.944,83,2.528,84,2.291,85,2.102,86,2.846,87,4.658]],["t/108",[3,1.869,4,1.434,5,1.626,6,1.303,8,2.736,11,1.08,28,2.202,88,2.736,89,2.43,90,2.736,91,1.626]],["t/110",[6,0.997,11,1.171,13,2.387,17,1.885,51,1.554,52,1.554,85,2.19,92,2.634,93,2.965,94,2.387]],["t/116",[3,1.944,4,1.491,5,1.691,6,1.339,7,1.944,11,1.124,13,2.291,89,2.528,91,1.691,95,2.846]],["t/120",[6,0.997,11,1.171,14,2.387,17,1.885,51,1.554,52,1.554,85,2.19,92,2.634,93,2.965,94,2.387]],["t/128",[3,1.869,4,1.434,5,1.626,6,1.303,11,1.08,14,2.202,28,2.202,88,2.736,89,2.43,90,2.736,91,1.626]],["t/132",[6,1.198,10,1.985,16,4.118,17,2.264,91,2.116]],["t/136",[11,0.936,17,1.506,29,1.408,30,2.385,96,2.771,97,2.771,98,1.908,99,2.369,100,3.492,101,2.771,102,2.369,103,2.771,104,2.771,105,2.771]],["t/144",[49,1.339,81,2.317,91,2.015,106,2.73,107,3.966,108,3.966,109,2.73]],["t/148",[30,2.114,31,3.095,81,2.114,84,2.491,100,3.095,110,3.619,111,3.619,112,3.619,113,3.619]],["t/152",[3,2.114,15,3.095,17,1.967,49,1.222,73,2.491,92,2.749,109,2.491,114,3.619,115,3.619]],["t/156",[36,3.983,49,1.124,109,2.291,116,3.328,117,3.328,118,3.328,119,3.328,120,3.328,121,3.328,122,3.328]],["t/158",[6,1.261,10,2.09,20,4.792,91,2.229]],["t/164",[34,4.46,123,5.215]],["t/168",[11,1.08,38,2.736,49,1.08,94,2.202,98,2.202,102,2.736,124,2.736,125,3.199,126,3.199,127,3.199,128,3.199,129,3.199]],["t/172",[6,1.198,10,1.985,21,3.562,23,3.562,91,2.116,130,4.165]],["t/178",[49,1.278,81,2.211,83,2.875,84,2.605,106,2.605,131,3.784,132,3.784,133,3.784]],["t/182",[134,3.751,135,4.386,136,4.386,137,4.386,138,4.386]],["t/190",[4,1.777,29,2.015,30,2.317,139,3.966,140,3.966,141,3.966,142,3.966]],["t/194",[30,2.221,53,2.153,60,2.153,62,1.913,81,1.471,98,1.733,143,3.802,144,2.518,145,3.802,146,2.518,147,2.518,148,2.518,149,3.802,150,2.518,151,2.518]],["t/198",[6,0.663,25,1.348,51,1.594,52,1.034,62,1.753,98,1.588,99,1.973,152,2.307,153,2.307,154,2.307,155,2.307,156,2.307,157,1.973,158,1.973,159,2.307,160,2.307,161,1.973,162,2.307,163,1.973,164,2.307,165,2.307]],["t/216",[25,2.123,27,1.803,29,1.847,49,0.802,51,1.064,52,1.064,157,3.777,166,3.635,167,1.803,168,2.373,169,2.373,170,2.373,171,2.373,172,2.373,173,2.373,174,2.373]],["t/258",[25,1.944,29,1.691,49,1.124,161,2.846,167,2.528,175,3.328,176,3.328,177,3.328,178,3.328,179,3.328,180,3.328]],["t/275",[25,1.944,29,1.691,49,1.124,158,2.846,167,2.528,181,3.328,182,3.328,183,3.328,184,2.846,185,3.328,186,3.328]],["t/296",[]],["t/298",[106,3.189,187,4.632,188,4.632,189,3.961]],["t/315",[10,1.015,11,1.128,49,1.128,95,1.821,106,1.466,124,1.821,184,1.821,189,1.821,190,2.857,191,3.341,192,1.821,193,2.129,194,2.129,195,2.129,196,2.129,197,2.129,198,2.129,199,1.821,200,2.129,201,2.129,202,2.129]],["t/337",[203,4.632,204,4.632,205,4.632,206,3.961]],["t/350",[2,4.46,109,3.591]],["t/372",[3,2.114,33,2.749,163,3.095,190,3.095,207,3.619,208,3.619,209,3.619,210,3.619,211,3.619]],["t/384",[51,1.622,52,1.622,85,2.286,134,3.095,199,3.095,206,3.095,212,3.095,213,3.619,214,3.619]],["t/392",[49,1.124,51,1.491,52,1.491,192,3.983,212,2.846,215,3.328,216,4.658,217,3.328,218,3.328]],["t/404",[219,5.566]],["t/411",[220,5.215,221,5.215]],["t/433",[6,0.92,13,2.202,14,2.202,16,2.43,27,2.43,29,1.626,33,2.43,91,1.626,94,2.202,222,3.199,223,3.199,224,3.199]]],"invertedIndex":[["",{"_index":12,"t":{"27":{"position":[[0,1]]},"31":{"position":[[0,1]]}}}],["10.7",{"_index":79,"t":{"94":{"position":[[23,4]]}}}],["abil",{"_index":153,"t":{"198":{"position":[[36,7]]}}}],["accept",{"_index":92,"t":{"110":{"position":[[39,6]]},"120":{"position":[[39,6]]},"152":{"position":[[42,6]]}}}],["access",{"_index":55,"t":{"78":{"position":[[39,6]]}}}],["account",{"_index":9,"t":{"23":{"position":[[49,7]]},"27":{"position":[[56,7]]},"31":{"position":[[58,7]]}}}],["account'",{"_index":88,"t":{"108":{"position":[[29,9]]},"128":{"position":[[36,9]]}}}],["activ",{"_index":7,"t":{"23":{"position":[[27,8]]},"27":{"position":[[29,8]]},"31":{"position":[[29,8]]},"39":{"position":[[27,8]]},"46":{"position":[[27,8]]},"116":{"position":[[72,8]]}}}],["airson",{"_index":38,"t":{"59":{"position":[[167,9]]},"168":{"position":[[126,8]]}}}],["album",{"_index":162,"t":{"198":{"position":[[150,5]]}}}],["alongsid",{"_index":194,"t":{"315":{"position":[[90,9]]}}}],["alreadi",{"_index":18,"t":{"35":{"position":[[38,7]]}}}],["api",{"_index":126,"t":{"168":{"position":[[73,3]]}}}],["app",{"_index":205,"t":{"337":{"position":[[17,3]]}}}],["applic",{"_index":94,"t":{"110":{"position":[[69,12]]},"120":{"position":[[69,12]]},"168":{"position":[[32,11]]},"433":{"position":[[15,11]]}}}],["artist",{"_index":161,"t":{"198":{"position":[[137,8]]},"258":{"position":[[60,7]]}}}],["artist/track",{"_index":180,"t":{"258":{"position":[[78,12]]}}}],["aspect",{"_index":196,"t":{"315":{"position":[[116,7]]}}}],["atproto",{"_index":21,"t":{"46":{"position":[[43,7]]},"172":{"position":[[19,7]]}}}],["autom",{"_index":155,"t":{"198":{"position":[[75,9]]}}}],["automix",{"_index":123,"t":{"164":{"position":[[12,7]]}}}],["azuracast",{"_index":40,"t":{"74":{"position":[[0,9]]}}}],["background",{"_index":213,"t":{"384":{"position":[[76,10]]}}}],["bandcamp",{"_index":104,"t":{"136":{"position":[[123,9]]}}}],["base",{"_index":198,"t":{"315":{"position":[[161,5]]}}}],["befor",{"_index":200,"t":{"315":{"position":[[191,6]]}}}],["between",{"_index":207,"t":{"372":{"position":[[19,7]]}}}],["break",{"_index":63,"t":{"78":{"position":[[159,8]]}}}],["browser",{"_index":151,"t":{"194":{"position":[[199,8]]}}}],["build",{"_index":203,"t":{"337":{"position":[[0,8]]}}}],["built",{"_index":176,"t":{"258":{"position":[[22,5]]}}}],["button",{"_index":69,"t":{"86":{"position":[[47,6]]}}}],["case",{"_index":45,"t":{"74":{"position":[[76,4]]}}}],["cast",{"_index":68,"t":{"86":{"position":[[28,4]]}}}],["chang",{"_index":60,"t":{"78":{"position":[[115,6]]},"194":{"position":[[166,6]]}}}],["check",{"_index":0,"t":{"1":{"position":[[0,5]]}}}],["chromecast",{"_index":70,"t":{"86":{"position":[[54,10]]}}}],["client",{"_index":91,"t":{"108":{"position":[[110,8]]},"116":{"position":[[95,8]]},"128":{"position":[[117,8]]},"132":{"position":[[49,8]]},"144":{"position":[[39,6]]},"158":{"position":[[42,8]]},"172":{"position":[[49,8]]},"433":{"position":[[2,6]]}}}],["common",{"_index":202,"t":{"315":{"position":[[236,6]]}}}],["commun",{"_index":81,"t":{"96":{"position":[[32,11]]},"102":{"position":[[32,11]]},"144":{"position":[[3,12]]},"148":{"position":[[34,13]]},"178":{"position":[[3,12]]},"194":{"position":[[0,13]]}}}],["compos",{"_index":217,"t":{"392":{"position":[[84,8]]}}}],["config",{"_index":152,"t":{"198":{"position":[[16,7]]}}}],["configur",{"_index":3,"t":{"1":{"position":[[43,14]]},"108":{"position":[[99,10]]},"116":{"position":[[84,10]]},"128":{"position":[[106,10]]},"152":{"position":[[26,9]]},"372":{"position":[[70,13]]}}}],["connect",{"_index":109,"t":{"144":{"position":[[46,11]]},"152":{"position":[[59,11]]},"156":{"position":[[63,7]]},"350":{"position":[[0,10]]}}}],["contain",{"_index":26,"t":{"59":{"position":[[31,8]]}}}],["correct",{"_index":172,"t":{"216":{"position":[[149,7]]}}}],["correctli",{"_index":41,"t":{"74":{"position":[[18,9],[186,10]]}}}],["creat",{"_index":10,"t":{"23":{"position":[[57,6]]},"27":{"position":[[64,6]]},"31":{"position":[[66,6]]},"39":{"position":[[49,6]]},"46":{"position":[[59,6]]},"132":{"position":[[33,6]]},"158":{"position":[[25,6]]},"172":{"position":[[32,6]]},"315":{"position":[[52,8]]}}}],["data",{"_index":25,"t":{"59":{"position":[[14,4]]},"78":{"position":[[53,4]]},"198":{"position":[[64,4]]},"216":{"position":[[40,4],[202,5]]},"258":{"position":[[91,5]]},"275":{"position":[[101,5]]}}}],["databas",{"_index":168,"t":{"216":{"position":[[66,9]]}}}],["decid",{"_index":150,"t":{"194":{"position":[[155,7]]}}}],["deezer",{"_index":56,"t":{"78":{"position":[[46,6],[104,6]]}}}],["deezer'",{"_index":58,"t":{"78":{"position":[[90,8]]}}}],["describ",{"_index":195,"t":{"315":{"position":[[100,10]]}}}],["develop",{"_index":189,"t":{"298":{"position":[[18,11]]},"315":{"position":[[243,12]]}}}],["devic",{"_index":67,"t":{"86":{"position":[[14,6]]}}}],["device/receiv",{"_index":140,"t":{"190":{"position":[[18,16]]}}}],["differ",{"_index":163,"t":{"198":{"position":[[164,9]]},"372":{"position":[[8,10]]}}}],["discov",{"_index":90,"t":{"108":{"position":[[78,10]]},"128":{"position":[[85,10]]}}}],["docker",{"_index":216,"t":{"392":{"position":[[66,6],[77,6]]}}}],["document",{"_index":190,"t":{"315":{"position":[[5,8],[209,8]]},"372":{"position":[[57,8]]}}}],["done",{"_index":19,"t":{"35":{"position":[[46,4]]},"102":{"position":[[107,4]]}}}],["durat",{"_index":48,"t":{"74":{"position":[[117,8]]}}}],["enabl",{"_index":85,"t":{"96":{"position":[[91,8]]},"102":{"position":[[86,8]]},"110":{"position":[[12,7]]},"120":{"position":[[12,7]]},"384":{"position":[[54,6]]}}}],["end",{"_index":218,"t":{"392":{"position":[[100,3]]}}}],["endors",{"_index":144,"t":{"194":{"position":[[63,8]]}}}],["endpoint",{"_index":128,"t":{"168":{"position":[[108,8]]}}}],["enhanc",{"_index":154,"t":{"198":{"position":[[47,7]]}}}],["enough",{"_index":171,"t":{"216":{"position":[[103,6]]}}}],["env",{"_index":208,"t":{"372":{"position":[[27,3]]}}}],["etc",{"_index":39,"t":{"59":{"position":[[177,6]]}}}],["exampl",{"_index":33,"t":{"59":{"position":[[114,8]]},"372":{"position":[[40,8]]},"433":{"position":[[112,8]]}}}],["express",{"_index":183,"t":{"275":{"position":[[39,12]]}}}],["extens",{"_index":136,"t":{"182":{"position":[[34,9]]}}}],["extract",{"_index":179,"t":{"258":{"position":[[52,7]]}}}],["faq",{"_index":1,"t":{"1":{"position":[[10,3]]}}}],["fashion",{"_index":156,"t":{"198":{"position":[[85,7]]}}}],["file",{"_index":209,"t":{"372":{"position":[[35,4]]}}}],["fill",{"_index":173,"t":{"216":{"position":[[161,4]]}}}],["find",{"_index":116,"t":{"156":{"position":[[0,4]]}}}],["flatpak",{"_index":204,"t":{"337":{"position":[[9,7]]}}}],["function",{"_index":64,"t":{"78":{"position":[[168,14]]}}}],["getnowplay",{"_index":127,"t":{"168":{"position":[[94,13]]}}}],["googl",{"_index":145,"t":{"194":{"position":[[75,7],[148,6]]}}}],["greater",{"_index":80,"t":{"94":{"position":[[31,7]]}}}],["gui",{"_index":86,"t":{"96":{"position":[[130,4]]},"102":{"position":[[124,4]]}}}],["guid",{"_index":192,"t":{"315":{"position":[[42,5]]},"392":{"position":[[5,5],[111,5]]}}}],["headless",{"_index":97,"t":{"136":{"position":[[12,8]]}}}],["here",{"_index":188,"t":{"298":{"position":[[6,4]]}}}],["heurist",{"_index":177,"t":{"258":{"position":[[31,10]]}}}],["high",{"_index":170,"t":{"216":{"position":[[98,4]]}}}],["histor",{"_index":223,"t":{"433":{"position":[[43,10]]}}}],["histori",{"_index":89,"t":{"108":{"position":[[48,7]]},"116":{"position":[[43,7]]},"128":{"position":[[55,7]]}}}],["http",{"_index":132,"t":{"178":{"position":[[39,6]]}}}],["icecast",{"_index":76,"t":{"90":{"position":[[24,7]]}}}],["icon",{"_index":71,"t":{"86":{"position":[[65,4]]}}}],["implement",{"_index":124,"t":{"168":{"position":[[49,10]]},"315":{"position":[[149,11]]}}}],["inform",{"_index":27,"t":{"59":{"position":[[40,11]]},"216":{"position":[[177,11]]},"433":{"position":[[54,11]]}}}],["input",{"_index":142,"t":{"190":{"position":[[70,7]]}}}],["instal",{"_index":134,"t":{"182":{"position":[[6,10]]},"384":{"position":[[28,9]]}}}],["instanc",{"_index":122,"t":{"156":{"position":[[84,9]]}}}],["integr",{"_index":147,"t":{"194":{"position":[[104,11]]}}}],["interfac",{"_index":84,"t":{"96":{"position":[[81,9]]},"102":{"position":[[76,9]]},"148":{"position":[[20,9]]},"178":{"position":[[46,9]]}}}],["issu",{"_index":2,"t":{"1":{"position":[[30,6]]},"350":{"position":[[11,6]]}}}],["jellyfin",{"_index":35,"t":{"59":{"position":[[136,9]]},"94":{"position":[[14,8]]}}}],["jriver",{"_index":82,"t":{"96":{"position":[[49,6],[123,6]]}}}],["kodi",{"_index":87,"t":{"102":{"position":[[49,4],[119,4]]}}}],["koito",{"_index":8,"t":{"23":{"position":[[43,5],[66,5]]},"108":{"position":[[23,5]]}}}],["last.fm",{"_index":13,"t":{"27":{"position":[[48,7],[73,7]]},"110":{"position":[[97,7]]},"116":{"position":[[26,7]]},"433":{"position":[[133,8]]}}}],["latest",{"_index":220,"t":{"411":{"position":[[0,6]]}}}],["length",{"_index":43,"t":{"74":{"position":[[41,6]]}}}],["lifecycl",{"_index":165,"t":{"198":{"position":[[201,10]]}}}],["linux",{"_index":111,"t":{"148":{"position":[[70,5]]}}}],["listen",{"_index":47,"t":{"74":{"position":[[103,9]]}}}],["listenbrainz",{"_index":14,"t":{"31":{"position":[[45,12],[75,12]]},"120":{"position":[[97,12]]},"128":{"position":[[23,12]]},"433":{"position":[[142,15]]}}}],["local",{"_index":206,"t":{"337":{"position":[[21,7]]},"384":{"position":[[38,7]]}}}],["login",{"_index":214,"t":{"384":{"position":[[104,6]]}}}],["make",{"_index":118,"t":{"156":{"position":[[25,4]]}}}],["maloja",{"_index":16,"t":{"35":{"position":[[8,6]]},"132":{"position":[[18,6],[42,6]]},"433":{"position":[[125,7]]}}}],["mani",{"_index":99,"t":{"136":{"position":[[67,4]]},"198":{"position":[[159,4]]}}}],["match",{"_index":157,"t":{"198":{"position":[[96,8]]},"216":{"position":[[22,7],[83,5],[140,5]]}}}],["mean",{"_index":146,"t":{"194":{"position":[[88,5]]}}}],["media",{"_index":66,"t":{"86":{"position":[[8,5]]}}}],["metadata",{"_index":75,"t":{"90":{"position":[[6,8]]}}}],["method",{"_index":54,"t":{"78":{"position":[[28,7],[138,7]]}}}],["miss",{"_index":174,"t":{"216":{"position":[[169,7]]}}}],["modify/replac",{"_index":185,"t":{"275":{"position":[[72,14]]}}}],["modul",{"_index":133,"t":{"178":{"position":[[56,6]]}}}],["monitor",{"_index":4,"t":{"23":{"position":[[3,7]]},"27":{"position":[[5,7]]},"31":{"position":[[5,7]]},"39":{"position":[[3,7]]},"46":{"position":[[3,7]]},"86":{"position":[[118,7]]},"108":{"position":[[12,8]]},"116":{"position":[[12,8]]},"128":{"position":[[12,8]]},"190":{"position":[[0,7]]}}}],["mopidi",{"_index":96,"t":{"136":{"position":[[0,6]]}}}],["mpd",{"_index":107,"t":{"144":{"position":[[21,3]]}}}],["mpri",{"_index":110,"t":{"148":{"position":[[0,5]]}}}],["ms",{"_index":106,"t":{"144":{"position":[[0,2]]},"178":{"position":[[0,2]]},"298":{"position":[[15,2]]},"315":{"position":[[87,2]]}}}],["multi",{"_index":51,"t":{"74":{"position":[[160,5]]},"86":{"position":[[98,5]]},"96":{"position":[[13,5]]},"102":{"position":[[13,5]]},"110":{"position":[[20,5]]},"120":{"position":[[20,5]]},"198":{"position":[[0,5],[183,5]]},"216":{"position":[[115,5]]},"384":{"position":[[12,5]]},"392":{"position":[[44,5]]}}}],["music",{"_index":30,"t":{"59":{"position":[[88,5],[160,6]]},"86":{"position":[[150,5]]},"136":{"position":[[21,5],[56,5]]},"148":{"position":[[53,5]]},"190":{"position":[[39,5]]},"194":{"position":[[22,5],[180,5]]}}}],["musicbrainz",{"_index":166,"t":{"216":{"position":[[4,11],[54,11]]}}}],["musiccast",{"_index":139,"t":{"190":{"position":[[8,9]]}}}],["musikcub",{"_index":114,"t":{"152":{"position":[[16,9]]}}}],["nativ",{"_index":175,"t":{"258":{"position":[[4,6]]}}}],["navidrom",{"_index":129,"t":{"168":{"position":[[139,10]]}}}],["need",{"_index":197,"t":{"315":{"position":[[138,4]]}}}],["network/usb/cd",{"_index":141,"t":{"190":{"position":[[55,14]]}}}],["new",{"_index":95,"t":{"116":{"position":[[68,3]]},"315":{"position":[[73,3]]}}}],["non",{"_index":101,"t":{"136":{"position":[[85,3]]}}}],["note",{"_index":119,"t":{"156":{"position":[[30,4]]}}}],["open",{"_index":137,"t":{"182":{"position":[[44,4]]}}}],["oper",{"_index":112,"t":{"148":{"position":[[76,9]]}}}],["order",{"_index":73,"t":{"86":{"position":[[132,5]]},"96":{"position":[[3,5]]},"102":{"position":[[3,5]]},"152":{"position":[[3,5]]}}}],["outsid",{"_index":93,"t":{"110":{"position":[[61,7]]},"120":{"position":[[61,7]]}}}],["pandora",{"_index":103,"t":{"136":{"position":[[114,8]]}}}],["pars",{"_index":74,"t":{"90":{"position":[[0,5]]}}}],["part",{"_index":186,"t":{"275":{"position":[[87,5]]}}}],["pd",{"_index":130,"t":{"172":{"position":[[27,4]]}}}],["phone/comput",{"_index":72,"t":{"86":{"position":[[78,14]]}}}],["platform",{"_index":32,"t":{"59":{"position":[[104,9]]}}}],["play",{"_index":29,"t":{"59":{"position":[[73,7]]},"86":{"position":[[160,5]]},"136":{"position":[[48,7]]},"190":{"position":[[45,6]]},"216":{"position":[[35,4],[197,4]]},"258":{"position":[[73,4]]},"275":{"position":[[96,4]]},"433":{"position":[[92,6]]}}}],["player",{"_index":31,"t":{"59":{"position":[[94,6]]},"148":{"position":[[59,7]]}}}],["plex",{"_index":36,"t":{"59":{"position":[[146,5]]},"156":{"position":[[10,4],[79,4]]}}}],["port",{"_index":121,"t":{"156":{"position":[[50,4]]}}}],["posit",{"_index":44,"t":{"74":{"position":[[51,9]]}}}],["preferences/set",{"_index":138,"t":{"182":{"position":[[53,20]]}}}],["profil",{"_index":22,"t":{"46":{"position":[[51,7]]}}}],["provid",{"_index":184,"t":{"275":{"position":[[52,8]]},"315":{"position":[[19,7]]}}}],["re",{"_index":5,"t":{"23":{"position":[[15,2]]},"27":{"position":[[17,2]]},"31":{"position":[[17,2]]},"39":{"position":[[15,2]]},"46":{"position":[[15,2]]},"108":{"position":[[65,2]]},"116":{"position":[[55,2]]},"128":{"position":[[72,2]]}}}],["reduc",{"_index":46,"t":{"74":{"position":[[92,6]]}}}],["releas",{"_index":221,"t":{"411":{"position":[[7,7]]}}}],["remov",{"_index":61,"t":{"78":{"position":[[125,6]]}}}],["replac",{"_index":158,"t":{"198":{"position":[[109,9]]},"275":{"position":[[31,7]]}}}],["report",{"_index":42,"t":{"74":{"position":[[28,6]]}}}],["review",{"_index":201,"t":{"315":{"position":[[229,6]]}}}],["risk",{"_index":65,"t":{"78":{"position":[[211,5]]}}}],["rockski",{"_index":20,"t":{"39":{"position":[[41,7],[58,7]]},"158":{"position":[[16,8],[34,7]]}}}],["run",{"_index":212,"t":{"384":{"position":[[67,3]]},"392":{"position":[[31,7]]}}}],["scenario",{"_index":24,"t":{"53":{"position":[[0,9]]}}}],["score",{"_index":169,"t":{"216":{"position":[[89,5]]}}}],["scrobbl",{"_index":6,"t":{"23":{"position":[[18,8]]},"27":{"position":[[20,8]]},"31":{"position":[[20,8]]},"39":{"position":[[18,8]]},"46":{"position":[[18,8]]},"74":{"position":[[132,8],[176,9]]},"86":{"position":[[141,8]]},"90":{"position":[[61,11]]},"108":{"position":[[39,8],[68,9]]},"110":{"position":[[46,9]]},"116":{"position":[[34,8],[58,9]]},"120":{"position":[[46,9]]},"128":{"position":[[46,8],[75,9]]},"132":{"position":[[4,8]]},"158":{"position":[[3,8]]},"172":{"position":[[3,8]]},"198":{"position":[[55,8]]},"433":{"position":[[99,12]]}}}],["scrobbler",{"_index":52,"t":{"74":{"position":[[166,9]]},"86":{"position":[[104,9]]},"96":{"position":[[19,9]]},"102":{"position":[[19,9]]},"110":{"position":[[26,9]]},"120":{"position":[[26,9]]},"198":{"position":[[6,9]]},"216":{"position":[[121,9]]},"384":{"position":[[18,9]]},"392":{"position":[[50,9]]}}}],["scrobbler'",{"_index":164,"t":{"198":{"position":[[189,11]]}}}],["search",{"_index":182,"t":{"275":{"position":[[20,6]]}}}],["see",{"_index":210,"t":{"372":{"position":[[66,3]]}}}],["server",{"_index":17,"t":{"35":{"position":[[15,6]]},"96":{"position":[[74,6]]},"110":{"position":[[105,7]]},"120":{"position":[[110,7]]},"132":{"position":[[25,7]]},"136":{"position":[[27,6]]},"152":{"position":[[74,6]]}}}],["servic",{"_index":199,"t":{"315":{"position":[[174,7]]},"384":{"position":[[87,7]]}}}],["setup",{"_index":15,"t":{"35":{"position":[[0,5]]},"152":{"position":[[81,6]]}}}],["song",{"_index":224,"t":{"433":{"position":[[77,5]]}}}],["sourc",{"_index":11,"t":{"23":{"position":[[72,8]]},"27":{"position":[[81,8]]},"31":{"position":[[88,8]]},"39":{"position":[[66,8]]},"46":{"position":[[76,8]]},"59":{"position":[[2,6],[19,6]]},"78":{"position":[[5,6],[192,6]]},"108":{"position":[[5,6]]},"110":{"position":[[5,6]]},"116":{"position":[[5,6]]},"120":{"position":[[5,6]]},"128":{"position":[[5,6]]},"136":{"position":[[98,7]]},"168":{"position":[[5,6]]},"315":{"position":[[77,6],[131,6]]}}}],["spotifi",{"_index":34,"t":{"59":{"position":[[127,8]]},"164":{"position":[[0,7]]}}}],["stage",{"_index":167,"t":{"216":{"position":[[16,5]]},"258":{"position":[[11,5]]},"275":{"position":[[9,5]]}}}],["standard",{"_index":100,"t":{"136":{"position":[[72,8],[89,8]]},"148":{"position":[[11,8]]}}}],["start",{"_index":187,"t":{"298":{"position":[[0,5]]}}}],["station",{"_index":77,"t":{"90":{"position":[[32,7]]}}}],["step",{"_index":191,"t":{"315":{"position":[[29,4],[37,4]]}}}],["stop",{"_index":148,"t":{"194":{"position":[[120,4]]}}}],["store",{"_index":222,"t":{"433":{"position":[[32,6]]}}}],["stream",{"_index":78,"t":{"90":{"position":[[40,9]]}}}],["string",{"_index":159,"t":{"198":{"position":[[119,7]]}}}],["subson",{"_index":125,"t":{"168":{"position":[[64,8]]}}}],["such",{"_index":102,"t":{"136":{"position":[[106,4]]},"168":{"position":[[117,5]]}}}],["support",{"_index":98,"t":{"136":{"position":[[39,8]]},"168":{"position":[[81,8]]},"194":{"position":[[50,9]]},"198":{"position":[[24,7]]}}}],["system",{"_index":113,"t":{"148":{"position":[[86,8]]}}}],["tcp",{"_index":108,"t":{"144":{"position":[[35,3]]}}}],["teal.fm",{"_index":23,"t":{"46":{"position":[[68,7]]},"172":{"position":[[41,7]]}}}],["threshold",{"_index":50,"t":{"74":{"position":[[141,10]]}}}],["time",{"_index":62,"t":{"78":{"position":[[153,5]]},"194":{"position":[[140,4]]},"198":{"position":[[174,5]]}}}],["titl",{"_index":160,"t":{"198":{"position":[[130,6]]}}}],["to",{"_index":59,"t":{"78":{"position":[[99,4]]}}}],["token",{"_index":117,"t":{"156":{"position":[[15,5]]}}}],["track",{"_index":28,"t":{"59":{"position":[[58,6]]},"74":{"position":[[35,5]]},"108":{"position":[[89,6]]},"128":{"position":[[96,6]]}}}],["tri",{"_index":178,"t":{"258":{"position":[[45,3]]}}}],["trivial",{"_index":193,"t":{"315":{"position":[[63,9]]}}}],["tunein",{"_index":105,"t":{"136":{"position":[[137,7]]}}}],["type",{"_index":211,"t":{"372":{"position":[[84,6]]}}}],["unoffici",{"_index":53,"t":{"78":{"position":[[17,10]]},"194":{"position":[[31,10]]}}}],["up",{"_index":215,"t":{"392":{"position":[[24,2]]}}}],["updat",{"_index":219,"t":{"404":{"position":[[0,8]]}}}],["url",{"_index":120,"t":{"156":{"position":[[42,3]]}}}],["us",{"_index":49,"t":{"74":{"position":[[126,5]]},"78":{"position":[[12,4],[183,3]]},"86":{"position":[[36,5]]},"90":{"position":[[53,3]]},"94":{"position":[[8,5]]},"144":{"position":[[25,5]]},"152":{"position":[[12,3]]},"156":{"position":[[55,4]]},"168":{"position":[[19,4]]},"178":{"position":[[25,5]]},"216":{"position":[[131,4]]},"258":{"position":[[17,4]]},"275":{"position":[[15,4]]},"315":{"position":[[186,4],[198,5]]},"392":{"position":[[60,5]]}}}],["user",{"_index":181,"t":{"275":{"position":[[4,4]]}}}],["violat",{"_index":57,"t":{"78":{"position":[[77,9]]}}}],["vlc",{"_index":131,"t":{"178":{"position":[[21,3]]}}}],["web",{"_index":83,"t":{"96":{"position":[[70,3]]},"102":{"position":[[72,3]]},"178":{"position":[[35,3]]}}}],["webscrobbl",{"_index":135,"t":{"182":{"position":[[21,12]]}}}],["websocket",{"_index":115,"t":{"152":{"position":[[49,9]]}}}],["work",{"_index":149,"t":{"194":{"position":[[125,7],[186,5]]}}}],["youtub",{"_index":37,"t":{"59":{"position":[[152,7]]}}}],["yt",{"_index":143,"t":{"194":{"position":[[19,2],[177,2]]}}}]],"pipeline":["stemmer"]}},{"documents":[],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[],"invertedIndex":[],"pipeline":["stemmer"]}},{"documents":[{"i":2,"t":"tip Check the FAQ if you have any issues after configuration!","s":"Overview","u":"/multi-scrobbler/configuration/","h":"","p":1},{"i":4,"t":"Sources and Clients are configured using: environmental (ENV) variables client/source specific json config files an all-in-one json config file MS will parse configuration from all configuration types. You can mix and match configurations but it is generally better to stick to one or the other. ENV File File AIO MS will parse environmental variables present in the OS/container when it is run. This method means MS does not require files to run. Use ENV-based configuration if... You are the only person for whom MS is scrobbling for You have a very simple setup for MS such as one scrobble Client and one Source IE Plex -> Maloja Config Example For Docker container... docker run -e \"SPOTIFY_CLIENT_ID=yourId\" -e \"SPOTIFY_CLIENT_SECRET=yourSecret\" ... For Docker Compose docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler environment: - SPOTIFY_CLIENT_ID=yourId - SPOTIFY_CLIENT_SECRET=yourSecret - MALOJA_URL=http://domain.tld:42010 - MALOJA_API_KEY=1234 # ... # ... For a local/node installation export variables before running... SPOTIFY_CLIENT_ID=yourId SPOTIFY_CLIENT_SECRET=yourSecret npm run start MS will parse configuration files located in the directory specified by the CONFIG_DIR environmental variable. This variable defaults to: Local installation -> PROJECT_DIR/config Docker -> /config (in the container) -- see the install docs for how to configure this correctly Use File-based configuration if... You have many Sources You have many of each type of Source you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x Funkwhale... You have more than one scrobble Client you want to scrobble to IE multiple Maloja servers You want only to scrobble to specific Clients You need to setup more advanced configuration for a Source/Client Most Source/Clients only support basic configuration through ENV, all configuration is possible using File/AIO tip There are example configurations for all Source/Client types and AIO config located in the /config directory of this project. These can be used as-is by renaming them to .json. For docker installations these examples are copied to your configuration directory on first-time use. There is also a kitchensink example that provides examples of using all sources/clients in a complex configuration. Each file is named by the type of the Client/Source found in below sections. Each file as an array of that type of Client/Source. Example directory structure: /CONFIG_DIR plex.json spotify.json maloja.json Config Example CONFIG_DIR/spotify.json [ { \"name\": \"MySpotify\", \"enable\": true, \"clients\": [], \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\", \"interval\": 60 } } ] MS will parse an all-in-one configuration file located in the directory specified by the CONFIG_DIR environmental variable. This variable defaults to: Local installation -> PROJECT_DIR/config/config.json Docker -> /config/config.json (in the container) -- see the install docs for how to configure this correctly Use AIO-based configuration if... You have many Sources You have many of each type of Source you want to scrobble from IE 2x Plex accounts, 3x Spotify accounts, 1x Funkwhale... You have more than one scrobble Client you want to scrobble to IE multiple Maloja servers You want only to scrobble to specific Clients You need to setup monitoring/webhooks You want to setup defaults for all Sources/Clients The AIO config also enables setting default options for sources/clients as well as global options for MS itself. tip An example AIO config files can be found in the project directory at /config/config.json.example For docker installations this example is copied to your configuration directory on first-time use. There is also a kitchensink example that provides examples of using all sources/clients in a complex configuration. Explore the schema for this configuration, along with an example generator and validator, here Config Example CONFIG_DIR/config.json { \"debugMode\": false, \"disableWeb\": false, \"sourceDefaults\": { \"logPayload\": false, \"logFilterFailure\": \"warn\", \"logPlayerState\": false, \"scrobbleThresholds\": { \"duration\": 30, \"percent\": 50 }, \"maxPollRetries\": 1, \"maxRequestRetries\": 1, \"retryMultiplier\": 1.5 }, \"clientDefaults\": { \"maxRequestRetries\": 1, \"retryMultiplier\": 1.5 }, \"sources\": [ { \"type\": \"spotify\", \"enable\": true, \"clients\": [\"myConfig\"], \"name\": \"mySpotifySource\", \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\" } } ], \"clients\": [ { \"type\": \"maloja\", \"enable\": true, \"name\": \"myConfig\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ], \"webhooks\": [ { \"name\": \"FirstGotifyServer\", \"type\": \"gotify\", \"url\": \"http://localhost:8070\", \"token\": \"MyGotifyToken\", \"priorities\": { \"info\": 5, \"warn\": 7, \"error\": 10 } }, { \"type\": \"ntfy\", \"name\": \"MyNtfyFriendlyNameForLogs\", \"url\": \"http://localhost:9991\", \"topic\": \"MyMultiScrobblerTopic\", \"username\": \"Optional\", \"password\": \"Optional\", \"priorities\": { \"info\": 3, \"warn\": 4, \"error\": 5 } } ] }","s":"Configuration Types","u":"/multi-scrobbler/configuration/","h":"#configuration-types","p":1},{"i":6,"t":"See the Configuration Types above for your options for creating Source and Client configurations. Reference Scrobble Sources for what Sources are available Reference Scrobble Clients for what Clients are available Each entry for a Source/Client includes a Configuration section that describes how to configure it using a configuration type.","s":"Setup Sources and Clients","u":"/multi-scrobbler/configuration/","h":"#setup-sources-and-clients","p":1},{"i":8,"t":"These options affect multi-scrobbler's behavior and are not specific to any source/client.","s":"Application Options","u":"/multi-scrobbler/configuration/","h":"#application-options","p":1},{"i":10,"t":"Defines the URL that is used to generate default redirect URLs for authentication on spotify and lastfm -- as well as some logging hints. Default => http://localhost:9078 Set with ENV BASE_URL or baseUrl all-in-one configuration If protocol is http or no protocol is specified MS will try to use port 9078 -- to override this explicitly set the port or use https Useful when running with docker so that you do not need to specify redirect URLs for each configuration. Example EX Lastfm Redirect Url is BASE_URL:PORT/lastfm/callback (when no other redirectUri is specified for lastfm configuration) BASE_URL Redirect URL 192.168.0.101 http://192.168.0.101:9078/lastfm/callback http://my.domain.local http://my.domain.local:9078/lastfm/callback http://192.168.0.101/my/subfolder http://192.168.0.101:9078/my/subfolder/lastfm/callback BASE_URL Redirect URL my.domain.local:80 http://192.168.0.101:80/lastfm/callback my.domain.local:9000 http://my.domain.local:9000/lastfm/callback 192.168.0.101:4000/my/subfolder http://192.168.0.101:4000/my/subfolder/lastfm/callback https://192.168.0.101 https://192.168.0.101:443/lastfm/callback","s":"Base URL","u":"/multi-scrobbler/configuration/","h":"#base-url","p":1},{"i":12,"t":"Multi-scrobbler caches some activities to persist important data across restarts, reduce external API calls, and make some actions faster. All of the activities below are always cached in-memory with an optional, configurable secondary store for persistence. Scrobbles Auth Data Transform API Calls Queued and Failed Scrobbles are cached so that any un-scrobbled data you have is persisted across restarts of multi-scrobbler. tip By default, this data use a Secondary File store, configured for you automatically. If you have configured a persisted volume/bind mount for configuration (/config is mounted in docker compose) then you are already done. If you are not persisting this directory then you should consider setting up Valkey Cache for this. Configuration Use any Secondary Cache, the config examples below show the default values: ENV AIO Environmental Variable Required? Default Description CACHE_SCROBBLE No file The cache type to use CACHE_SCROBBLE_CONN No /config config.json { \"cache\": { \"scrobble\": { \"provider\": \"file\", \"connection\": \"/config\" } }, // ... } Authentication sessions/tokens/etc... are cached for quicker requests and for persistence across restarts. tip By default, this data use a Secondary File store, configured for you automatically. If you have configured a persisted volume/bind mount for configuration (/config is mounted in docker compose) then you are already done. If you are not persisting this directory then you should consider setting up Valkey Cache for this. Configuration Use any Secondary Cache, the config examples below show the default values: ENV AIO Environmental Variable Required? Default Description CACHE_AUTH No file The cache type to use CACHE_AUTH_CONN No /config config.json { \"cache\": { \"auth\": { \"provider\": \"file\", \"connection\": \"/config\" } }, // ... } API Calls to external (metadata) services used to Enhance Scrobbles, like calls to Musicbrainz, can be cached to avoid duplicate calls and speed up scrobble transformations. By default, these calls are only cached in memory. If you wish for cached calls to be persisted across restarts then setup Valkey Cache. Configuration Use any Secondary Cache, the config examples below show the default values: ENV AIO Environmental Variable Required? Default Description CACHE_METADATA No The cache type to use CACHE_METADATA_CONN No config.json { \"cache\": { \"metadata\": { \"provider\": \"valkey\", \"connection\": \"yourConnectionStringHere\" } }, // ... } Secondary Caching Configuration The type of cache used, and its connection properties, can be configured through ENV or AIO config. File Valkey File cache is stored in the CONFIG_DIR directory using the pre-defined file name ms-[cacheName].cache. ENV AIO Example Environmental Variable Required? Default Description CACHE_SCROBBLE No file The cache type to use CACHE_SCROBBLE_CONN No /config The directory, within the container, to store the cache file Example config.json { \"cache\": { \"scrobble\": { \"provider\": \"file\", \"connection\": \"/config\" } }, // ... } Valkey is an open-source fork of Redis. Adding Valkey container to multi-scrobbler A valkey container can be added to the multi-scrobbler docker compose stack: docker-compose.yml services: multi-scrobbler: # ... # adding everything below valkey: image: valkey/valkey volumes: - valkeydata:/data volumes: valkeydata: driver: local The connection string used by multi-scrobbler to connect to your Valkey instance must be in the form: redis://HOST_IP:HOST_PORT ENV AIO Example Environmental Variable Required? Default Description CACHE_METADATA Yes valkey The cache type to use CACHE_METADATA_CONN Yes The host/IP and port to connect to EX: redis://192.168.0.120:6379 Example config.json { \"cache\": { \"metadata\": { \"provider\": \"valkey\", \"connection\": \"redis://192.168.0.120:6379\" } }, // ... }","s":"Caching","u":"/multi-scrobbler/configuration/","h":"#caching","p":1},{"i":14,"t":"Turning on Debug Mode will override and enable all optional \"debugging\" options found in configuration set log output to DEBUG Use this as a shortcut for enabling output that can be used for troubleshooting and issue reporting. Be aware that logs will likely be VERY noisy while Debug Mode is on. You should only have this mode on while gathering logs for troubleshooting and then turn it off afterwards. To set debug mode either add it to AIO config.json config.json { \"debugMode\": true, \"sources\": [...], // ... } or set the ENV DEBUG_MODE=true","s":"Debug Mode","u":"/multi-scrobbler/configuration/","h":"#debug-mode","p":1},{"i":16,"t":"If you do not need the dashboard and/or ingress sources, or have security concerns about ingress and cannot control your hosting environment, the web server and API can be disabled. warning Any ingress-based sources will be unusable (Webscrobbler, etc...) if this is disabled. Disable using either: ENV DISABLE_WEB=true In All-in-One File use the top-level property \"disableWeb\": true","s":"Disable Web","u":"/multi-scrobbler/configuration/","h":"#disable-web","p":1},{"i":18,"t":"Multi-scrobbler supports some common webhooks and a healthcheck endpoint in order to monitor Sources and Clients for errors.","s":"Monitoring","u":"/multi-scrobbler/configuration/","h":"#monitoring","p":1},{"i":20,"t":"Webhooks will push a notification to your configured servers on these events: Source polling started Source polling retry Source polling stopped on error Scrobble client scrobble failure Webhooks are configured in the AIO config.json file under the webhook top-level property. Multiple webhooks may be configured for each webhook type. Example config.json { \"sources\": [ //... ], \"clients\": [ //... ], \"webhooks\": [ { \"name\": \"FirstGotifyServer\", \"type\": \"gotify\", \"url\": \"http://192.168.0.100:8070\", \"token\": \"abcd\" }, { \"name\": \"SecondGotifyServer\", \"type\": \"gotify\", //... }, { \"name\": \"NtfyServerOne\", \"type\": \"ntfy\", //... }, //... ] } Gotify Refer to the config schema for GotifyConfig multi-scrobbler optionally supports setting message notification priority via info warn and error mappings. Example config.json { \"type\": \"gotify\", \"name\": \"MyGotifyFriendlyNameForLogs\", \"url\": \"http://192.168.0.100:8070\", \"token\": \"AQZI58fA.rfSZbm\", \"priorities\": { \"info\": 5, \"warn\": 7, \"error\": 10 } } Ntfy Refer to the config schema for NtfyConfig multi-scrobbler optionally supports setting message notification priority via info warn and error mappings. Example config.json { \"type\": \"ntfy\", \"name\": \"MyNtfyFriendlyNameForLogs\", \"url\": \"http://192.168.0.100:9991\", \"topic\": \"RvOwKJ1XtIVMXGLR\", \"username\": \"Optional\", \"password\": \"Optional\", \"priorities\": { \"info\": 3, \"warn\": 4, \"error\": 5 } } Apprise Refer to the config schema for AppriseConfig multi-scrobbler supports stateless and persistent storage endpoints as well as tags/ Example config.json { \"type\": \"apprise\", \"name\": \"MyAppriseFriendlyNameForLogs\", \"host\": \"http://192.168.0.100:8080\", \"urls\": [\"gotify://192.168.0.101:8070/MyToken\"], // stateless endpoints \"keys\": [\"e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17\"], //persistent storage endpoints \"tags\": [\"my\",\"optional\",\"tags\"] }","s":"Webhook Configurations","u":"/multi-scrobbler/configuration/","h":"#webhook-configurations","p":1},{"i":22,"t":"An endpoint for monitoring the health of sources/clients is available at GET http://YourMultiScrobblerDomain/health Returns 200 OK when everything is working or 500 Internal Server Error if anything is not The plain url (/health) aggregates status of all clients/sources -- so any failing client/source will make status return 500 Use query params type or name to restrict client/sources aggregated IE /health?type=spotify or /health?name=MyMaloja On 500 the response returns a JSON payload with messages array that describes any issues For any clients/sources that require authentication /health will return 500 if they are not authenticated For sources that poll (spotify, yt music, subsonic) /health will 500 if they are not polling","s":"Health Endpoint","u":"/multi-scrobbler/configuration/","h":"#health-endpoint","p":1},{"i":24,"t":"Other Uses To monitor and re-scrobble activity from a Koito account create a Koito (Source) Setup a Koito server if you have not already done this. Create (or get) an API Key From your Koito server dashboard navigate to Settings (bottom-left icon) => API Keys Create a new Key (or use an existing) and Copy the key using the copy icon to the right of the key EX pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL Take note of your Koito username (used below as KOITO_USER) Determine your Koito URL This is the URL you use to access your Koito dashboard OR whatever URL is accessible from your multi-scrobbler instance. EX dashboard at http://192.168.0.100:4110 => KOITO_URL is set to http://192.168.0.100:4110 Koito Base URL Using the URL path /apis/listenbrainz Koito docs describe is not required. The Koito URL used for multi-scrobbler should only be the base URL. Only include a URL path if your Koito base url is not at host:port. See the table below for examples. Base URL Examples KOITO_URL MS Detected Base URL Example Scrobble Api URL http://192.168.0.100:4110 http://192.168.0.100:4110 http://192.168.0.100:4110/apis/listenbrainz/1 https://koito.mydomain.com https://koito.mydomain.com https://koito.mydomain.com/apis/listenbrainz/1 http://192.168.0.100:4110/apis/listenbrainz http://192.168.0.100:4110 http://192.168.0.100:4110/apis/listenbrainz/1 http://192.168.0.100:80/koito http://192.168.0.100:80/koito http://192.168.0.100:80/koito/apis/listenbrainz/1 tip Ensure that Koito is configured to allow requests from multi-scrobbler! In Koito config set KOITO_ALLOWED_HOSTS to the IP the multi-scrobbler dashboard is accessible from.","s":"Koito","u":"/multi-scrobbler/configuration/clients/koito/","h":"","p":23},{"i":26,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description KOITO_TOKEN Yes API Key from your Koito Account KOITO_USER Yes Your Koito username KOITO_URL No The base URL for the Koito server File Config Type CONFIG/koito.json [ { \"name\": \"koito-client\", \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"koito-client\", \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" }, \"type\": \"koito\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/koito/","h":"#configuration","p":23},{"i":28,"t":"Other Users To monitor and re-scrobble activity from your Last.fm account create a Last.fm (Source) To accept scrobbles from outside applications as if multi-scrobbler was Last.fm, create a Last.fm (Endpoint) Register for an API account here. The Callback URL is actually specified by multi-scrobbler but to keep things consistent you should use http://localhost:9078/lastfm/callback or replace localhost:9078 with your own base URL.","s":"Last.fm","u":"/multi-scrobbler/configuration/clients/lastfm/","h":"","p":27},{"i":30,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LASTFM_API_KEY Yes Api Key from your API Account LASTFM_SECRET Yes Shared secret from your API Account LASTFM_REDIRECT_URI No http://localhost:9078/lastfm/callback Url to use for authentication. Must include lastfm/callback somewhere in it LASTFM_SESSION No Session id. Will be generated by authentication flow if not provided. File Config Type CONFIG/lastfm.json [ { \"name\": \"myLastFmClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myLastFmClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" }, \"type\": \"lastfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/lastfm/","h":"#configuration","p":27},{"i":32,"t":"Other Users To monitor and re-scrobble activity from a Listenbrainz account create a Listenbrainz (Source) To accept scrobbles from outside applications as if multi-scrobbler was a Listenbrainz server, create a Listenbrainz (Endpoint) You will need to run your own Listenbrainz server or have an account on the official instance On your profile page find your User Token to use in the configuration.","s":"Listenbrainz","u":"/multi-scrobbler/configuration/clients/listenbrainz/","h":"","p":31},{"i":34,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LZ_TOKEN Yes User token from your LZ profile LZ_USER Yes Your LZ username LZ_URL No https://api.listenbrainz.org/ The base URL for the LZ server File Config Type CONFIG/listenbrainz.json [ { \"name\": \"brainzClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"brainzClient\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" }, \"type\": \"listenbrainz\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/listenbrainz/","h":"#configuration","p":31},{"i":36,"t":"Setup a Maloja server if you have not already done this. Maloja Setup Intructions Using Maloja's example docker-compose.yml: ~/malojaData/docker-compose.yml loading... View on GitHub Uncomment environment and add MALOJA_FORCE_PASSWORD=CHANGE_ME to set an admin password Start the container: ~/malojaData docker compose up -d Navigate to the Admin Panel (Cog in upper-right corner) -> API Keys (or at http://myMalojaServerIP/admin_apikeys) Create a New Key and then copy the generated key value Finally, add the Maloja server URL and API Key to the configuration type you choose to use, below.","s":"Maloja","u":"/multi-scrobbler/configuration/clients/maloja/","h":"","p":35},{"i":38,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MALOJA_URL Yes Base URL of your installation MALOJA_API_KEY Yes Api Key File Config Type CONFIG/maloja.json [ { \"name\": \"myMaloja-client\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myMaloja-client\", \"enable\": true, \"configureAs\": \"client\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" }, \"type\": \"maloja\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/clients/maloja/","h":"#configuration","p":35},{"i":40,"t":"Other Uses To monitor and re-scrobble activity from Rocksky create a Rocksky (Source) Rocksky is music tracking and discovery platform built on the AT Protocol (Bluesky). How does that work? The AT Protocol is a standard to allow different applications to share and interpret your social data. Your data is stored in a personal repository in a PDS (Personal Data Server), which is data-type agnostic (it's just JSON). Each application defines their own datatypes and pulls data from your repository to render to you, your network, etc... Even though the application and the PDS/repository are independent, all of this is done for you automatically when you create a Bluesky account. So... multi-scrobbler \"scrobbles\" your plays to your repository in a JSON data structure which includes Rocksky's data type and structure at a known location for Rocksky's data (app.rocksky), in a list that is appended to as you continue to scrobble when accessing Rocksky, or another application that knows how to read it, your data is pulled from the repository to render the app Public Data The default Bluesky PDS is public, meaning your scrobbles are also public (read-only). This isn't any different than using Last.fm or Listenbrainz, in terms of privacy. No Scrobbling Guarantee Rocksky does not guarantee that every scrobble you send will be persisted. Rocksky's design goal is to store scrobbles with metdata-complete, 3rd party verifiable track information so that it can be a metadata-rich discovery platform, rather than an exhaustive scrobble data source-of-truth. To do this it asynchronously matches your scrobble data against Musicbrainz's and/or Spotify's catalogs, after the scrobble has been submitted. If the scrobble does not end up matching then it is not persisted. If you need your scrobbles to be 100% captured then you should scrobble to an additional Scrobble Client.","s":"Rocksky","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"","p":39},{"i":42,"t":"You will need a Bluesky account to use Rocksky. note Usage is adapted from Rocksky docs on docs.rocksky.app Navigate to rocksky.app and sign up/logn using your Bluesky account Then, navigate to the RockSky developer dashboard and obtain an API Key","s":"Setup","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#setup","p":39},{"i":45,"t":"The handle used with multi-scrobbler should be your full ATProto handle, including TLD. For regular Bluesky account this will be like: alice.bsky.social For Bluesky accounts that use their website as their account this is your domain: mydomain.com For non-Bluesky users, you probably already know your handle If you do not include a TLD then multi-scrobbler will automatically append .bsky.social to your handle value. ENV File AIO ENV Config Type Environmental Variable Required? Default Description ROCKSKY_HANDLE Yes Your full ATProto handle. For Bluesky account this is like myUser.bsky.social ROCKSKY_KEY Yes API Key obtained from Rocksky developer dashboard File Config Type CONFIG/rocksky.json [ { \"name\": \"myRockskyClient\", \"configureAs\": \"client\", \"data\": { \"key\": \"7cdr86vis3mpq5b1pi01md0hkm7ykzzxjy81r\", \"handle\": \"alice.bsky.social\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myRockskyClient\", \"configureAs\": \"client\", \"data\": { \"key\": \"7cdr86vis3mpq5b1pi01md0hkm7ykzzxjy81r\", \"handle\": \"alice.bsky.social\" }, \"type\": \"rocksky\" } ] } or explore the schema with an example and live editor/validator","s":"Handle","u":"/multi-scrobbler/configuration/clients/rocksky/","h":"#handle","p":39},{"i":47,"t":"Other Uses To monitor and re-scrobble activity from a ATProto Profile create a teal.fm (Source) teal.fm is a social discovery and web viewing service for scrobbles stored/available on the ATProto network/your repository in a PDS (Personal Data Server). How does that work? The AT Protocol is a standard to allow different applications to share and interpret your social data. Your data is stored in a personal repository in a PDS (Personal Data Server), which is data-type agnostic (it's just JSON). Each application defines their own datatypes and pulls data from your repository to render to you, your network, etc... Even though the application and the PDS/repository are independent, all of this is done for you automatically when you create a Bluesky account. So... multi-scrobbler \"scrobbles\" your plays to your repository in a JSON data structure which includes teal.fm's data type and structure at a known location for teal.fm's data (fm.teal), in a list that is appended to as you continue to scrobble when accessing teal.fm, or another application that knows how to read it, your data is pulled from the repository to render the app warning The default Bluesky PDS is public, meaning your scrobbles are also public (read-only). This isn't any different than using Last.fm or Listenbrainz, in terms of privacy. note teal.fm is still in developement and does not have a public website, yet. To view your teal.fm scrobbles you can: use wrapped.baileytownsend.dev which gives a simple stats overview of your scrobbles use teal-slice.wisp.place for a preview of teal.fm use atproto.at to view the raw data (convenience URLs are generated in multi-scrobbler for you to do this)","s":"Teal.fm","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"","p":46},{"i":49,"t":"Bluesky Create a Bluesky account, if you don't already have one Navigate to https://bsky.app/settings/app-passwords Settings -> Privacy and Security -> App passwords Create a new App Password and save it somewhere, it will not be shown again","s":"Setup","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#setup","p":46},{"i":52,"t":"The ATPRoto identifier used with multi-scrobbler should be either: A valid DID, starting with did:plc:... or did:web:... Your full ATProto handle, including TLD If using a handle: For regular Bluesky account this will be like: alice.bsky.social For Bluesky accounts that use their domain as their account this is your domain: mydomain.com For non-Bluesky-PDS users, you probably already know your handle If your identifier does not look like a DID and does not include a TLD then multi-scrobbler will automatically append .bsky.social to your handle value. ENV File AIO ENV Config Type Environmental Variable Required? Default Description TEALFM_IDENTIFIER Yes Your full ATProto handle or DID. For Bluesky account this is like myUser.bsky.social TEALFM_APP_PW Yes Bluesky/ATProto network App Password File Config Type CONFIG/tealfm.json [ { \"name\": \"myTeal\", \"configureAs\": \"client\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"clients\": [ { \"name\": \"myTeal\", \"configureAs\": \"client\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" }, \"type\": \"tealfm\" } ] } or explore the schema with an example and live editor/validator","s":"Identifier","u":"/multi-scrobbler/configuration/clients/tealfm/","h":"#identifier","p":46},{"i":54,"t":"Scenario: You want to scrobble plays for yourself (Foxx), Fred, and Mary Each person has their own Maloja server Each person has their own Spotify account You have your own Airsonic (subsonic) server you to scrobble from You have your own Youtube Music account you want to scrobble from Mary has her own Last.fm account she also wants to scrobble to Fred has his own Spotify application and provides you with just his access and refresh token because he doesn't trust you (wtf Fred) Fred has a Plex server and wants to scrobble everything he plays Mary uses Fred's Plex server but only wants to scrobble her plays from the podcast library The three of you have a shared library on Plex called party that you only play when you are hanging out. You want plays from that library to be scrobbled to everyone's servers. Fred also has his own Jellyfin server and wants to scrobble everything he plays You have an android music app that can scrobble to a custom listenbrainz server","s":"Example Complex Scenario","u":"/multi-scrobbler/configuration/kitchensink/","h":"","p":53},{"i":56,"t":"CONFIG_DIR/config.json { \"sourceDefaults\": { \"maxPollRetries\": 0, // optional, default # of automatic polling restarts on error. can be overridden by property in individual config \"maxRequestRetries\": 1, // optional, default # of http request retries a source can make before error is thrown. can be overridden by property in individual config \"retryMultiplier\": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config }, \"clientDefaults\": { \"maxRequestRetries\": 1, // optional, default # of http request retries a client can make before error is thrown. can be overridden by property in individual config \"retryMultiplier\": 1.5, // optional, default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying). can be overridden by property in individual config }, \"sources\": [ { \"type\": \"spotify\", \"name\": \"foxxSpot\", \"clients\": [\"foxxMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", \"clientSecret\": \"foxxSpotifyAppSecret\", }, \"options\": { \"maxRequestRetries\": 2, // override default max retries because spotify can...spotty } }, { \"type\": \"spotify\", \"name\": \"marySpot\", \"clients\": [\"maryMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", // only need one application, it can be used by all users of this multi-scrobbler instance \"clientSecret\": \"foxxSpotifyAppSecret\", } }, { \"type\": \"spotify\", \"name\": \"fredSpot\", \"clients\": [\"fredMaloja\"], \"data\": { \"accessToken\": \"fredsToken\", \"refreshToken\": \"fredsRefreshToken\", \"interval\": 120, // he also wants a slower check interval because his application already has heavy api usage } }, { \"type\": \"plex\", \"name\": \"fredPlex\", \"clients\": [\"fredMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"fredUser\"] } }, { \"type\": \"plex\", \"name\": \"maryPlex\", \"clients\": [\"maryMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"maryUser\"], // still need to specify mary as user so not all users who play from 'podcasts' get scrobbled \"librariesAllow\": [\"podcasts\"] } }, { \"type\": \"plex\", \"name\": \"partyPlex\", // omitting clients (or making it empty) will make this Source scrobble to all Clients \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"librariesAllow\": [\"party\"] } }, { \"type\": \"jellyfin\", \"name\": \"FredJelly\", // omitting clients (or making it empty) will make this Source scrobble to all Clients \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", \"usersAllow\": [\"fredUser\"] } }, { \"type\": \"subsonic\", \"name\": \"foxxAirsonic\", \"clients\": [\"foxxMaloja\"], \"data\": { \"user\": \"foxx\", \"password\": \"foxxPassword\", \"url\": \"https://airsonic.foxx.example\" } }, { \"type\": \"ytmusic\", \"name\": \"foxxYoutube\", \"clients\": [\"foxxMaloja\"], \"data\": { \"cookie\": \"__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...\", } }, { \"type\": \"endpointlz\", \"name\": \"listenbrainzfoxx\", \"clients\": [\"foxxMaloja\"], \"data\": { \"token\": \"myToken\" } } ], \"clients\": [ { \"type\": \"maloja\", \"name\": \"foxxMaloja\", \"data\": { \"url\": \"https://maloja.foxx.example\", \"apiKey\": \"foxxApiKey\" } }, { \"type\": \"maloja\", \"name\": \"fredMaloja\", \"data\": { \"url\": \"https://maloja.fred.example\", \"apiKey\": \"fredApiKey\" } }, { \"type\": \"maloja\", \"name\": \"maryMaloja\", \"data\": { \"url\": \"https://maloja.mary.example\", \"apiKey\": \"maryApiKey\" } }, { \"type\": \"lastfm\", \"name\": \"maryLFM\", \"data\": { \"apiKey\": \"maryApiKey\", \"secret\": \"marySecret\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ] }","s":"All-in-one Config","u":"/multi-scrobbler/configuration/kitchensink/","h":"#all-in-one-config","p":53},{"i":58,"t":"CONFIG_DIR/spotify.json [ { // may omit 'type' property since app knows this is file is for spotify configs \"name\": \"foxxSpot\", \"clients\": [\"foxxMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", \"clientSecret\": \"foxxSpotifyAppSecret\" } }, { \"name\": \"marySpot\", \"clients\": [\"maryMaloja\"], \"data\": { \"clientId\": \"foxxSpotifyAppId\", \"clientSecret\": \"foxxSpotifyAppSecret\" } }, { \"name\": \"fredSpot\", \"clients\": [\"fredMaloja\"], \"data\": { \"accessToken\": \"fredsToken\", \"refreshToken\": \"fredsRefreshToken\", \"interval\": 120 } }, ] CONFIG_DIR/plex.json [ { \"name\": \"fredPlex\", \"clients\": [\"fredMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"fredUser\"] } }, { \"name\": \"maryPlex\", \"clients\": [\"maryMaloja\"], \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"usersallow\": [\"maryUser\"], \"librariesAllow\": [\"podcasts\"] } }, { \"name\": \"partyPlex\", \"data\": { \"token\": \"JtRnwQWD__XMJF8sT3jc\", \"url\": \"192.168.0.233:32400\", \"librariesAllow\": [\"party\"] } } ] CONFIG_DIR/jellyfin.json [ { \"name\": \"FredJelly\", \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", \"usersAllow\": [\"fredUser\"] } } ] CONFIG_DIR/ytmusic.json [ { \"name\": \"foxxYoutube\", \"clients\": [\"foxxMaloja\"], \"data\": { \"cookie\": \"__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...\", } } ] CONFIG_DIR/endpointlz.json [ { \"name\": \"listenbrainzfoxx\", \"clients\": [\"foxxMaloja\"], \"data\": { \"token\": \"myToken\", } } ] CONFIG_DIR/maloja.json [ { \"name\": \"foxxMaloja\", \"data\": { \"url\": \"https://maloja.foxx.example\", \"apiKey\": \"foxxApiKey\" } }, { \"name\": \"fredMaloja\", \"data\": { \"url\": \"https://maloja.fred.example\", \"apiKey\": \"fredApiKey\" } }, { \"name\": \"maryMaloja\", \"data\": { \"url\": \"https://maloja.mary.example\", \"apiKey\": \"maryApiKey\" } } ] CONFIG_DIR/lastfm.json [ { \"name\": \"maryLFM\", \"data\": { \"apiKey\": \"maryApiKey\", \"secret\": \"marySecret\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ]","s":"Separate JSON files","u":"/multi-scrobbler/configuration/kitchensink/","h":"#separate-json-files","p":53},{"i":60,"t":"A Source is a data source that contains information about tracks you are playing like a music player or platform. Examples are Spotify, Jellyfin, Plex, Youtube Music, Airsonic, etc...","s":"Overview","u":"/multi-scrobbler/configuration/sources/","h":"","p":59},{"i":62,"t":"Name Networking Scrobble SOT Multi Device/User Scrobble Destination Thresholds Should Scrobble Azuracast Active Activity ❌ ✅ ✅ ✅ Deezer Active History ✅ ✅ ❌ ❌ Google Cast (Chromecast) Active Activity ✅ ✅ ✅ ❌ Icecast Active Activity ❌ ✅ ✅ ✅ Jellyfin Active Activity ✅ ✅ ✅ ❌ JRiver Active Activity ❌ ✅ ✅ ❌ Kodi Active Activity ❌ ✅ ✅ ❌ Koito Active History ❌ ✅ ❌ ❌ Last.fm Active History ❌ ✅ ❌ ❌ Last.fm (Endpoint) Ingress History ❌ ✅ ❌ ❌ ListenBrainz Active History ❌ ✅ ❌ ❌ ListenBrainz (Endpoint) Ingress History ❌ ✅ ❌ ❌ Maloja Active History ❌ ✅ ❌ ❌ Mopidy Active Activity ❌ ✅ ✅ ❌ MPD (Music Player Daemon) Active Activity ❌ ✅ ✅ ❌ Musikcube Active Activity ❌ ✅ ✅ ❌ Plex Active Activity ✅ ✅ ✅ ❌ Rocksky Active History ❌ ✅ ❌ ❌ Spotify Active Activity ✅ ✅ ✅ ❌ Subsonic-compatible APIs Active Activity ✅ ✅ ✅ ❌ teal.fm Active History ❌ ✅ ❌ ❌ WebScrobbler Ingress History ❌ ✅ ❌ ❌ VLC Active Activity ❌ ✅ ✅ ❌ Yamaha MusicCast Active Activity ❌ ✅ ✅ ❌ Youtube Music Active History ❌ ✅ ❌ ❌","s":"Sources","u":"/multi-scrobbler/configuration/sources/","h":"#sources","p":59},{"i":65,"t":"The Sources implemented in multi-scrobbler can be broken down into two categories. By Communication Method How does this Source get data from the service/application? Active Ingress The MS Source makes network requests to the service which returns a response with data MS can use to monitor listening activity or scrobbles. The MS Source waits for the service/application to send data to multi-scrobbler. These types of Sources require that multi-scrobbler is accessible to the service, generally through an open port or reverse proxy. By Data Source of Truth How does MS determine if/when a song has been played and is scrobbable? Listening Activity Listening History These Sources expose some kind of real-time listening data for users, like: player state (paused, stopped, playing) player position (1:50/2:40) current listened duration (Track A playing for 1m:20s) For theses Sources multi-scrobbler keeps track of the real-time state of your activity and scrobbles a track after it meets certain scrobble thresholds. Some Sources expose their own version of \"this track has been scrobbled.\" Listenbrainz, Koito, and Last.fm are all scrobble services that have \"definitive\" histories of scrobbled tracks. For these Sources multi-scrobbler monitors the listening history data and scrobbles when it sees a new entry in the list.","s":"Types of Sources","u":"/multi-scrobbler/configuration/sources/","h":"#types-of-sources","p":59},{"i":67,"t":"Some Sources report which User is playing a track and/or on what device the track is being played. These Sources can be filtered with configuration to only monitor activity for specific devices or users.","s":"Multi-Device/User","u":"/multi-scrobbler/configuration/sources/","h":"#multi-deviceuser","p":59},{"i":69,"t":"To limit which Clients a Source will scrobble to use the clients property in a Source's File/AIO configuration to specify the name property of the Clients that it should scrobble to: jellyfin.json { \"name\": \"MyJellyfin\", \"clients\": [\"myMaloja\",\"koitoA\",\"listenbrainzFoo\"] \"data\": { // ... }, } note If clients is empty (\"clients\": []) or is omitted then the default is for the Source to scrobble to all configured Clients. note If a Client is configured using ENV then it is given a generated name. Check the multi-scrobbler Dashboard to find their name in a subheader under the Client type. Example: Otherwise, use the name property you gave the client in it's File/AIO config.","s":"Limiting Scrobble Destination","u":"/multi-scrobbler/configuration/sources/","h":"#limiting-scrobble-destination","p":59},{"i":71,"t":"A Source that monitors active listening uses one of two metrics to determine if a Song is scrobbable based on your listening: percent of track listened to (50% or more) or amount of time (duration) track was listened to (4 minutes or more) These default values are based on last.fm's scrobble guidance. These values can be customized in the options of Source's file or aio config: spotify.json { \"data\": { // ... }, \"options\": { \"scrobbleThresholds\": { \"duration\": 40, // scrobbable if listened to for 40 seconds or more \"percent\": 20 // scrobbable if listened to for 20% or more of the track's length } } } These can also be configured globally for all Sources using ENVs: SOURCE_SCROBBLE_DURATION=40 SOURCE_SCROBBLE_PERCENT=20","s":"Scrobble Thresholds","u":"/multi-scrobbler/configuration/sources/","h":"#scrobble-thresholds","p":59},{"i":73,"t":"note This feature is currently available only for some Sources. Check each Source's documentation to see if it supported. For most Sources multi-scrobbler can determine if a user is listening and scrobble automatically. For Sources which multi-scrobbler cannot do this or require additional configuration, a user can indicate to MS that it should or should not scrobble. This action can be taken on the Web Dashboard by clicking the link next to Should Scrobble found in each Source's status card. Additionally, for these Sources, the default behavior for Scrobbling can be explicitly set by adding the following value to a Source's options in file or aio config: azuracast.json { \"data\": { // ... }, \"options\": { // set to true to always scrobble automatically // set to false to never scrobble automatically \"systemScrobble\": true } }","s":"Should Scrobble Behavior","u":"/multi-scrobbler/configuration/sources/","h":"#should-scrobble-behavior","p":59},{"i":75,"t":"Scrobbling Threshold Azuracast may not correctly report track length or position. If this is the case you should reduce the \"listened to\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly. The Azuracast server should have Use High-Performance Now Playing Updates enabled in Administration -> System Settings URL The URL used by MS to connect to Azuracast has the syntax: [ws|wss]://HOST:[PORT] MS will automatically add the path required for websockets, /api/live/nowplaying/websocket, to your URL if none is provided. If you use a reverse proxy with a path-based URL or otherwise need a custom path to access the websockets path correctly then explicitly provide it. Examples: URL From Config => MS Uses 'ws://192.168.0.101' => ws://192.168.0.101/api/live/nowplaying/websocket 'ws://azura.mydomain.com' => ws://azura.mydomain.com.com/api/live/nowplaying/websocket 'wss://mydomain.com/custom/azura/ws' => wss://mydomain.com/custom/azura/ws Scrobble Behavior info This Source supports toggling scrobbling on or off manually. This action can be taken on the Web Dashboard by clicking the link next to Should Scrobble found in each Source's status card. Additionally, the default behavior for scrobbling can be explicitly set by adding the following value to a Source's options in file or aio config: azuracast.json { \"data\": { // ... }, \"options\": { // set to true to always scrobble automatically // set to false to never scrobble automatically \"systemScrobble\": true } }} Multi-scrobbler will set the default scrobbling behavior based on if either of these settings is configured: live status (AZURA_LIVE or monitorWhenLive) or listener count (AZURA_LISTENERS_NUM or monitorWhenListeners) If either is configured then MS will automatically scrobble based on when these conditions are met. If neither is configured automatic scrobble defaults to off and you should either manually initiate it or explicitly set the default behavior.","s":"Azuracast","u":"/multi-scrobbler/configuration/sources/azuracast/","h":"","p":74},{"i":77,"t":"ENV File AIO Environmental Variable Required? Default Description AZ_URL Yes Azuracast URL without station name AZ_STATION Yes The station name shown on the public page AZURA_LIVE No Yes Only scrobble when station status is ONLINE AZURA_LISTENERS_NUM No true Only scrobble if station has any listeners (true) or listeners are equal-to/greater-than X CONFIG_DIR/azuracast.json [ { \"type\": \"azuracast\", \"enable\": true, \"name\": \"azura\", \"data\": { \"url\": \"ws://192.168.0.101\", \"station\": \"my-station-name\", \"monitorWhenLive\": true, \"monitorWhenListeners\": 1 } } ] or explore the schema with an example and live editor/validator CONFIG_DIR/config.json { \"sources\": [ { \"type\": \"azuracast\", \"enable\": true, \"name\": \"azura\", \"data\": { \"url\": \"ws://192.168.0.101\", \"station\": \"my-station-name\", \"monitorWhenLive\": true, \"monitorWhenListeners\": 1 } } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/azuracast/","h":"#configuration","p":74},{"i":79,"t":"warning This Source uses unofficial methods to access Deezer data that are likely in violation of Deezer's TOS. Deezer may change or remove these methods at any time, breaking functionality. Use this Source at your own risk. info This Source will work only if you have a Premium Deezer account.","s":"Deezer","u":"/multi-scrobbler/configuration/sources/deezer/","h":"","p":78},{"i":81,"t":"The arl is a browser cookie that Deezer uses to store your login information. Multi-scrobbler uses the arl value to make authorized requests to Deezer's API where it can retrieve listening history. After logging into Deezer, use one of the methods below to retrieve the arl cookie value: Chrome Firefox On deezer.com, press F12 to open the Developer Tools window. Go to the Applications tab. Press the '>>' More tabs icon if it's hidden. Under the Cookies Filter, click deezer.com, then the text bar name arl. Copy all the contents shown in the Cookie Value pane. On deezer.com, hit Ctrl+Shift+I to open Developer Tools Go to the Storage Tab, then expand Cookies in the sidebar and select deezer.com Find the row with arl as the name, then double click the Value column and right click -> copy the value","s":"Retrieve ARL","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#retrieve-arl","p":78},{"i":83,"t":"ENV File AIO Environmental Variable Required? Default Description DEEZER_ARL Yes The ARL cookie value retrieved from your browser CONFIG_DIR/deezer.json [ { \"name\": \"DeezerARL\", \"enable\": true, \"clients\": [], \"data\": { \"arl\": \"UOsRPjT3U5Dhaaup3xQ30DWFoSgqugdSYzL3QE743waaVy2eur2ckyJcZ4RV123Q3PsbKXkLwA6ahc9XmEfev6BtfSP8LujE3JswWRQogZCDUOwVzWO5sAig\", } } ] or explore the schema with an example and live editor/validator CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"DeezerARL\", \"enable\": true, \"clients\": [], \"data\": { \"arl\": \"UOsRPjT3U5Dhaaup3xQ30DWFoSgqugdSYzL3QE743waaVy2eur2ckyJcZ4RV123Q3PsbKXkLwA6ahc9XmEfev6BtfSP8LujE3JswWRQogZCDUOwVzWO5sAig\" }, \"type\": \"deezer\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#configuration","p":78},{"i":85,"t":"Third party integrations with Deezer (Sonos) may cause Deezer to report the same track many times in listening history. If you experience this issue modify your Deezer Source config (file-based only) to include the option \"fuzzyDiscoveryIgnore\": \"aggressive\" deezer.json example deezer.json [ { \"name\": \"MyDeezer\", \"data\": { \"arl\": \"UOsRPjT3U5Dhaaup3x...\", }, \"options\": { \"fuzzyDiscoveryIgnore\": \"aggressive\" } } ] This option comes with some trade-offs: MS will aggressively detect repeated tracks within a window of time that should eliminate all duplicates. However, this will also prevent intentionally repeated tracks from being scrobbled. See this thread for more information on how this works.","s":"Duplicate detection","u":"/multi-scrobbler/configuration/sources/deezer/","h":"#duplicate-detection","p":78},{"i":87,"t":"If your media device can be Cast to using this button on your phone/computer then multi-scrobbler can monitor it in order to scrobble music you play. note Google Cast support is experimental. You may experience crashes and errors while using this Source. Please open an issue if you experience problems and include all information detailed in the issue template to help debug your issue. note This source relies on common, basic music data provided by the cast device which will always be less exhaustive than data parsed from full source integrations. If there is an existing Source it is recommended to configure for it and blacklist the app on Google Cast, rather than relying solely on Google Cast for scrobbling. Connecting Devices Cast devices can be manually configured using file-based configuration OR automatically discovered using mDNS. mDNS Discovery The host machine running multi-scrobbler must be configured to allow mDNS traffic on port 5353/UDP. OS Specific Instructions Linux Windows Docker The host machine must have avahi-daemon running to circumvent limitations with DNS resolution due to musl in Alpine. Most major linux distributions package avahi and many have it built-in. Once avahi is running you must pass D-Bus and the avahi daemon socket to your container like so: docker run ... -v /var/run/dbus:/var/run/dbus -v /var/run/avahi-daemon/socket:/var/run/avahi-daemon/socket ... foxxmd/multi-scrobbler Flatpak/Nodejs No additional steps are required. Docker Unsupported at this time. Nodejs No additional steps are required. What Media Does MS Scrobble? Cast devices report what type of media the current activity is (see metadata property here). The reported type is dependent on the application playing the media to correctly report it, the cast device does not magically know what the media is. If an application does not report a type it is always classified as unknown. By default, MS will only track media that is reported as MusicTrack. Allow Unknown Media Type Media with an Unknown (Generic) media type can be explicitly allowed by setting \"allowUnknownMedia\": true in the file-based configuration. This can also be configured to only allow unknown media types for specific applications by using a list of application names. Example chromecast.json [ { \"name\": \"MyCast\", \"type\": \"chromecast\", \"data\": { // only allow unknown if app name contains any of these phrases \"allowUnknownMedia\": [\"smarttube\", \"default media receiver\"] }, } ] Forcing Media Tracking MS can be forced to track media from an application regardless of media type. This is useful if an application incorrectly reports a media type you are sure should be music. Set \"forceMediaRecognitionOn\" in the file-based configuration to a list of application names that should always be tracked. Example chromecast.json [ { \"name\": \"MyCast\", \"type\": \"chromecast\", \"data\": { // media from applications that contains these phrases will always be tracked, regardless of media type reported \"forceMediaRecognitionOn\": [\"smarttube\", \"default media receiver\"] }, } ] Cast Troubleshooting Please include any/all logs with raw output if there are any errors encountered as this is critical to diagnosing issues. To diagnose bad/incomplete track information or strange MS player behavior please turn on payload logging and include log output of the source running to help diagnose this issue. Either enable in config using the below example OR enable Debug Mode. Example chromecast.json [ { \"name\": \"MyCast\", \"type\": \"chromecast\", \"data\": { //... }, \"options\": { \"logPayload\": true } } ]","s":"Google Cast (Chromecast)","u":"/multi-scrobbler/configuration/sources/google-cast/","h":"","p":86},{"i":89,"t":"ENV File AIO note Manually configuring cast device connections is only available through file-based config. Environmental Variable Required? Default Description CC_ENABLE No Set to 'true' to enable Cast monitoring without needing to define other ENVs CC_WHITELIST_DEVICES No Only scrobble from these Cast devices. Comma-delimited list. EX mini-home, family-tv CC_BLACKLIST_DEVICES No Do not scrobble from these Cast devices. Comma-delimited list CC_WHITELIST_APPS No Only scrobble from these casted Apps. Comma-delimited list. EX spotify, pandora CC_BLACKLIST_APPS No Do not scrobble from these casted Apps. Comma-delimited list Example CONFIG_DIR/chromecast.json [ { \"name\": \"MyCast\", \"data\": { \"blacklistedDevices\": [], \"whitelistedDevices\": [], \"blacklistedApps\": [], \"whitelistedApps\": [] } } ] or explore the schema with an example and live editor/validator Example CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyCast\", \"data\": { \"blacklistedDevices\": [], \"whitelistedDevices\": [], \"blacklistedApps\": [], \"whitelistedApps\": [] }, \"type\": \"chromecast\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/google-cast/","h":"#configuration","p":86},{"i":91,"t":"Parse metadata from any Icecast Station (streams) to use for scrobbling. note There is no standard format for presenting track information in an Icecast stream and the majority of streams that do include metadata only use a single string (StreamTitle) from which metadata can be parsed. Multi-scrobbler will do its best to parse Artist/Album/Track information from this data but the quality and consistency for this is solely based on how the Icecast broadcaster chooses to format their tracks. Scrobbling Behavior Multi-scrobbler cannot automatically determine if you are listening to a Station. Therefore, automatic scrobbling for Icecast Sources is off by default. Use Should Scrobble Behavior to initiate scrobbling or configure automatic scrobble. Scrobbling Threshold Icecast does not report track lengths so multi-scrobbler cannot determine if it should scrobble based on percent played. You should instead set a shorter \"listened to\" duration using Scrobble Thresholds. URL and Sources The URL should be the URL you would use to stream audio. Additional sources are supported based on those found in icecast-metadata-stats. To use these with automatic parsing based on the regular URL include a sources array in your config the same way as shown in icecast-metadata-stats: Example config.json [ { \"name\": \"myIcy\", \"enable\": true, \"data\": { \"url\": \"http://myIcecast.com/radio\", \"sources\": [\"icy\", \"ogg\", \"sevenhtml\"] } } ] To manually set these sources include the same *Endpoint options found in icecast-metadata-stats. If no sources are configured for multi-scrobbler it will automatically try to use icy and ogg.","s":"Icecast","u":"/multi-scrobbler/configuration/sources/icecast/","h":"","p":90},{"i":93,"t":"ENV File AIO Environmental Variable Required? Default Description ICECAST_URL Yes Icecast URL Example CONFIG_DIR/icecast.json [ { \"name\": \"myIcy\", \"enable\": true, \"data\": { \"url\": \"http://myIcecast.com/radio\" } } ] or explore the schema with an example and live editor/validator Example CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myIcy\", \"enable\": true, \"data\": { \"url\": \"http://myIcecast.com/radio\" }, \"type\": \"icecast\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/icecast/","h":"#configuration","p":90},{"i":95,"t":"Must be using Jellyfin 10.7 or greater Create an API Key for multi-scrobbler In the Jellyfin desktop web UI Navigate to -> Administration -> Dashboard -> API Keys (http://YOUR_JELLYIN_URL/web/index.html#!/apikeys.html) Click + button and create a new key with App name multi-scrobbler Copy the created API Key value for use in configuration below It is recommended to use API Key + username but if you are not an admin for your Jellyfin instance you can also authenticate with your Jellyfin username and password. Important Defaults By default... multi-scrobbler will only scrobble for the user authenticated with the API. Allowed Users (usersAllow or JELLYFIN_USERS_ALLOW) are only necessary if you want to scrobble for additional users. multi-scrobbler will only scrobble media found in Jellyfin libraries that were labelled as Music. librariesAllow or JELLYFIN_LIBRARIES_ALLOW will override this OR use additionalAllowedLibraryTypes to allow more types (like mixed or book for audiobooks) multi-scrobbler will only scrobble media Jellyfin detects as Audio. To force multi-scrobbler to scrobble when media is detected as Unknown use \"allowUnknown\": true in file/aio configuration. Configuration ENV File AIO Environmental Variable Required? Default Description JELLYFIN_URL Yes The URL of the Jellyfin server IE http://localhost:8096 JELLYFIN_USER Yes The user to authenticate with the API JELLYFIN_APIKEY No The API Key to use for authentication (Must provide either apikey or password) JELLYFIN_PASSWORD No The password of the user to authenticate for. (Must provide either apikey or password) JELLYFIN_USERS_ALLOW No Comma-separated list of usernames (from Jellyfin) to scrobble for JELLYFIN_USERS_BLOCK No Comma-separated list of usernames (from Jellyfin) to disallow scrobble for JELLYFIN_DEVICES_ALLOW No Comma-separated list of devices to scrobble from JELLYFIN_DEVICES_BLOCK No Comma-separated list of devices to disallow scrobbles from JELLYFIN_LIBRARIES_ALLOW No Comma-separated list of libraries to allow scrobbles from JELLYFIN_LIBRARIES_BLOCK No Comma-separated list of libraries to disallow scrobbles from CONFIG_DIR/jellyfin.json [ { \"name\": \"MyJellyfin\", \"enable\": true, \"clients\": [], \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", // everything below is optional \"usersAllow\": [\"FoxxMD\",\"SomeOtherUser\"], \"usersBlock\": [\"AnotherUser\"], \"devicesAllow\": [\"firefox\"], \"devicesBlock\": [\"google-home\"], \"librariesAllow\": [\"GoodMusic\"], \"librariesBlock\": [\"BadMusic\"], \"additionalAllowedLibraryTypes\": [\"musicvideos\"], \"allowUnknown\": false, }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\" } } ] or explore the schema with an example and live editor/validator CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyJellyfin\", \"enable\": true, \"clients\": [], \"data\": { \"url\": \"http://localhost:8096\", \"user\": \"FoxxMD\", \"apiKey\": \"c9fae8756fbf481ebd9c5bb56bd6540c\", \"usersAllow\": [ \"FoxxMD\", \"SomeOtherUser\" ], \"usersBlock\": [ \"AnotherUser\" ], \"devicesAllow\": [ \"firefox\" ], \"devicesBlock\": [ \"google-home\" ], \"librariesAllow\": [ \"GoodMusic\" ], \"librariesBlock\": [ \"BadMusic\" ], \"additionalAllowedLibraryTypes\": [ \"musicvideos\" ], \"allowUnknown\": false }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\" }, \"type\": \"jellyfin\" } ] } or explore the schema with an example and live editor/validator","s":"Jellyfin","u":"/multi-scrobbler/configuration/sources/jellyfin/","h":"","p":94},{"i":97,"t":"In order for multi-scrobbler to communicate with JRiver you must have Web Server Interface enabled. This can can be in the JRiver GUI: Tools -> Options -> Media Network Check Use Media Network to share this library... If you have Authentication checked you will need to provide the Username and Password in the ENV/File configuration below.","s":"JRiver","u":"/multi-scrobbler/configuration/sources/jriver/","h":"","p":96},{"i":99,"t":"The URL used to connect to JRiver, set in your file config as url. The URL used to connect ultimately must be formed like this: Syntax => [protocol]://[hostname]:[port]/[path] Default => http://localhost:52199/MCWS/v1/ If any part of this URL is missing multi-scrobbler will use a default value. This also means that if any part of your URL is not standard you must explicitly define it. Jriver Settings Make sure the port number matches what is found in Advanced section in the Media Network options. If your installation is on the same machine but you cannot connect using localhost try 0.0.0.0 instead. URL Transform Examples Examples of a given url in your file config and the final URL multi-scrobbler will use to connect to JRiver: url Transformed URL (none set) http://localhost:52199/MCWS/v1/ jriver.mydomain.com http://jriver.mydomain.com:52199/MCWS/v1/ 192.168.0.101:3456 http://192.168.0.101:3456/MCWS/v1/ mydomain.com:80/jriverReverse/MCWS/v1/ mydomain.com:80/jriverReverse/MCWS/v1/","s":"URL","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#url","p":96},{"i":101,"t":"ENV File AIO ENV Config Type Environmental Variable Required Default Description JRIVER_URL Yes http://localhost:52199/MCWS/v1/ The URL of the JRiver server JRIVER_USERNAME No If authentication is enabled, the username set JRIVER_PASSWORD No If authenticated is enabled, the password set File Config Type CONFIG_DIR/jriver.json [ { \"name\": \"MyJriver\", \"enable\": true, \"data\": { \"url\": \"0.0.0.0\", \"username\": \"auser\", \"password\": \"apassword\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyJriver\", \"enable\": true, \"data\": { \"url\": \"0.0.0.0\", \"username\": \"auser\", \"password\": \"apassword\" }, \"type\": \"jriver\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/jriver/","h":"#configuration","p":96},{"i":103,"t":"In order for multi-scrobbler to communicate with Kodi you must have the Web Interface enabled. This can be done in the Kodi GUI: Settings -> Services -> Control Check Allow remote control via HTTP Ensure you have a Username and Password set, you will need to provide them in the ENV/File configuration below.","s":"Kodi","u":"/multi-scrobbler/configuration/sources/kodi/","h":"","p":102},{"i":105,"t":"The URL used to connect to Kodi, set in your file config as url. The URL used to connect ultimately must be formed like this: Syntax => [protocol]://[hostname]:[port]/[path] Default => http://localhost:8080/jsonrpc If any part of this URL is missing multi-scrobbler will use a default value. This also means that if any part of your URL is not standard you must explicitly define it. Kodi Settings Make sure the port number matches what is found in Port in the Control section mentioned above. If your installation is on the same machine but you cannot connect using localhost try 0.0.0.0 instead. URL Transform Examples Examples of a given url in your file config and the final URL multi-scrobbler will use to connect to Kodi: url Transformed URL (none set) http://localhost:8080/jsonrpc kodi.mydomain.com http://kodi.mydomain.com:8080/jsonrpc 192.168.0.101:3456 http://192.168.0.101:3456/jsonprc mydomain.com:80/kodiReverse/jsonrpc http://mydomain.com:80/kodiReverse/jsonrpc","s":"URL","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#url","p":102},{"i":107,"t":"ENV File AIO ENV Config Type Environmental Variable Required Default Description KODI_URL Yes http://localhost:8080/jsonrpc The URL of the Kodi server KODI_USERNAME No The username set KODI_PASSWORD No The password set File Config Type CONFIG/kodi.json [ { \"name\": \"MyKodi\", \"enable\": true, \"data\": { \"url\": \"http://localhost:8080/jsonrpc\", \"username\": \"myUser\", \"password\": \"myPassword\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyKodi\", \"enable\": true, \"data\": { \"url\": \"http://localhost:8080/jsonrpc\", \"username\": \"myUser\", \"password\": \"myPassword\" }, \"type\": \"kodi\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/kodi/","h":"#configuration","p":102},{"i":109,"t":"This Source monitors a Koito account's scrobble history and then re-scrobbles discovered tracks to configured Clients. Other Uses To scrobble to a Koito server, create a Koito (Client) See the Koito (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\" Configuration ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Koito Client config -- multi-scrobbler assumes Koito ENVs are always used for the client configuration. You must use the File or AIO config to setup Koito as a Source. File Config Type CONFIG/koito.json [ { \"name\": \"koito-source\", \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"koito-source\", \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"admin\", \"url\": \"http://192.168.0.100:4110\" }, \"type\": \"koito\" } ] } or explore the schema with an example and live editor/validator","s":"Koito","u":"/multi-scrobbler/configuration/sources/koito-source/","h":"","p":108},{"i":111,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Last.fm server. Other Uses To scrobble to Last.fm, create a Last.fm (Client) To monitor and re-scrobble activity from your Last.fm account, create a Last.fm (Source)","s":"Lastfm (Endpoint)","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"","p":110},{"i":113,"t":"If a slug is not provided in configuration then multi-scrobbler will accept Last.fm scrobbles at http://localhost:9078/2.0/ which is the \"standard\" Last.fm server path for scrobbling Use a slug only if you need to setup multiple Last.fm Endpoint sources and cannot use different tokens. If a slug is used then the URL will be: http://localhost:9078/api/lastfm/mySlug","s":"URL","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#url","p":110},{"i":115,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LFMENDPOINT_ENABLE No Use LFM Endpoint as a Source without any other configuration. Only required if slug/token are not provided as ENVs LFM_SLUG No (Optional) The URL suffix to use for accepting LFM scrobbles File Config Type CONFIG/endpointlfm.json [ { \"name\": \"myLfm\", \"enable\": true, \"data\": { \"slug\": \"mySlug\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myLfm\", \"enable\": true, \"data\": { \"slug\": \"mySlug\" }, \"type\": \"endpointlfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-endpoint/","h":"#configuration","p":110},{"i":117,"t":"This Source monitors your Last.fm scrobble history and re-scrobbles new activity to configured Clients. Other Uses To scrobble to Last.fm, create a Last.fm (Client) To accept scrobbles from outside applications as if multi-scrobbler was Last.fm, create a Last.fm (Endpoint) To configure this Source use the same registration instructions and configuration data shown in Last.fm (Client) with the difference being \"configureAs\": \"source\" defined in the File/AIO configuration below.","s":"Lastfm","u":"/multi-scrobbler/configuration/sources/lastfm-source/","h":"","p":116},{"i":119,"t":"ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Last.fm Client config -- multi-scrobbler assumes Last.fm ENVs are always used for the client configuration. You must use the File or AIO config to setup Last.fm as a Source. File Config Type CONFIG/lastfm.json [ { \"name\": \"myLastFmSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myLastFmSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"secret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/lastfm/callback\" }, \"type\": \"lastfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/lastfm-source/","h":"#configuration","p":116},{"i":121,"t":"This Source enables multi-scrobbler to accept scrobbles from outside applications as if it was a Listenbrainz server. Other Uses To scrobble to Listenbrainz, create a Listenbrainz (Client) To monitor and re-scrobble activity from your Listenbrainz account, create a Listenbrainz (Source)","s":"Listenbrainz (Endpoint)","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"","p":120},{"i":123,"t":"If a slug is not provided in configuration then multi-scrobbler will accept Listenbrainz scrobbles at http://myMultiScrobblerIP:9078/1/submit-listens which is the \"standard\" Listenbrainz server path for scrobbling. In general, you should use http://myMultiScrobblerIP:9078/1/ as the base path when configuring your application to scrobble to multi-scrobbler. URL Setup for Popular Apps Navidrome Set the ListenBrainz.BaseURL (env ND_LISTENBRAINZ_BASEURL) to http://myMultiScrobblerIP:9078/1/ Use a slug only if you need to setup multiple Listenbrainz Endpoint sources and cannot use different tokens. If a slug is used then the URL will be: http://myMultiScrobblerIP:9078/api/listenbrainz/mySlug note Some Listenbrainz applications may require custom Listenbrainz URLs to be a real domain (example.com) and/or use SSL (https://). In this case you should setup multi-scrobbler behind a reverse proxy to support this functionality. It is out of the scope of this project to do this solely within multi-scrobbler.","s":"URL","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#url","p":120},{"i":125,"t":"Most Listenbrainz clients require a token (Authentication Token) to be provided during setup. This value can be anything you want, just make sure to use the same value for token in your multi-scrobbler configuration for the endpoint.","s":"Token","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#token","p":120},{"i":127,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description LZENDPOINT_ENABLE No Use LZ Endpoint as a Source without any other configuration. Only required if slug/token are not provided as ENVs LZE_TOKEN No LZ \"Authentication Token\" you provided to the scrobbling application LZE_SLUG No (Optional) The URL suffix to use for accepting LZ scrobbles File Config Type CONFIG/endpointlz.json [ { \"name\": \"myLz\", \"enable\": true, \"data\": { \"token\": \"myToken\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myLz\", \"enable\": true, \"data\": { \"token\": \"myToken\" }, \"type\": \"endpointlz\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-endpoint/","h":"#configuration","p":120},{"i":129,"t":"This Source monitors a Listenbrainz account's scrobble history and then re-scrobbles discovered tracks to configured clients. Other Uses To scrobble to a Listenbrainz server, create a Listenbrainz (Client) To accept scrobbles from outside applications as if multi-scrobbler was a Listenbrainz server, create a Listenbrainz (Endpoint) You will need to run your own Listenbrainz server or have an account on the official instance. On your profile page find your User Token to use in the configuration.","s":"Listenbrainz","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","h":"","p":128},{"i":131,"t":"ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Listenbrainz Client config -- multi-scrobbler assumes Listenbrainz ENVs are always used for the client configuration. You must use the File or AIO config to setup Listenbrainz as a Source. File Config Type CONFIG/listenbrainz.json [ { \"name\": \"brainzSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"brainzSource\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"token\": \"029b081ba-9156-4pe7-88e5-3be671f5ea2b\", \"username\": \"FoxxMD\", \"url\": \"https://api.listenbrainz.org\" }, \"type\": \"listenbrainz\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/listenbrainz-source/","h":"#configuration","p":128},{"i":133,"t":"Other Uses To scrobble to a Maloja server, create a Maloja (Client) See the Maloja (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\"","s":"Maloja","u":"/multi-scrobbler/configuration/sources/maloja/","h":"","p":132},{"i":135,"t":"ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Maloja Client config -- multi-scrobbler assumes Maloja ENVs are always used for the client configuration. You must use the [File or AIO config to setup Maloja as a Source. File Config Type CONFIG/maloja.json [ { \"name\": \"myMaloja-source\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myMaloja-source\", \"enable\": true, \"configureAs\": \"source\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" }, \"type\": \"maloja\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/maloja/","h":"#configuration","p":132},{"i":137,"t":"Mopidy is a headless music server that supports playing music from many standard and non-standard sources such as Pandora, Bandcamp, and Tunein. multi-scrobbler can scrobble tracks played from any Mopidy backend source, regardless of where you listen to them. note You must have Mopidy-HTTP extension enabled for this integration to work. URL The URL used to connect to the Mopidy server, set in your file config as url. The URL used to connect ultimately must be formed like this: Syntax => [protocol]://[hostname]:[port]/[path] Default => ws://localhost:6680/mopidy/ws If any part of this URL is missing multi-scrobbler will use a default value. This also means that if any part of your URL is not standard you must explicitly define it. Mopidy Configuration Make sure the hostname and port number match what is found in the Mopidy configuration file mopidy.conf: [http] hostname = localhost port = 6680 URL Transform Examples Examples of a given url in your file config and the final URL multi-scrobbler will use to connect to Mopidy: url Transformed URL (none set) ws://localhost:6680/mopidy/ws mopidy.mydomain.com ws://mopidy.mydomain.com:6680/mopidy/ws/ 192.168.0.101:3456 ws://192.168.0.101:3456/mopidy/ws/ mopidy.mydomain.com:80/MOPWS ws://mopidy.mydomain.com:80/MOPWS","s":"Mopidy","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"","p":136},{"i":139,"t":"If you wish to disallow or only allow scrobbling from some sources played through Mopidy you can specify these using uriBlacklist or uriWhitelist in your config. multi-scrobbler will check the list to see if any string matches the START of the uri on a track. If whitelist is used then blacklist is ignored. All strings are case-insensitive. Example { \"uriBlacklist\": [\"soundcloud\"] } Will prevent multi-scrobbler from scrobbling any Mopidy track that start with a uri like soundcloud:song:MySong-1234","s":"URI Blacklist/Whitelist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#uri-blacklistwhitelist","p":136},{"i":141,"t":"For certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \"Soundcloud\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake Album name to this list. Multi-scrobbler will still scrobble the track, just without the bad data. All strings are case-insensitive. Example { \"albumBlacklist\": [\"SoundCloud\", \"Mixcloud\"] } If a track would be scrobbled like Album: Soundcloud, Track: My Cool Track, Artist: A Cool Artist then multi-scrobbler will instead scrobble Track: My Cool Track, Artist: A Cool Artist","s":"Album Blacklist","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#album-blacklist","p":136},{"i":143,"t":"ENV File AIO ENV Config Type No ENV support File Config Type CONFIG/mopidy.json [ { \"name\": \"MyMopidy\", \"enable\": true, \"data\": { \"url\": \"localhost\", \"uriBlacklist\": [], \"uriWhitelist\": [], \"albumBlacklist\": [] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyMopidy\", \"enable\": true, \"data\": { \"url\": \"localhost\", \"uriBlacklist\": [], \"uriWhitelist\": [], \"albumBlacklist\": [] }, \"type\": \"mopidy\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/mopidy/","h":"#configuration","p":136},{"i":145,"t":"MS communicates with MPD using the TCP client connection. You should uncomment/create the following settings in your mpd config: bind_to_address \"any\" # or a specific ipv4/v6 address port \"6600\"","s":"MPD (Music Player Daemon)","u":"/multi-scrobbler/configuration/sources/mpd/","h":"","p":144},{"i":147,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MPD_URL No localhost:6600 MPD_PASSWORD No File Config Type CONFIG/mpd.json [ { \"enable\": true, \"name\": \"MyMPD\", \"data\": { \"url\": \"192.168.0.100:6600\", \"password\": \"MY_PASSWORD\" }, \"options\": { \"disableDiscovery\": false } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"enable\": true, \"name\": \"MyMPD\", \"data\": { \"url\": \"192.168.0.100:6600\", \"password\": \"MY_PASSWORD\" }, \"options\": { \"disableDiscovery\": false }, \"type\": \"mpd\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/mpd/","h":"#configuration","p":144},{"i":149,"t":"MPRIS is a standard interface for communicating with Music Players on linux operating systems. If you run Linux and have a notification tray that shows what media you are listening to, you likely have access to MPRIS. multi-scrobbler can listen to this interface and scrobble tracks played by any media player that communicates to the operating system with MPRIS. Host Setup MPRIS communication requires multi-scrobbler to have access to the host's dbus-daemon. Local Docker If multi-scrobbler is running as a Local Installation, directly with node/npm, on the same host as MPRIS then no setup is required. Remote setup is also possible, see the Remote Unix Socket section in the Docker tab. If multi-scrobbler is running as a Docker Container some modifications are required... Local Unix Socket The most secure way is to run a multi-scrobbler container on the same host as MPRIS. In this scenario you can simply mount the user session dbus unix socket into the container. Make sure PUID and PGID ENVs are configured so the container has permissions to access the socket. Then, modify your compose stack with these additional values: docker-compose.yaml environment: - DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/UID/bus volumes: - /run/user/UID/bus:/run/user/UID/bus:ro Remote Unix Socket warning This method is insecure. You should not expose dbus over a network unless access to the port is restricted and the network is trusted. Use socat to bidirectionally relay communication from the host's dbus socket to a listening TCP port. To make dbus for user with uid 1000 available on port 6644: socat TCP-LISTEN:6644,reuseaddr,fork UNIX-CONNECT:/run/user/1000/bus Then, add the following value to multi-scrobbler's ENVs: DBUS_SESSION_BUS_ADDRESS=tcp:host=yourHostIP,port=6644","s":"MPRIS","u":"/multi-scrobbler/configuration/sources/mpris/","h":"","p":148},{"i":151,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MPRIS_ENABLE No Use MPRIS as a Source (useful when you don't need any other options) MPRIS_BLACKLIST No Comma-delimited list of player names not to scrobble from MPRIS_WHITELIST No Comma-delimited list of players names to ONLY scrobble from. Overrides blacklist File Config Type CONFIG/mpris.json [ { \"name\": \"ubuntu\", \"enable\": true, \"data\": { \"whitelist\": [ \"vlc\", \"mpd\" ], \"blacklist\": [ \"spotify\" ] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"ubuntu\", \"enable\": true, \"data\": { \"whitelist\": [ \"vlc\", \"mpd\" ], \"blacklist\": [ \"spotify\" ] }, \"type\": \"mpris\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/mpris/","h":"#configuration","p":148},{"i":153,"t":"In order to use Musikcube configure it to accept websocket connections in server setup: Enable the Metadata Server Set a Password Both of these settings are found in Musikcube -> (s)ettings -> server setup The URL used by MS has the syntax: [ws|wss]://HOST:[PORT] The port is the same as shown in the server setup screenshot from above, under metadata server enabled. If no port is provided to MS it will default to 7905. If no URL is provided to MS it will try to use ws://localhost:7905","s":"Musikcube","u":"/multi-scrobbler/configuration/sources/musikcube/","h":"","p":152},{"i":155,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MC_URL No ws://localhost:7905 Use port set for metadata server MC_PASSWORD Yes File Config Type CONFIG/musikcube.json [ { \"type\": \"musikcube\", \"enable\": true, \"name\": \"musikcube\", \"data\": { \"url\": \"ws://localhost:7905\", \"password\": \"MY_PASSWORD\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"type\": \"musikcube\", \"enable\": true, \"name\": \"musikcube\", \"data\": { \"url\": \"ws://localhost:7905\", \"password\": \"MY_PASSWORD\" } } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/musikcube/","h":"#configuration","p":152},{"i":157,"t":"Find your Plex Token and make note of the URL and Port used to connect to your Plex instance. Allowed Users and Defaults Multi-scrobbler will automatically scrobble for these users by default: The User authenticated with the Plex Token and the Local User The Local User (PLEX_LOCAL_USER) is how Plex identifies anyone directly accessing the Plex UI from a local IP (who does not need to login). To allow MS to scrobble for other users use usersAllow or PLEX_USERS_ALLOW (env) from the below configuration docs. However, because you are overriding the default settings you must also explicitly list the authenticated user and the Local User if you want them to also be able to scrobble. Examples Defaults If usersallow and PLEX_USERS_ALLOW are not defined then the Plex Token authenticated User and Local User will be scrobbled for. Only A Specific User \"usersallow\": [\"SomeUser\"] or PLEX_USERS_ALLOW: SomeUser Only the Plex user SomeUser will be scrobbled for. The Plex Token authenticated user and the Local User will not be scrobbled for. A Specific User + Defaults (Assuming the plex authenticated user is FoxxMD) \"usersallow\": [\"FoxxMD\", \"PLEX_LOCAL_USER\", \"SomeUser\"] or PLEX_USERS_ALLOW: FoxxMD,PLEX_LOCAL_USER,SomeUser The Plex user SomeUser, the Plex Token authenticated user (FoxxMD) and the Local User will be scrobbled for. Allowed Libraries and Defaults By default multi-scrobbler will only scrobble media found in Plex libraries that are labelled as Music. librariesAllow or PLEX_LIBRARIES_ALLOW will override this Configuration ENV File AIO ENV Config Type Environmental Variable Required? Default Description PLEX_URL Yes The URL of the Plex server IE http://localhost:32400 PLEX_TOKEN Yes The Plex Token to use with the API PLEX_USERS_ALLOW No Comma-separated list of usernames (from Plex) to scrobble for PLEX_USERS_BLOCK No Comma-separated list of usernames (from Plex) to disallow scrobble for PLEX_DEVICES_ALLOW No Comma-separated list of devices to scrobble from PLEX_DEVICES_BLOCK No Comma-separated list of devices to disallow scrobbles from PLEX_LIBRARIES_ALLOW No Comma-separated list of libraries to allow scrobbles from PLEX_LIBRARIES_BLOCK No Comma-separated list of libraries to disallow scrobbles from File Config Type CONFIG/plex.json [ { \"name\": \"MyPlexApi\", \"enable\": true, \"clients\": [], \"data\": { \"token\": \"1234\", \"url\": \"http://192.168.0.120:32400\", \"usersAllow\": [ \"FoxxMD\", \"SomeOtherUser\" ], \"usersBlock\": [ \"AnotherUser\" ], \"devicesAllow\": [ \"firefox\" ], \"devicesBlock\": [ \"google-home\" ], \"librariesAllow\": [ \"GoodMusic\" ], \"librariesBlock\": [ \"BadMusic\" ] }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\", \"ignoreInvalidCert\": \"false\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyPlexApi\", \"enable\": true, \"clients\": [], \"data\": { \"token\": \"1234\", \"url\": \"http://192.168.0.120:32400\", \"usersAllow\": [ \"FoxxMD\", \"SomeOtherUser\" ], \"usersBlock\": [ \"AnotherUser\" ], \"devicesAllow\": [ \"firefox\" ], \"devicesBlock\": [ \"google-home\" ], \"librariesAllow\": [ \"GoodMusic\" ], \"librariesBlock\": [ \"BadMusic\" ] }, \"options\": { \"logPayload\": true, \"logFilterFailure\": \"debug\", \"ignoreInvalidCert\": \"false\" }, \"type\": \"plex\" } ] } or explore the schema with an example and live editor/validator","s":"Plex","u":"/multi-scrobbler/configuration/sources/plex/","h":"","p":156},{"i":159,"t":"Other Uses To scrobble to Rocksky, create a Rocksky (Client) Rocksky is music tracking and discovery platform built on the AT Protocol (Bluesky). This Source monitors the Rocksky scrobbles in your PDS and then re-scrobbles discovered tracks to configured clients. Learn more about how Rocksky scrobbles work in the Rocksky (Client) docs.","s":"Rocksky","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"","p":158},{"i":161,"t":"Follow the Setup instructions in the Rocksky (Client) docs to get access to your Bluesky PDS repository and scrobble data.","s":"Setup","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#setup","p":158},{"i":163,"t":"See the Rocksky (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\" ENV File AIO ENV Config Type note You cannot use ENV variables shown in the Rocksky Client config -- multi-scrobbler assumes Rocksky ENVs are always used for the client configuration. You must use the File or AIO config to setup Rocksky as a Source. File Config Type CONFIG/rocksky.json [ { \"name\": \"myRockskySource\", \"configureAs\": \"source\", \"data\": { \"key\": \"e4xwktm7jxm607x8el1fcda30eu14dzb64h3j\", \"handle\": \"alice.bsky.social\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myRockskySource\", \"configureAs\": \"source\", \"data\": { \"key\": \"e4xwktm7jxm607x8el1fcda30eu14dzb64h3j\", \"handle\": \"alice.bsky.social\" }, \"type\": \"rocksky\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/rocksky-source/","h":"#configuration","p":158},{"i":165,"t":"Spotify and Automix If your Spotify player has Automix enabled and Spotify uses it for your playlist/queue then MS cannot accurately determine when a track will end. This is because the track is \"mixed\" in your queue with a shorter play time than its actual length and Spotify does not report this modified play time in its API. This does not affect MS's ability to scrobble from Spotify but it will affect the accuracy of the duration MS reports was played. Authenticate Spotify with Multi-Scrobbler To access your Spotify history you must create a Spotify App to get a Client ID/Secret. Login to https://developer.spotify.com with your existing Spotify account and accept Developer Terms Navigate to your Spotify Developer Dashboard and start the Create App process Determine the correct Redirect URI to use and set it in your App settings Redirect URI Instructions A Redirect URI is the URL that Spotify will navigate your browser to after you complete authorization. The URL will contain the code necessary for multi-scrobbler to get a Spotify access token. Spotify no longer allows insecure URIs (start with http://) unless the address is 127.0.0.1 -- so localhost and internal IPs (192.168.0.xxx) no longer work. Use one of the following methods to specify a valid Redirect URI and complete Spotify authentication with multi-scrobbler: HTTPS Run MS Locally Echo Echo from echo.multi-scrobbler.app Use a domain you control, with SSL certificates/HTTPS enabled, to create a valid redirect URI. For example, if you are already running multi-scrobbler behind a reverse proxy (nginx/traefik/caddy) at https://scrobbler.mydomain.com then set the Spotify Redirect URI for your Spotify App, and multi-scrobbler SPOTIFY_REDIRECT_URI ENV, to https://scrobbler.mydomain.com/callback Alternatively, if multi-scrobbler is not accessible behind your domain, then use the Echo method with your own domain instead of 127.0.0.1. Run multi-scrobbler, configured for a Spotify Source, from the same machine as your browser in order to get credentials. In this scenario you can use http://127.0.0.1:9078/callback as the Spotify Redirect URI and multi-scrobbler SPOTIFY_REDIRECT_URI ENV. After completing authentication, copy the contents of local multi-scrobbler's configuration folder to the final location of where multi-scrobbler will be run. Use a docker container on the same machine your browser is on to \"intercept\" the callback URL from Spotify authentication, then manually finish the process by changing the domain to your multi-scrobbler instance. Create a container on the same machine as your browser using the mendhak/http-https-echo:36 image. This container runs a simple HTTP server that echos back any request it recieves. docker run --rm -p 127.0.0.1:5079:8080 mendhak/http-https-echo:36 Set the Spotify Redirect URI and multi-scrobbler SPOTIFY_REDIRECT_URI ENV as http://127.0.0.1:5079/callback In Authenticate Spotify with Multi-Scrobbler (outside these Redirect Instructions) go to Step 4 and continue the instructions Eventually, Spotify will redirect you to a web page with a URL like http://127.0.0.1:5079/callback?code=xxxxxx... In the URL, replace 127.0.0.1:5079 with the address/IP for your multi-scrobbler instance so the URL is similar to http://192.168.0.101:9078/callback?code=xxxxxx.... Then navigate to this URL to complete authentication. For your convenience, I run the mendhak/http-https-echo:36 container from the Echo approach on a domain I, the multi-scrobbler developer FoxxMD, control and self-host. Please be aware: I do not collect personal data or any querystrings/data sent in requests to this site It's not possible for me to use the code sent by Spotify to this URL without also having your Client ID/Secret However, there is always risk involved with trusting a service you do not control. Evaluate the risk of using this site for yourself. Use the Echo approach, starting from Step 2, with https://echo.multi-scrobbler.app/callback as Spotify Redirect URI and multi-scrobbler SPOTIFY_REDIRECT_URI ENV. Save your new App, then copy the Client ID/Secret from the App's Basic Information page. Add the Client ID, Secret, and Redirect URI to the respective field/ENV in the configuration section below Start multi-scrobbler, then visit the Web Dashboard and click (Re)authenticate on the Spotify card to start the auth process","s":"Spotify","u":"/multi-scrobbler/configuration/sources/spotify/","h":"","p":164},{"i":167,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description SPOTIFY_CLIENT_ID Yes SPOTIFY_CLIENT_SECRET Yes SPOTIFY_REDIRECT_URI No http://localhost:9078/callback URI must end in callback File Config Type CONFIG/spotify.json [ { \"name\": \"MySpotify\", \"enable\": true, \"clients\": [], \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\", \"interval\": 60 } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MySpotify\", \"enable\": true, \"clients\": [], \"data\": { \"clientId\": \"a89cba1569901a0671d5a9875fed4be1\", \"clientSecret\": \"ec42e09d5ae0ee0f0816ca151008412a\", \"redirectUri\": \"http://localhost:9078/callback\", \"interval\": 60 }, \"type\": \"spotify\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/spotify/","h":"#configuration","p":164},{"i":169,"t":"This Source can be used for any application that implements the Subsonic API and supports the getNowPlaying endpoint (such as Airsonic and Navidrome) Known Issues Multiple artists are reported as one value and cannot be separated If using Airsonic Advanced the password used (under Credentials) must be Decodable tip If your serivce supports scrobbling to Listenbrainz (such as Navidrome), considering using a Listenbrainz (Endpoint) Source instead of this one. Service-specific scrobble implementations tend to be more accurate and provide more information (multiple artists) compared to the Subsonic API. Use the optional usersAllow property with File or AIO configuration to restrict scrobbling to a list of defined users.","s":"Subsonic","u":"/multi-scrobbler/configuration/sources/subsonic/","h":"","p":168},{"i":171,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description SUBSONIC_USER Yes SUBSONIC_PASSWORD Yes SUBSONIC_URL Yes Base url of your subsonic-api server File Config Type CONFIG/subsonic.json [ { \"name\": \"MySubsonic\", \"enable\": true, \"data\": { \"url\": \"http://localhost:4040/airsonic\", \"user\": \"yourUser\", \"password\": \"yourPassword\", \"usersAllow\": [ \"yourUser\" ] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MySubsonic\", \"enable\": true, \"data\": { \"url\": \"http://localhost:4040/airsonic\", \"user\": \"yourUser\", \"password\": \"yourPassword\", \"usersAllow\": [ \"yourUser\" ] }, \"type\": \"subsonic\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/subsonic/","h":"#configuration","p":168},{"i":173,"t":"Other Uses To scrobble to an ATProto PDS, create a teal.fm (Client) teal.fm is a social discovery and web viewing service for scrobbles stored/available on the ATProto network/your repository in a PDS (Personal Data Server). This Source monitors the teal.fm scrobbles in your PDS and then re-scrobbles discovered tracks to configured clients. Learn more about how teal.fm scrobbles work in the teal.fm (Client) docs.","s":"Teal.fm","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"","p":172},{"i":175,"t":"Follow the Setup instructions in the teal.fm (Client) docs to get access to your Bluesky PDS repository and scrobble data.","s":"Setup","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#setup","p":172},{"i":177,"t":"See the teal.fm (Client) configuration for general setup. The only difference for Source configuration: Cannot be setup with ENV config File/AIO config must include \"configureAs\": \"source\" ENV File AIO ENV Config Type note You cannot use ENV variables shown in the teal.fm Client config -- multi-scrobbler assumes teal.fm ENVs are always used for the client configuration. You must use the File or AIO config to setup teal.fm as a Source. File Config Type CONFIG/tealfm.json [ { \"name\": \"myTealSource\", \"configureAs\": \"source\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myTealSource\", \"configureAs\": \"source\", \"data\": { \"identifier\": \"alice.bsky.social\", \"appPassword\": \"twog-phu7-4dhe-y4j3\" }, \"type\": \"tealfm\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/tealfm-source/","h":"#configuration","p":172},{"i":179,"t":"MS communicates with VLC using the Web (http) interface module Enable HTTP Interface Open VLC: Tools Menu -> Preferences In the bottom left change Show Settings from Simple to All In the updated window select Interface -> Main interfaces In the Extra interface modules section enable Web and verify that http is shown in the textbox Select Interface -> Main interfaces -> Lua In Lua HTTP -> Password -> set a password in this box Click Save at the bottom to persist your changes Restart VLC Verify the HTTP interface is accessible by navigating to http://localhost:8080 in your browser If the interface is accessible, after typing in your password, VLC is now ready to be used by MS. Setting VLC Interface and Port These can be set by starting VLC from command line with specific options: vlc --http-host yourHostIp:yourPort or vlc --http-port yourPort or modify the configuration file for VLC by editing keys with the same values as from the command line (http-host and http-port) Filename Parsing If the file being played in VLC does not have ID3 tags/metadata information multi-scrobbler can attempt to extract artist, title, and album information from the raw filename using regular expressions. Mutli-scrobbler will only do this if there is no other information reported by VLC about these fields. To extract this information use named capture groups in your expression matching the field that should be extracted: artist title and/or album. MS accepts multiple expressions, the first one that matches a filename will be used. Example usage in a file-based config: config/vlc.json [ { \"name\": \"MyVlc\", \"enable\": true, \"data\": { // ... }, \"options\": { \"filenamePatterns\": [ // Extracts artist and title from filenames that look like: // My Artist - My Cool title.mp4 \"/^\\\\s*(?<artist>.+?) - (?<title>.+?)\\\\.\\\\w+$/i\" ], // logs to DEBUG when MS tries to extract data from a filename \"logFilenamePatterns\": true, } } ] Vlc Information Reporting If you find that VLC is incorrectly reporting track information (in its interface) but multi-scrobbler is not parsing it correctly it may be due to the name of the fields VLC is reporting. mutli-scrobbler uses the most common field name but does not cover all use cases. Before reporting an issue please turn on metadata logging and include output from your logs while it is turned on: config/vlc.json [ { \"name\": \"MyVlc\", \"enable\": true, \"data\": { // ... }, \"options\": { \"dumpVlcMetadata\": true } } ]","s":"VLC","u":"/multi-scrobbler/configuration/sources/vlc/","h":"","p":178},{"i":181,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description VLC_URL No localhost:8080 VLC_PASSWORD Yes File Config Type CONFIG/vlc.json [ { \"enable\": true, \"name\": \"MyVlc\", \"data\": { \"url\": \"localhost:8080\", \"password\": \"changeme\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"enable\": true, \"name\": \"MyVlc\", \"data\": { \"url\": \"localhost:8080\", \"password\": \"changeme\" }, \"type\": \"vlc\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/vlc/","h":"#configuration","p":178},{"i":183,"t":"After installing the Webscrobbler extension open the preferences/settings for it: Under Accounts Add Webhook API URL: [YourMultiScrobblerInstance]/api/webscrobbler EX http://localhost:9078/api/webscrobbler Application name: (whatever you want) Reload the extension after adding the webhook. note On Firefox - Only FQNs (domain.tld), localhost, and 127.0.0.1 are supported for API URL due to firefox requiring https On Chromium-based Browsers - Any domain will work for API URL All other browsers are untested warning Multi-scrobbler is not designed to be publicly accessible from the internet. To use Webscrobbler outside your local network you should be accessing MS through a VPN or through a reverse proxy with some kind of authentication (though this is still not recommended).","s":"Webscrobbler","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"","p":182},{"i":185,"t":"If you would like use multiple WebScrobbler sources they can be matched using a slug at the end of the API URL. This requires using a file-based config. Example webscrobbler.json [ { \"name\": \"aUserWS\", \"clients\": [ \"client1Maloja\" ], \"data\": { \"slug\": \"usera\" } }, { \"name\": \"bUserWS\", \"clients\": [ \"client2Maloja\" ], \"data\": { \"slug\": \"userb\" } } ] To use aUserWS source set API URL to http://localhost:9078/api/webscrobbler/usera To use bUserWS source set API URL to http://localhost:9078/api/webscrobbler/userb tip http://localhost:9078/api/webscrobbler is matched with the first source that that does not have a slug defined.","s":"Multiple Users","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#multiple-users","p":182},{"i":187,"t":"MS can be configured to only scrobble, or NOT scrobble, from some WS connectors. Use the name of the website from the supported websites or from the Connectors tab in the extension. note This affects only MS's behavior and does not affect the general connector behavior you have configured within the WebScrobbler extension.","s":"Connectors Black/Whitelist","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#connectors-blackwhitelist","p":182},{"i":189,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description WS_ENABLE No Set to 'true' to enable WS without needing to define other ENVs WS_WHITELIST No Only scrobble from these WebScrobbler Connectors. Comma-delimited list WS_BLACKLIST No Do not scrobble from these WebScrobbler Connectors. Comma-delimited list File Config Type CONFIG/webscrobbler.json [ { \"name\": \"MyWebScrobbler\", \"data\": { \"slug\": \"MyOptionalSlug\", \"whitelist\": [], \"blacklist\": [] } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyWebScrobbler\", \"data\": { \"slug\": \"MyOptionalSlug\", \"whitelist\": [], \"blacklist\": [] }, \"type\": \"webscrobbler\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/webscrobbler/","h":"#configuration","p":182},{"i":191,"t":"Monitor MusicCast device/receivers for music played on Network/USB/CD inputs. Scrobbling Threshold Musiccast may not correctly report track length. If this is the case you should reduce the \"listened to\" duration using Scrobble Thresholds so that multi-scrobbler scrobbles correctly. URL If only a domain/IP:PORT is provided to multi-scrobbler it will automatically append the default Musiccast API path. If your Musiccast device is located behind a custom URL (or reverse proxy) you should explicitly provide the base path to use. EX url Transformed URL http://192.168.0.101 http://192.168.0.101/YamahaExtendedControl/v1 http://mydomain.com/reverseProxy/cast http://mydomain.com/reverseProxy/cast","s":"Yamaha MusicCast","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","h":"","p":190},{"i":193,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description MCAST_URL Yes The Musiccast device URL File Config Type CONFIG/musiccast.json [ { \"name\": \"myYamaha\", \"enable\": true, \"data\": { \"url\": \"192.168.0.101\" } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"myYamaha\", \"enable\": true, \"data\": { \"url\": \"192.168.0.101\" }, \"type\": \"musiccast\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/yamaha-musiccast/","h":"#configuration","p":190},{"i":195,"t":"warning Communication with YT Music is unofficial and not supported or endorsed by Google. This means that this integration may stop working at any time if Google decides to change how YT Music works in the browser. Scrobble Troubleshooting Due to monitoring being unofficial, listening history from YTM can be inconsistent and can cause missed scrobbles. See the FAQ for a detailed explanation, how to see more details about MS's detection of tracks, and how to properly report an issue. Authentication Only one of these methods needs to be used. Cookies OAuth Client YoutubeTV Use instructions from https://github.com/patrickkfkan/Volumio-YouTube.js/wiki/How-to-obtain-Cookie or https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers to get the Cookie value from a browser. It is highly recommended to get the cookie from an Incognito/Private Session to limit the chance the session is invalidated from normal browsing. Add the cookie to your ytmusic.json config in data or as an ENV: { \"type\": \"ytmusic\", \"enable\": true, \"name\": \"MyYTM\", \"data\": { \"cookie\": \"__Secure-1PSIDTS=sidts-CjEB3EgAEvCd-......\" }, \"options\": { \"logAuthUpdateChanges\": true, \"logDiff\": true } } If MS gives you authentication errors (session invalidated) at some point in the future follow the same instructions to get new cookies. warning As of Sept 25' OAuth clients no longer seem to have permission to access the YTM service, as reported by the upstream YTM library developer and several other users. If you have existing, working OAuth credentials keep using them but there is no gaurantee they will continue to work. If you are setting up the YTM Source for the first time you should first try to use Cookies. Based on the instructions from here... Login to Google Cloud console (create an account, if necessary) Create a new project Go to APIs and services. Configure the OAuth consent screen Use the old experience if possible If new is unavoidable then do not fill out any branding and under Authorized Domains you can delete the empty one (in order to save) Add yourself as an authorized user Navigate to Credentials Create Credentials -> choose \"OAuth client ID\" Application Type is Web Application Name is whatever you want, leave Authorization Javascript origins blank Authorized redirect URIs This must be exactly the same as what is displayed in MS! For now leave it blank so we can generate it from MS first Create In the newly created client popup save the Client ID and Client Secret, then copy them into ytmusic.json or appropriate ENVs: { \"type\": \"ytmusic\", \"enable\": true, \"name\": \"MyYTM\", \"data\": { \"clientId\": \"8910....6jqupl.apps.googleusercontent.com\", \"clientSecret\": \"GOCSPX-WGXL6BSuQ343...\" }, \"options\": { \"logAuthUpdateChanges\": true, \"logDiff\": true } } Now, start MS and during the YTMusic startup it will log something like this: Will use custom OAuth Client: Client ID: ... Client Secret: ... Redirect URI: http://localhost:9078/api/ytmusic/callback?name=MyYTM If the beginning of the Redirect URI (before api) is EXACTLY how you would reach the MS dashboard from your browser (EX http://localhost:9078) then edit your google oauth client section for Authorized redirect URIs and add the URL MS has displayed. If it is NOT EXACTLY the same you either need to set MS's base url or you can provide your own (Custom) Redirect URI for MS to use by setting it in ytmusic.json or ENV. Using a Custom Redirect URI The three parts of the URL that must be the same: it must start with api (after domain or subdirectory IE my.domain.tld/api... or whatever.tld/subDir/api... it must end in ytmusic/callback It must include name=[NameOfSource] in the query string Remember to add your custom URL to the Authorized redirect URIs section in the google oauth client! { \"type\": \"ytmusic\", \"enable\": true, \"name\": \"MyYTM\", \"data\": { \"clientId\": \"8910....6jqupl.apps.googleusercontent.com\", \"clientSecret\": \"GOCSPX-WGXL6BSuQ343...\", \"redirectUri\": \"http://my.custom.domain/api/ytmusic/callback?name=MyYTM\" }, \"options\": { \"logAuthUpdateChanges\": true, \"logDiff\": true } } AFTER changing the Authorized redirect URIs on Google Cloud console you may need to wait a few minutes for it to take affect. Then restart MS. From the dashboard click (Re)authenticate on the YTmusic source card and follow the auth flow: On the screen about \"testing\" make sure you hit Continue (not Back To Safety) Make sure to select ALL scopes/permissions/grants it asks you about Select what [YourAppName] can access -> Select all Once the flow is finished MS will get the credentials and start polling automatically. You should not need to re-authenticate again after restarting MS as it saves the credentials to the /config folder. warning Using the built-in YoutubeTV authentication is unlikely to work due to Google restricting what permissions TV clients can have. This authentication method should not be used. To authenticate start multi-scrobbler with an empty YT Music configuration. An authentication URL/code will be logged in additon to being available from the dashboard. ERROR: Sign in with the code 'CLV-KFA-BVKY' using the authentication link on the dashboard or https://www.google.com/device Visit the authentication URL and enter the code that was provided (also available on the dashboard). After completing the setup flow MS will log Auth success and the YT Music dashboard card will display as Idle after refreshing. Click the Start link to begin monitoring.","s":"Youtube Music","u":"/multi-scrobbler/configuration/sources/youtube-music/","h":"","p":194},{"i":197,"t":"ENV File AIO ENV Config Type Environmental Variable Required? Default Description YTM_COOKIE No Value for Cookie Authentication YTM_CLIENT_ID No Client ID for OAuth Athentication YTM_CLIENT_SECRET No Client Secret for OAuth Athentication YTM_REDIRECT_URI No A custom redirect URI for OAuth Athentication YTM_LOG_DIFF No false Log YTM history changes File Config Type CONFIG/ytmusic.json [ { \"name\": \"MyYTMusic\", \"enable\": true, \"clients\": [], \"data\": { \"cookie\": \"__Secure-1PSIDTS=sidts-CjEB3EgAEvCd-......\", \"clientId\": \"891098404....apps.googleusercontent.com\", \"clientSecret\": \"GOCS...\" }, \"options\": { \"logDiff\": true } } ] or explore the schema with an example and live editor/validator AIO Config Type CONFIG_DIR/config.json { \"sources\": [ { \"name\": \"MyYTMusic\", \"enable\": true, \"clients\": [], \"data\": { \"cookie\": \"__Secure-1PSIDTS=sidts-CjEB3EgAEvCd-......\", \"clientId\": \"891098404....apps.googleusercontent.com\", \"clientSecret\": \"GOCS...\" }, \"options\": { \"logDiff\": true }, \"type\": \"ytmusic\" } ] } or explore the schema with an example and live editor/validator","s":"Configuration","u":"/multi-scrobbler/configuration/sources/youtube-music/","h":"#configuration","p":194},{"i":199,"t":"Multi-scrobbler configs support the ability to enhance scrobble data in an automated fashion by matching and replacing strings in title, artists, and album at many different times in multi-scrobbler's lifecycle. Why Would I Do This? You may need to \"clean up\" data from a Source or before sending to a scrobble Client due to any number of reasons: ID3 tags in your music collection are dirty or have repeating garbage IE [YourMusicSource.com] My Artist - My Title A Source's service often incorrectly adds data to some field IE My Artist - My Title (Album Version) when the title should just be My Title An Artist you listen to often is spelled different between a Source and a Client which causes duplicate scrobbles In any scenario where a repeating pattern can be found in the data it would be nice to be able to fix it before the data gets downstream or to help prevent duplicate scrobbling. Multi-scrobbler can help you do this.","s":"Enhancing Scrobbles","u":"/multi-scrobbler/configuration/transforms/","h":"","p":198},{"i":201,"t":"First, let's recap the lifecycle of a scrobble in multi-scrobbler: Sources are the beginning of the journey for a Play (song you've listened to long enough to be scrobblable) A Source finds a new valid Play The Source compares this new Play to all the other Plays it has already seen, if the Play is unique (title/artist/album/listened datetime) then... The Source discovers the Play, adds it to Plays it has seen already, and broadcasts the Play should be scrobbled to all Clients Scrobble Clients listen for discovered Plays from Sources, then... A Client receives a Play from a Source The Client compares this Play to all the other scrobbles it has already seen, if the Play is unique (title/artist/album/listened datetime) then... The Client scrobbles the Play downstream to the scrobble service and adds it as a Scrobble it has seen already","s":"Journey of a Scrobble","u":"/multi-scrobbler/configuration/transforms/","h":"#journey-of-a-scrobble","p":198},{"i":203,"t":"You'll notice there is a pattern above that looks like this: Before data is compared Data is compared After data is compared These points, during both Source and Client processes, are when you can hook into the scrobble lifecycle and modify it. TLDR In more concrete terms this is the structure of hooks within a configuration (can be used in any Source or Client): lastfm.json [ { \"name\": \"myLastFm\", \"enable\": true, \"configureAs\": \"source\", \"data\": { // ... }, \"options\": { \"playTransform\": { \"preCompare\": [/* ... */], \"compare\": [/* ... */], \"postCompare\": [/* ... */] } } } ]","s":"Lifecyle Hooks","u":"/multi-scrobbler/configuration/transforms/","h":"#lifecyle-hooks","p":198},{"i":205,"t":"For Sources: preCompare - modify Play data immediately when received compare - temporarily modify Play data when it is being compared to see if Play was already discovered postCompare - modify Play data before sending to scrobble Clients For Clients: preCompare - modify Play data immediately when received compare - temporarily modify Play data when it is being compared to see if it was already scrobbled postCompare - modify Play data before scrobbling it to downstream service and adding to already seen scrobbles tip Keep in mind that modifying Scrobble/Play data earlier in the lifecycle will affect that data at all times later in the lifecycle (except when using the compare hook). For example, to modify the track so it's the same anywhere it is processed in multi-scrobbler you only need to modify it in the Source's preCompare hook because all later processes will receive the data with the modified track. TLDR To modify a scrobble coming from one of your Sources use the preCompare hook. Using compare hook The compare hook is slightly different than preCompare and postCompare. It consists of an object where you define which side(s) of the comparison should be modified. It also does not modify downstream data! Instead, the modifications are made only for use in the comparison. lastfm.json [ { \"name\": \"myLastFm\", // ... \"options\": { \"playTransform\": { \"compare\": [ { \"candidate\": {/* ... */}, // modify the \"new\" Play being compared \"existing\": {/* ... */}, // modify all \"existing\" Play/Scrobbles the new Play is being compared against } ], } } } ]","s":"Hook","u":"/multi-scrobbler/configuration/transforms/","h":"#hook","p":198},{"i":207,"t":"Each hook is made up of one or more Stages. A Stage is a self-contained, unique way of enhancing or modifying the Play data. Some examples of a Stage: The User Stage allows a user to define search-and-replace terms for Artist/Title/Album The Native Stage uses MS's built-in heuristics to extract Artists from a single Artist string The Musicbrainz Stage tries to match Play data with the Musicbrainz database and to standardize the Artist/Title/Album data Each Stage in a Hook receives Play data from the previous Stage. Within a hook, each Stage minimally consists of a type to identify what Stage it is along with any other data specific to that stage: { \"type\": \"native\" // optional, stage specific data here... }","s":"Modification Stage","u":"/multi-scrobbler/configuration/transforms/","h":"#stage","p":198},{"i":209,"t":"Stages may be globally configured using AIO Config config.json file in the top-level transformers block. Each Stage consists of: type the type of Stage name a unique name for the Stage, to be (potentially) used with hooks defaults - An object defining default configuration for this stage, when used in a Hook. data - An object containing any data required to initially configure the stage itself (Example: API URL, username, password, etc...) Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"native\", \"name\": \"MyNativeTransformer\", \"defaults\": { // default delimiters when this Stage is used in a hook \"delimiters\": [ \"•\" ], // default delimiters when this Stage is used in a hook \"artistsParseFrom\": [\"artists\"] } } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\" // when \"name\" is not defined, uses first found \"native\" transformer } ] } } } ] Multiple stages of the same type may be configured, allowing you to define several sets of default behavior. Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"native\", \"name\": \"DotTransformer\", \"defaults\": { \"delimiters\": [ \"•\" ], \"artistsParseFrom\": [\"artists\"] } }, { \"type\": \"native\", \"name\": \"TitleOnly\", \"defaults\": { // extracts and uses *only* artists found in title string \"artistsParseFrom\": [\"title\"] } } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\" \"name\": \"DotTransformer\" } ] } } } ] In a VLC File Config: vlc.json [ { \"name\": \"MyVLC\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\" \"name\": \"TitleOnly\" } ] } } } ] Overriding Configuration The default configuration you set for your Stage may be overridden in any usage of the Stage within a Hook. Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"native\", \"name\": \"MyNativeTransformer\", \"defaults\": { // default delimiters when this Stage is used in a hook \"delimiters\": [ \"•\" ], // default delimiters when this Stage is used in a hook \"artistsParseFrom\": [\"artists\"] } } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\" \"name\": \"MyNativeTransformer\", // overrides property from \"defaults\" \"artistsParseFrom\": [\"artists\", \"title\"] } ] } } } ]","s":"Configuring Stages","u":"/multi-scrobbler/configuration/transforms/","h":"#configuring-stages","p":198},{"i":211,"t":"Each Stage may specify whether it should apply the resulting transformation to different parts of the Play data by specifying title, artists and/or album in the Stage object. { \"type\": \"native\", // ... \"title\": false, // will not apply any changes to Play title \"artists\": { \"when\": {/* ... */}, // will only apply changes to Play artists if \"when\" is satisfied /* ... */ }, \"albumArtists\": true, // will always apply changes to Play album artists \"album\": true, // will always apply changes to Play album \"duration\": true, // will always apply changes to Play duration (length of track) \"meta\": true, // will always apply changes to Play meta (MBIDs, spotify links, etc...) } The actual value of each property may be different for each Stage. Check the docs for the Stage you want to use to see its usage of each. Generically, though, each property may be some value or an object combining a when condition and that value. If none of the properties are specified in the stage then it's assumed all transformed data should be used. note Specifying these Rules is not the same as configuring the Stage. Rules only determine if the result of the transformation should be used (replace) the existing Play Data.","s":"Rules for Play Data","u":"/multi-scrobbler/configuration/transforms/","h":"#stage-rules","p":198},{"i":213,"t":"Stages within a Hook, and Rules within each Stage, support a when object for testing if they should be run. The when object may have propertes for rule. Each property may be a string or regular expression. The value of the property is used to match the pre-transformation values from Play data. All parts of an individual when clause must test true to \"pass\" but if any when clauses pass the Stage/Rule is processed. { \"when\": { \"artist\": \"Elephant Gym\", // Play must have an artist matching \"Elephant Gym\" (AND) \"album\": \"Dreams\" // Play object must have an album matching \"Dreams\" (AND) } } { \"when\": [ { \"artist\": \"Elephant Gym\", // Play must have an artist matching \"Elephant Gym\" (AND) \"album\": \"Dreams\" // Play object must have an album matching \"Dreams\" (AND) }, // OR { \"title\": \"/(Remastered)$/\", // Play title must match regular expression (AND) \"album\": \"Various Artists\" // Play album must match \"Various Artists\" (AND) } ] } More succinctly: All parts (artist album albumArtist duration meta title) of a when are AND conditions All part-objects in the when array are OR conditions Example of Stage with when condition { // IF the artist is Elephant Gym // THEN Run native stage \"playTransform\": { \"preCompare\": [ { \"type\": \"native\", \"when\": [ { \"artist\": \"/Elephant Gym/\" } ] } ], } } Example of individual rule with when condition { // Always run native Stage // // IF artist matches \"Elephant Gym\" // THEN use result of native stage for \"artists\" of Play data \"playTransform\": { \"preCompare\": { \"type\": \"native\", \"artists\": { \"when\": [ { \"artist\": \"/Elephant Gym/\" } ] }, } } }","s":"Conditional Modification","u":"/multi-scrobbler/configuration/transforms/","h":"#conditional-modification","p":198},{"i":215,"t":"MS can log the output of Stage transformations if/when they occur. In the playTransform object of a Source/Client config use log: \"log\": true => Output original play + final transformed output of last Stage in the array \"log\": \"all\" => Output original play + final transformed output of each Stage in the array { \"name\": \"myThing\", \"data\": {/*...*/}, \"options\": { \"playTransform\": { \"preCompare\": {/*...*/}, \"log\": true } } }","s":"Logging","u":"/multi-scrobbler/configuration/transforms/","h":"#logging","p":198},{"i":217,"t":"The Musicbrainz Stage matches your Play data with the MusicBrainz database. If the match score is high enough then Multi-Scrobbler uses the match to correct and fill-in missing information in your Play data. This Stage is useful for standardizing your Scrobble's Play data, regardless of the Source it is coming from. Even if you have have strong opinions about the way your existing music is already tagged/organized you should consider adding the Musicbrainz Stage to your Sources, if only to benefit from adding MBIDs to scrobbled metadata. Why Should I Prefer MusicBrainz? More Than Mainstream Data The MusicBrainz database contains 37 million+ tracks 5 million+ albums 2.7 million+ artists in over 200 languages, contributed by 10,000+ editors each year with many more users voting on edits. The database covers a much wider range of music than most commercial services since it isn't restricted by licensing or incentivized to prioritize mainstream music due to business interests. You are much more likely to find data for obscure, indie, and international artists. As The Artist Intended While some large services (Spotify) may be more consistent in data structure, the MusicBrainz equivalent data is likely to be more true to the way the Artist originally intended since individuals can devote effort to individual artists. A fan of an artist is much more likely to \"get it right\" for their favorite band than a corporate business trying to do the least amount of work for the largest result. tip If you are using ENV Config for multi-scrobbler and just want a quick and easy setup, skip to ENV Configuration. tip Set up Valkey Caching to cache Musicbrainz API calls for faster processing.","s":"Musicbrainz Stage","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"","p":216},{"i":219,"t":"The MusicBrainz database contains 37 million+ tracks 5 million+ albums 2.7 million+ artists in over 200 languages, contributed by 10,000+ editors each year with many more users voting on edits. The database covers a much wider range of music than most commercial services since it isn't restricted by licensing or incentivized to prioritize mainstream music due to business interests. You are much more likely to find data for obscure, indie, and international artists.","s":"More Than Mainstream Data","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"","p":216},{"i":221,"t":"While some large services (Spotify) may be more consistent in data structure, the MusicBrainz equivalent data is likely to be more true to the way the Artist originally intended since individuals can devote effort to individual artists. A fan of an artist is much more likely to \"get it right\" for their favorite band than a corporate business trying to do the least amount of work for the largest result.","s":"As The Artist Intended","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"","p":216},{"i":224,"t":"To avoid rate limiting, MusicBrainz requires API users to identify themself using a User-Agent that contains an email or URL. You must set this in the data for your stage configuration in your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"data\": { \"apis\": [ { \"contact\": \"contact@mydomain.com\" } ] }, } ] } Additional Musicbrainz Servers Other, or additional, Musicbrainz Servers/Mirrors can be added to the API configuration. If more than one server is defined then multi-scrobbler will round-robin load balance API calls. Use url to define the base URL of the Musicbrainz server to use. If url is not defined multi-scrobbler assumes it is the primary Musicbrainz server, https://musicbrainz.org. Example of multiple servers: config.json { // ... \"transformers\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"data\": { \"apis\": [ { \"contact\": \"contact@mydomain.com\" // uses default Musicbrainz server https://musicbrainz.org }, // additional server { \"contact\": \"contact@mydomain.com\", \"url\": \"https://my.mb.mirror.domain.com\" } ] }, } ] }","s":"API Setup","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#api-setup","p":216},{"i":226,"t":"All of the properties found in Matching with Musicbrainz section are configured in Stage Configuration as defaults. Example: config.json { // ... \"transformers\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"data\": { \"apis\": [ { \"contact\": \"contact@mydomain.com\" } ], \"defaults\": { \"releaseStatusPriority\": [\"official\"], \"fallbackArtistSearch\": \"native\", \"releaseAllowEmpty\": true } }, } ] }","s":"Stage Configuration","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#stage-configuration","p":216},{"i":228,"t":"Each Rule should be either a boolean, specifying if the transformed data should be used for this field, or a when condition: { \"type\": \"musicbrainz\", \"name\": \"MyMB\" // ... \"title\": false, // will not apply any changes to Play title \"artists\": { \"when\": {/* ... */}, // will only apply changes to Play artists if \"when\" is satisfied /* ... */ }, \"album\": true // will always apply changes to Play album \"meta\": true // adds MusicBrainz MBIDs to scrobble data }","s":"Rules","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#rules","p":216},{"i":230,"t":"The general configuration shown above can also be configured from a selection of presets using ENV Config for individual Sources/Clients. You must always include the MB_CONTACT ENV to identify your application: MB_CONTACT=contact@mydomain.com To configure stage defaults use MB_PRESETS with a comma-delimited list of presets you wish to apply. More than one preset can be applied, in which case they combine. You must choose at least one of the presets below: default - Applies no defaults. This is the same as using no options from Matching With Musicbrainz sensible - Applies the Sensible Default configuration for sorting releases native - Applies fallbackArtistSearch: native for Artist Extraction if the first search fails to find matches aggressive - Applies Free Text Search fallbackFreeTextSearch: true if all other searches fail Finally, use ENV *_TRANSFORMS=musicbrainz on each Source/Client you wish to apply this stage to. This applies the stage in the preTransform Hook with all Rules enabled. The * stands for the prefix used for each Source/Client's ENV keys. Refer to the individual Source/Client Configuration sections to find this. tip Enhancing a scrobble with the preTransform hook for a Source means that all Clients that recieve the scrobble get the enhanced version. You only need to apply the transform once, for a Source, to use it everywhere for downstream Clients. Example Full Docker Deploy with ENV Configuration Using Jellyfin + Maloja example from Quickstart: services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - MB_CONTACT=contact@mydomain.com - MB_PRESETS=sensible,native # creates sensible defaults with native fallback searching - JELLYFIN_URL=192.168.0.110:8096 - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b - JELLYFIN_USER=MyUser - JELLYFIN_TRANSFORMS=musicbrainz # applies musicbrainz Stage to preTransform of Jellyfin source - MALOJA_URL=http://192.168.0.100:42010 # maloja receives enhanced scrobble from Jellyfin - MALOJA_API_KEY=myApiKey volumes: - \"./config:/config\" ports: - \"9078:9078\" restart: unless-stopped","s":"ENV Configuration","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#env-configuration","p":216},{"i":232,"t":"note All properties found in this section are optional. If you just want a sensible default for configuraion refer to the Best Practices section. Matching your Scrobble's Play data with a result from Musicbrainz is comprised of two steps: Searching Musicbrainz using parts of your Scrobble as queries Refining matched results to select the desired/allowed match Both steps have separate configuration.","s":"Matching with Musicbrainz","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#matching-with-musicbrainz","p":216},{"i":234,"t":"The first step is making search queries to the Musicbrainz database to try to get potential candidates. Multi-scrobbler uses the title, artist(s), and album from your Scrobble data to query for matches. Musicbrainz agressively normalizes these fields in its database which means that if your Scrobble data contains major innaccuracies or phrases fields in a non-normal way, it's possible Musicbrainz won't find any matches. This is a more common occurrence when trying to match Scrobble data from Sources that don't support multiple artist data, like Subsonic and Last.fm. Examples of Bad Data Last.fm Scrobble returns an Artist in the title and combines two artists into one string: { \"title\": \"Endless Possibility (feat. Wheatus)\", \"artists\": [\"Bowling For Soup & Punk Rock Factory\"] } The corresponding Musicbrainz Recording has all artists separated and no artist in the title: { \"title\": \"Endless Possibility\", \"artists\": [\"Bowling For Soup\", \"Punk Rock Factory\", \"Wheatus\"] } If a normal search using all the fields mentioned above does not return any matches Multi-scrobbler can try additional searches with modified queries: Album Only If your Scrobble data contains a title, artist(s), and an album (all three fields) then Multi-scrobbler will automatically retry the search using only title and album. Artist Extraction If... Album Only returns no results or did not run due to missing an album Your scrobble data contains only one artist string fallbackArtistSearch is set in Stage Configuration Then Multi-scrobbler will attempt to extract multiple artists from your artist and track string. This is not automatic. You must set fallbackArtistSearch to enable this additional search. fallbackArtistSearch can be set to Native or Naive mode: Native (Recommended) Naive Native (native) mode uses an aggressive configuration of the Native Stage to extract artists using common delimiters and common \"joined\" artist patterns from the artist and title string of your Scrobble data. tip If you already have a Native Stage configured you should use that instead, running it before the Musicbrainz stage. Native Mode Example { \"title\": \"Endless Possibility (feat. Wheatus)\", \"artists\": [\"Bowling For Soup & Punk Rock Factory, My Cool Band\"] } Extracts Bowling For Soup Punk Rock Factory My Cool Band from artist string Extracts Wheatus from title string Removes (feat. Wheatus) from title string because it found an artist there Resulting data used for Musicbrainz search: { \"title\": \"Endless Possibility\", \"artists\": [\"Bowling For Soup\", \"Punk Rock Factory\", \"My Cool Band\", \"Wheatus\"] } Stage Configuration example: // ... \"defaults\": { // ... \"fallbackArtistSearch\": \"native\" } Naive (naive) mode looks for the first found common delimiter in the artist string. If it finds one then it uses the preceding value as the only artist in the Musicbrainz search. It does not try to extract additional artists from the artist string, or extract anything from the title string. Naive Mode Example { \"title\": \"Endless Possibility (feat. Wheatus)\", \"artists\": [\"Bowling For Soup, Punk Rock Factory & Wheatus\"] } Finds & as first common delimiter, extracts \"Bowling For Soup\" Resulting data used for Musicbrainz search: { \"title\": \"Endless Possibility (feat. Wheatus)\", \"artists\": [\"Bowling For Soup\"] } Stage Configuration example: // ... \"defaults\": { // ... \"fallbackArtistSearch\": \"naive\" } Free Text If both Album Only and Artist Extraction searches fail to return results you can additionally enable Free Text search. This will search Musicbrainz for all text of your Scrobble data artist/title/album, without constraint. This is not automatic. You must set fallbackFreeTextSeach: true to enable this additional search. warning Free text search is unconstrained which means that Musicbrainz will match text in any part of a Recording (artist, release, or recording field), regardless of where it is found. This may lead to results that are unexpected and undesired. If you know your Source's Play data is well organized you should not enable this. Free Text search should only be used if: your music is not well organized or there may be many alternative titles/artists for the music you listen to (such as with psuedo-releases) you can tolerate that matches may not be accurate for releases. Generally, if you keep score high then matched releases should at least be the right artist or what you would expect within a reason, as a match. The release may not be the one you actually listened to but it would be \"close enough\". Stage Configuration example: // ... \"defaults\": { // ... \"fallbackFreeTextSearch\": true }","s":"Searching","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#searching","p":216},{"i":237,"t":"Each match returned by MusicBrainz contains a numeric score representing how close it was to the search parameters. Set score in configuration to set a minimum score that must be met by matches. Default is 90. { // ... \"score\": 90 // matches must score 90 or higher to be considered }","s":"Score","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#score","p":216},{"i":239,"t":"There are several attributes associated with the Release a Recording (individual Track/song) belongs to that you may be interested in controlling. MS can use these attributes to filter what the final Recording selected to match against your Play data is. An easy way to think about this: Do you prefer Albums, Singles, or EPs? Do you always want to use an official album release, or are bootleg or cancelled albums okay to use? Should a track that belongs to a Compilation album be allowed to match? What country do you prefer an album release to be from? Release Attributes These attributes (attribute_name in config) are: Release Status (releaseStatus) - Is this release/album/ep official, promotional, bootleg, etc... Release Group Primary Type (releaseGroupPrimaryType) - Is this release an Album, Single, EP, etc... Release Group Secondary Type (releaseGroupSecondaryType) - Is this release a compilation, soundtrack, remix, etc... Release Country (releaseCountry) - What ISO2 country was this released in? US, GB, MX, etc... MusicBrainz uses the special code XW to represent a \"Worldwide\" release AKA release not made specifically for a country Each of the above attributes can be used to filter matches using allow (explicitly include) or deny (exclude) terms. The correct property name for each is like so: [attribute_name]Allow = [...] [attribute_name]Deny EX to explicitly allow only release status \"official\" \"releaseStatusAllow\": [\"official\"] EX to exclude compilations \"releaseGroupSecondaryTypeDeny\": [\"compilation\"] Empty Releases Sometimes a Recording may not have any associated Releases. This may be because there is not enough information about the Recording yet, or it was never included on an actual Release. You may want to filter the majority of your matches by releases but allow matching a Recording that has no releases to begin with. To allow this set releaseAllowEmpty to true in configuration: // ... \"defaults\": { // ... \"releaseAllowEmpty\": true // don't remove a match during filtering just because it has no releases }","s":"Filtering","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#filtering","p":216},{"i":241,"t":"Each Release Attribute has one additional property that can be used to rank releases based on the order of the values you give it. This is the priority property. After matches have been filtered, the remaining matches will have their releases sorted. Release with an attribute that does not match are not removed, but they are sorted lower than releases that do match. Sorting can be a good alternative to filtering: with filters there is a possibility your filters may eliminate all matches; if you want to ensure that some match will be used then sorting can ensure that the best choice out of those given will always be used, without accidentally ending up with no choice. Sorting can be used instead of filters, or in conjunction with filters, it's your choice. In configuration: [attribute_name]Priority = [...] EX to prefer \"official\" releases over everything else \"releaseStatusPriority\": [\"official\"] EX to prefer albums, then singles, over everything else \"releaseGroupPrimaryTypePriority\": [\"album\", \"single\"] If a rule is not present then multi-scrobbler defaults it to true.","s":"Sorting","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#sorting","p":216},{"i":244,"t":"Generally, the Musicbrainz Stage can be used without any of the optional configuration and you should still see good results from matches. The top scored match is, anecdotally, good enough for correcting and filling in surface-level play data like Title and Artist names. For a more opinionated match that will mirror what you would expect from data from large music services: { // use official release over anything else \"releaseStatusPriority\": [\"official\"], // prefer album, then single, then ep \"releaseGroupPrimaryTypePriority\": [\"album\", \"single\", \"ep\"], // prefer worldwide release \"releaseCountryPriority\": [\"XW\"] } Consider adding Artist Extraction in Native Mode if any of your Sources do not support multiple artists or your music collection is not tagged well. { // add the line below to the sensible defaults above // (don't forget commas) \"fallbackArtistSearch\": \"native\" }","s":"Sensible Default","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#sensible-default","p":216},{"i":246,"t":"When using your own filters consider: Prefer deny over allow Releases come in all kinds of formats. Since allow is explicit you may filter out your desired match without realizing it (correct data except for release type). Or the Musicbrainz data for a higher scored match may be appropriate but you did not include it, exhaustively. Prefer Sorting over Filtering Sorting does not eliminate any matches. It is, generally, better to get some match than it is to have your Play data completely uncorrected because filtering eliminated all matches","s":"Filter Considerations","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#filter-considerations","p":216},{"i":248,"t":"Use Rules to apply MusicBrainz match data selectively. If you know that your music collection is well organized and you do not want to change the artists/title/album etc... sent to a Client, you can still benefit from matches by only applying MBIDs using meta so that any Client that supports Musicbrainz data (Koito, Tealfm, Listenbrainz, Rocksky) can still get that data. Example subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"title\": false, \"artists\": false, \"album\": false, \"albumArtists\": false, \"meta\": true } ] } } } ]","s":"Using Partial Match","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#using-partial-match","p":216},{"i":250,"t":"If Musicbrainz is not returning matches Multi-scrobbler is using the wrong match or the resulting enhanced Scrobble is not what you expected Enable logging by turning on Debug Mode to help diagnose any issues with the Musicbrainz API and Scrobble enhancement. Before creating an issue please enable logging and include any logs with your issue as this is needed to debug. If you have multiple Modification Stages and need to see the diff for your Play between each Stage, enable \"log\": \"all\" in the individual Modification Stage. Example In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"log\": \"all\", \"preCompare\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", } ] } } } ]","s":"Logging","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#logging","p":216},{"i":253,"t":"Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"data\": { \"apis\": [ { \"contact\": \"contact@mydomain.com\" } ] }, } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\" } ] } } } ]","s":"Minimal","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#minimal","p":216},{"i":255,"t":"Using the config shown in Sensible Default with File/AIO config, instead of ENV Config. Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"data\": { \"apis\": [ { \"contact\": \"contact@mydomain.com\" } ] }, \"defaults\": { \"releaseStatusPriority\": [\"official\"], \"releaseGroupPrimaryTypePriority\": [\"album\", \"single\", \"ep\"], \"releaseCountryPriority\": [\"XW\"], \"fallbackArtistSearch\": \"native\" } } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\" } ] } } } ]","s":"Sensible Default","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#sensible-default-1","p":216},{"i":257,"t":"If you do not want your scrobble data to be modified (artists/album/title) but still want to benefit from associating the scrobble with a Musicbrainz match (for Scrobble Clients like Tealfm, Rocksky, and Koito), then use Partial Match rules to specify only meta to be updated. Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"data\": { \"apis\": [ { \"contact\": \"contact@mydomain.com\" } ] }, \"defaults\": { // maybe something like Sensible Default? } } ] } In a Jellyfin File Config: subsonic.json [ { \"name\": \"MyJellyfin\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"musicbrainz\", \"name\": \"MyMB\", \"title\": false, \"artists\": false, \"album\": false, \"albumArtists\": false, \"meta\": true // only update scrobble metadata with MBIDs } ] } } } ]","s":"Add Metadata Only (No Scrobble Modification)","u":"/multi-scrobbler/configuration/transforms/musicbrainz/","h":"#add-metadata-only-no-scrobble-modification","p":216},{"i":259,"t":"The Native Stage uses built-in heuristics to try to extract Artists from Play artist/track data. This Stage is most useful for Sources that report limited data such as: Subsonic - Reports Artists as a single string A non-exhaustive list of heuristics: Splits artists in artist string using common delimiters EX Foo Artist, Bar Guy, Baz Band - My Cool Song Does not split artists with & in name, if other delimiters are present Does not split artist name when only one delimiter is present Splits artists on common joiner phrases (ft. feat. vs. etc...) Extracts artists from Play title using joiner phrases EX My Cool Song (feat. SomeGuy) A practical example of what the Native Stage will do to Play data: This Scrobble from Subsonic { \"title\": \"Endless Possibility (feat. Wheatus)\", \"artists\": [\"Bowling For Soup & Punk Rock Factory\"] } Will be transformed into this { \"title\": \"Endless Possibility\", \"artists\": [\"Bowling For Soup\", \"Punk Rock Factory\", \"Wheatus\"] }","s":"Native Stage","u":"/multi-scrobbler/configuration/transforms/native/","h":"","p":258},{"i":261,"t":"Available properties for Stage Configuration: delimitersExtra - A list of string characters that should be considered delimiters for artists in addition to multi-scrobbler's default list (, / \\ ) delimiters - A list of string characters that should be considered delimiters for artists. Replaces all delimiters (MS not use any defaults, only what you give it) artistsIgnore - a list of strings and/or regular expressions. Any monolothic artist string that matches from the list will not be modified. artistsParseFrom a list of the properties that should be used to try to extract artists. Can be artists title or both. Defaults to both when not provided in options ( [\"artists\", \"title\"] ) When artists is present it tries to extract additional artists from artist strings When title is present it tries to extract artists from ft. feat. vs. etc... found in the track title Importantly, if artists is not present in artistsParseFrom then no artists are used at all (only those from title, if present) artistsParseMonolithicOnly - boolean value, defaults to true. When true native tranformer will only attempt to extract artists if the scrobble data has only one string for artist (pre-transform) This means that, for Sources like Spotify/Jellyfin/etc. that provide proper lists of artists in their data and the list has more than one string, it will not try to extract artists from their strings Example of the behavior for artistsParseFrom The Foos, The Bars - My Cool Track (ft. Frank) Config => extracted artists \"artistsParseFrom\": [\"artists\", \"title\"] => The Foos, The Bars, Frank \"artistsParseFrom\": [\"artists\"] => The Foos, The Bars \"artistsParseFrom\": [\"title\"] => Frank \"artistsParseFrom\": [] =>","s":"Configuration","u":"/multi-scrobbler/configuration/transforms/native/","h":"#configuration","p":258},{"i":263,"t":"Each Rule should be either a boolean, specifying if the transformed data should be used for this field, or a when condition.: { \"type\": \"native\", // ... \"title\": false, // will not apply any changes to Play title \"artists\": { \"when\": {/* ... */}, // will only apply changes to Play artists if \"when\" is satisfied /* ... */ }, \"album\": true // will always apply changes to Play album } If a rule is not present then multi-scrobbler defaults it to true.","s":"Rules","u":"/multi-scrobbler/configuration/transforms/native/","h":"#rules","p":258},{"i":265,"t":"For your convenience, if you do not define any Native Stage Configurations then multi-scrobbler automatically builds one using the defaults shown in configuration. This can be used by omitting the name in your modification Stage. Example In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\", // do not include name, the default native stage will be used } ] } } } ]","s":"Default Stage","u":"/multi-scrobbler/configuration/transforms/native/","h":"#default-stage","p":258},{"i":267,"t":"The default configuration shown above can also be applied using ENV Config for individual Sources/Clients. Use ENV *_TRANSFORMS=native on each Source/Client you wish to apply this stage to. This applies the stage in the preTransform Hook with all Rules enabled. The * stands for the prefix used for each Source/Client's ENV keys. Refer to the individual Source/Client Configuration sections to find this. tip Enhancing a scrobble with the preTransform hook for a Source means that all Clients that recieve the scrobble get the enhanced version. You only need to apply the transform once, for a Source, to use it everywhere for downstream Clients. Example Full Docker Deploy with ENV Configuration Using Jellyfin + Maloja example from Quickstart: services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - JELLYFIN_URL=192.168.0.110:8096 - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b - JELLYFIN_USER=MyUser - JELLYFIN_TRANSFORMS=native # applies native Stage to preTransform of Jellyfin source - MALOJA_URL=http://192.168.0.100:42010 # maloja receives enhanced scrobble from Jellyfin - MALOJA_API_KEY=myApiKey volumes: - \"./config:/config\" ports: - \"9078:9078\" restart: unless-stopped","s":"ENV Configuration","u":"/multi-scrobbler/configuration/transforms/native/","h":"#env-configuration","p":258},{"i":270,"t":"Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"native\", \"name\": \"MyNativeTransformer\", \"defaults\": { // default delimiters when this Stage is used in a hook \"delimiters\": [ \"•\" ], // default delimiters when this Stage is used in a hook \"artistsParseFrom\": [\"artists\"] } } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\", \"name\": \"MyNativeTransformer\" } ] } } } ]","s":"Parse only artists string using a custom delimiter","u":"/multi-scrobbler/configuration/transforms/native/","h":"#parse-only-artists-string-using-a-custom-delimiter","p":258},{"i":272,"t":"Example Your AIO Config: config.json { // ... \"transformers\": [ { \"type\": \"native\", \"name\": \"MyNativeTransformer\", \"defaults\": { \"artistsIgnore\": [ \"Crosby, Stills, Nash & Young\", \"Polo & Pan\" ] } } ] } In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\", \"name\": \"MyNativeTransformer\" } ] } } } ]","s":"Don't parse specific artists","u":"/multi-scrobbler/configuration/transforms/native/","h":"#dont-parse-specific-artists","p":258},{"i":274,"t":"In the scenario where you want to extract Artists from Track titles with joiners like My Cool Track (feat. Foobar) but want to keep the title as-is: Example No additional stage configuration is required so we can use the default Stage. In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"native\", \"title\": false // do not modify title } ] } } } ]","s":"Extract Artists from Title but do not modify Title","u":"/multi-scrobbler/configuration/transforms/native/","h":"#extract-artists-from-title-but-do-not-modify-title","p":258},{"i":276,"t":"The User Stage uses search-and-replace expressions, provided by you, to modify/replace parts of Play data. This Stage is most useful for correcting individual instances of bad data, or patterns, in your known data. Example scenarios: Removing (Album Version) from all Titles Removing Various Artists from Artist data Correcting spelling mistakes for individual Artist names The user Stage type is user.","s":"User Stage","u":"/multi-scrobbler/configuration/transforms/user/","h":"","p":275},{"i":278,"t":"All Stage Configuration is done using search-and-replace expressions inside individual rules. Default configuration for all Rules can still be done using Stage defaults. Example config.json { // ... \"transformers\": [ { \"type\": \"user\", \"name\": \"Normalizer\", \"defaults\": { \"title\": [ \"(Album Version)\" ], \"artists\": [ \"Various Artists\" ] } } ] } Default Stage For your convenience, if you do not define any User Stage Configurations then multi-scrobbler automatically builds an empty one for you. This can be used by omitting the name in your modification Stage. Example In a Subsonic File Config: subsonic.json [ { \"name\": \"MySubsonic\", \"data\": { /* ... */}, \"options\": { \"playTransform\": { \"preCompare\": [ { \"type\": \"user\", // do not include name, the default user stage will be used \"title\": [ // removes badterm from track title \"badterm\" ] } ] } } } ]","s":"Configuration","u":"/multi-scrobbler/configuration/transforms/user/","h":"#configuration","p":275},{"i":280,"t":"A Search-And-Replace Expression can be a plain string that matches a literal, then removes it: Expression: \"badTerm\" \"this is badTerm cool string\" => \"this is a cool string\" or a regular expression that matches and removes the match: Expression: \"/bad\\w+/i\" \"this is badSomething cool string\" => \"this is a cool string\" Or it may be an object that specifies what to match (using either plain string or regular expression) and what to replace it with: { \"search\": \"anotherBadTerm\", // match all instances of 'anotherBadTerm' \"replace\": \"goodTerm\" // replace with the string 'goodTerm' } \"this is anotherBadTerm cool string\" => \"this is goodTerm cool string\" { \"search\": \"/^\\(\\w+.com)/i\", // matches any string that starts with EX '(YourMusic.com)' \"replace\": \"[MySite.com]\" // replace with the string '[MySite.com]' } \"(Foo.com) this is a cool string\" => \"[MySite.com] this is a cool string\" The replace property uses javascript's replace() function and so can use any special string characters.","s":"Search-And-Replace Expression","u":"/multi-scrobbler/configuration/transforms/user/","h":"#search-and-replace-expression","p":275},{"i":282,"t":"Each Rule must be an array of search-and-replace expressions: lastfm.json [ { \"name\": \"myLastFm\", \"configureAs\": \"source\", \"data\": { // ... }, \"options\": { \"playTransform\": { \"type\": \"user\", \"preCompare\": [ { \"title\": [ // removes \"badTerm\" from title \"badTerm\", { // removes \"fooTerm\" from title and replaces it with \"barTerm\" \"search\": \"fooTerm\", \"replace\": \"barTerm\" } ] } ], } } } ] note If the value of the field (title, an artist, album) is an empty string after transforming then the field is removed.","s":"Rules","u":"/multi-scrobbler/configuration/transforms/user/","h":"#rules","p":275},{"i":285,"t":"Using when for Conditional Modification Example // On search-replace in title... // IF artist matches \"Elephant Gym\" // THEN Run regex search-replace ELSE skip this rule // // Run live|remastered regex remove on title { \"title\": [ { \"search\": \"/\\\\s\\\\-\\\\s滾石40\\\\s滾石撞樂隊\\\\s40團拚經典(.+)$/i\", \"replace\": \"\", \"when\": [ { \"artist\": \"/Elephant Gym/\" } ] }, \"/(\\\\s\\\\-\\\\s|\\\\s)(feat\\\\.(.+)|live|remastered(.+))$/i\" ], }","s":"Usage with when condition","u":"/multi-scrobbler/configuration/transforms/user/","h":"#usage-with-when-condition","p":275},{"i":287,"t":"Removes the phrase (Album Version) from the Title of a Play Example { \"title\": [ \"(Album Version)\" ] }","s":"Remove phrase from Title in all new Plays","u":"/multi-scrobbler/configuration/transforms/user/","h":"#remove-phrase-from-title-in-all-new-plays","p":275},{"i":289,"t":"Example { \"compare\": { \"candidate\": { \"title\": [ \"/(\\(.+\\))\\s*$/\" ] }, \"existing\": { \"title\": [ \"/(\\(.+\\))\\s*$/\" ] }, }, }","s":"Remove all parenthesized content from the end of a title","u":"/multi-scrobbler/configuration/transforms/user/","h":"#remove-all-parenthesized-content-from-the-end-of-a-title","p":275},{"i":291,"t":"Example { \"artists\": [ { \"search\": \"Boz Skaggs\", \"replace\": \"Boz Scaggs\" } ] }","s":"Rename misspelled artist in all new Plays","u":"/multi-scrobbler/configuration/transforms/user/","h":"#rename-misspelled-artist-in-all-new-plays","p":275},{"i":293,"t":"Example { \"album\": [ { \"search\": \"Various Artists\", \"replace\": \"\" } ] }","s":"Remove \"Various Artists\" albums in all new Plays","u":"/multi-scrobbler/configuration/transforms/user/","h":"#remove-various-artists-albums-in-all-new-plays","p":275},{"i":295,"t":"Details When the Artist string is actually a multi-artist, delimited string, this search-and-replace will replace the string with just the first artist found. Ex My Artist One / My Artist Two / Another Guy My Artist One Artists are delimited with a spaced forward slash (/) in the regex below. Replace the contents of the delim capture group with the delimiter for your use case. Some more common scenarios: (?<delim>\\\\/) No spaces between slash IE My Artist One/My Artist Two/Another Guy (?<delim>\\\\s*\\\\\\\\\\s*) Backslash instead of forward slash IE My Artist One \\ My Artist Two \\ Another Guy (?<delim>,) Comma IE My Artist One, My Artist Two, Another Guy Example { \"artists\": [ { \"search\": \"(.*?)(?<delim>\\\\s*\\\\/\\\\s*)(.*$)\", \"replace\": \"$1\" } ] }","s":"Extract primary Artist from delimited, multi-Artist string","u":"/multi-scrobbler/configuration/transforms/user/","h":"#extract-primary-artist-from-delimited-multi-artist-string","p":275},{"i":297,"t":"To do...","s":"Client Development/Tutorial","u":"/multi-scrobbler/development/dev-client/","h":"","p":296},{"i":300,"t":"Multi-scrobbler is written entirely in Typescript. It consists of a backend and frontend. The backend handles all Source/Client logic, mounts web server endpoints that listen for Auth callbacks and Source ingress using expressjs, and serves the frontend. The frontend is a standalone Vitejs app that communicates via API to the backend in order to render the dashboard.","s":"Architecture","u":"/multi-scrobbler/development/dev-common/","h":"#architecture","p":298},{"i":302,"t":"Development requires Node v18.19.1 or higher is installed on your system. tip When running locally (not with a devcontainer) you can use nvm to manage the installed node version. Clone this repository somewhere and then install from the working directory git clone https://github.com/FoxxMD/multi-scrobbler.git . cd multi-scrobbler nvm use # optional, sets correct node version when running without devcontainer npm install npm run start","s":"Project Setup","u":"/multi-scrobbler/development/dev-common/","h":"#project-setup","p":298},{"i":304,"t":"This repository contains workspace settings for development with VSCode. These include: Run/Debug Launch configurations for the application and tests Devcontainer for development with all dependencies already installed Useful extensions for linting and running tests To use the Devcontainer simple open the repository in VSCode and \"Use Devcontainer\" when the notification is presented. npm install will be run when a new container is created.","s":"VSCode","u":"/multi-scrobbler/development/dev-common/","h":"#vscode","p":298},{"i":306,"t":"info In this document, when referring to aspects of Sources and Clients that are shared between both, the Source/Client will be referred to as a Component. A Component is composed of two parts: Typescript interfaces describing structure of configuration for that Component A concrete class inheriting from a common \"startup\" abstract class that enforces how the Component is built and operates In both parts Source/Clients share some common properties/behavior before diverging in how they operate.","s":"Common Development","u":"/multi-scrobbler/development/dev-common/","h":"#common-development","p":298},{"i":308,"t":"The configuration for a Component should always have this minimum shape, enforced respectively by the interfaces CommonSourceConfig and CommonClientConfig: interface MyConfig { name: string data?: object options?: object } data contains data that is required for a Component to operate such as credentials, callback urls, api keys, endpoints, etc... options are optional settings that can be used to fine-tune the usage of the Component but are not required or do not majorly affect behavior. EX additional logging toggles","s":"Config","u":"/multi-scrobbler/development/dev-common/","h":"#config","p":298},{"i":310,"t":"Components inherit from an abstract base class, AbstractComponent, that defines different \"stages\" of how a Component is built and initialized when MS first starts as well as when restarting the Component in the event it stops due to an error/network failure/etc... Stages Stages below are invoked in the order listed. All stages are asynchronous to allow fetching network requests or reading files. The stage function (described in each stage below) should return a value or throw: return null if the stage is not required return true if the stage succeeded return a string if the stage succeeded and you wish to append a result to the log output for this stage throw an Exception if the stage failed for any reason and the Component should not continue to run/start up Stage: Build Data This stage should be used to validate user configuration, parse any additional data from async sources (file, network), and finalize the shape of any configuration/data needed for the Component to operate. info Implement doBuildInitData in your child class to invoke this stage. Examples Parse a full URL like http://SOME_IP:7000/subfolder/api from user config containing a base url like data.baseUrl: 'SOME_IP' and then store this in the class config Validate that config data contains required properties user password salt Read stored credentials from ${this.configDir}/currentCreds-MySource-${name}.json; Stage: Check Connection This stage is used to validate that MS can communicate with the service the Component is interacting with. This stage is invoked on MS startup as well as any time the Component tries to restart after a failure. If the Component depends on ingress (like Jellyfin/Plex webhook) this stage is not necessary. info Implement doCheckConnection in your child class to invoke this stage. Examples Make a request to the service's server to ensure it is accessible Open a websocket connection and check for a ping-pong Stage: Test Auth MS determines if Auth is required for a Component based on two class properties. You should set these properties during constructor initialization for your Component class: requiresAuth - (default false) Set to true if MS should check/test Auth for this Component requiresAuthInteraction - (default false) Set to true if user interaction is required to complete auth IE user needs to visit a callback URL If the Component requires authentication in order to communicate with a service then any required data should be built in this stage and a request made to the service to ensure the authentication data is valid. This stage should return: true if auth succeeded false if auth failed without unexpected errors IE the authentication data is not valid and requires user interaction to resolve the failure throw an exception if network failure or unexpected error occurred You should attempt to re-authenticate, if possible. Only throw an exception or return false if there is no way to recover from an authentication failure. info Implement doAuthentication in your child class to invoke this stage. Examples Generate a Bearer Token for Basic Auth from user/password given in config and store in class properties Make a request to a known endpoint with Authorization token from read credentials file to see if succeeds or returns 403 Catch a 403 and attempt to reauthenticate at an auth endpoint with user/password given in config","s":"Concrete Class","u":"/multi-scrobbler/development/dev-common/","h":"#concrete-class","p":298},{"i":312,"t":"The PlayObject is the standard data structure MS uses to store listen (track) information and data required for scrobbling. It consists of: Track Data -- a standard format for storing track, artists, album, track duration, the date the track was played at, etc... Listen Metadata -- Optional but useful data related to the specific play or specifics about the Source/Client context for this play such as Platform specific ID, web URL to track, device/user ID that played this track, etc... Both Sources and Clients use the PlayObject interface. When a Component receives track info from its corresponding service it must transform this data into a PlayObject before it can be interacted with. For more refer to the TS documentation for PlayObject or AmbPlayObject in your project","s":"Play Object","u":"/multi-scrobbler/development/dev-common/","h":"#play-object","p":298},{"i":314,"t":"Source Development and Tutorial Client Development and Tutorial","s":"Creating Clients and Sources","u":"/multi-scrobbler/development/dev-common/","h":"#creating-clients-and-sources","p":298},{"i":316,"t":"This document will provide a step-by-step guide for creating a (trivial) new Source in MS alongside describing what aspects of the Source need to be implemented based on the service you use. Before using this document you should review Common Development.","s":"Source Development/Tutorial","u":"/multi-scrobbler/development/dev-source/","h":"","p":315},{"i":318,"t":"You are the developer of a fancy, new self-hosted web-based media player called Cool Player. Cool Player has a slick interface and many bells and whistles, but most importantly it has an API. The API: Has an unauthenticated health endpoint at /api/health that returns 200 if the service is running properly Has authenticated endpoints that require a user-generated token in the header Authorization MY_TOKEN Has a /api/recent endpoint that lists recently played tracks with a timestamp Has a /api/now-playing endpoint that returns information about the state of the player like current track, player position in the track, etc... Cool Player is by default accessed on port 6969 Your personal instance of Cool Player is hosted at http://192.168.0.100:6969 and the api is accessed at http://192.168.0.100:6969/api Because there is an API that MS can actively read this will be a polling Source where MS sends requests to Cool Player to get scrobble information -- as opposed to an ingress Source like Jellyfin/Plex that uses webhooks from the service to send data to MS.","s":"Scenario","u":"/multi-scrobbler/development/dev-source/","h":"#scenario","p":315},{"i":321,"t":"We will create a new config interface for Cool Player using the Common Config and tell MS it is a valid config that can be used. Create a new file for your config: /src/backend/common/infrastructure/config/source/coolplayer.ts import { PollingOptions } from \"../common.js\"; import { CommonSourceConfig, CommonSourceData } from \"./index.js\"; // all of the required data for the Build Data and Test Auth stages (from Common Development docs) // should go here export interface CoolPlayerSourceData extends CommonSourceData, PollingOptions { // remember to annotation your properties! /** * The user-generated token for Cool Player auth created in Cool Player -> Settings -> User -> Tokens * * @example f243331e-cf5b-49d7-846b-0845bdc965b4 * */ token: string /** * The host and port where Cool Player is hosted * * @example http://192.168.0.100:6969 * */ baseUrl: string } export interface CoolPlayerSourceConfig extends CommonSourceConfig { data: CoolPlayerSourceData } export interface CoolPlayerSourceAIOConfig extends CoolPlayerSourceConfig { // when using the all-in-one 'config.json' this is how users will identify this source type: 'coolplayer' } Add the new interface to the list of valid interfaces for sources: src/backend/common/infrastructure/config/source/sources.ts import { ChromecastSourceAIOConfig, ChromecastSourceConfig } from \"./chromecast.js\"; // ... import { CoolPlayerSourceAIOConfig, CoolPlayerSourceConfig } from \"./coolplayer.js\"; export type SourceConfig = SpotifySourceConfig // ... | CoolPlayerSourceConfig; export type SourceAIOConfig = SpotifySourceAIOConfig // ... | CoolPlayerSourceAIOConfig; Finally, add the source type identifier to the list of valid identifiers src/backend/common/infrastructure/Atomic.ts export type SourceType = 'spotify' // ... | 'coolplayer'; export const sourceTypes: SourceType[] = [ 'spotify', // ... 'coolplayer' ]; Now we will create a new Source inheriting from AbstractComponent that: accepts our config interface implements a function to transform CoolPlayer's track data into a PlayObject implements required stages implements required methods to current player state and/or now playing track","s":"Define and Implement Config","u":"/multi-scrobbler/development/dev-source/","h":"#define-and-implement-config","p":315},{"i":323,"t":"First we create a new Source called CoolPlayerSource and setup our constructor to accept the config and specify Auth behavior. src/backend/sources/SpotifySource.ts import { CoolPlayerSourceConfig } from \"../common/infrastructure/config/source/coolplayer.js\"; import MemorySource from \"./MemorySource.js\"; import { InternalConfig, } from \"../common/infrastructure/Atomic.js\"; // MemorySource is the base class used for polling-type Sources export default class CoolPlayerSource extends MemorySource { // type hints for TS to know what the base class config looks like declare config: CoolPlayerSourceConfig; constructor(name: any, config: CoolPlayerSourceConfig, internal: InternalConfig, emitter: EventEmitter) { super('coolplayer', name, config, internal, emitter); // Cool Player required authentication this.requiresAuth = true; // but does not require user interaction for auth to work this.requiresAuthInteraction = false; // tells MS this is a Source that can be activity monitored through API this.canPoll = true; } }","s":"Create CoolPlayer Source","u":"/multi-scrobbler/development/dev-source/","h":"#create-coolplayer-source","p":315},{"i":325,"t":"When MS starts it reads all configs and determines which Source to build based on the configs found. We need to tell it to build a CoolPlayerSource when a coolplayer config type is found. We modify ScrobbleSources.ts to add CoolPlayerSource as an option: src/backend/sources/ScrobbleSources.ts // ... import { CoolPlayerSource, CoolPlayerData } from \"./CoolPlayerSource.js\"; export default class ScrobbleSources { // ... buildSourcesFromConfig = async (additionalConfigs: ParsedConfig[] = []) => { // ... // if CoolPlayerSource should be able to be built from ENVs only // then add it as a case statement here for (const sourceType of sourceTypes) { switch (sourceType) { // ... case 'musikcube': // ... break; case 'coolplayer': const cp = { baseUrl: process.env.COOL_URL, token: process.env.COOL_TOKEN } if (!Object.values(cp).every(x => x === undefined)) { configs.push({ type: 'coolplayer', name: 'unnamed', source: 'ENV', mode: 'single', configureAs: defaultConfigureAs, data: cp as CoolPlayerData }); } break; default: break; } } } // ... // (required) create new CoolPlayerSource if source config type is 'coolplayer' addSource = async (clientConfig: ParsedConfig, defaults: SourceDefaults = {}) => { // ... let newSource: AbstractSource; switch (type) { // ... case 'musikcube': // ... break; case 'coolplayer': newSource = await new CoolPlayerSource(name, compositeConfig as CoolPlayerSourceConfig, internal, this.emitter); break; default: break; } } }","s":"Initialize Source from Config","u":"/multi-scrobbler/development/dev-source/","h":"#initialize-source-from-config","p":315},{"i":327,"t":"Now we will create a static function that is used to take the track data returned from Cool Player's API and return a standard PlayObject. src/backend/sources/CoolPlayerSource.ts import dayjs from \"dayjs\"; import { FormatPlayObjectOptions, } from \"../common/infrastructure/Atomic.js\"; import { PlayObject } from \"../../core/Atomic.js\"; export default class CoolPlayerSource extends MemorySource { // ... // 'obj' should ideally be a real TS interface // if CoolPlayer has a ts/js client we would use that otherwise // we should build our own interfaces to represent track data from Cool Player's API static formatPlayObj(obj: any, options: FormatPlayObjectOptions = {}): PlayObject { const { trackName, artistName, albumName, duration, playedAt, } = obj; return { data: { artists: [artistName], album: albumName, track: trackName, // assuming seconds duration, // assuming playedAt is an ISO8601 timestamp playDate: dayjs(playedAt) }, meta: { source: 'CoolPlayer' } } } }","s":"Implement Play Object Transform","u":"/multi-scrobbler/development/dev-source/","h":"#implement-play-object-transform","p":315},{"i":329,"t":"Next we will implement the Stages required to get CoolPlayerSource running. Build Data First we implement the Build Data Stage. We will check that the token and baseUrl properties have been provided by the user. Additionally, we will parse the baseUrl and add default ports/prefix. src/backend/sources/CoolPlayerSource.ts import { URL } from \"url\"; // ... export default class CoolPlayerSource extends MemorySource { baseUrl!: URL; // ... static parseConnectionUrl(val: string) { const normal = normalizeUrl(val, {removeTrailingSlash: false, normalizeProtocol: true}) const url = new URL(normal); if (url.port === null || url.port === '') { url.port = '6969'; } if (url.pathname === '/') { url.pathname = '/api/'; } return url; } protected async doBuildInitData(): Promise<true | string | undefined> { const { token, baseUrl } = this.config; if (token === null || token === undefined || (typeof token === 'string' && token.trim() === '')) { throw new Error(`'token' must be defined`); } if (baseUrl === null || baseUrl === undefined || (typeof baseUrl === 'string' && baseUrl.trim() === '')) { throw new Error(`'baseUrl' must be defined`); } try { this.baseUrl = CoolPlayerSource.parseConnectionUrl(baseUrl); } catch (e) { throw new Error(`Could not parse baseUrl: ${baseUrl}`, {cause: e}); } this.logger.verbose(`Config URL: ${baseUrl} => Normalized: '${this.url.toString()}'`); return true; } } Check Connection Second we will implement the Check Connection Stage: src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { UpstreamError } from \"../common/errors/UpstreamError.js\"; // ... export default class CoolPlayerSource extends MemorySource { // ... protected async doCheckConnection(): Promise<true | string | undefined> { try { const resp = await request.get(`${this.baseUrl}/health`); return true; // if /health returned version info we could instead read response and return a string with version info for visibility to the user // return `Cool Player Version: ${resp.body.version}`; } catch (e) { throw e; } } } Test Auth Finally, we will implement Auth Test Stage: src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { UpstreamError } from \"../common/errors/UpstreamError.js\"; // ... export default class CoolPlayerSource extends MemorySource { // ... doAuthentication = async () => { try { const resp = await request .get(`${this.baseUrl}/recent`) .set('Authorization', `Token ${this.config.token}`); return true; } catch (e) { // if Cool Player returned an error as json we could parse it from error body and throw new Error with the message throw e; } } }","s":"Implement Stages","u":"/multi-scrobbler/development/dev-source/","h":"#implement-stages","p":315},{"i":331,"t":"The majority of Sources MS monitors primarily operate as a source of truth for a music player rather than a played music history. Only Listenbrainz and Last.fm operate as a source of music history. To this end, MS implements a state machine that emulates the behavior of a music player in order to keep track of when a song you are listening to should be scrobbled. It does this by monitoring the \"currently playing\" track reported by a Source's service, with varying degrees of accuracy depending on what information is returned from the service. The state machine is implemented in MemorySource which our CoolPlayerSource inherits from. For a polling Source to work properly we need to implement a function, getRecentlyPlayed, that returns PlayObjects that are \"newly\" played. These are then checked against previously \"discovered\" plays and their timestamp to determine if they should be surfaced to Clients to scrobble. To take advantage of the MemorySource state machine we will additionally use processRecentPlays from MemorySource inside getRecentlyPlayed. We pass track and/or player state returned from the Source service to processRecentPlayers. It then takes care of deriving Source player state based on how this data changes over time. The advantage to using processRecentPlays is that our Source service does not necessarily need to pass any player information -- as long as the track info has a duration we can more-or-less determine if it has been played long enough to scrobble. src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { SourceData, PlayerStateData, SINGLE_USER_PLATFORM_ID } from \"../common/infrastructure/Atomic.js\"; // ... export default class CoolPlayerSource extends MemorySource { // ... protected async getRecentlyPlayed(options: RecentlyPlayedOptions = {}): Promise<PlayObject[]> { const plays: SourceData[] = []; try { // currently playing tracks/player state data const resp = await request .get(`${this.baseUrl}/now-playing`) .set('Authorization', `Token ${this.config.token}`); const { body: { playerState, // 'playing' or 'stopped' or 'paused'... position, // number of seconds into the track IE at position 48 -> ( 0:48/3:56 in player UI ) play: { /* track data */} } } = resp; // transform into standard player state data const playerData: PlayerStateData = { platformId: SINGLE_USER_PLATFORM_ID, play: CoolPlayerSource.formatPlayObj(play), position }; // if Cool Player does return player state we can also push a regular PlayObject to this list plays.push(playerData); } catch (e) { throw e; } // process player state through state machine // if the track changes or player state changes // and currently played track has been listened to long enough to be scrobbled it will return in newPlays const newPlays = this.processRecentPlays(plays); // finally, we return new plays and MS checks to see if they have been previously seen // before signalling to Clients that they can be scrobbled return newPlays; } } Congratulations! Your CoolPlayerSource has been minimally implemented and can now be used in multi-scrobbler.","s":"Implement Polling","u":"/multi-scrobbler/development/dev-source/","h":"#implement-polling","p":315},{"i":334,"t":"To have your Source try to scrobble \"missed\" tracks when MS starts up the Source's service must be able to provide: track information timestamp of when the track was played In your Source implement getBackloggedPlays and set setting in constructor indicating it has backlogging capabilities: src/backend/sources/CoolPlayerSource.ts import request from 'superagent'; import { PlayObject, } from \"../common/infrastructure/Atomic.js\"; // ... export default class CoolPlayerSource extends MemorySource { constructor(/* ... */) { super(/* ... */); // ... // tell MS it should try to get backlogged tracks on startup this.canBacklog = true; } // ... protected getBackloggedPlays = async (options: RecentlyPlayedOptions): Promise<PlayObject[]> => { try { const resp = await request .get(`${this.baseUrl}/recent`) .set('Authorization', `Token ${this.config.token}`); // assuming list from body looks like track info returned in // \"Implement Play Object Transform\" section const { body = [] } = resp; return body.map(x => CoolPlayerSource.formatPlayObj(x)); } catch (e) { throw new Error('Error occurred while getting recently played', {cause: e}); } } }","s":"Backlog","u":"/multi-scrobbler/development/dev-source/","h":"#backlog","p":315},{"i":336,"t":"There are some scenarios where polling and/or state machine is not the right tool to handle determining if incoming data should be scrobbled: The Source service handles scrobble threshold internally, the data being received should always be scrobbled (WebScrobbler, Plex, Tautulli, Listenbrainz, Last.fm) You prefer to handle the scrobble determination yourself Music History Source If the Source is still polling but the track returned should always be scrobbled if not already seen IE the Source service is a music history source (Listenbrainz, Last.fm), rather than a music player, then simply indicate to MS the source of truth type by setting it in the constructor. The state machine will always return a track if it is new and not seen, regardless of how recently it was seen: src/backend/sources/CoolPlayerSource.ts import { SOURCE_SOT } from \"../../core/Atomic.js\"; // ... export default class CoolPlayerSource extends MemorySource { constructor(/* ... */) { super(/* ... */); // ... // tell MS it should immediately scrobble any new, unseen tracks from the upstream service this.playerSourceOfTruth = SOURCE_SOT.HISTORY; } } Non-Polling Source Ingress Sources (like Plex, Tautulli, Webscrobbler, Jellyfin) do not having a polling mechanism because the upstream service contacts MS when there is an event, rather than MS contacting the upstream service. For these Sources you will need to implement endpoints in src/service/api.ts and corresponding files. See the existing Sources in the project as references for how to do this. You may still wish to use the state machine MemorySource (like Jellyfin) if the events received are not \"scrobble\" events but instead of implementing getRecentlyPlayed you will implement your own function in your Source class, like handle(), that receives data and then uses processRecentPlays. After new plays have been determined see the next section for how to scrobble... Basic Source At the core of a Source that implements AbstractSource's functionality is the ability to Discover and Scrobble plays. These functions are not seen in the MVP CoolPlayerSource because they are automatically done by the polling functionality after being returned from getRecentlyPlayed. Discovery A Source keeps track of all the \"plays\" that are determined to be valid for scrobbling. When a play is valid it is checked to see if it has already been \"discovered\" by comparing the track info and timestamp of the play against already discovered plays. This prevents duplicate scrobbling by using the Source's own data and simplifies scrobbling for Sources by allowing your implementation to \"always\" ingest track data without having to worry about whether its new or not -- AbstractSource and discover() will take care of that for you. src/backend/sources/MyBasicSource.ts export default class MyBasicSource extends AbstractSource { handle(somePlay: PlayObject) { // if the track is \"new\" and not seen before it is returned in the discovered list // we then know it is OK to be sent to Clients for scrobbling const discovered: PlayObject[] = this.discover([somePlay]); } } This additionally will be surfaced to the user in the Dashboard in the \"Tracks Discovered\" page. Scrobbling After a play is verified to be discovered we can then scrobble it. This will emit the plays to the ScrobbleClients service which then disseminates the play to all Clients that were configured to listen in the Source's config. src/backend/sources/MyBasicSource.ts export default class MyBasicSourceSource extends AbstractSource { handle(somePlay: PlayObject) { const discovered: PlayObject[] = this.discover([somePlay]); // emit plays that can be scrobbled by clients this.scrobble(discovered); } } If your service only emits an event when a play is scrobbled you can technically skip using discover() but it is good practice to use it unless you have a very good reason not to. note Using scrobble() does not guarantee a track is actually scrobbled! The Scrobble Clients also check the play against their own \"recently scrobbled\" list to prevent duplicates.","s":"Other Source Types","u":"/multi-scrobbler/development/dev-source/","h":"#other-source-types","p":315},{"i":340,"t":"Install Flatpak Install flatpak-builder flatpak-node-generator Requires python 3.7+, pip/pipx","s":"Flatpak and flatpak-builder","u":"/multi-scrobbler/development/flatpak/","h":"#flatpak-and-flatpak-builder","p":337},{"i":342,"t":"Set the branch tag or commit to use for MS in the source section of io.github.foxxmd.multiscrobbler.yml","s":"Update Project source","u":"/multi-scrobbler/development/flatpak/","h":"#update-project-source","p":337},{"i":345,"t":"A convenience bash script is provided that automates generating offline sources and building the flatpak app for you. This is the recommend method to use. Located in the project at flatpak/setup.sh, run it from the flatpak directory with this syntax: ./setup.sh -o -b /path/to/flatpak/build/dir Args: -o => Delete and overwrite any existing generated sources -b => The absolute path to the directory that should be used for flatpak build/artifacts. If not defined will use `CWD/build` -y => Proceed without confirming settings","s":"Use Setup Script","u":"/multi-scrobbler/development/flatpak/","h":"#use-setup-script","p":337},{"i":347,"t":"If you cannot use setup.sh follow the below to manually generate sources and build the flatpak app: Instructions Use flatpak-node-generator to generate sources First, make sure node_modules is deleted or empty for both the project and docsite directories. Then, from MS project root: PROJECT_DIR flatpak-node-generator npm package-lock.json Move generated-sources.json into PROJECT_DIR/flatpak and rename generated-sources.0.json Then, generate docsite sources: PROJECT_DIR flatpak-node-generator npm docsite/package-lock.json Move generated-sources.json into PROJECT_DIR/flatpak and rename generated-sources.1.json Build flatpak In the below command replace /home/yourUser/multi-scrobbler-flatpak with a directory to use for storing flatpak build/artifacts. PROJECT_DIR/flatpak flatpak-builder --repo=/home/yourUser/multi-scrobbler-flatpak/repo --state-dir=/home/yourUser/multi-scrobbler-flatpak/state /home/yourUser/multi-scrobbler-flatpak/build io.github.foxxmd.multiscrobbler.yml --force-clean info Append --install --user to the above command to have the app installed immediately.","s":"Manual Setup","u":"/multi-scrobbler/development/flatpak/","h":"#manual-setup","p":337},{"i":349,"t":"If built with --install --user (default when using setup.sh) you can now run MS using the command flatpak run -u io.github.foxxmd.multiscrobbler","s":"Run App","u":"/multi-scrobbler/development/flatpak/","h":"","p":337},{"i":353,"t":"These sources are ingress-based which means that multi-scrobbler waits for the Webscrobbler extension or app using Listenbrainz Endpoint to contact multi-scrobbler, as opposed to multi-scrobbler contacting them. multi-scrobbler will log information about any server that connects to it for these services. In the logs it looks something like this: [2025-07-10 12:32:21.417 -0400] INFO : [App] [API] [Ingress] [WebScrobbler] [Ingress] [WebScrobbler] Received request from a new remote address: ::ffff:127.0.0.1 (192.168.0.100) (UA: Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0) [2025-07-10 12:32:21.418 -0400] INFO : [App] [API] [Ingress] [WebScrobbler] [Ingress] [WebScrobbler] ::ffff:127.0.0.1 (192.168.0.100) (UA: Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0) Received data for API URL slug '(none)' for the first time. It also logs if a server tries to connect to a URL that it does not recognize: 2023-02-22T11:16:12-05:00 debug : [App ] Server received POST request from ::ffff:192.168.0.100 (UA: PlexMediaServer/1.24.5.5173-8dcc73a59) to unknown route: /plkex So, if you do not see either of these in your logs then the Source is not able to connect to your multi-scrobbler instance at all. This is not something multi-scrobbler can fix and means you have an issue in your network. Troubleshooting Check or try all these steps before submitting an issue: Turn on Debug Logging First, turn on debug logging for multi-scrobbler by setting the environmental variable DEBUG_MODE=true. Then, check the output for any additional information. Check Host name and URL The URLs examples in the configuration documentation assume you are running Webscrobbler/LFM Endpoint on the same server as multi-scrobbler. If these are not the same machine then you need to determine the IP address or domain name that multi-scrobbler is reachable at and use that instead of localhost when configuring these sources. This is likely the same host name that you would use to access the web interface for multi-scrobbler. EX http://localhost:9078/api/webscrobbler -> http://192.168.0.140:9078/api/webscrobbler Check Firewall and Port Forwarding If the machine multi-scrobbler is running on has a firewall ensure that port 9078 is open. Or if it is in another network entirely make sure your router is forwarding this port and it is open to the correct machine. Check Source Service Logs Webscrobbler See Debugging the extension to get logs which should have information about failed requests.","s":"Webscrobbler/Listenbrainz Endpoint doesn't connect","u":"/multi-scrobbler/FAQ/","h":"#ingress-connection","p":350},{"i":355,"t":"Ensure any client id or secrets are correct in your configuration. The callback/redirect URL for these services must be: the same address you would use to access the multi-scrobbler web interface the web-interface must be accessible from the browser you are completing authentication from. If multi-scrobbler is not running on the same machine your browser is on then the default/example addresses (http://localhost...) will not work. You must determine the address you can reach the web interface at (such as http://192.168.0.140:9078) then use that in place of localhost in the callback URLs. EX http://localhost:9078/lastfm/callback -> http://192.168.0.220:9078/lastfm/callback","s":"Spotify/Deezer/LastFM won't authenticate","u":"/multi-scrobbler/FAQ/","h":"#spotifydeezerlastfm-wont-authenticate","p":350},{"i":357,"t":"If you see errors in multi-scrobbler for YTM that contain 401 or 403 like Error: Could not send the specified request to browse. Status code: 401 then YTM has invalidated your authentication. First, ensure you are NOT using YoutubeTV authentication. If you completed authentication by entering a \"User Code\" you are using YoutubeTV which has stopped working. You should reauthenticate using Cookies or Custom OAuth. When using OAuth Client Authentication Refresh your authentication by using the (Re)authenticate link from MS's web dashboard. When using Cookies Authentication The library MS uses relies on scraping the YTM site by using cookies from your actual browser to pretend it is a browser. It does its best to keep these up to date but since this is not an official way to access the service YTM may invalidate your access to the authenticated session at any time. How this is triggered is unknown and not something multi-scrobbler can control. You can help limit the chance of your session being invalidated by getting the cookie from an Incognito/Private Session and then immediately closing the browser afterwards. To re-authenticate MS follow the YTM instructions to retrieve a new set of cookies for multi-scrobbler and then restart MS to potentially resolve the problem.","s":"Youtube Music fails after some time","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-fails-after-some-time","p":350},{"i":360,"t":"If you see something like this in your logs: 2023-02-19T10:05:42-06:00 warn : [App] App config file exists but could not be parsed! 2023-02-19T10:05:42-06:00 error : [App] Exited with uncaught error 2023-02-19T10:05:42-06:00 error : [App] Error: config.json could not be parsed It means the JSON in your configuration file is not valid. Copy and paste your configuration into a site like JSONLint to find out where errors you have and fix them.","s":"Config could not be parsed","u":"/multi-scrobbler/FAQ/","h":"#config-could-not-be-parsed","p":350},{"i":363,"t":"This is a limitation of the Last.fm API where the artist field is only one string and Last.fm does not recognize (play well) with \"combined\" artists. Multi-scrobbler works the same was the official Spotify-Last.fm integration works -- it only scrobbles the first artist on a multi-artist track.","s":"Last.fm does not scrobble tracks with multiple artists correctly","u":"/multi-scrobbler/FAQ/","h":"#lastfm-does-not-scrobble-tracks-with-multiple-artists-correctly","p":350},{"i":365,"t":"The Google Cast integration relies on a few common fields in the data it receives from your casting device. Every platform that can cast (Spotify, Pandora, etc...) should use these fields the same but there are slight differences between their implementations that may confuse multi-scrobbler. Specific platforms may also return more information in non-common fields that are undocumented. To diagnose these issues you must enable payload logging for your google cast Source, run MS, and then include logs with this output from that run. Without the raw data logged from your cast device it will be nearly impossible to resolve your issue.","s":"Google Cast track information is missing/incorrect or MS player has weird times","u":"/multi-scrobbler/FAQ/","h":"#google-cast-track-information-is-missingincorrect-or-ms-player-has-weird-times","p":350},{"i":367,"t":"It is likely the app playing on the cast device is incorrectly reporting the media type as not music. MS logs will tell you what type the media is reported as with lines like: My Artist - Example Track has 'unknown' media type and allowUnknownMedia=false, will not track Refer to Allow Unknown Media Type section to fix this My Artist - Example Track has 'movie' media type so will not track Refer to Force Media Tracking section to fix this","s":"Google Cast device does not track media","u":"/multi-scrobbler/FAQ/","h":"#google-cast-device-does-not-track-media","p":350},{"i":369,"t":"Before reporting an issue turn on metadata logging in the MS VLC configuration, see the VLC documentation.","s":"VLC is not scrobbling fields correctly","u":"/multi-scrobbler/FAQ/","h":"#vlc-is-not-scrobbling-fields-correctly","p":350},{"i":371,"t":"How MS detects YTM history In order for multi-scrobbler to accurately determine if a song has been scrobbled it needs a source of truth. For YTM this is a \"history\" list scraped from the YTM website. Unfortunately, the data in this list can be (often) inconsistent which makes it hard for multi-scrobbler to \"trust\" that it is correct and determine when/if new scrobbles occur. This inconsistency is not something multi-scrobbler can control -- it is a side-effect of having to use an unofficial method to access YTM (scraping). To compensate for this multi-scrobbler resets when it considers this list the \"source of truth\" based on if the list changes in an inconsistent way between consecutive checks. New scrobbles can only be detected when this list is \"OK\" as a source of truth for N+1 checks. Therefore, any new tracks that appear when the list is inconsistent will be ignored. Duplicate scrobbles can also occur if the change between two checks is technically consistent. For instance, if you listen to a track twice in some period, separated by other music, YTM will sometimes \"remove\" the track from the earlier time (further down in your history) and \"re-add\" it at the top of the history. Reporting YTM scrobble issues If you experience scrobble detection issues you can help improve MS's YTM heureistic by providing thorough feedback as an issue. Please do the following to provide the most useful report: Turn on Change Detection In your YTM configuration (ytmusic.json) add logDiff under options like this: { \"type\": \"ytmusic\", \"name\": \"MyYTM\", \"data\": { ... }, \"options\": { \"logDiff\": true } } or set either ENVs: YTM_LOG_DIFF=true DEBUG_MODE=true This will cause MS to log YTM history changes similar to this: [Ytmusic - MyYTM] Changes from last seen list: 1. (tuhe1CpHRxY) KNOWER - I’m The President --- undefined => Moved - Originally at 6 2. (Mtg8V6Xa2nc) Vulfpeck - Romanian Drinking Song --- Schvitz => Moved - Originally at 1 3. (rxbCaiyYSXM) Nightmares On Wax - You Wish --- In A Space Outta Sound => Moved - Originally at 2 4. (tMt_YXr90AM) Gorillaz - O Green World --- undefined => Moved - Originally at 3 ... Which are essential to troubleshooting this behavior. Turn on File Logging Optionally, if your logs are busy due to many other sources, you can log only YTM logs to a file. Turn this on with the logToFile config option: { \"type\": \"ytmusic\", \"name\": \"MyYTM\", \"data\": { ... }, \"options\": { \"logDiff\": true, \"logToFile\": true } } This will cause MS to write YTM logs to a file in your logs folder named ytmusic-MyYTM.log (based on your source name). Provide Detail and Context Provide a detailed account of how you were using YTM when the issue occurred, including things like: the platform listening on (desktop, mobile, 3rd party client, etc...) any changes in platform I switched from desktop to listening on my phone... how you were listening to music I was playing an album start to finish I listened to two songs in a row, then browsed for a new song in library by artist, then went back to a song in the queue... Explain the expected behavior (it should have scrobbled songs x, y, then z) and what actually happened (it scrobbled songs x, then y, then x again, then z) Provide ALL logs from the time when the issue occurred including logs from BEFORE (ideally 2-3 minutes of logs) and AFTER the issue.","s":"Youtube Music misses or duplicates scrobbles","u":"/multi-scrobbler/FAQ/","h":"#youtube-music-misses-or-duplicates-scrobbles","p":350},{"i":373,"t":"tip For the difference between ENV and File examples in this document see Configuration Types.","s":"Overview","u":"/multi-scrobbler/installation/","h":"","p":372},{"i":375,"t":"Cross-platform images are built for x86 (Intel/AMD) and ARM64 (IE Raspberry Pi) Available Images Dockerhub Github Packages Repository Page docker.io/foxxmd/multi-scrobbler:latest Repository Page ghcr.io/foxxmd/multi-scrobbler:latest Or use the example docker-compose.yml, found in the repo, after modifying it to fit your configuration: docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones #- JELLYFIN_APIKEY= #- JELLYFIN_URL= #- JELLYFIN_USER= #- MALOJA_URL=http://maloja:42010 #- MALOJA_API_KEY= #- PUID=1000 # required if running docker on linux host, see main README Docker setup instructions #- PGID=1000 # required if running docker on linux host, see main README Docker setup instructions # set if using a source/client with redirect URI that you have not explicitly set and MS is NOT running on the same machine that you will view the dashboard from # EX: You will view MS dashboard at 'http://192.168.0.101:9078' -> set BASE_URL=http://192.168.0.101:9078 #- BASE_URL=http://MyHostIP:9078 volumes: - \"./config:/config\" #networks: # - (optional to add container to the same bridge network that maloja is inside to be able to use docker internal networking & dns to resolve and connect to maloja URL via http://maloja:port) ports: - 9078:9078 # first port is the HOST port multi-scrobbler will serve UI and API on restart: unless-stopped Recommended configuration steps for docker or docker-compose usage: Storage You should bind a host directory into the container for storing configurations and credentials. Otherwise, these will be lost when the container is updated. Example Docker Docker Compose Using -v method for docker: docker run ... -v \"$(pwd)/config:/config\" foxxmd/multi-scrobbler Using docker-compose: docker-compose.yml services: multi-scrobbler: # ... volumes: - \"./config:/config\" Networking If you are using a bridge network (default docker setup) you must map a port to the container in order to access the dashboard and use MS with some sources (Webscrobbler, LFM/LZ Endpoints). The default container port is 9078. Example Docker Docker Compose Docker run publish options: docker run ... -p 9078:9078 foxxmd/multi-scrobbler docker-compose: docker-compose.yml services: multi-scrobbler: # ... ports: - \"9078:9078\" Base URL Optionally, when using a Source or Client that has a \"Redirect URI\" that you have not explicitly defined and using a bridge network or installing MS on a different machine than the one used to view the dashboard set the Base URL as the IP of the host machine. (This is the IP you would use to view the dashboard in a browser) Example Docker Docker Compose docker run ... -e BASE_URL=\"http://hostMachineIP\" foxxmd/multi-scrobbler docker-compose: docker-compose.yml services: multi-scrobbler: # ... environment: - BASE_URL=http://hostMachineIP Other (Optionally) set the timezone for the container using the environmental variable TZ (docker) (docker-compose) Linux Host info If you are running this container with Docker on a Linux Host you must specify user:group permissions of the user who owns the configuration directory on the host to avoid docker file permission problems. These can be specified using the environmental variables PUID and PGID. To get the UID and GID for the current user run these commands from a terminal: id -u -- prints UID id -g -- prints GID","s":"Docker","u":"/multi-scrobbler/installation/","h":"#docker","p":372},{"i":377,"t":"tip See the Quick Start Guide for another guided docker-compose example The example scenario: Jellyfin Source Maloja Client Serving app on port 9078 Docker container located on a different IP (192.168.0.100) so use Base URL Config/data directory on host machine in a directory next to docker-compose.yml Linux uid/gid is 1000:1000 Docker Docker Compose ENV File docker run --name multi-scrobbler -e \"JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56bd6540c\" -e \"JELLYFIN_URL=192.168.0.101:8096\" -e \"JELLYFIN_USER=MyUser\" -e \"BASE_URL=192.168.0.100\" -e \"MALOJA_URL=http://domain.tld\" -e \"MALOJA_API_KEY=1234\" -e \"PUID=1000\" -e \"PGID=1000\" -p 9078:9078 -v /home/myUser/ms:/config foxxmd/multi-scrobbler docker run --name multi-scrobbler -e \"PUID=1000\" -e \"PGID=1000\" -e \"BASE_URL=192.168.0.100\" -p 9078:9078 -v \"$(pwd)/config:/config\" foxxmd/multi-scrobbler See docker-compose.yml sample above for more options and annotations. docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56bd6540c - JELLYFIN_URL=192.168.0.101:8096 - JELLYFIN_USER=MyUser - BASE_URL=http://192.168.0.100:9078 - MALOJA_URL=http://domain.tld:42010 - MALOJA_API_KEY=1234 - PUID=1000 - PGID=1000 volumes: - \"./config:/config\" ports: - \"9078:9078\" restart: unless-stopped","s":"Docker Usage Example","u":"/multi-scrobbler/installation/","h":"#docker-usage-example","p":372},{"i":379,"t":"After installation see service.md to configure multi-scrobbler to run automatically in the background.","s":"Local Installation","u":"/multi-scrobbler/installation/","h":"#local-installation","p":372},{"i":381,"t":"Clone this repository somewhere and then install from the working directory git clone https://github.com/FoxxMD/multi-scrobbler.git . cd multi-scrobbler nvm use # optional, to set correct Node version npm install npm run docs:install && npm run build npm run start Rollup build error During building if you encounter an error like: Your current platform \"XXX\" and architecture \"XXX\" combination is not yet supported by the native Rollup build. Modify overrides in package.json to use @rollup/wasm-node as a drop-in replacement for rollup: \"overrides\": { \"spotify-web-api-node\": { \"superagent\": \"$superagent\" } \"vite\": { \"rollup\": \"npm:@rollup/wasm-node@^4.9.6\" } } See this issue for more detail. Usage Examples ENV File JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56bd6540c JELLYFIN_URL=192.168.0.101:8096 JELLYFIN_USER=MyUser MALOJA_URL=\"http://domain.tld\" node src/index.js ./config/config.json ./config/config.json { \"sources\": [ { \"type\": \"jellyfin\", \"clients\": [\"myConfig\"], \"name\": \"myJellyfinSource\", \"data\": { \"apiKey\": \"a89cba1569901a0671d5a9875fed4be1\", \"url\": \"http://192.168.0.101:8096\", \"user\": \"MyUser\" } } ], \"clients\": [ { \"type\": \"maloja\", \"name\": \"myConfig\", \"data\": { \"url\": \"http://localhost:42010\", \"apiKey\": \"myMalojaKey\" } } ], } npm run start tip The web UI and API is served on port 9078. This can be modified using the PORT environmental variable.","s":"Nodejs","u":"/multi-scrobbler/installation/","h":"#nodejs","p":372},{"i":383,"t":"Unsupported Flatpak/Flathub installs are no longer supported. You can still build MS as a Flatpak app from source. See more information about Flatpak EOL.","s":"Flatpak","u":"/multi-scrobbler/installation/","h":"#flatpak","p":372},{"i":385,"t":"Systemd is system and service manager that is used by most popular linux distros including Ubuntu, Fedora, Pop!_OS, Debian, and Arch. This setup will create a user service that runs on login.","s":"Systemd","u":"/multi-scrobbler/installation/service/","h":"","p":384},{"i":387,"t":"Create a new service file for multi-scrobbler under your HOME config: mkdir -p ~/.config/systemd/user touch ~/.config/systemd/user/multi-scrobbler.service In a text editor add contents below to the file you created, multi-scrobbler.service: [Unit] Description=multi-scrobbler After=network.target [Service] Type=simple WorkingDirectory=/path/to/multi-scrobbler/directory ExecStart=npm run start Restart=no [Install] WantedBy=default.target","s":"Create A Unit File","u":"/multi-scrobbler/installation/service/","h":"#create-a-unit-file","p":384},{"i":389,"t":"Save the file then run: systemctl daemon-reload systemctl --user enable multi-scrobbler.service systemctl --user start multi-scrobbler.service This will scan for new services and pickup our multi-scrobbler user service enable the service to run at login automatically start the service now","s":"Start the Service","u":"/multi-scrobbler/installation/service/","h":"#start-the-service","p":384},{"i":391,"t":"Open a PR if you would like to document setting up multi-scrobbler for other service managers!","s":"Other Service Methods","u":"/multi-scrobbler/installation/service/","h":"","p":384},{"i":393,"t":"This guide will get you up and running with multi-scrobbler using Docker and docker compose. At the end of the guide you will have: the dashboard served on port 9078 of a host machine which has an IP of 192.168.0.100 data saved to the same directory as the docker-compose.yml file multi-scrobbler monitoring Spotify, Jellyfin, Navidrome, Plex, and/or Last.fm for listening activity multi-scrobbler scrobbling to Lastfm, Maloja, and/or Koito note If the multi-scrobbler container is on the same machine you will be viewing the dashboard from (IE localhost) you can remove and ignore BASE_URL usage below. Additionally, replace usage of 192.168.0.100 with localhost.","s":"Quickstart","u":"/multi-scrobbler/quickstart/","h":"","p":392},{"i":395,"t":"Create a new folder for multi-scrobbler related data and then create docker-compose.yml with this content: ~/msData/docker-compose.yml services: multi-scrobbler: image: foxxmd/multi-scrobbler container_name: multi-scrobbler environment: - TZ=Etc/GMT # Specify timezone from TZ Database name found here https://en.wikipedia.org/wiki/List_of_tz_database_time_zones - BASE_URL=http://192.168.0.100:9078 # all Environmental Variables in below examples go here! volumes: - \"./config:/config\" ports: - \"9078:9078\" restart: unless-stopped","s":"Create Docker Compose File","u":"/multi-scrobbler/quickstart/","h":"#create-docker-compose-file","p":392},{"i":397,"t":"Sources are the services/music players multi-scrobbler monitors to look for listening activity. Jellyfin Spotify Navidrome Plex Last.fm Follow the Jellyfin configuration instructions for setting up an API Key. Then, add these values to the environment section in the docker-compose.yml you created. ~/msData/docker-compose.yml - JELLYFIN_URL=192.168.0.110:8096 # URL to Jellyfin UI - JELLYFIN_APIKEY=c9fae8756fbf481ebd9c5bb56b # Api Key created in previous step - JELLYFIN_USER=MyUser # Your username in Jellyfin To access your Spotify activity you must create a Spotify App to get a Client ID/Secret and set a valid Redirect URI. Refer to the Spotify Authentication instructions in the docs. Assuming you used the HTTPS method for your Redirect URI from the instructions above...after the application is created add these values to the environment section in the docker-compose.yml you created. ~/msData/docker-compose.yml - SPOTIFY_CLIENT_ID=yourClientId - SPOTIFY_CLIENT_SECRET=yourClientSecret - SPOTIFY_REDIRECT_URI=https://multi-scrobbler.mydomain.com/callback Later, after starting multi-scrobbler, visit the dashboard at http://192.168.0.100:9078 and click (Re)authenticate on the Spotify card to authorize multi-scrobbler to use your account. Monitoring will begin automatically after authorization is complete. Navidrome supports scrobbling using Listenbrainz. You should use this, rather than a Subsonic Source because Navidrome's internal scrobbling functionality supports providing multiple artists and offline scrobbling while the Subsonic Source does not. To setup Navidrome to scrobble to multi-scrobbler via the Listenbrainz option: Create Listenbrainz Endpoint Source Create a new Listenbrainz Endpoint Source in multi-scrobbler by creating a token to use with the endpoint via ENV Config in environment section in the docker-compose.yml you created. ~/msData/docker-compose.yml - LZE_TOKEN=myCoolToken The token can be anything. (Re)start multi-scrobbler after making this change. Configure Navidrome Set the ListenBrainz.BaseURL (env ND_LISTENBRAINZ_BASEURL) to http://myMultiScrobblerIP:9078/1/ in your Navidrome installation. Assuming you are using the docker installation, modify environment to add: docker-compose.yml - ND_LISTENBRAINZ_BASEURL=http://192.168.0.100:9078/1/ Restart Navidrome after making this change. Then, follow the directions for enabling Listenbrainz scrobbling in Navidrome. The Listenbrainz user token is the token you created for LZE_TOKEN earlier. Find your Plex Token and make note of the URL and Port used to connect to your Plex instance. Add these values to the environment section in the docker-compose.yml you created. ~/msData/docker-compose.yml - PLEX_URL=http://192.168.0.101:32400 - PLEX_TOKEN=6c0ihz8j7__f5r18oa0zm8 # optional, restrict scrobbling to a list of comma-delimited users #- PLEX_USERS_ALLOW=myPlexUsername Restart multi-scrobbler to create the new Source. You may wish to refer to the User and Library defaults/filtering in the Plex Source docs for a more granular setup. If you are already scrobbling to Last.fm and wish to mirror your scrobbling activity to one or more other Clients, use this Source. If, instead, you want to scrobble from multi-scrobbler to Last.fm then see the Last.fm tab in the Setup Clients section below. Register for an API account at Last.fm. Use the following for Callback URL: http://192.168.0.100:9078/lastfm/callback After account creation make note of the Api Key and Secret that are displayed. Create a new File named lastfm.json in the ./config directory that will be used with your docker-compose.yml stack and copy the below contents, replacing placeholders with the data you got from Last.fm API account creation: ~/msData/config/lastfm.json [ { \"name\": \"myLastFmSource\", \"configureAs\": \"source\", \"data\": { \"apiKey\": \"MY_API_KEY_PLACEDHOLDER\", \"secret\": \"MY_SECRET_PLACEHOLDER\", \"redirectUri\": \"http://192.168.0.100:9078/lastfm/callback\" } } ] Later, after starting multi-scrobbler, visit the dashboard at http://192.168.0.100:9078 and click (Re)authenticate on the Last.fm (Source) card to authorize multi-scrobbler to use your account. Monitoring will begin automatically after authorization is complete.","s":"Setup Sources","u":"/multi-scrobbler/quickstart/","h":"#setup-sources","p":392},{"i":399,"t":"Clients are services that store scrobbles. Multi-scrobbler will scrobble all listening activity from the Sources you configured to all Clients you configure here. Maloja Last.fm Koito Setup a Maloja server if you have not already done this. Maloja Setup Intructions Using Maloja's example docker-compose.yml: ~/malojaData/docker-compose.yml loading... View on GitHub Uncomment environment and add MALOJA_FORCE_PASSWORD=CHANGE_ME to set an admin password Start the container: ~/malojaData docker compose up -d Navigate to the Admin Panel (Cog in upper-right corner) -> API Keys (or at http://192.168.0.100:42010/admin_apikeys) Create a New Key and then copy the generated key value Finally, add these values to the environment section in the docker-compose.yml you created for multi-scrobbler earlier. ~/msData/docker-compose.yml - MALOJA_URL=http://192.168.0.100:42010 - MALOJA_API_KEY=myApiKey Register for an API account at Last.fm. Use the following for Callback URL: http://192.168.0.100:9078/lastfm/callback After account creation use the displayed information and add these values to the environment section in the docker-compose.yml you created for multi-scrobbler earlier. ~/msData/docker-compose.yml - LASTFM_API_KEY=myApiKey - LASTFM_SECRET=myApiSecret Setup a Koito server if you have not already done this. Create (or get) an API Key From your Koito server dashboard navigate to Settings (bottom-left icon) => API Keys Create a new Key (or use an existing) and Copy the key using the copy icon to the right of the key EX pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL Take note of your Koito username (used below as myUser) Determine your Koito URL This is the URL you use to access your Koito dashboard OR whatever URL is accessible from your multi-scrobbler instance. EX dashboard at http://192.168.0.100:4110 => replace myURL below with http://192.168.0.100:4110 More info on the URL to use is the full docs Add/Substitute values above into these examples values and add them to the environment section in the docker-compose.yml you created for multi-scrobbler earlier. ~/msData/docker-compose.yml - KOTIO_TOKEN=myToken - KOTIO_USER=myUser - KOITO_URL=myURL tip Ensure that Koito is configured to allow requests from multi-scrobbler! In Koito config set KOITO_ALLOWED_HOSTS to the IP the multi-scrobbler dashboard is accessible from.","s":"Setup Clients","u":"/multi-scrobbler/quickstart/","h":"#setup-clients","p":392},{"i":401,"t":"tip If you are running your multi-scrobbler container on a Linux host see these instructions for setting proper file permissions. From the same directory as the docker-compose.yml you created earlier start the container: ~/msData docker compose up -d You're done! Multi-scrobbler is now running. It will monitor the sources you configured and scrobble to clients you set up. Visit http://192.168.0.100:9078 to see the dashboard where configured Sources/Clients show current status and authentication options display statistics about discovered/scrobbled tracks and Now Playing status a real-time log shows multi-scrobbler's activity","s":"Start Multi-Scrobbler","u":"/multi-scrobbler/quickstart/","h":"#start-multi-scrobbler","p":392},{"i":403,"t":"See more advanced docker options as well as other install methods in the Installation docs Review the Configuration docs Learn about how to configure multi-scrobbler using files for more complicated Source/Client scenarios See all available Sources and Clients alongside configuration examples Learn how to set up notification webhooks Check out the kitchensink example Setup Scrobble Enhancements with Musicbrainz to automatically correct and fill in missing track information for your scrobbles Consult the FAQ for solutions to common problems","s":"Next Steps","u":"/multi-scrobbler/quickstart/","h":"#next-steps","p":392},{"i":406,"t":"Currently, multi-scrobbler does not have any databases or dependencies that require additional interaction/consideration when updating. The majority of major/minor version releases introduce only new functionality but occasionally may also include breaking changes in behavior or configuration. These changes, and how to update configs accordingly, are detailed in Github Release Notes. It is recommended to check this page before upgrading. Alternatively, multi-scrobbler version can be pinned using git tags or docker image tags that match release versions IE foxxmd/multi-scrobbler:0.9.7","s":"Updating","u":"/multi-scrobbler/updating/","h":"#updating","p":404},{"i":408,"t":"Docker Docker Compose docker image pull foxxmd/multi-scrobbler:latest docker container stop multi-scrobbler docker container rm multi-scrobbler docker run --name multi-scrobbler ... The last command is the same as the command used to initialy run multi-scrobbler. docker compose pull docker compose up -d","s":"Docker","u":"/multi-scrobbler/updating/","h":"#docker","p":404},{"i":410,"t":"Assuming the repository was used for initial installation with git clone, update by pulling the latest commit: git pull and restart multi-scrobbler.","s":"Nodejs","u":"/multi-scrobbler/updating/","h":"#nodejs","p":404},{"i":412,"t":"A javascript app to scrobble music you listened to, to Maloja, Last.fm, ListenBrainz, and Koito. Supports scrobbling from many Sources Azuracast Deezer Google Cast (Chromecast) Icecast Jellyfin JRiver Kodi Koito Last.fm Last.fm (Endpoint) ListenBrainz ListenBrainz (Endpoint) Maloja Mopidy MPD (Music Player Daemon) MPRIS (Linux Desktop) Musikcube Plex Rocksky Spotify Subsonic-compatible APIs (like Airsonic and Navidrome) teal.fm WebScrobbler VLC Yamaha MusicCast Youtube Music Supports scrobbling to many Clients Koito Last.fm ListenBrainz Maloja Rocksky teal.fm Enhance/correct scrobble data with search patterns, built-in corrections, or the Musicbrainz database Monitor status of Sources and Clients using webhooks (Gotify, Ntfy, Apprise) or healthcheck endpoint Supports Now Playing for scrobble Clients Supports configuring for single or multiple users (scrobbling for your friends and family!) Web server interface for stats, basic control, and detailed logs Graceful network and client failure handling (queued scrobbles that auto-retry) Smart handling of credentials (persistent, authorization through app) Easy configuration through ENVs or JSON Install using Docker images for x86/ARM or locally with NodeJS Quick Start Guide Why should I use this over a browser extension and/or mobile app scrobbler? Platform independent -- Because multi-scrobbler communicates directly with service APIs it will scrobble everything you play regardless of where you play it. No more need for apps on every platform you use! Open-source -- Get peace of mind knowing exactly how your personal data is being handled. Track your activity regardless of where you listen -- Scrobble from many Sources to one Client with ease and without duplicating tracks. Manage scrobbling for others -- Scrobble for your friends and family without any setup on their part. Easily silo sources to specific clients to keep plays separate. Standardize your data -- Match your scrobbles with the Musicbrainz database to ensure scrobbled data is as correct and rich as possible. But I already scrobble my music to Last.fm/ListenBrainz, is multi-scrobbler for me? Yes! You can use Last.fm as a Source or Listenbrainz as a Source to forward scrobbles from your profile to any other Client! That way you can keep your current scrobble setup as-is but still get the benefit of capturing your data to a self-hosted location. Use the Last.fm tab in the Quickstart Sources to get started.","s":"Overview","u":"/multi-scrobbler/","h":"","p":411},{"i":414,"t":"You set up configurations for one or more Sources and one or more Clients. MS monitors all of your configured Sources. When new tracks are played by a Source MS grabs that information and then sends it (scrobbles it) to all Clients that Source is configured to forward to.","s":"How Does multi-scrobbler (MS) Work?","u":"/multi-scrobbler/","h":"#how-does-multi-scrobbler-ms-work","p":411},{"i":416,"t":"A Source is a data source that contains information about music you are playing or have listened to, like a desktop player, web music player, or cloud music service. Examples are Spotify, Jellyfin, Plex, Youtube Music, Navidrome, etc... Source configurations consist of: A friendly name. Any data needed to communicate or authenticate with the Source. An optional list of Client names that the Source should scrobble to. If omitted the Source also scrobbles to all configured Clients.","s":"Source","u":"/multi-scrobbler/","h":"#source","p":411},{"i":418,"t":"A Client is an application that stores the historical information about what music you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz... Client configurations consist of: A friendly name. Any data needed to communicate or authenticate with the Client.","s":"Client","u":"/multi-scrobbler/","h":"#client","p":411},{"i":420,"t":"See the Quick Start Guide","s":"Quick Start","u":"/multi-scrobbler/","h":"#quick-start","p":411},{"i":422,"t":"See the Installation documentation","s":"Installation","u":"/multi-scrobbler/","h":"#installation","p":411},{"i":424,"t":"See the Configuration documentation","s":"Configuration","u":"/multi-scrobbler/","h":"#configuration","p":411},{"i":426,"t":"A status page with statistics, recent logs, and some runtime configuration options can be found at http://localhost:9078 Output is also provided to stdout/stderr as well as file if specified in configuration. On first startup you may need to authorize Spotify and/or Last.fm by visiting the callback URL (which can also be accessed from the status page). Visit the status page above to find the applicable link to trigger this.","s":"Usage","u":"/multi-scrobbler/","h":"#usage","p":411},{"i":428,"t":"Having issues with connections or configuration? Check the FAQ before creating an issue!","s":"Help/FAQ","u":"/multi-scrobbler/","h":"#helpfaq","p":411},{"i":430,"t":"Detailed architecture and development guides for Sources/Clients","s":"Development","u":"/multi-scrobbler/","h":"#development","p":411},{"i":432,"t":"MIT","s":"License","u":"/multi-scrobbler/","h":"#license","p":411},{"i":434,"t":"A Client is an application that stores the historical information about what songs you have played (scrobbles). Examples are Maloja, Last.fm, Listenbrainz...","s":"Overview","u":"/multi-scrobbler/configuration/clients/","h":"","p":433},{"i":436,"t":"Name Now Playing Last.fm ✅ Listenbrainz ✅ Koito ❌ Maloja ❌ Rocksky ❌ Teal.fm ❌","s":"Clients","u":"/multi-scrobbler/configuration/clients/","h":"#clients","p":433},{"i":439,"t":"If multi-scrobbler is unable to submit a scrobble to a Client then it places the scrobble into a queue which is retried every 5 minutes for a number of times before it gives up. After it stops automatically retrying the scrobble still exists and can be retried from the dashboard. Dead scrobbles persist between restart so you will never lose a scrobble that hasn't been successfully submitted yet.","s":"Dead Scrobbles","u":"/multi-scrobbler/configuration/clients/","h":"#dead-scrobbles","p":433},{"i":441,"t":"Multi-scrobbler can report the currently playing tracks it is monitoring to some Scrobble Clients via their individual Now Playing functionality. Now Playing is default enabled for all Clients that support it. The behavior multi-scrobbler uses for determining Now Playing reporting: Now Playing can be explicitly enabled or disabled globally using ENV NOW_PLAYING=true or NOW_PLAYING=false This only affects Clients that don't have behavior set via File/AIO (below) Now Playing will be only be reported to the same Clients a Source is configured to scrobble to A Source's Player status must be Playing, IE active, for reporting to occur This status can be verified via Player UI on the Dashboard If multiple Sources having active Players then the scrobble Client will default to reporting the track based on Source configuration name, alphabetically This is the name property set in File or AIO source configs Clients can customize the Now Playing behavior individually using File or AIO source configs: CONFIG_DIR/lastfm.json [ { \"name\": \"myLastFmClient\", \"configureAs\": \"client\", \"data\": { // ... }, \"options\": { // disable or enable //\"nowPlaying\": true // // OR define a list of Source *config* names that should be allowed to report Now Playing // order of the list determines priority for reporting Now Playing //\"nowPlaying\": [\"mySpotify1\",\"myJellyfin2\"] } }, ]","s":"Now Playing","u":"/multi-scrobbler/configuration/clients/","h":"#now-playing","p":433}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/2",[0,4.067,1,4.067,2,6.286,3,4.265,4,1.383]],["t/4",[0,1.582,4,1.494,5,0.824,6,1.559,7,0.664,8,1.875,9,1.299,10,2.231,11,3.694,12,2.289,13,2.779,14,1.42,15,1.562,16,2.585,17,2.214,18,3.29,19,1.476,20,1.522,21,0.73,22,1.295,23,1.647,24,1.836,25,1.629,26,1.239,27,1.836,28,2.18,29,1.021,30,1.021,31,0.509,32,1.532,33,1.192,34,1.384,35,1.522,36,1.354,37,2.009,38,1.192,39,2.968,40,2.423,41,1.035,42,2.348,43,1.282,44,3.175,45,1.76,46,2.211,47,4.119,48,4.119,49,1.08,50,1.114,51,0.632,52,0.306,53,0.545,54,1.08,55,1.151,56,1.08,57,1.647,58,1.647,59,1.836,60,2.949,61,1.151,62,0.866,63,1.354,64,0.815,65,2.675,66,3.757,67,1.546,68,3.694,69,1.026,70,2.04,71,1.836,72,1.098,73,1.747,74,2.317,75,2.869,76,2.045,77,3.291,78,3.143,79,2.164,80,3.143,81,1.793,82,3.143,83,3.143,84,1.558,85,1.659,86,1.098,87,1.15,88,1.429,89,2.423,90,0.799,91,1.292,92,1.151,93,1.151,94,1.114,95,2.12,96,1.647,97,1.906,98,1.546,99,1.582,100,2.818,101,1.295,102,3.431,103,3.143,104,1.063,105,1.394,106,0.815,107,0.904,108,1.292,109,1.192,110,1.836,111,1.647,112,1.836,113,1.647,114,1.647,115,1.429,116,1.083,117,0.524,118,2.211,119,2.317,120,2.211,121,2.445,122,1.97,123,2.818,124,1.429,125,1.647,126,1.836,127,1.647,128,1.836,129,0.489,130,1.215,131,1.114,132,1.429,133,1.647,134,1.836,135,0.683,136,0.672,137,1.647,138,1.151,139,1.08,140,0.672,141,1.647,142,2.513,143,1.647,144,1.522,145,1.429,146,1.522,147,2.499,148,1.836,149,1.647,150,1.049,151,1.836,152,1.522,153,1.647,154,1.647,155,3.037,156,2.818,157,2.818,158,2.818,159,1.647,160,2.604,161,1.836,162,1.068,163,1.429,164,1.114,165,1.429,166,1.192,167,1.647,168,1.522,169,1.836,170,0.785,171,1.836,172,2.445,173,1.619,174,2.317,175,1.647,176,1.795,177,1.522,178,1.522,179,1.647,180,1.836,181,1.647,182,1.836,183,0.946,184,0.848,185,1.522,186,1.354]],["t/6",[4,1.669,5,1.176,6,2.021,7,0.627,19,1.708,34,1.601,72,2.405,76,2.888,89,4.05,107,3.388,130,1.716,187,3.827,188,2.521,189,5.116,190,5.287,191,6.175,192,2.837,193,4.845]],["t/8",[12,4.43,52,1.329,89,4.688,130,1.986,194,5.377,195,5.607,196,4.314]],["t/10",[4,1.393,7,0.791,9,1.442,16,2.191,17,1.78,22,2.23,28,2.153,41,0.569,43,0.879,44,2.552,67,4.006,69,1.522,76,2.271,81,2.356,87,1.982,122,3.393,129,1.926,131,3.284,162,2.416,197,2.356,198,6.369,199,2.402,200,6.002,201,2.552,202,4.854,203,4.486,204,7.3,205,4.211,206,5.624,207,4.532,208,2.664,209,3.147,210,3.809,211,3.515,212,3.093,213,2.725,214,5.413,215,4.854,216,5.413,217,5.413,218,5.413,219,5.413,220,5.413,221,5.413,222,5.413,223,5.413,224,5.413,225,5.413,226,5.413,227,5.413,228,5.413]],["t/12",[0,1.823,4,1.396,5,0.28,7,0.77,8,2.322,9,1.738,10,2.109,14,1.589,15,1.695,17,0.714,19,1.321,25,1.939,31,1.675,34,1.314,37,0.895,41,1.046,43,1.124,44,2.561,45,1.99,49,2.739,50,1.318,51,1.245,52,1.087,53,1.131,54,1.278,66,3.197,68,1.948,69,1.678,70,1.41,92,1.362,101,2.488,104,0.387,106,2.68,117,0.768,129,0.965,130,0.541,197,0.946,199,0.964,209,0.946,213,1.093,229,8.496,230,1.639,231,5.296,232,1.318,233,2.942,234,1.8,235,3.621,236,1.487,237,4.868,238,1.069,239,1.8,240,1.948,241,1.024,242,3.621,243,6.204,244,3.552,245,2.351,246,1.466,247,1.948,248,1.528,249,2.172,250,1.639,251,3.621,252,4.503,253,1.823,254,2.197,255,2.351,256,2.195,257,7.314,258,3.623,259,1.885,260,2.533,261,3.621,262,3.621,263,3.188,264,3.879,265,2.172,266,2.172,267,1.176,268,2.172,269,2.172,270,2.739,271,1.465,272,0.983,273,1.8,274,1.528,275,2.172,276,1.41,277,3.621,278,3.621,279,2.172,280,1.003,281,1.8,282,2.172,283,1.362,284,1.278,285,2.172,286,2.172,287,2.919,288,1.8,289,1.528,290,2.172,291,2.443,292,2.172,293,2.172,294,2.172,295,1.024,296,1.147,297,1.69,298,2.172,299,1.707,300,2.172,301,3.621]],["t/14",[3,3.216,4,1.043,5,0.786,7,0.711,9,1.623,25,1.811,35,5.049,41,0.988,105,2.704,115,2.29,116,1.601,129,2.297,130,1.947,141,5.464,201,4.064,211,3.956,263,4.124,302,5.27,303,6.344,304,6.399,305,5.073,306,6.093,307,5.76,308,3.067,309,5.464,310,6.093,311,6.093,312,5.464,313,2.934,314,5.049]],["t/16",[5,1.068,7,0.754,9,1.782,15,1.39,16,2.707,32,2.488,56,3.934,86,2.336,87,2.449,116,1.758,143,5.997,147,4.057,236,2.135,280,3.088,315,3.152,316,3.717,317,5.844,318,5.542,319,6.688,320,4.343,321,3.621,322,3.152,323,8.071,324,6.688,325,4.057,326,3.446,327,6.688,328,4.931,329,5.203]],["t/18",[5,0.994,6,1.708,52,1.285,53,1.336,90,3.354,166,5.004,176,4.403,330,4.533,331,6.91,332,3.354,333,4.172,334,3.065]],["t/20",[4,1.093,5,0.918,6,1.173,14,1.244,15,0.726,19,1.693,25,1.039,34,1.005,41,1.068,43,1.156,52,1.064,53,1.107,64,1.551,76,1.466,85,1.845,86,1.221,90,2.779,104,1.432,129,1.41,130,1.775,131,2.121,136,2.338,147,4.319,162,1.847,166,5.226,167,3.135,168,5.901,170,2.261,172,5.539,173,3.669,174,3.902,175,3.135,176,4.371,177,2.897,178,5.291,179,3.135,181,3.135,183,1.801,184,1.614,185,2.897,186,2.578,189,3.873,231,3.723,263,4.038,280,1.614,321,1.892,328,2.578,329,2.719,332,2.779,335,3.135,336,4.967,337,2.897,338,4.146,339,2.578,340,1.943,341,2.897,342,2.191,343,5.292,344,3.496,345,3.496,346,3.496,347,3.496,348,4.385,349,3.723,350,4.745,351,3.496,352,3.496,353,3.496,354,3.496,355,3.496,356,4.745,357,3.496,358,5.292,359,4.385,360,3.902,361,3.496,362,3.496,363,3.496,364,1.801,365,3.496,366,3.496]],["t/22",[3,3.026,5,0.739,7,0.522,11,6.734,13,3.868,19,1.161,31,1.59,39,3.104,81,2.496,86,2.002,102,4.034,104,1.02,108,4.034,162,1.487,176,3.276,190,3.594,193,4.034,199,3.332,238,2.821,248,4.034,289,4.034,332,2.496,334,2.28,338,4.876,348,4.751,367,7.365,368,5.733,369,4.939,370,4.46,371,4.751,372,2.702,373,9.225,374,3.594,375,4.227,376,5.141,377,7.51,378,4.555,379,7.51,380,4.46,381,5.733,382,3.868,383,5.733,384,5.733,385,4.751,386,4.751,387,5.141,388,2.405,389,2.76]],["t/24",[0,2.085,4,0.709,5,0.534,7,0.804,14,0.807,17,1.362,31,1.149,32,3.055,34,1.139,37,1.706,41,0.63,43,1.146,52,1.29,53,1.341,72,1.447,73,2.302,79,1.838,86,2.096,97,3.64,106,2.663,129,1.879,162,2.485,183,2.134,188,2.583,192,1.706,193,2.914,213,3.02,230,1.875,236,2.252,253,2.085,254,2.513,267,2.242,296,2.187,315,3.646,334,1.648,364,4.23,390,2.134,391,5.689,392,2.597,393,3.433,394,3.433,395,4.973,396,1.62,397,2.302,398,2.69,399,3.715,400,3.715,401,2.914,402,1.706,403,3.715,404,2.134,405,3.014,406,3.222,407,6.387,408,5.381,409,4.222,410,4.142,411,4.142,412,4.142,413,3.054,414,6.001,415,6.001,416,4.142,417,4.142,418,6.001,419,4.142,420,2.597,421,2.038,422,3.715,423,2.69]],["t/26",[6,1.955,8,1.929,9,1.829,10,1.752,14,1.525,15,1.427,19,1.705,25,2.041,31,1.392,32,1.867,41,1.055,43,1.115,69,1.056,79,2.226,86,1.752,104,1.222,117,0.873,135,2.555,136,2.514,140,1.837,162,2.031,170,2.934,183,4.034,236,1.602,260,2.104,299,3.237,364,2.585,391,5.357,403,4.499,407,5.342,408,4.499,424,5.017,425,4.499,426,3.306,427,5.342,428,5.342,429,5.342,430,5.342,431,5.342,432,5.064,433,2.555,434,2.597]],["t/28",[5,0.843,7,0.595,32,2.432,34,1.551,52,1.362,53,1.416,67,3.217,79,3.625,139,3.846,162,2.118,188,2.99,230,2.959,236,2.087,332,2.846,334,2.601,390,3.368,435,2.215,436,4.223,437,3.451,438,4.245,439,2.901,440,5.418,441,3.966,442,4.098,443,3.966,444,5.863,445,3.735,446,4.6,447,3.148,448,6.538]],["t/30",[6,1.712,7,0.445,8,1.88,9,1.798,10,1.708,14,1.505,15,1.402,19,1.687,22,2.015,25,2.006,31,1.357,41,1.051,43,1.096,69,1.029,79,2.994,101,2.015,104,1.201,115,1.978,116,1.774,117,0.858,119,4.976,121,5.249,122,4.23,135,2.511,136,2.471,140,1.79,162,1.268,164,4.094,192,2.015,199,2.994,200,3.606,236,2.467,260,2.051,299,3.181,364,2.52,426,3.249,433,2.511,434,2.552,446,5.436,449,4.891,450,4.891,451,3.441,452,4.843,453,4.891,454,4.891,455,3.804,456,4.891,457,3.804,458,3.299,459,4.385,460,4.385,461,6.051]],["t/32",[4,1.145,5,0.862,7,0.609,28,2.66,34,1.573,52,1.115,53,1.16,79,3.676,86,2.893,87,2.449,170,2.857,188,3.033,230,3.027,296,3.53,332,2.911,334,2.66,390,3.446,435,2.806,437,3.53,438,4.343,439,2.968,462,4.376,463,4.192,464,4.931,465,4.343,466,3.53]],["t/34",[6,1.724,8,1.904,9,1.813,10,1.73,14,1.515,15,1.414,19,1.696,25,2.023,31,1.374,32,1.843,41,1.053,43,1.105,69,1.042,86,1.73,104,1.211,115,1.995,116,1.789,117,0.866,135,2.533,136,2.492,140,1.813,162,2.017,170,3.323,183,4.008,260,2.077,299,3.209,426,3.277,427,5.295,428,5.295,429,5.295,430,5.295,431,5.295,433,2.533,434,2.574,435,1.678,462,2.241,464,3.652,467,4.953,468,6.975,469,4.953,470,4.953,471,6.975,472,4.441,473,6.807,474,4.592]],["t/36",[4,0.991,7,0.688,19,1.172,22,2.385,37,3.114,41,0.608,42,4.052,43,0.94,44,3.563,45,2.474,49,3.406,50,4.585,56,3.406,64,2.569,86,2.64,97,3.512,106,2.569,129,1.542,162,1.502,184,2.673,188,2.12,236,2.413,253,2.914,254,3.512,256,2.729,259,2.343,313,3.639,364,4.596,392,3.63,396,2.264,398,3.76,432,5.573,475,5.192,476,5.192,477,5.192,478,4.798,479,4.074,480,4.504,481,5.192,482,5.192,483,5.192,484,4.269,485,5.192,486,5.192,487,5.192,488,5.192,489,5.79,490,3.218,491,4.504]],["t/38",[6,1.997,8,2.053,9,1.908,10,1.865,14,1.575,15,1.488,19,1.749,25,2.129,31,1.481,32,1.986,41,1.064,42,2.57,43,1.163,60,2.465,69,1.124,104,1.275,115,2.1,116,1.883,117,0.911,135,2.665,136,2.623,140,1.955,162,2.097,163,5.572,164,4.345,165,5.572,236,1.704,260,2.239,299,3.376,364,2.751,426,3.449,433,2.665,434,2.709,492,5.339,493,4.788,494,4.788,495,6.424]],["t/40",[5,0.736,6,0.857,7,0.519,13,3.85,19,1.156,21,2.27,30,2.149,33,3.705,34,1.829,52,0.645,53,0.671,65,2.511,69,0.814,76,1.622,79,1.716,86,1.351,87,1.416,109,3.705,117,1.202,188,2.089,192,1.593,197,1.683,206,4.439,230,1.75,231,4.015,244,3.357,250,1.75,254,2.346,256,1.823,270,2.275,316,2.149,326,1.993,334,1.538,372,1.823,388,1.622,390,1.993,405,1.652,421,1.903,436,1.75,439,3.322,451,2.721,462,1.75,496,4.697,497,1.77,498,4.015,499,3.577,500,2.21,501,4.251,502,2.041,503,2.872,504,3.468,505,3.205,506,4.542,507,3.85,508,3.468,509,2.424,510,3.468,511,4.439,512,4.729,513,2.149,514,3.205,515,3.008,516,3.468,517,3.205,518,1.103,519,6.782,520,2.851,521,3.867,522,1.652,523,2.609,524,2.851,525,2.851,526,2.275,527,4.015,528,1.786,529,5.62,530,3.008,531,2.721,532,3.205,533,5.117,534,2.609,535,3.468,536,3.867,537,3.867,538,2.511,539,3.468,540,2.721,541,3.008,542,1.683,543,3.468,544,3.008,545,2.851,546,3.468,547,2.851,548,3.867,549,3.867,550,3.867,551,3.205,552,2.511,553,3.867,554,3.008,555,2.041]],["t/42",[7,0.782,73,3.944,79,3.812,87,2.598,236,2.265,315,3.344,364,3.656,392,5.385,402,2.923,496,5.434,501,5.385,556,4.448,557,7.096,558,7.096,559,7.096,560,6.363,561,7.096,562,3.944,563,5.88]],["t/45",[6,1.65,7,0.585,8,1.755,9,1.713,10,1.594,14,1.451,15,1.336,19,1.637,25,1.912,31,1.266,41,1.04,43,1.044,52,1.072,53,1.115,69,0.961,79,3.587,104,1.144,117,0.818,135,2.393,136,2.355,140,1.671,192,2.649,236,1.457,250,2.066,253,2.297,259,1.847,260,1.915,299,3.031,315,2.151,364,3.837,426,3.096,433,2.393,434,2.432,435,1.546,496,3.783,501,5.068,523,3.079,526,2.685,562,2.537,563,3.783,564,6.392,565,4.339,566,5.003,567,5.767,568,2.964,569,5.793,570,3.551,571,3.079,572,4.093,573,3.079,574,4.093,575,4.093,576,4.565,577,4.093,578,4.565,579,4.093,580,6.431,581,6.431]],["t/47",[5,0.523,7,0.741,13,3.987,19,1.197,22,1.671,30,2.254,33,4.527,34,1.665,36,2.991,51,1.395,52,0.985,53,1.025,65,2.634,69,0.854,76,1.701,79,1.8,86,2.064,109,3.837,117,1.2,147,2.46,162,1.052,188,2.163,192,1.671,197,1.766,206,3.155,230,1.835,244,2.386,250,1.835,254,2.46,322,1.912,326,2.09,334,1.613,372,1.912,390,2.09,402,1.671,405,1.733,421,1.996,436,1.835,439,3.399,451,2.854,462,1.835,464,2.991,479,4.905,498,2.854,501,3.704,502,2.141,503,2.974,504,3.637,505,4.897,506,4.939,507,4.703,508,3.637,509,2.542,510,3.637,511,4.597,512,4.897,513,2.254,514,3.361,515,3.155,516,3.637,517,3.361,518,1.156,520,2.991,522,1.733,523,2.736,524,2.991,525,2.991,526,2.386,527,4.158,528,1.873,529,5.777,530,3.155,531,2.854,532,3.361,562,2.254,566,4.597,570,3.155,582,5.733,583,3.637,584,3.637,585,5.909,586,4.056,587,2.254,588,4.056,589,2.991,590,3.361,591,4.056,592,4.056,593,4.056,594,4.056,595,4.056,596,3.155,597,2.991]],["t/49",[16,2.872,41,0.902,79,3.149,129,1.89,184,4.266,188,3.145,253,3.571,318,5.88,392,4.448,396,2.775,455,5.52,501,5.385,528,3.966,532,5.88,598,4.992,599,7.096,600,4.992,601,3.571,602,5.88]],["t/52",[6,1.603,7,0.658,8,1.664,9,1.649,10,1.511,14,1.409,15,1.287,19,1.598,25,1.841,31,1.2,41,1.031,43,1.006,52,1.032,53,1.074,64,1.92,69,0.911,79,3.502,104,1.102,117,0.787,135,2.304,136,2.267,138,2.712,140,1.584,184,1.998,192,2.551,250,1.958,253,2.178,259,1.751,260,1.815,299,2.919,426,2.981,433,2.304,434,2.342,435,1.466,501,4.948,507,2.919,513,2.405,523,2.919,526,2.545,528,1.998,564,5.876,565,4.177,566,5.625,567,5.553,568,2.81,569,5.625,571,4.177,572,3.88,573,2.919,574,3.88,575,3.88,577,3.88,603,5.325,604,4.327,605,4.327,606,2.81,607,4.327,608,4.327,609,4.327,610,3.88,611,6.192,612,5.553,613,5.553,614,5.553,615,5.553,616,5.553,617,3.366]],["t/54",[7,0.477,33,4.595,34,1.845,40,4.712,42,2.524,76,2.968,77,4.127,79,3.554,81,3.08,86,3.294,101,2.16,170,2.24,237,3.689,289,4.979,388,2.968,389,2.524,405,2.24,436,2.372,439,2.326,451,3.689,462,2.372,518,2.631,528,2.421,540,3.689,618,3.18,619,4.078,620,4.701,621,8.956,622,7.183,623,4.078,624,3.866,625,4.345,626,5.243,627,4.078,628,5.243,629,5.243,630,4.345,631,5.201,632,4.345,633,5.243,634,3.537,635,5.243,636,2.767,637,5.243,638,3.286]],["t/56",[1,1.125,5,0.713,6,1.889,7,0.203,14,1.195,16,0.904,19,1.726,34,0.902,40,2.795,41,1.095,42,2.288,52,0.373,53,0.387,62,2.607,67,1.1,69,1.392,81,2.408,87,1.357,104,1.517,117,1.084,118,2.609,120,2.609,122,1.401,124,2.884,130,1.649,140,0.818,144,1.852,154,2.004,155,2.734,156,4.261,157,3.325,158,3.325,159,2.004,162,1.902,164,3.721,170,2.363,176,2.715,184,1.032,200,1.648,207,2.324,211,1.451,233,1.21,236,0.713,238,3.255,250,1.011,253,1.125,267,2.007,280,2.832,296,1.18,338,1.451,339,5.611,389,1.076,435,2.078,439,1.645,446,1.572,452,1.401,474,1.508,518,0.637,540,1.572,556,1.401,587,1.242,620,2.004,622,2.004,630,3.073,636,1.18,639,2.235,640,5.501,641,3.608,642,3.708,643,3.708,644,5.531,645,2.734,646,2.734,647,2.884,648,2.004,649,5.501,650,3.325,651,3.325,652,1.852,653,2.235,654,2.235,655,2.004,656,4.261,657,2.004,658,4.261,659,2.004,660,2.004,661,2.004,662,2.004,663,2.004,664,2.235,665,2.235,666,2.004,667,4.261,668,4.261,669,3.343,670,3.325,671,2.004,672,2.004,673,2.884,674,2.004,675,2.609,676,2.501,677,2.004,678,1.852,679,1.852,680,2.235,681,2.235,682,2.235,683,1.738,684,2.004,685,1.508,686,1.738,687,2.004,688,2.004,689,2.004,690,2.004,691,1.852,692,2.004,693,2.004,694,2.004,695,2.004,696,2.004,697,3.325,698,2.004,699,2.004]],["t/58",[6,1.837,14,0.665,15,0.709,19,0.691,41,1.107,81,1.486,104,1.658,113,3.061,117,1.184,118,3.657,120,3.657,122,2.14,124,2.656,162,2.15,164,4.592,170,3.005,280,1.576,435,1.156,446,2.402,452,2.14,474,2.303,526,2.008,528,1.576,540,2.402,630,2.829,648,3.061,649,6.308,650,4.66,651,4.66,655,3.061,656,5.643,657,3.061,658,5.643,659,3.061,660,3.061,661,3.061,662,3.061,663,3.061,666,3.061,667,5.643,668,5.643,669,4.427,670,4.66,671,3.061,672,3.061,673,4.043,674,3.061,675,2.402,677,3.061,678,2.829,679,2.829,684,3.061,685,2.303,686,2.656,687,3.061,688,3.061,690,3.061,691,2.829,692,3.061,693,3.061,694,3.061,695,3.061,696,3.061,697,4.66,698,3.061,699,3.061,700,3.414,701,3.061,702,3.414,703,3.414,704,3.414,705,3.061]],["t/60",[5,1.137,40,4.36,43,1.204,45,3.166,81,3.226,117,0.942,326,3.819,388,3.699,497,2.299,499,4.646,518,2.113,542,3.226,623,5.766,624,5.465,636,3.912,706,3.731]],["t/62",[34,1.208,40,2.044,41,1.119,42,1.673,52,0.579,81,1.513,104,0.618,230,4.649,236,1.109,317,4.131,325,2.108,332,2.293,388,2.209,389,1.673,391,2.044,436,2.384,462,2.384,496,2.044,513,1.931,582,2.344,624,2.562,636,1.834,706,1.749,707,3.475,708,3.116,709,3.475,710,2.445,711,2.703,712,2.445,713,5.066,714,2.344,715,2.445,716,2.703,717,2.703,718,2.562,719,2.562,720,2.445,721,2.562,722,2.562,723,2.562,724,3.116,725,2.344,726,3.116,727,2.703]],["t/65",[5,1.221,7,0.397,17,2.604,19,0.883,22,1.796,29,2.423,31,1.209,34,1.702,51,2.497,52,1.396,53,1.452,72,1.523,92,2.733,99,3.133,117,1.107,150,2.491,191,3.909,209,1.898,230,3.584,238,2.145,267,2.36,284,2.564,317,2.831,334,2.476,340,2.423,369,2.423,385,3.613,391,2.564,396,1.705,404,2.246,405,1.862,435,1.477,436,1.973,443,2.645,462,1.973,497,2.598,513,2.423,518,2.07,522,1.862,534,2.941,545,3.214,647,3.391,706,3.133,710,3.067,713,4.036,728,2.645,729,4.36,730,3.909,731,2.831,732,4.36,733,2.491,734,6.225,735,3.653,736,3.067,737,3.067,738,3.909,739,2.941,740,3.909,741,5.582,742,3.613,743,4.843,744,4.38,745,3.909,746,3.391,747,4.36,748,2.491,749,4.36,750,4.36,751,4.36,752,3.909,753,2.564,754,4.36]],["t/67",[4,1.268,5,1.137,12,4.119,230,3.354,308,3.731,316,4.119,334,2.948,435,2.987,497,2.735,518,2.514,755,5.527,756,4.646,757,5.465]],["t/69",[1,2.858,4,1.426,5,0.962,6,2.209,7,0.759,9,1.512,14,1.106,19,1.15,22,2.339,34,1.582,41,1.011,43,0.922,52,0.947,53,0.984,67,2.794,69,1.195,94,4.526,104,1.636,117,0.722,280,3.848,315,2.676,342,3.559,402,3.074,466,2.997,509,3.559,675,3.994,676,3.83,758,3.83,759,3.339,760,5.677,761,4.705,762,5.677,763,3.994,764,5.677,765,4.416,766,5.677]],["t/71",[4,0.922,5,0.929,7,0.656,9,1.435,14,1.05,15,1.12,16,2.181,25,1.602,32,2.682,34,1.023,41,1.054,69,1.134,84,3.279,99,2.712,111,4.832,117,0.685,130,1.796,132,4.192,149,4.832,150,4.118,152,5.973,153,4.832,186,3.973,230,2.438,259,2.917,334,2.143,404,2.776,497,2.236,638,3.378,646,3.973,731,3.499,735,3.901,739,3.635,740,7.283,759,3.169,767,5.388,768,4.465,769,4.192,770,5.388,771,5.388,772,7.208,773,7.208,774,5.388,775,3.791,776,5.388,777,5.388]],["t/73",[1,2.651,4,0.901,5,1.108,14,1.026,15,1.094,17,1.731,25,1.565,31,1.461,34,1.754,41,1.033,52,1.183,53,1.231,69,1.108,72,1.839,76,2.977,90,2.293,105,2.337,116,1.866,117,0.67,129,2.139,130,1.769,142,2.713,190,3.301,196,2.851,212,3.009,239,4.364,241,2.482,250,3.633,259,2.132,287,3.301,315,2.482,322,2.482,378,3.195,402,2.17,404,2.713,435,2.404,555,2.78,735,2.209,748,3.009,759,4.722,778,5.267,779,3.195,780,4.364,781,4.723,782,3.42,783,3.705,784,3.883,785,3.883,786,3.553,787,2.927,788,4.723,789,4.097,790,4.723]],["t/75",[4,1.132,5,0.478,7,0.714,14,1.077,15,0.77,17,2.411,25,1.102,31,1.028,32,2.461,34,1.779,41,1.012,43,0.602,52,0.922,53,0.959,69,1.544,74,4.877,76,1.555,86,1.295,87,1.357,90,1.614,101,2.278,105,1.645,115,1.087,116,1.454,117,0.471,129,2.271,130,1.378,142,1.91,150,2.118,162,2.035,173,1.91,196,3.97,212,3.779,234,3.072,239,3.072,241,1.747,250,3.55,259,1.5,264,1.91,287,2.324,308,1.866,313,1.785,315,1.747,322,1.747,378,3.355,405,1.584,409,5.16,433,1.379,497,1.15,518,1.057,638,2.324,710,3.891,711,5.146,735,2.32,736,2.608,737,2.608,746,2.884,759,3.253,765,2.884,775,2.608,781,3.324,782,2.407,783,2.608,784,2.733,785,2.733,786,2.501,787,2.06,788,3.324,789,2.884,790,3.324,791,2.324,792,3.072,793,3.707,794,2.118,795,2.608,796,3.324,797,2.884,798,2.608,799,3.324,800,4.583,801,3.707,802,2.608,803,3.324,804,3.707,805,3.707,806,3.707,807,5.53,808,3.324,809,3.891,810,3.324,811,3.324,812,3.707,813,3.324,814,3.324,815,2.608,816,3.324,817,2.733]],["t/77",[5,0.636,8,1.896,9,1.314,10,1.722,15,1.025,19,1.374,25,1.466,31,1.368,34,1.289,41,1.052,43,1.102,69,1.038,104,1.612,115,1.99,116,2.381,117,0.863,135,2.525,136,2.485,140,1.806,155,5.005,162,2.013,260,2.069,299,3.658,378,2.992,433,2.525,434,2.567,465,3.202,529,4.087,601,2.482,711,6.037,735,2.847,803,6.087,810,4.423,811,6.087,813,4.423,814,6.087,818,4.932,819,2.482,820,8.479,821,4.932,822,4.932,823,4.932,824,4.932,825,4.087,826,4.932,827,6.788]],["t/79",[5,1.185,7,0.776,29,4.739,79,3.111,99,3.528,117,0.891,147,4.252,173,3.612,372,3.304,405,2.995,712,6.466,828,5.809,829,7.01,830,6.286,831,7.01,832,3.896,833,4.005,834,5.809,835,4.123,836,6.286,837,7.01]],["t/81",[7,0.714,16,2.039,29,2.8,41,0.723,52,0.84,53,0.874,84,1.905,97,4.178,104,1.226,106,2.236,201,2.375,236,1.609,238,2.479,244,2.964,259,3.575,267,2.728,284,4.052,342,3.158,359,4.176,395,4.176,398,3.272,439,2.236,466,2.66,509,3.158,542,2.193,562,3.828,601,2.536,685,5.959,712,4.846,713,2.8,735,2.113,757,3.715,782,5.096,830,4.518,838,7.32,839,3.056,840,3.545,841,3.272,842,5.708,843,5.039,844,3.92,845,8.436,846,6.888,847,5.039,848,5.358,849,3.92,850,5.079,851,5.787,852,5.039,853,3.92,854,4.176,855,3.545,856,5.039,857,4.518,858,5.039,859,5.039,860,5.039,861,3.399,862,4.518,863,5.039,864,5.039]],["t/83",[5,0.747,6,1.675,8,2.226,9,1.542,10,2.022,15,1.203,19,1.172,25,1.721,31,1.606,41,1.083,43,1.227,69,1.219,104,1.345,115,2.216,116,1.987,117,0.961,135,2.812,136,2.767,140,2.12,259,2.343,260,2.429,299,2.729,433,2.812,434,2.859,685,3.906,712,4.074,838,6.974,839,3.512,842,4.798,865,5.79,866,5.79,867,7.559,868,7.559]],["t/85",[3,2.94,5,0.718,14,1.085,15,1.157,17,1.831,32,2.072,34,1.057,41,1.021,43,0.904,72,1.945,75,3.276,84,2.106,99,3.708,104,0.991,117,0.708,130,2.058,192,2.294,274,3.918,283,3.491,308,2.803,372,2.625,413,4.106,497,2.561,540,3.918,542,2.424,712,5.809,713,3.095,735,2.336,756,3.491,838,4.615,849,4.332,869,5.569,870,3.918,871,5.569,872,3.918,873,2.424,874,4.332,875,2.94,876,7.367,877,6.842,878,7.367,879,5.569,880,5.569,881,4.332,882,5.569,883,5.569,884,6.606,885,4.615,886,4.106,887,5.569,888,5.569]],["t/87",[3,3.308,4,1.22,5,0.808,7,0.649,12,2.129,14,0.453,15,1.015,17,1.863,18,1.568,19,1.686,22,0.957,28,2.493,31,1.062,32,1.817,34,0.927,41,0.996,43,0.92,44,2.303,45,2.087,52,0.638,53,0.847,55,1.457,69,1.028,72,0.812,74,1.713,75,1.367,90,1.012,91,1.635,99,1.17,101,0.957,104,1.2,106,1.031,115,1.123,116,1.007,117,0.797,129,1.02,130,0.579,139,1.367,145,1.808,176,2.188,192,2.012,196,1.258,201,2.303,209,1.012,212,1.328,230,1.052,241,2.67,250,1.052,264,1.197,270,1.367,280,1.073,284,1.367,302,1.568,303,2.584,304,1.635,305,2.487,307,1.713,308,3.589,321,2.073,330,1.367,333,1.258,334,0.924,386,1.926,388,2.049,397,1.292,402,1.578,421,3.084,439,3.307,484,1.713,497,2.091,498,1.635,500,1.328,518,1.092,522,1.636,526,1.367,528,1.768,542,1.667,544,1.808,555,2.022,565,1.568,596,1.808,706,1.17,714,3.296,715,5.433,716,3.8,722,2.824,748,1.328,755,4.227,758,1.568,809,1.635,849,1.808,870,1.635,874,2.979,889,5.866,890,2.084,891,2.324,892,2.324,893,2.324,894,3.602,895,1.808,896,1.509,897,2.324,898,2.824,899,3.174,900,2.084,901,1.509,902,1.808,903,1.926,904,1.457,905,4.885,906,2.253,907,2.324,908,2.324,909,2.324,910,1.367,911,2.487,912,5.666,913,2.324,914,2.084,915,2.324,916,1.41,917,2.324,918,2.324,919,1.635,920,2.324,921,1.926,922,1.808,923,1.926,924,2.324,925,2.084,926,3.174,927,2.324,928,2.324,929,2.324,930,2.324,931,2.324,932,2.487,933,2.084,934,2.084,935,1.713,936,2.324,937,2.324,938,4.62,939,2.324,940,3.83,941,4.885,942,4.381,943,2.979,944,3.83,945,2.323,946,2.979,947,2.694,948,1.808,949,1.457,950,3.83,951,2.324,952,2.084,953,2.324,954,4.048,955,2.324,956,2.324]],["t/89",[4,0.775,5,0.584,8,1.741,9,1.704,10,1.582,14,0.882,15,1.329,19,0.917,25,1.346,31,1.256,32,1.685,34,1.53,41,1.075,43,1.308,69,0.953,81,1.972,87,1.658,92,2.839,104,1.138,115,1.328,116,1.19,117,0.813,129,1.206,135,2.38,136,2.342,140,1.658,190,2.839,197,1.972,213,3.219,260,1.9,264,2.334,334,1.801,402,1.866,433,2.38,434,2.419,522,3.442,528,2.953,715,6.205,716,3.523,755,4.648,809,3.186,819,2.28,942,5.736,957,4.529,958,4.529,959,5.05,960,4.739,961,4.529,962,3.523,963,4.061,964,4.061,965,4.529,966,4.529,967,3.753,968,4.529,969,4.529,970,6.396,971,6.396,972,6.396,973,6.396]],["t/91",[4,0.994,5,1.123,7,0.793,14,0.771,18,5.108,26,2.671,32,2.817,34,1.73,41,0.885,43,0.643,52,1.262,53,1.313,69,0.833,90,1.724,104,0.705,105,2.576,108,2.786,115,1.161,116,1.041,117,0.738,129,1.547,130,0.987,150,2.262,152,3.281,162,2.091,192,2.832,196,3.143,208,1.948,250,3.649,263,2.09,270,4.957,295,1.866,308,1.993,332,1.724,402,1.631,404,2.991,445,2.262,491,3.08,497,2.132,502,2.09,518,1.129,542,2.527,555,2.09,568,2.571,590,5.697,601,1.993,710,4.085,717,6.947,735,2.435,775,2.786,809,2.786,817,2.919,820,5.207,873,2.527,903,3.281,919,2.786,974,7.572,975,4.812,976,2.482,977,3.959,978,3.08,979,3.959,980,3.959,981,3.55,982,3.55,983,2.09,984,3.55,985,3.55,986,3.281,987,2.329,988,3.55,989,3.55,990,5.806,991,5.806,992,3.959]],["t/93",[5,0.766,8,2.283,9,1.582,10,2.074,15,1.234,19,1.202,25,1.765,31,1.647,41,1.079,43,1.463,69,1.25,104,1.367,115,2.252,116,2.019,117,0.977,135,2.859,136,2.813,140,2.174,162,2.209,260,2.491,299,2.799,433,2.859,434,2.906,717,5.977,988,6.89,989,6.89,993,5.938,994,5.938]],["t/95",[4,0.902,5,0.334,6,0.928,7,0.646,8,0.997,9,0.691,10,0.906,15,0.539,19,0.848,20,2.149,25,0.771,31,0.719,34,1.601,39,1.404,41,1.058,43,0.68,52,1.184,53,1.231,69,1.109,77,1.336,84,0.981,86,0.906,94,1.573,97,1.573,101,1.725,104,0.937,105,1.151,106,1.858,115,1.228,116,1.745,117,0.532,130,1.313,135,1.558,136,1.533,140,0.949,142,2.158,145,3.258,146,3.471,162,1.366,164,3.669,183,3.116,184,2.793,188,1.929,199,2.945,211,1.684,232,1.573,236,2.385,259,1.049,260,1.088,289,1.824,296,1.369,299,1.974,303,2.825,315,1.222,322,1.222,364,3.658,388,1.088,392,1.625,396,1.014,413,3.088,421,2.592,432,1.912,433,1.558,434,1.584,435,2.531,474,3.554,522,3.033,528,1.197,555,1.369,631,3.421,636,4.353,669,3.706,673,4.098,678,4.366,679,3.471,701,2.325,714,2.825,755,2.625,761,3.471,782,1.684,796,2.325,844,3.258,889,3.421,890,2.325,901,1.684,938,1.912,946,2.017,959,4.45,962,3.258,985,2.325,995,2.593,996,2.593,997,2.017,998,1.749,999,2.593,1000,4.188,1001,2.017,1002,2.325,1003,4.188,1004,5.268,1005,2.593,1006,2.593,1007,5.268,1008,2.325,1009,2.325,1010,2.325,1011,2.593,1012,4.789,1013,2.593,1014,4.366,1015,2.593,1016,2.593,1017,2.593,1018,2.593,1019,3.755,1020,3.755,1021,3.755,1022,3.755,1023,3.755,1024,3.755,1025,3.755,1026,4.188,1027,2.325]],["t/97",[1,4.215,4,1.165,7,0.62,41,0.88,52,1.135,53,1.18,86,2.377,87,2.491,101,2.803,106,3.02,115,1.995,130,1.696,183,3.506,184,3.142,199,3.02,322,3.208,333,3.684,451,4.788,513,4.654,631,4.419,718,6.174,733,3.888,848,5.294,889,5.437,1028,3.782,1029,6.103,1030,6.103]],["t/99",[7,0.817,14,1.383,15,1.475,21,2.095,30,2.927,41,0.746,43,1.153,52,1.183,53,1.231,60,2.432,69,1.494,88,4.097,105,2.337,107,2.592,129,2.139,130,1.313,162,2.55,197,2.293,208,2.592,209,2.293,212,3.009,238,2.592,246,2.873,259,2.132,264,4.427,297,4.097,490,2.927,502,2.78,513,2.927,718,5.92,763,3.705,798,3.705,802,3.705,873,2.293,889,3.42,906,3.098,949,3.301,983,2.78,1031,4.364,1032,4.364,1033,6.365,1034,4.175,1035,3.42,1036,3.705,1037,3.301,1038,4.364,1039,5.267,1040,5.267,1041,4.364,1042,5.267,1043,7.098]],["t/101",[5,0.673,8,2.007,9,1.879,10,1.823,14,1.557,15,1.466,19,1.733,25,2.097,31,1.448,41,1.061,43,1.146,69,1.098,86,1.823,104,1.255,115,2.509,116,1.854,117,0.897,129,1.879,135,2.625,136,2.583,140,1.911,162,2.073,183,4.118,184,3.69,199,3.13,260,2.189,299,2.46,433,2.625,434,2.668,718,5.202,1033,4.68,1038,5.846,1044,5.219,1045,5.219,1046,5.219,1047,5.219,1048,7.055,1049,7.055,1050,7.055]],["t/103",[1,3.445,4,1.171,41,0.883,51,2.354,52,1.141,53,1.187,87,2.506,101,2.82,106,3.038,115,2.007,129,2.239,183,3.527,184,3.161,207,4.291,254,4.152,320,5.457,322,3.227,333,3.706,349,4.816,420,4.291,421,3.369,719,6.197,733,3.911,1028,3.805,1029,6.138,1030,6.138,1051,5.673]],["t/105",[7,0.817,14,1.383,15,1.475,21,2.095,30,2.927,41,0.746,43,1.153,52,1.183,53,1.231,60,2.432,69,1.494,105,2.337,107,2.592,129,2.139,162,2.55,187,2.927,197,2.293,208,2.592,209,3.09,212,3.009,238,2.592,246,2.873,259,2.132,264,4.427,297,4.097,320,3.42,490,2.927,502,2.78,719,5.92,763,3.705,798,3.705,802,3.705,873,2.293,906,3.098,949,3.301,983,2.78,1031,4.364,1032,4.364,1034,4.175,1035,3.42,1036,3.705,1037,3.301,1038,4.364,1041,4.364,1052,6.365,1053,4.723,1054,5.267,1055,5.267,1056,5.267,1057,5.267,1058,5.267]],["t/107",[5,0.685,8,2.043,9,1.902,10,1.856,14,1.571,15,1.484,19,1.746,25,2.123,31,1.474,41,1.063,43,1.16,69,1.119,86,1.856,104,1.271,115,2.093,116,1.877,117,0.908,129,1.902,135,2.657,136,2.615,140,1.946,162,2.092,183,4.156,184,3.724,260,2.229,299,2.505,433,2.657,434,2.701,719,5.266,1052,7.233,1059,5.315,1060,5.315,1061,5.315,1062,5.315,1063,7.141,1064,5.918,1065,7.141]],["t/109",[4,1.421,5,1.197,6,1.84,7,0.714,9,2.212,10,1.489,14,1.735,15,1.49,19,1.587,22,1.756,25,2.132,34,1.361,37,2.954,41,1.029,43,0.995,52,0.711,53,0.739,72,1.489,86,1.489,94,2.586,104,1.09,117,0.779,135,2.28,136,2.243,140,1.561,162,1.589,170,2.618,183,3.157,188,1.561,192,1.756,241,2.01,334,1.696,390,2.197,391,5.541,402,1.756,407,4.766,425,3.823,426,3.453,427,4.766,428,4.766,429,4.766,430,4.766,431,4.766,432,4.518,433,2.28,434,2.317,497,1.322,503,2.146,601,2.146,713,2.37,904,2.673,1066,3.823,1067,2.308]],["t/111",[5,1.108,6,1.573,7,0.646,34,1.754,52,1.183,53,1.23,79,3.149,86,2.478,115,2.08,188,3.145,230,3.211,334,2.822,390,3.656,436,4.449,437,3.746,438,4.607,439,3.149]],["t/113",[4,1.185,5,0.893,7,0.832,34,1.607,37,2.854,52,1.155,53,1.201,85,3.656,86,2.419,87,2.536,101,2.854,162,1.796,170,2.959,332,3.015,409,4.873,436,4.137,437,3.656,502,3.656,503,3.486,1068,6.432,1069,6.927,1070,6.927]],["t/115",[4,0.914,5,0.924,7,0.652,8,2.053,9,2.153,10,1.865,14,1.575,15,1.488,19,1.749,25,2.129,31,1.987,34,1.014,41,1.064,43,1.163,69,1.124,101,2.199,104,1.275,115,2.1,116,1.883,117,0.911,130,1.331,135,2.665,136,2.623,140,1.955,162,1.385,260,2.239,332,2.324,433,2.665,434,2.709,437,2.818,819,2.687,1068,5.04,1071,5.339,1072,7.163,1073,4.788,1074,5.339,1075,4.788,1076,5.339,1077,7.163,1078,7.163,1079,5.339]],["t/117",[4,1.575,5,1.129,6,1.94,7,0.726,34,1.747,52,1.049,53,1.091,94,3.816,106,2.791,117,0.8,188,2.919,197,2.738,230,2.847,332,2.738,334,2.502,390,3.241,396,2.46,426,3.029,436,4.39,437,3.321,438,4.085,439,2.791,503,3.166,601,3.166,713,3.496,756,3.943,873,2.738,910,3.7,1080,6.291]],["t/119",[4,0.866,5,1.09,6,1.531,7,0.716,9,2.251,10,1.767,14,1.723,15,1.634,19,1.711,25,2.338,37,2.085,41,1.056,43,1.122,52,0.844,53,0.877,104,1.229,115,2.025,116,1.816,117,0.878,119,5.094,121,5.374,122,4.33,135,2.57,136,2.529,140,1.853,164,4.191,200,3.731,241,2.385,402,2.085,426,3.326,433,2.57,434,2.613,436,3.559,446,4.86,452,4.33,460,4.538,601,2.547,1067,2.739,1081,6.195]],["t/121",[5,1.108,6,1.573,7,0.646,34,1.754,52,1.183,53,1.23,79,3.149,86,2.478,115,2.08,188,3.145,230,3.211,334,2.822,390,3.656,437,3.746,438,4.607,439,3.149,462,4.449]],["t/123",[4,1.222,5,0.685,7,0.819,9,1.416,22,2.189,31,1.474,32,1.977,34,1.531,37,3.323,52,1.438,53,1.495,85,2.805,86,1.856,87,1.946,90,2.313,95,3.585,101,2.189,129,1.416,162,2.092,170,2.27,207,3.331,283,3.331,316,2.954,332,2.313,402,2.189,409,5.024,437,2.805,439,3.169,462,4.071,502,2.805,503,2.675,528,2.454,571,3.585,634,3.585,638,3.331,735,2.229,736,3.739,737,3.739,743,4.134,791,3.331,835,3.126,903,4.404,1068,5.675,1082,5.315,1083,6.404,1084,4.766,1085,3.739,1086,4.766,1087,4.766,1088,5.315,1089,5.315,1090,4.766,1091,4.404,1092,5.315]],["t/125",[4,1.237,6,1.602,7,0.658,31,2.005,37,2.977,52,1.205,53,1.253,77,3.724,101,2.977,170,3.979,199,3.207,238,3.557,259,3.516,332,3.146,375,5.329,462,3.271,873,3.146,949,4.531,1093,5.085]],["t/127",[4,0.885,5,0.904,7,0.638,8,1.989,9,2.119,10,1.807,14,1.55,15,1.457,19,1.727,25,2.084,31,1.945,34,1.331,41,1.059,43,1.139,69,1.089,101,2.889,104,1.248,115,2.055,116,1.843,117,0.892,130,1.289,135,2.609,136,2.567,140,1.894,162,1.342,170,3.399,199,2.295,260,2.17,332,2.252,433,2.609,434,2.652,437,2.731,439,2.295,468,7.134,689,4.639,691,5.811,819,2.604,1073,4.639,1075,4.639,1094,5.173,1095,4.639,1096,5.173,1097,5.173,1098,7.012]],["t/129",[4,1.374,5,0.82,6,1.779,7,0.731,28,2.53,34,1.754,52,1.06,53,1.103,79,2.822,86,3.072,87,2.328,170,2.717,188,2.939,296,3.357,332,2.768,334,2.53,390,3.277,435,2.154,437,3.357,438,4.129,439,2.822,462,4.403,463,3.986,464,4.689,465,4.129,466,3.357,497,1.972,713,3.535,904,3.986,1066,5.703]],["t/131",[4,0.837,5,1.074,6,1.496,7,0.703,9,2.219,10,1.708,14,1.703,15,1.605,19,1.687,25,2.297,37,2.015,41,1.051,43,1.096,52,0.815,53,0.848,104,1.201,115,1.978,116,1.774,117,0.858,135,2.511,136,2.471,140,1.79,162,1.75,170,2.883,183,3.477,241,2.305,402,2.015,426,3.249,427,5.249,428,5.249,429,5.249,430,5.249,431,5.249,433,2.511,434,2.552,462,3.77,471,6.051,472,4.385,474,4.553,601,2.462,1067,2.647,1099,6.748]],["t/133",[4,1.476,5,1.112,6,1.911,7,0.65,9,1.902,14,1.68,22,2.941,34,1.355,37,3.552,42,4.46,72,2.493,86,2.493,94,4.331,188,2.614,192,2.941,426,3.437,503,3.593]],["t/135",[4,0.874,5,1.181,6,1.54,7,0.719,9,2.259,10,1.783,14,1.729,15,1.642,19,1.718,25,2.349,37,2.103,41,1.058,42,4.084,43,1.129,52,0.851,53,0.885,104,1.237,115,2.037,116,1.827,117,0.884,135,2.586,136,2.544,140,1.869,162,1.802,163,5.406,164,4.216,165,5.406,241,2.406,402,2.103,426,3.346,433,2.586,434,2.628,494,4.578,495,6.232,601,2.569,1067,2.764]],["t/137",[4,1.104,5,0.832,7,0.737,14,1.256,15,1.551,21,1.823,30,2.547,34,0.87,38,2.976,41,0.851,43,1.047,52,1.244,53,1.294,69,1.357,75,2.696,86,2.252,90,1.995,105,2.033,115,1.343,129,1.718,162,2.509,197,1.995,207,4.043,209,2.807,212,2.618,238,2.255,246,2.61,259,1.855,264,3.845,297,3.565,372,2.16,388,2.705,402,1.888,490,2.547,497,1.421,502,3.939,518,1.839,573,3.092,720,6.399,735,1.922,763,3.224,798,3.224,802,3.224,870,3.224,947,3.224,949,2.873,967,3.798,1031,3.798,1032,3.798,1034,3.794,1035,2.976,1036,3.224,1037,2.873,1041,3.798,1100,4.583,1101,4.583,1102,4.583,1103,4.109,1104,3.224,1105,6.449,1106,6.449,1107,4.583,1108,4.583,1109,4.583,1110,4.583,1111,4.583,1112,4.583,1113,4.583]],["t/139",[1,3.183,5,0.816,7,0.728,14,1.232,21,2.516,34,1.519,41,0.84,43,1.027,52,1.334,53,1.387,64,3.55,67,3.112,72,2.209,92,3.965,276,4.107,295,3.771,421,3.112,497,2.481,518,1.803,522,2.702,720,5.628,791,3.965,886,4.664,902,4.92,1014,5.241,1114,7.174,1115,5.672,1116,5.397,1117,5.241,1118,5.241,1119,5.672,1120,5.672,1121,6.325,1122,5.672]],["t/141",[5,0.75,7,0.69,34,1.601,41,0.797,43,0.945,52,1.406,53,1.463,104,1.349,117,0.964,173,2.998,287,3.648,295,2.743,497,3.002,522,2.486,587,3.234,720,4.094,752,5.218,791,3.648,819,2.929,886,4.291,983,4.003,1119,5.218,1120,8.015,1123,4.035,1124,6.284,1125,5.819,1126,5.218,1127,5.819,1128,4.968,1129,3.221]],["t/143",[5,0.722,9,2.204,14,1.612,15,1.536,19,1.782,25,2.197,41,1.091,43,1.2,90,2.436,104,1.315,115,2.166,116,1.943,117,0.94,135,2.75,136,2.706,140,2.049,162,1.917,433,2.75,434,2.795,720,3.937,1037,4.633,1114,6.627,1115,6.627,1126,6.627,1130,5.595,1131,7.391]],["t/145",[6,1.632,7,0.67,12,4.093,14,1.435,17,2.421,41,0.774,129,1.962,209,3.206,264,3.795,721,6.477,733,4.208,787,4.093,1132,6.604,1133,7.365,1134,7.365,1135,7.365,1136,5.729,1137,7.365]],["t/147",[5,0.695,8,2.072,9,1.92,10,1.882,14,1.582,15,1.498,19,1.756,25,2.142,31,1.495,41,1.082,43,1.17,69,1.134,104,1.283,115,2.113,116,1.894,117,0.916,130,1.796,135,2.682,136,2.639,140,1.973,142,3.714,162,1.869,184,3.328,260,2.26,433,2.682,434,2.726,721,3.973,1138,5.388,1139,5.388,1140,5.388,1141,5.388,1142,7.208,1143,7.208,1144,6.463,1145,7.208]],["t/149",[4,0.662,7,0.352,9,1.52,28,2.978,29,2.149,31,1.881,34,0.734,37,2.794,44,3.529,45,3.199,49,2.275,52,1.393,53,1.385,56,2.275,60,1.786,70,4.403,72,1.351,93,2.424,107,1.903,147,2.346,190,2.424,195,2.721,209,2.952,238,2.808,252,3.205,258,3.008,259,2.31,288,3.205,291,2.609,313,1.862,318,3.205,321,3.671,336,3.008,382,2.609,388,1.622,405,3.199,435,1.933,457,3.008,497,1.199,502,2.041,513,3.172,518,1.103,555,2.041,618,2.346,627,3.008,706,2.872,722,2.851,733,4.278,735,2.845,741,3.468,787,2.149,797,4.439,851,2.851,873,2.484,875,2.041,889,3.705,911,3.705,925,7.493,949,2.424,987,2.275,1028,3.172,1051,5.62,1132,5.117,1146,6.925,1147,4.208,1148,3.867,1149,5.707,1150,7.985,1151,3.205,1152,3.867,1153,7.985,1154,2.721,1155,3.468,1156,3.468,1157,3.468,1158,3.008,1159,3.867,1160,3.867,1161,3.867,1162,3.468,1163,2.511,1164,2.511,1165,5.707,1166,3.867,1167,3.867,1168,3.468,1169,3.867,1170,3.867,1171,3.867,1172,3.867,1173,3.867]],["t/151",[5,0.873,7,0.616,8,1.888,9,1.803,10,1.715,14,1.509,15,1.406,19,1.69,25,2.012,31,1.362,34,1.285,41,1.083,43,1.099,69,1.034,81,2.946,87,1.798,104,1.485,115,1.984,116,1.779,117,0.86,130,1.224,135,2.518,136,2.478,140,1.798,211,3.189,260,2.06,433,2.518,434,2.559,522,2.891,598,3.455,706,3.406,721,4.99,725,4.566,902,6.024,959,4.242,960,3.981,1117,5.609,1146,5.609,1174,4.911,1175,4.911,1176,4.911,1177,4.911,1178,6.069]],["t/153",[4,1.054,7,0.789,17,2.849,37,3.57,41,0.826,69,1.296,86,3.295,101,3.24,105,2.732,115,2.305,129,2.095,162,2.04,184,2.843,187,3.422,208,3.03,209,3.424,264,3.173,270,4.626,333,3.333,342,3.86,437,3.25,601,3.099,723,5.799,798,4.332,799,5.522,800,5.103,873,2.68,1179,3.998,1180,6.158,1181,6.158,1182,6.158,1183,5.522]],["t/155",[5,0.701,7,0.495,8,2.091,9,1.932,10,1.899,14,1.59,15,1.507,19,1.836,25,2.156,31,1.509,41,1.067,43,1.178,69,1.145,86,1.899,104,1.291,115,2.126,116,1.906,117,0.922,129,1.449,135,2.698,136,2.655,140,1.991,162,1.881,184,3.349,209,2.367,260,2.281,270,3.199,299,2.563,433,2.698,434,2.743,723,6.418,1144,6.504,1183,7.317,1184,5.439,1185,5.439,1186,5.439]],["t/157",[4,0.695,5,0.322,6,0.901,7,0.468,8,0.961,9,1.368,10,0.873,12,2.259,14,1.001,15,0.844,17,0.821,19,1.198,25,1.208,31,0.693,34,1.666,39,1.352,40,5.346,41,1.064,43,0.834,52,0.677,53,0.705,69,1.614,70,4.776,73,1.389,77,1.287,86,0.873,87,0.915,104,0.723,105,1.109,106,1.109,115,1.191,116,1.555,117,0.517,129,0.665,130,1.013,135,1.512,136,1.488,140,0.915,142,2.094,145,3.161,146,3.368,162,1.535,170,3.275,183,2.094,197,1.088,199,3.097,209,1.088,211,2.639,212,1.427,236,0.798,238,1.229,250,1.131,260,1.048,264,1.287,296,1.319,299,1.915,303,2.741,388,1.048,402,1.029,405,1.067,421,2.912,423,1.622,433,1.512,434,1.537,435,3.133,466,1.319,474,4.393,522,3.142,603,1.685,631,3.842,669,4.91,673,3.996,714,2.741,755,2.547,840,1.758,844,3.161,889,1.622,959,4.375,962,3.161,998,1.685,1002,2.24,1012,4.708,1014,4.257,1019,3.644,1020,3.644,1021,3.644,1022,3.644,1023,3.644,1024,3.644,1025,3.644,1027,3.644,1067,1.352,1122,3.644,1151,2.07,1187,4.064,1188,2.498,1189,6.512,1190,6.512,1191,2.498,1192,4.064,1193,2.498,1194,2.498,1195,2.498,1196,2.498,1197,2.498,1198,2.498,1199,2.498,1200,2.498,1201,4.064,1202,4.064,1203,4.064]],["t/159",[4,1.158,5,0.872,6,2.005,7,0.616,34,1.793,73,3.76,84,2.559,188,2.477,206,5.263,334,2.691,372,3.189,388,2.838,390,3.486,496,5.812,497,2.588,498,4.76,499,4.241,500,3.866,501,4.241,507,4.564,904,4.241,1204,5.607]],["t/161",[6,1.708,34,1.463,37,3.175,73,4.283,117,0.98,405,3.292,496,4.533,501,4.83,506,4.675,507,5.199,787,4.283,910,4.533]],["t/163",[4,1.319,5,1.164,6,1.709,7,0.702,9,2.325,10,1.701,14,1.802,15,1.602,19,1.684,22,2.006,25,2.292,37,3.176,41,1.05,43,1.093,52,0.812,53,0.844,72,1.701,94,2.954,104,1.197,117,0.856,135,2.503,136,2.463,140,1.783,192,2.006,241,2.295,364,3.467,402,2.006,426,3.712,433,2.503,434,2.545,496,5.133,503,2.451,564,4.734,569,5.234,579,4.367,601,2.451,1067,2.636,1205,6.729,1206,6.729]],["t/165",[4,0.8,5,0.282,6,1.209,7,0.727,9,1.453,16,0.884,17,1.537,20,1.81,28,2.759,29,2.022,33,1.418,34,0.415,36,1.611,43,0.355,44,1.715,45,2.588,51,0.751,52,1.47,53,1.511,54,1.285,64,2.688,65,1.418,67,1.075,70,2.362,79,0.969,81,4.086,86,0.763,91,1.537,93,1.369,97,2.207,99,1.831,106,0.969,107,1.075,115,1.066,117,0.278,129,1.453,138,2.281,150,1.248,162,1.884,170,0.933,186,1.611,188,1.997,194,2.455,195,1.537,198,5.749,199,2.902,207,4.1,236,0.697,241,1.03,245,1.418,253,1.099,267,1.97,296,1.921,308,1.831,309,1.959,313,1.052,315,1.715,320,3.036,321,1.182,322,1.715,333,1.182,372,1.03,374,1.369,392,2.931,396,0.854,397,1.214,404,1.875,405,1.998,421,1.075,423,1.418,437,1.153,438,1.418,441,1.325,442,1.369,447,1.052,452,1.369,458,1.474,465,2.362,474,1.474,490,1.214,497,1.128,509,1.369,518,1.333,524,1.611,528,2.797,531,1.537,538,3.541,542,0.951,552,1.418,562,2.599,571,4.087,597,1.611,600,1.537,618,1.325,619,1.699,627,1.699,652,1.81,706,1.099,713,1.214,736,1.537,737,1.537,775,1.537,782,1.418,785,1.611,787,1.214,809,1.537,819,1.099,832,1.214,836,3.263,839,3.308,840,1.537,841,1.418,850,1.611,855,1.537,873,2.035,875,1.153,894,1.611,906,2.75,910,2.75,932,2.362,983,1.153,984,1.959,1001,1.699,1037,1.369,1090,1.959,1091,3.015,1116,5.39,1136,1.699,1162,1.959,1164,1.418,1207,3.638,1208,2.184,1209,1.699,1210,1.81,1211,1.537,1212,1.81,1213,1.959,1214,4.193,1215,2.184,1216,3.29,1217,1.214,1218,2.83,1219,3.015,1220,3.263,1221,2.184,1222,6.541,1223,2.184,1224,2.184,1225,2.184,1226,2.184,1227,2.184,1228,4.89,1229,2.184,1230,1.699,1231,1.474,1232,2.184,1233,1.699,1234,2.184,1235,1.81,1236,4.676,1237,4.676,1238,1.81,1239,1.81,1240,1.959,1241,1.699,1242,2.184,1243,2.184,1244,2.184,1245,2.184,1246,2.184,1247,2.184,1248,1.959,1249,2.184,1250,3.638,1251,1.699,1252,1.699,1253,2.184,1254,3.015,1255,3.015,1256,1.611,1257,2.184,1258,2.184,1259,2.184,1260,2.184,1261,2.184,1262,1.959,1263,2.184,1264,1.537,1265,1.699]],["t/167",[5,0.67,6,1.559,8,1.998,9,1.874,10,1.815,14,1.553,15,1.461,19,1.73,25,2.091,31,1.441,41,1.07,43,1.142,69,1.094,81,2.262,104,1.252,114,6.307,115,2.062,116,1.849,117,0.894,118,4.949,119,5.186,120,4.949,121,5.471,122,4.409,123,7.15,124,5.471,125,6.307,135,2.617,136,2.575,140,1.902,260,2.179,299,3.315,433,2.617,434,2.66,441,3.152,552,3.374,1116,3.505,1228,4.659,1266,5.196,1267,5.196,1268,5.196]],["t/169",[0,2.816,3,2.954,4,0.958,5,0.953,7,0.833,12,3.11,15,1.163,16,2.991,25,1.663,34,1.571,38,4.799,51,1.924,84,2.795,85,3.901,88,4.353,90,3.217,101,2.305,130,1.395,184,2.583,197,2.436,236,2.359,255,3.633,259,2.265,280,2.583,308,2.816,332,3.217,342,3.507,382,3.775,389,3.558,435,1.895,439,2.483,462,3.344,520,4.126,522,2.39,542,2.436,623,5.749,669,3.937,728,4.483,983,2.954,1012,3.775,1085,5.2,1129,2.663,1209,4.353,1231,3.775,1269,5.595,1270,5.595,1271,5.595,1272,5.595,1273,3.937]],["t/171",[5,0.664,8,1.98,9,1.862,10,1.799,14,1.546,15,1.453,19,1.724,25,2.078,31,1.429,32,1.916,41,1.076,43,1.135,69,1.084,86,1.799,104,1.244,115,2.049,116,1.838,117,0.889,135,2.601,136,2.56,140,1.885,162,2.059,184,3.228,236,1.644,260,2.16,299,3.741,389,3.366,433,2.601,434,2.644,435,2.368,669,4.919,1274,5.15,1275,5.15,1276,5.15,1277,5.15,1278,4.112,1279,6.991,1280,8.513,1281,6.991]],["t/173",[4,1.106,5,0.834,6,1.964,7,0.589,33,4.198,34,1.818,51,2.224,73,3.593,84,2.445,86,2.258,117,0.822,188,2.367,322,3.047,334,2.572,372,3.047,390,3.331,479,4.549,497,2.005,498,4.549,505,5.358,506,3.922,507,5.98,566,6.31,582,6.459,583,5.798,584,5.798,904,4.053,1204,5.358]],["t/175",[6,1.708,34,1.463,37,3.175,73,4.283,117,0.98,405,3.292,501,4.83,506,4.675,507,5.199,582,5.199,787,4.283,910,4.533]],["t/177",[4,1.302,5,1.155,6,1.686,7,0.693,9,2.304,10,1.659,14,1.79,15,1.581,19,1.666,22,1.957,25,2.262,37,3.134,41,1.047,43,1.074,52,0.792,53,0.824,72,1.659,94,2.882,104,1.177,117,0.841,135,2.461,136,2.421,140,1.739,192,1.957,241,2.239,402,1.957,426,3.663,433,2.461,434,2.501,503,2.391,569,5.145,582,5.55,601,2.391,603,4.462,610,4.26,612,5.931,613,5.931,614,5.931,615,5.931,616,5.931,617,3.696,1067,2.572,1282,6.614]],["t/179",[3,1.514,4,0.491,7,0.708,12,1.594,14,0.559,15,1.17,16,1.161,17,2.106,18,3.062,19,0.581,21,1.805,32,1.067,36,2.114,41,1.048,43,0.466,52,0.757,53,1.111,62,1.352,64,1.272,74,2.114,85,1.514,98,1.411,104,1.242,107,1.411,115,1.878,116,1.684,117,0.716,129,1.706,130,1.404,184,2.601,192,1.181,201,2.655,207,5.205,208,1.411,209,2.452,231,2.017,233,1.552,258,2.231,259,1.161,270,1.687,284,1.687,302,3.062,303,1.934,305,1.862,308,3.513,316,1.594,321,2.457,322,2.139,330,1.687,364,1.477,392,1.797,393,3.761,394,2.376,405,1.939,437,1.514,466,1.514,497,0.889,518,0.818,541,3.531,542,3.232,554,2.231,556,1.797,568,1.862,596,2.231,600,2.017,601,1.443,606,1.862,645,2.114,725,6.12,733,1.638,756,1.797,782,1.862,791,1.797,794,1.638,795,2.017,832,2.523,839,1.739,848,2.231,849,2.231,861,3.062,873,1.248,875,1.514,894,2.114,916,1.739,948,2.231,1028,4.823,1123,1.976,1128,1.594,1129,2.308,1283,4.539,1284,2.867,1285,1.934,1286,4.07,1287,2.867,1288,2.867,1289,4.539,1290,2.867,1291,2.867,1292,2.867,1293,3.347,1294,3.761,1295,2.867,1296,2.867,1297,2.231,1298,6.98,1299,2.571,1300,2.867,1301,4.375,1302,2.655,1303,3.8,1304,4.539,1305,4.159,1306,2.376,1307,4.07,1308,3.761,1309,2.867,1310,2.867,1311,2.867,1312,2.867,1313,2.867,1314,2.376,1315,2.867]],["t/181",[5,0.725,8,2.162,9,1.975,10,1.964,14,1.616,15,1.54,19,1.786,25,2.204,31,1.56,41,1.071,43,1.204,69,1.183,104,1.319,115,2.173,116,1.949,117,0.943,135,2.758,136,2.714,140,2.058,162,1.923,184,3.423,260,2.358,299,2.65,433,2.758,434,2.804,725,3.793,1307,5.042,1308,6.144,1316,5.622,1317,8.295,1318,5.622,1319,7.414]],["t/183",[7,0.512,17,1.848,31,1.56,32,2.092,52,0.937,53,0.975,60,2.596,70,3.651,77,2.897,79,2.495,90,2.447,92,4.647,104,1.001,147,3.411,162,2.151,166,4.814,199,2.495,207,3.524,213,2.83,236,2.648,284,3.307,287,3.524,313,2.707,325,4.497,342,3.524,372,2.65,402,2.316,405,3.167,406,4.374,438,3.651,439,2.495,513,3.125,515,4.374,535,5.042,571,3.793,587,3.125,736,3.956,737,3.956,742,4.659,839,4.497,844,5.768,901,3.651,916,3.411,1037,3.524,1104,5.216,1220,5.042,1320,5.622,1321,5.622,1322,4.659,1323,5.042,1324,5.622,1325,5.622,1326,5.622,1327,5.622,1328,5.622,1329,5.622,1330,5.622]],["t/185",[0,2.858,5,1.142,6,1.654,7,0.837,14,1.106,15,1.18,21,2.968,31,1.575,32,2.112,41,1.073,43,0.922,85,2.997,98,2.794,104,1.328,117,0.949,129,1.988,162,2.162,197,2.471,236,2.661,325,3.444,552,3.686,1068,6.229,1322,4.705,1331,5.677,1332,7.462,1333,5.677,1334,5.677,1335,7.462,1336,5.677,1337,5.677,1338,5.677,1339,5.677]],["t/187",[4,1.465,7,0.642,17,2.319,22,2.905,34,1.625,90,3.07,104,1.255,194,5.774,196,4.633,283,4.421,325,4.278,402,2.905,570,6.658,851,5.2,1104,6.021,1211,4.962,1340,6.324,1341,8.263]],["t/189",[5,0.664,8,1.98,9,2.114,10,1.799,14,1.546,15,1.453,19,1.724,25,2.078,31,1.429,34,1.327,41,1.076,43,1.135,69,1.084,87,1.885,104,1.244,115,1.51,116,1.354,117,0.889,129,1.372,135,2.601,136,2.56,140,1.885,197,2.242,260,2.16,325,4.815,433,2.601,434,2.644,522,2.987,819,2.592,902,5.439,959,4.382,960,4.112,1068,4.919,1117,5.794,1340,4.618,1341,6.269,1342,5.15,1343,5.15,1344,5.15,1345,5.15,1346,6.991,1347,6.991]],["t/191",[7,0.699,32,2.209,34,1.617,52,1.281,53,1.332,65,3.856,69,1.25,74,5.665,101,3.165,150,3.393,162,2.336,212,3.393,213,2.989,234,4.921,236,1.896,246,2.403,250,2.687,308,2.989,334,2.362,388,2.491,409,5.406,497,1.842,518,1.693,523,4.006,638,3.722,710,5.406,727,7.007,735,2.491,736,4.178,737,4.178,755,3.722,775,4.178,791,3.722,1091,4.921,1348,5.938,1349,5.938,1350,5.938,1351,5.938,1352,5.938,1353,5.938,1354,7.683]],["t/193",[5,0.736,8,2.194,9,1.994,10,1.993,14,1.628,15,1.555,19,1.796,25,2.225,31,1.583,41,1.073,43,1.216,69,1.201,104,1.332,115,2.194,116,1.967,117,0.952,135,2.785,136,2.741,140,2.089,162,2.167,215,6.713,260,2.393,299,2.689,433,2.785,434,2.831,727,5.823,755,3.576,1355,5.705,1356,5.705,1357,7.486]],["t/195",[2,1.383,3,0.938,4,0.523,5,0.394,6,1.69,7,0.676,9,1.071,14,0.595,16,1.237,17,2.441,19,0.966,22,0.732,29,1.698,30,0.988,32,1.137,34,0.58,37,0.732,39,0.962,41,0.935,51,1.051,52,0.296,53,0.308,62,0.838,64,2.385,72,1.067,77,0.916,79,0.789,84,0.672,87,1.747,90,0.774,93,1.114,95,1.199,97,1.078,98,1.978,99,1.538,101,1.259,104,0.849,107,1.504,115,1.178,116,1.823,117,0.607,118,2.15,120,2.15,122,1.114,129,1.071,130,1.002,139,1.046,147,2.438,162,1.394,176,1.746,188,1.968,190,1.916,192,0.732,194,1.199,198,4.668,199,3.193,201,1.895,203,1.473,208,0.875,213,0.895,233,1.654,236,1.283,238,1.504,245,1.984,250,0.804,256,0.838,259,0.719,295,0.838,307,1.311,308,1.538,313,2.297,315,2.767,322,0.838,333,0.962,334,1.216,338,1.154,340,0.988,342,1.114,372,2.534,380,1.383,382,1.199,387,4.279,388,2.001,390,0.916,392,1.114,396,1.572,397,0.988,401,1.251,405,1.306,406,1.383,413,1.311,435,1.035,439,1.356,443,1.078,452,1.916,457,3.127,458,2.712,459,3.604,491,1.383,497,0.551,500,1.016,524,2.253,538,1.154,552,1.154,560,1.594,562,0.988,563,1.473,571,2.062,589,1.311,600,2.828,602,1.473,619,1.383,625,1.473,631,1.154,632,1.473,634,1.199,638,2.991,647,1.383,676,2.062,683,4.182,685,4.476,686,1.383,713,0.988,714,4.239,733,1.016,735,0.746,756,1.916,758,1.199,769,1.383,782,1.984,783,2.15,785,2.253,787,1.698,794,1.746,828,2.532,832,1.698,839,2.438,840,1.251,841,4.08,850,1.311,857,1.594,861,2.712,870,1.251,872,1.251,873,2.077,874,1.383,896,1.984,901,1.154,910,2.364,916,1.854,922,1.383,949,1.916,964,1.594,1001,1.383,1034,1.046,1035,1.154,1093,1.251,1116,4.476,1158,2.377,1211,2.15,1218,2.377,1219,1.473,1231,3.626,1233,1.383,1235,1.473,1238,1.473,1264,1.251,1265,1.383,1297,1.383,1358,1.778,1359,1.778,1360,3.712,1361,1.594,1362,1.778,1363,1.473,1364,5.498,1365,2.74,1366,1.778,1367,1.778,1368,1.778,1369,1.594,1370,1.778,1371,1.594,1372,1.594,1373,2.74,1374,1.383,1375,1.473,1376,3.604,1377,3.604,1378,1.594,1379,1.594,1380,4.02,1381,3.331,1382,1.594,1383,1.778,1384,1.778,1385,1.778,1386,1.778,1387,1.594,1388,1.473,1389,1.778,1390,2.74,1391,3.056,1392,1.778,1393,3.056,1394,1.778,1395,1.778,1396,1.383,1397,1.778,1398,1.473,1399,3.056,1400,1.594,1401,1.311,1402,3.056,1403,3.604,1404,3.127,1405,1.594,1406,1.778,1407,1.594,1408,3.056,1409,3.056,1410,3.056,1411,1.311,1412,1.251,1413,1.778,1414,2.377,1415,1.594,1416,1.778,1417,1.778,1418,1.778,1419,1.778,1420,1.778,1421,1.594,1422,1.778,1423,1.594,1424,1.251,1425,1.778,1426,1.778,1427,1.778,1428,1.778,1429,1.778,1430,1.778,1431,1.778,1432,1.778,1433,1.778,1434,1.778,1435,1.778,1436,1.594,1437,1.778,1438,1.778]],["t/197",[5,0.593,6,1.798,8,1.769,9,1.723,10,1.607,14,1.457,15,1.344,19,1.643,25,1.922,31,1.276,41,1.076,43,1.05,69,0.968,104,1.151,115,1.896,116,2.132,117,0.822,118,4.55,120,4.55,130,1.612,135,2.406,136,2.368,140,1.684,142,2.37,198,3.237,199,2.041,201,2.168,259,1.862,260,1.93,433,2.406,434,2.446,452,2.884,458,3.104,638,2.884,683,3.579,685,5.045,686,5.031,713,2.557,832,2.557,1116,3.104,1360,3.579,1364,6.197,1378,5.799,1379,5.799,1381,5.359,1439,4.601,1440,4.601,1441,7.479,1442,4.601,1443,4.601,1444,4.601,1445,4.601,1446,6.467,1447,6.467,1448,6.467]],["t/199",[5,0.904,6,1.554,14,1.008,21,2.058,34,1.619,39,3.796,51,1.779,52,1.326,53,1.216,62,3.305,75,3.043,87,1.894,90,2.252,99,2.604,105,2.295,117,1.133,195,3.639,256,2.438,271,3.49,274,4.934,295,2.438,313,2.491,360,3.814,388,2.17,447,2.491,503,3.53,534,3.49,618,3.138,735,2.17,753,3.043,759,3.043,872,3.639,884,6.288,886,3.814,898,5.17,916,3.138,948,4.024,1036,3.639,1123,3.053,1129,3.073,1212,4.287,1252,4.024,1299,4.639,1302,4.202,1305,3.359,1449,4.639,1450,5.173,1451,4.024,1452,4.639,1453,4.024,1454,5.173,1455,5.173,1456,5.173,1457,4.639,1458,3.359,1459,3.814,1460,5.173,1461,4.024,1462,4.287,1463,3.814]],["t/201",[5,1.204,6,2.013,34,1.81,51,1.879,52,0.911,53,0.947,98,2.689,138,3.425,253,4.389,313,3.503,396,2.845,466,2.884,518,2.883,735,3.052,739,3.686,904,4.56,945,3.315,981,4.9,1273,5.119,1414,4.251,1451,4.251,1463,4.029,1464,5.464,1465,5.464,1466,5.464,1467,5.464,1468,4.9,1469,3.844,1470,5.464,1471,6.43,1472,6.029,1473,7.275,1474,7.275]],["t/203",[4,0.967,5,1.072,6,1.648,7,0.514,34,1.073,41,1.095,62,2.663,84,2.137,104,1.005,109,3.669,115,1.656,116,1.485,117,1.123,130,1.408,187,3.14,283,3.541,426,2.72,531,3.975,606,3.669,875,2.982,1093,3.975,1179,3.669,1216,3.975,1273,6.217,1382,5.066,1451,4.395,1459,4.166,1475,5.65,1476,5.65,1477,4.83,1478,5.066,1479,5.066,1480,4.395,1481,4.682,1482,2.911,1483,2.911,1484,5.066]],["t/205",[0,1.915,5,0.727,6,1.249,7,0.676,16,1.54,34,1.506,41,1.054,43,0.618,51,1.308,52,0.634,53,0.66,62,2.657,72,1.969,87,1.393,99,1.915,104,0.677,117,1.167,130,0.948,194,2.566,197,1.656,253,3.381,287,2.385,396,2.204,397,3.133,443,2.308,445,2.173,497,1.748,503,1.915,509,2.385,518,2.571,534,2.566,547,2.805,756,4.656,759,2.238,873,1.656,875,5.11,881,2.959,904,2.385,945,4.074,983,2.008,1154,2.676,1216,3.966,1273,6.455,1451,4.385,1463,4.157,1471,2.805,1477,5.15,1478,3.411,1480,2.959,1481,3.152,1482,1.96,1483,4.086,1484,6.023,1485,4.385,1486,5.638,1487,3.411,1488,3.804,1489,2.805,1490,5.055,1491,3.152,1492,3.804,1493,3.804,1494,2.47,1495,3.804,1496,5.638,1497,2.959,1498,3.152,1499,3.804]],["t/207",[7,0.484,12,3.969,16,2.151,19,1.446,21,2.114,41,0.847,43,0.863,45,2.27,76,3.383,84,2.01,117,1.178,130,1.325,137,4.766,139,3.126,197,2.313,208,2.615,256,2.505,271,3.585,272,3.232,283,3.331,295,2.505,421,2.615,435,2.419,445,3.036,447,2.559,500,3.036,502,2.805,518,2.3,531,3.739,603,3.585,875,2.805,945,3.224,976,3.331,987,3.126,1129,2.573,1211,3.739,1251,4.134,1301,3.331,1472,4.404,1477,5.237,1497,4.134,1500,4.441,1501,2.877,1502,6.404,1503,3.514,1504,4.766,1505,3.331,1506,4.766,1507,4.766]],["t/209",[4,1.199,7,0.724,14,1.498,15,1.359,19,1.693,25,1.768,31,0.699,41,1.111,43,0.966,45,1.077,69,1.825,76,1.057,85,1.33,98,1.24,104,1.565,105,1.816,117,0.891,129,1.09,130,1.482,132,1.96,133,2.26,162,0.654,183,1.298,184,1.163,196,1.364,197,2.249,211,2.657,236,0.804,246,2.647,263,3.14,280,1.163,283,1.58,295,1.188,326,1.298,328,1.858,329,1.96,389,2.488,421,1.24,445,1.44,556,1.58,640,2.26,725,1.7,817,1.858,873,1.097,960,4.342,1129,2.357,1278,3.039,1301,1.58,1302,2.435,1308,2.088,1388,2.088,1472,2.088,1477,4.794,1482,3.064,1483,3.064,1494,2.657,1500,3.847,1503,3.912,1508,2.52,1509,2.088,1510,4.282,1511,5.421,1512,3.039,1513,4.092,1514,4.092,1515,2.52]],["t/211",[1,2.154,4,0.732,7,0.654,19,0.867,22,1.763,41,1.053,67,3.864,72,1.495,73,2.378,76,3.488,77,2.205,81,1.863,116,2.064,117,0.914,142,2.205,150,3.51,241,3.701,246,2.908,259,2.908,280,3.318,316,2.378,326,2.205,397,2.378,402,1.763,404,2.205,442,2.683,447,2.06,497,1.327,503,3.092,509,2.683,515,3.329,518,2.601,556,2.683,775,3.011,783,3.011,802,3.011,815,3.011,832,4.811,873,1.863,1034,2.517,1067,2.317,1123,3.418,1129,2.83,1302,3.387,1494,3.989,1500,3.841,1503,2.106,1516,3.837,1517,6.273,1518,3.851,1519,3.546,1520,3.329,1521,4.322,1522,3.155,1523,3.155,1524,3.51]],["t/213",[7,0.487,19,1.084,21,3.44,28,2.563,41,1.097,43,0.869,76,2.245,84,1.342,90,1.545,108,2.497,116,0.933,117,0.681,150,2.028,241,1.673,246,1.436,259,2.166,280,2.471,281,2.941,283,3.355,295,1.673,518,2.466,568,3.475,641,3.148,815,5.048,923,4.436,1034,3.79,1123,3.657,1129,3.383,1216,2.497,1302,3.037,1303,3.611,1424,3.766,1477,2.304,1482,2.758,1483,2.758,1494,5,1500,3.592,1503,3.789,1518,2.225,1520,2.761,1521,2.497,1524,3.682,1525,3.549,1526,5.352,1527,3.549,1528,7.755,1529,7.755,1530,7.176,1531,3.549,1532,4.164,1533,3.549]],["t/215",[7,0.549,14,1.175,17,1.982,41,1.071,76,2.529,89,3.547,104,1.073,108,5.46,116,2.04,117,0.767,130,1.503,201,4.418,246,3.473,305,6.086,490,4.313,518,2.212,738,5.407,1401,5.722,1482,3.998,1483,3.107,1494,3.915,1500,3.807,1534,4.446,1535,4.997,1536,6.03]],["t/217",[0,2.851,4,0.655,5,0.73,7,0.614,9,1.509,14,0.746,21,2.682,34,0.727,37,1.577,45,1.636,51,1.948,52,0.944,53,0.982,75,2.252,76,1.606,77,1.973,81,1.667,84,3.149,109,2.486,116,1.006,117,1.095,129,1.02,174,2.823,208,1.884,229,5.08,236,1.222,237,2.694,240,3.434,253,1.927,255,2.486,256,1.805,257,3.434,270,2.252,272,3.899,287,3.551,370,2.979,372,1.805,374,2.4,382,2.583,388,2.828,397,2.128,398,2.486,435,1.297,445,2.188,466,2.021,497,1.188,502,2.021,514,3.173,518,1.922,530,2.979,542,1.667,641,3.332,768,3.173,792,3.173,881,2.979,916,2.323,947,2.694,987,3.332,1035,2.486,1123,1.667,1129,3,1163,2.486,1216,2.694,1217,2.128,1285,2.583,1297,2.979,1314,3.173,1396,2.979,1401,2.823,1469,2.694,1500,2.992,1505,4.226,1518,2.4,1522,2.823,1537,2.823,1538,3.434,1539,3.829,1540,3.434,1541,3.829,1542,2.979,1543,5.08,1544,3.434,1545,6.046,1546,3.434,1547,3.434,1548,3.434,1549,3.434,1550,3.173,1551,3.434,1552,3.434,1553,5.587,1554,3.434,1555,3.434,1556,3.434,1557,3.434,1558,3.434,1559,3.434,1560,4.407,1561,3.173,1562,3.434,1563,3.434,1564,5.08,1565,3.173,1566,3.434,1567,3.434,1568,3.434,1569,3.434,1570,3.434,1571,2.979,1572,3.434,1573,3.434,1574,2.979,1575,3.173,1576,3.173]],["t/219",[45,2.617,51,2.107,75,3.603,76,2.569,84,2.964,117,0.779,174,4.516,272,2.772,370,4.765,374,3.84,382,4.132,388,3.288,435,2.075,466,3.233,497,1.9,530,4.765,916,3.716,1123,2.666,1129,2.824,1163,3.977,1297,4.765,1314,5.076,1505,4.913,1543,5.493,1544,5.493,1545,7.752,1546,5.493,1547,5.493,1548,5.493,1549,5.493,1550,5.076,1551,5.493,1552,5.493,1553,6.496,1554,5.493,1555,5.493,1556,5.493,1557,5.493,1558,5.493,1559,5.493,1560,4.765,1561,5.076,1562,5.493,1563,5.493]],["t/221",[51,2.3,81,2.911,84,3.404,109,4.343,116,1.758,117,1.053,208,3.291,272,3.027,372,3.152,398,4.343,445,3.821,641,4.873,768,5.542,987,3.934,1129,3.243,1401,4.931,1518,4.192,1553,5.542,1560,5.203,1564,5.997,1565,5.542,1566,5.997,1567,5.997,1568,5.997,1569,5.997,1570,5.997,1571,5.203,1572,5.997,1573,5.997]],["t/224",[4,1.074,7,0.725,14,0.859,16,1.784,19,1.271,25,1.311,31,1.223,32,1.64,41,1.093,43,0.716,45,1.884,52,1.046,53,1.088,69,0.928,84,1.667,85,2.327,86,3.142,104,1.117,117,0.929,129,1.174,162,2.182,197,3.181,236,2.685,237,3.102,246,2.54,263,3.313,272,4.161,273,3.654,287,2.764,435,2.126,478,3.654,555,3.857,603,2.974,758,2.974,1067,2.387,1500,1.956,1577,4.409,1578,4.409,1579,4.409,1580,4.409,1581,4.075,1582,4.929,1583,5.387,1584,4.409,1585,4.409,1586,4.409,1587,4.409,1588,3.954,1589,6.276,1590,4.409]],["t/226",[4,1.379,19,1.295,21,2.543,41,1.095,43,1.038,69,1.695,104,1.138,105,2.837,107,3.147,116,1.681,117,0.813,236,2.041,246,2.588,263,3.375,272,3.645,280,2.952,463,4.008,1500,2.837,1503,3.147,1581,4.152,1582,4.314,1583,4.715,1591,4.974,1592,4.715,1593,5.734]],["t/228",[7,0.546,19,1.215,34,1.139,41,1.088,67,2.952,76,2.516,104,1.068,116,2.033,117,0.983,142,3.091,241,2.828,246,2.428,272,3.5,313,2.888,518,2.44,815,4.221,832,4.757,1123,3.367,1129,2.787,1302,3.645,1305,3.895,1517,6.022,1519,4.971,1521,4.221,1522,4.423,1524,3.428,1581,3.895,1594,4.971]],["t/230",[0,1.825,4,1.397,5,0.842,6,1.206,7,0.77,9,2.07,14,0.706,16,2.202,21,2.164,22,1.494,30,2.016,34,1.239,41,0.816,42,2.619,43,0.883,44,1.709,51,1.247,52,0.907,53,1.132,54,2.133,55,2.273,56,2.133,69,1.636,76,2.282,84,1.371,87,1.328,89,3.2,98,1.785,102,2.551,106,1.609,107,1.785,115,1.063,116,0.953,130,0.904,187,2.016,188,1.328,189,2.2,192,1.494,209,1.579,233,1.963,241,1.709,246,1.468,248,3.827,271,4.404,272,2.462,276,3.532,291,2.446,340,2.016,364,1.868,439,1.609,466,2.872,490,2.016,491,2.821,522,1.549,565,2.446,601,1.825,603,2.446,636,3.446,641,3.2,753,2.133,791,2.273,853,2.821,861,2.446,873,1.579,877,3.005,922,2.821,945,2.2,959,2.273,960,2.133,1129,1.307,1164,2.355,1239,3.005,1301,2.273,1463,2.674,1477,3.532,1500,3.219,1501,3.927,1503,3.213,1517,6.38,1523,2.674,1524,2.072,1592,2.674,1595,7.254,1596,3.626,1597,5.44,1598,3.626,1599,4.813,1600,3.005,1601,2.446,1602,3.252,1603,3.252,1604,3.626,1605,5.854,1606,3.252,1607,3.252,1608,3.252,1609,3.252,1610,3.252,1611,3.005,1612,2.674,1613,3.626,1614,3.626,1615,3.005,1616,3.005,1617,2.674,1618,3.626,1619,3.005,1620,3.005,1621,2.674,1622,2.674]],["t/232",[4,1.125,7,0.599,21,3.553,34,1.248,69,1.384,77,3.388,105,2.917,107,4.034,117,0.836,130,1.639,189,3.988,272,3.709,280,3.036,380,5.115,402,2.709,518,1.875,731,4.269,861,4.436,932,5.323,978,5.115,1012,4.436,1034,3.867,1179,4.269,1501,3.559,1518,5.138,1538,5.896,1599,4.848,1623,6.575,1624,5.449,1625,6.575,1626,6.575,1627,6.575]],["t/234",[0,0.964,4,1.046,5,0.247,7,0.675,16,2.029,21,2.73,22,0.789,28,1.295,30,1.81,34,1.303,38,1.243,41,1.005,43,0.993,45,1.815,52,0.836,53,0.869,62,0.903,69,0.894,75,1.126,84,0.724,85,1.719,90,0.834,93,4.087,98,2.091,105,1.886,115,1.469,116,0.856,117,0.995,129,1.335,131,1.976,147,1.162,187,1.064,208,2.467,238,0.942,248,1.347,250,1.923,253,0.964,259,0.775,272,3.354,283,1.2,295,3.493,304,3.953,330,3.305,339,1.412,369,2.786,375,1.412,380,3.306,388,1.366,389,0.922,398,1.243,436,1.474,442,1.2,443,1.162,466,2.243,497,0.594,509,1.2,518,0.546,526,1.126,555,2.646,573,1.292,598,1.347,606,1.243,632,1.587,645,1.412,731,1.243,735,1.366,759,1.126,786,1.292,792,1.587,819,0.964,833,1.094,853,4.754,875,1.011,877,1.587,901,1.243,916,1.162,919,1.347,932,1.243,943,1.49,947,1.347,960,2.499,983,1.011,987,1.126,1012,1.292,1034,1.126,1035,1.243,1053,1.717,1123,2.838,1124,1.587,1128,2.362,1129,3.342,1179,1.243,1209,1.49,1230,1.49,1301,4.487,1302,3.909,1305,3.649,1374,3.306,1453,1.49,1459,1.412,1469,1.347,1498,1.587,1500,2.893,1501,4.414,1502,1.717,1503,3.378,1505,2.041,1509,1.587,1518,3.522,1523,1.412,1537,1.412,1571,3.306,1592,4.143,1601,3.791,1602,4.495,1603,1.717,1628,3.257,1629,1.915,1630,1.915,1631,1.915,1632,1.915,1633,5.481,1634,4.371,1635,6.419,1636,6.155,1637,6.155,1638,5.481,1639,5.481,1640,5.481,1641,1.587,1642,3.81,1643,6.112,1644,1.915,1645,1.915,1646,1.915,1647,1.915,1648,1.915,1649,1.915,1650,1.717,1651,1.915,1652,2.92,1653,1.915,1654,1.915,1655,1.915,1656,1.49,1657,1.587]],["t/237",[4,1.158,21,3.599,41,1.019,45,2.89,69,1.424,76,2.838,129,2.223,255,4.393,272,3.062,369,3.76,816,6.067,1501,3.663,1537,7.153,1657,5.607,1658,6.766,1659,5.607,1660,6.766,1661,6.067,1662,9.047,1663,5.607]],["t/239",[4,0.621,7,0.743,12,2.016,14,0.706,17,1.192,19,1.102,21,3.246,41,0.935,69,0.763,76,2.282,77,2.803,104,0.645,116,1.43,117,0.461,129,0.966,187,2.016,192,2.241,212,3.108,213,2.738,241,1.709,243,3.252,272,1.641,280,1.674,320,2.355,326,3.737,378,3.3,421,3.825,442,2.273,463,4.547,490,2.016,497,1.125,518,1.034,531,2.551,542,1.579,547,2.674,598,2.551,641,2.133,676,2.446,757,5.348,789,2.821,833,2.072,861,2.446,919,2.551,976,3.41,987,2.133,1093,2.551,1123,3.552,1217,2.016,1218,2.821,1285,3.67,1306,4.508,1388,3.005,1414,2.821,1469,2.551,1497,2.821,1561,3.005,1575,3.005,1588,3.252,1593,4.878,1601,6.674,1642,6.969,1659,3.005,1664,6.969,1665,4.878,1666,3.626,1667,5.44,1668,3.626,1669,4.508,1670,5.44,1671,3.626,1672,3.626,1673,7.254,1674,7.254,1675,3.626,1676,3.626,1677,3.626,1678,3.626,1679,3.626,1680,3.626,1681,3.626,1682,3.626,1683,3.626,1684,3.626,1685,3.626,1686,3.626,1687,3.252,1688,3.005,1689,3.252,1690,3.626,1691,3.252,1692,5.44,1693,3.626,1694,3.626,1695,3.626,1696,3.626,1697,3.252]],["t/241",[4,0.866,7,0.769,16,2.048,21,3.632,26,3.414,32,1.883,41,0.726,52,0.844,53,0.877,69,1.065,76,2.123,77,2.607,93,3.172,116,1.33,172,3.937,213,3.477,241,2.385,256,2.385,259,2.048,280,3.19,289,4.86,333,2.739,420,4.33,463,4.33,509,3.172,552,3.286,555,2.671,589,3.731,634,3.414,757,6.733,763,3.56,819,2.547,833,2.891,885,4.194,976,4.33,978,3.937,983,2.671,986,4.194,1123,3.007,1163,4.486,1230,3.937,1285,4.661,1524,2.891,1591,3.937,1600,7.331,1601,6.16,1664,6.195,1698,5.061,1699,5.061,1700,5.061,1701,4.194,1702,7.866,1703,5.061,1704,5.061,1705,5.061,1706,4.194]],["t/244",[4,0.87,5,0.655,7,0.631,21,3.136,22,2.094,41,1.014,51,1.748,69,1.07,72,1.775,84,1.922,85,2.683,90,2.212,104,0.904,106,2.255,117,0.881,130,1.267,131,3.083,187,2.825,255,3.3,272,2.3,287,3.186,304,3.576,313,2.447,328,3.748,329,3.954,360,3.748,375,3.748,388,2.906,463,4.343,518,1.449,587,2.825,598,3.576,819,2.558,959,3.186,976,4.343,1123,3.016,1129,2.841,1163,3.3,1217,2.825,1252,3.954,1285,4.674,1294,4.212,1301,3.186,1302,2.396,1396,3.954,1469,3.576,1500,2.255,1503,3.41,1518,3.186,1537,3.748,1540,4.558,1565,4.212,1591,3.954,1592,3.748,1599,3.748,1601,4.674,1656,3.954,1669,5.742,1688,4.212,1689,4.558,1701,5.742,1706,4.212,1707,5.083,1708,4.212,1709,4.558,1710,4.558,1711,5.083]],["t/246",[7,0.564,19,1.253,21,3.759,22,2.55,23,5.551,117,1.105,192,2.55,255,4.02,272,2.801,421,3.883,518,1.765,538,4.02,544,4.815,634,4.176,742,5.13,757,6.746,819,3.116,881,4.815,885,6.54,975,5.13,1163,5.124,1217,3.441,1285,5.324,1407,5.551,1491,5.13,1537,4.564,1600,6.54,1601,5.324,1663,5.13,1691,5.551,1712,6.19,1713,6.19,1714,6.19,1715,6.19]],["t/248",[6,1.617,7,0.664,19,1.112,21,2.903,41,1.077,43,0.892,77,2.829,90,2.39,104,1.299,116,1.443,117,1.111,130,1.368,131,3.33,142,4.501,272,3.71,326,2.829,388,2.303,391,3.229,462,2.484,496,3.229,526,3.229,587,4.056,617,4.271,832,3.051,861,3.704,1123,2.39,1129,1.978,1252,4.271,1254,4.55,1278,3.229,1302,2.588,1482,2.829,1483,2.829,1512,3.229,1517,5.135,1520,4.271,1521,5.135,1522,4.048,1524,3.137,1542,4.271,1581,3.565,1652,4.923,1716,5.49]],["t/250",[3,4.238,7,0.479,14,1.026,15,1.094,19,1.066,21,2.823,34,1.348,41,1.072,43,0.855,52,0.878,53,0.913,62,2.482,72,1.839,76,2.209,85,2.78,87,2.599,104,1.263,115,2.353,117,0.67,130,1.313,188,1.928,192,2.17,201,4.228,236,1.681,271,4.788,272,3.633,302,3.553,303,4.788,304,3.705,369,2.927,389,2.536,518,1.502,641,3.098,894,3.883,898,3.883,954,4.364,1154,4.994,1278,3.098,1458,3.42,1482,2.713,1483,2.713,1500,3.562,1512,3.098,1518,3.301,1581,3.42,1656,4.097,1717,5.267,1718,5.267]],["t/253",[14,1.497,15,1.234,19,1.556,25,1.765,41,1.112,43,0.964,104,1.516,117,0.977,130,1.48,236,1.896,246,2.403,263,3.134,272,3.477,389,2.859,1278,3.493,1482,3.059,1483,3.059,1512,3.493,1581,4.989,1582,4.006,1583,4.378]],["t/255",[7,0.484,9,1.416,14,1.753,15,1.104,19,1.446,25,1.58,41,1.107,43,0.863,69,1.503,94,3.224,104,1.435,117,0.908,130,1.325,236,1.697,246,2.151,263,2.805,272,3.232,389,2.559,463,3.331,601,2.675,976,3.331,983,2.805,1123,2.313,1278,3.126,1482,2.738,1483,2.738,1503,2.615,1512,3.126,1581,4.637,1582,3.585,1583,3.919,1591,4.134,1592,3.919,1599,3.919,1669,4.404,1688,4.404,1706,4.404,1710,4.766]],["t/257",[6,1.062,7,0.436,14,1.296,15,0.995,19,1.347,21,2.646,25,1.424,34,1.568,41,1.102,43,0.778,67,2.357,69,1.4,77,3.427,104,1.36,116,1.259,117,0.972,130,1.194,142,4.254,236,1.529,246,1.939,263,2.528,270,2.817,272,3.458,391,2.817,496,2.817,587,2.662,617,3.726,636,2.528,761,3.969,795,4.68,875,2.528,1123,2.085,1129,1.726,1302,2.258,1412,3.37,1482,2.468,1483,2.468,1512,2.817,1520,3.726,1521,4.68,1522,3.532,1524,2.737,1542,3.726,1581,4.319,1582,3.231,1583,3.532,1599,3.532,1665,4.295,1719,4.79,1720,4.79,1721,4.79]],["t/259",[5,0.6,7,0.742,16,1.884,26,4.4,34,0.884,38,3.023,41,0.935,43,0.756,93,4.088,104,1.161,117,0.957,208,2.291,213,3.282,246,1.884,295,3.074,308,3.282,326,2.399,330,3.836,389,3.14,500,2.66,518,2.146,522,1.989,544,3.622,573,3.141,739,4.4,758,3.141,854,3.858,943,5.073,960,4.427,976,2.918,1128,3.625,1129,3.496,1301,4.088,1302,3.548,1500,3.34,1503,3.209,1504,5.848,1571,3.622,1624,3.858,1633,5.848,1634,5.855,1635,5.848,1636,5.848,1637,5.848,1638,5.848,1639,5.848,1640,5.848,1722,4.656,1723,8.156,1724,4.175,1725,4.175,1726,4.656,1727,5.848,1728,4.175,1729,4.175,1730,4.656]],["t/261",[4,0.671,5,0.505,7,0.622,14,0.764,16,2.332,17,1.289,21,1.559,26,5.084,30,2.178,34,0.744,41,0.996,43,0.636,52,0.653,69,1.586,84,1.482,101,2.374,105,1.739,116,1.515,117,0.733,130,0.977,190,2.457,195,2.757,196,2.122,208,3.708,246,1.586,255,3.742,259,1.586,280,2.661,281,3.248,295,4.197,316,2.178,326,2.019,447,1.887,497,1.787,522,3.804,555,3.042,568,2.545,589,2.89,645,2.89,854,5.664,875,2.069,960,4.432,986,3.248,1128,2.178,1129,3.586,1179,3.742,1301,5.263,1302,4.091,1303,2.644,1500,1.739,1503,1.929,1511,7.193,1594,3.248,1634,3.049,1724,6.129,1728,5.168,1729,3.515,1731,3.919,1732,5.168,1733,3.515,1734,3.919,1735,3.515,1736,3.919,1737,3.919,1738,3.919,1739,3.515,1740,6.835]],["t/263",[7,0.558,19,1.24,26,4.132,41,1.087,52,1.021,53,1.062,67,3.014,69,1.289,76,2.569,116,2.06,117,0.779,142,3.156,241,2.887,246,2.479,518,2.465,815,4.309,832,4.804,1123,3.412,1129,2.824,1302,3.695,1305,3.977,1503,3.014,1517,6.082,1519,5.076,1524,4.479,1594,5.076]],["t/265",[4,1.324,7,0.779,14,1.169,15,1.246,16,2.428,19,1.215,41,1.091,43,0.974,52,1,53,1.04,69,1.628,104,1.523,117,0.763,130,1.495,192,2.471,197,2.611,250,2.715,389,2.888,597,4.423,601,3.019,675,4.221,1154,4.221,1278,3.529,1482,3.091,1483,3.091,1500,3.798,1503,4.212,1512,3.529,1741,3.529]],["t/267",[0,2.382,4,1.299,5,0.979,6,1.462,7,0.786,9,2.188,14,0.922,30,2.63,34,1.441,41,0.863,42,3.175,43,1.071,44,2.23,51,1.627,52,1.1,53,1.316,54,2.783,55,2.966,56,2.783,69,0.996,76,2.766,87,1.732,89,3.879,102,3.329,107,2.328,115,1.387,187,2.63,189,2.87,209,2.06,233,2.561,246,1.915,271,5.122,276,3.072,291,3.192,340,2.63,364,2.438,466,2.498,565,3.192,601,2.382,636,4.008,641,3.879,753,2.783,922,3.681,945,2.87,1164,3.072,1239,3.921,1463,3.489,1477,4.283,1500,3.369,1503,2.328,1517,6.076,1524,2.703,1605,6.808,1606,4.243,1607,4.243,1608,4.243,1609,4.243,1610,4.243,1611,3.921,1612,3.489,1615,3.921,1616,3.921,1617,3.489,1619,3.921,1620,3.921,1621,3.489,1622,3.489,1742,4.732,1743,4.732]],["t/270",[7,0.675,14,1.444,15,1.168,19,1.501,25,1.671,41,1.11,43,0.913,69,1.746,104,1.476,117,0.715,130,1.401,246,2.276,263,2.968,389,2.707,960,4.879,1129,2.026,1278,3.307,1477,4.814,1482,2.897,1483,2.897,1500,3.29,1503,3.648,1510,6.144,1511,4.659,1512,3.307]],["t/272",[14,1.477,15,1.209,19,1.536,25,1.73,41,1.111,43,0.945,69,1.225,104,1.501,117,0.74,130,1.45,246,2.355,263,3.072,389,2.802,587,3.234,1278,3.423,1482,2.998,1483,2.998,1503,3.732,1510,6.284,1512,3.423,1733,5.218,1744,5.819,1745,5.819,1746,5.819,1747,5.819,1748,5.819]],["t/274",[4,1.027,7,0.546,14,1.169,15,1.246,19,1.215,31,1.664,41,1.091,43,0.974,69,1.263,77,3.985,104,1.068,117,0.763,130,1.495,142,3.091,389,2.888,443,3.639,497,2.399,555,3.167,618,3.639,875,3.167,1128,3.334,1129,2.162,1278,3.529,1301,3.76,1302,4.262,1482,3.091,1483,3.091,1500,3.432,1503,2.952,1512,3.529,1634,4.667,1727,5.38,1749,5.999]],["t/276",[7,0.736,19,1.302,43,1.044,101,2.649,104,1.144,117,1.179,296,3.394,435,2.995,447,3.096,518,1.833,520,4.741,618,3.9,641,4.755,753,3.782,833,4.618,1034,3.782,1123,2.799,1124,5.328,1129,3.186,1217,4.493,1302,3.031,1303,4.338,1457,5.766,1459,4.741,1500,3.923,1501,3.481,1532,5.002,1750,6.43,1751,6.43]],["t/278",[4,1.294,7,0.745,14,0.914,15,0.975,16,1.9,19,1.328,41,1.1,43,1.065,52,0.782,53,0.814,69,1.812,104,1.456,117,0.597,130,1.17,192,1.933,197,2.043,246,1.9,250,2.124,254,3.978,263,2.477,389,2.26,435,2.772,447,2.26,497,1.456,587,2.609,597,3.461,641,2.761,675,3.302,676,3.166,753,2.761,833,2.682,1123,2.043,1129,2.363,1154,3.302,1278,2.761,1302,3.563,1303,3.166,1374,3.651,1482,2.418,1483,2.418,1500,3.959,1501,2.541,1512,2.761,1524,3.747,1532,3.651,1741,2.761,1752,3.889,1753,5.435]],["t/280",[7,0.714,21,3.627,41,1.042,64,2.236,67,2.479,213,2.536,280,2.326,295,4.737,296,2.66,376,6.177,447,4.576,568,4.473,833,3.935,835,2.964,1128,5.282,1303,5.959,1494,3.272,1501,4.249,1687,4.518,1732,4.518,1753,5.708,1754,5.039,1755,5.039,1756,5.039,1757,7.848,1758,7.848,1759,5.039,1760,5.039,1761,7.848,1762,5.039,1763,5.039]],["t/282",[5,0.739,19,1.161,41,1.098,76,2.405,104,1.02,108,4.034,117,0.729,130,1.429,246,2.32,259,2.32,295,2.702,402,2.362,426,2.76,435,1.942,447,4.032,676,3.868,833,4.785,1123,2.496,1129,2.066,1302,4.189,1303,3.868,1305,4.876,1480,4.46,1481,4.751,1482,2.954,1483,2.954,1501,4.065,1524,3.276,1753,6.223,1764,7.51,1765,7.51]],["t/285",[7,0.567,21,2.475,28,3.15,41,1.092,43,1.011,447,4.193,815,4.379,833,3.556,1129,2.853,1154,4.379,1302,4.105,1501,4.715,1524,3.556,1528,7.101,1529,7.101,1576,5.157,1766,7.101,1767,6.223,1768,7.101,1769,6.223,1770,6.223]],["t/287",[41,1.032,43,1.235,518,2.168,753,5.266,833,4.345,943,5.916,1123,3.897,1302,4.22]],["t/289",[41,1.098,43,1.188,397,4.068,1273,5.149,1302,4.125,1498,6.065,1768,7.848]],["t/291",[41,1.066,43,1.235,447,3.662,1129,2.74,1501,4.117,1771,8.953,1772,7.605,1773,7.605]],["t/293",[41,1.078,43,1.243,447,3.686,1123,3.332,1129,2.758,1501,4.144,1532,5.955]],["t/295",[7,0.463,16,3.427,39,4.268,41,1.036,43,0.825,52,0.847,84,1.922,98,2.501,105,2.255,106,2.255,155,3.748,213,2.558,295,3.716,330,2.99,442,3.186,447,4.076,525,5.813,554,3.954,618,3.083,731,5.119,791,3.186,855,3.576,896,3.3,959,3.186,960,4.637,983,2.683,1129,3.626,1306,4.212,1458,3.3,1501,3.751,1725,7.592,1766,4.558,1774,6.213,1775,5.39,1776,7.884,1777,7.884,1778,5.083,1779,5.083,1780,5.083,1781,5.083,1782,5.083]],["t/297",[]],["t/300",[5,0.858,7,0.605,52,1.109,53,1.153,86,2.322,89,3.912,236,2.123,245,4.318,252,5.511,315,3.134,317,4.318,322,3.134,332,2.895,333,3.6,349,4.679,441,4.034,445,3.799,512,5.511,528,3.07,564,4.679,733,3.799,735,2.789,1103,8.05,1783,6.65,1784,5.963,1785,5.963,1786,8.978,1787,6.65,1788,6.65,1789,4.903,1790,6.65,1791,6.65]],["t/302",[0,3.149,7,0.723,28,3.473,31,1.736,41,0.835,52,1.043,53,1.085,60,4.241,63,5.858,64,2.776,66,3.68,70,4.063,129,1.667,130,1.559,372,2.949,455,4.867,506,3.795,562,3.478,753,4.674,797,4.867,819,3.149,1217,3.478,1663,5.185,1792,6.792,1793,6.257,1794,7.125,1795,7.125,1796,4.867,1797,6.584,1798,4.867,1799,5.611,1800,5.611,1801,5.611]],["t/304",[4,1.125,7,0.813,26,4.436,28,3.26,36,4.848,45,3.502,60,3.785,63,4.848,129,1.751,188,2.407,192,2.709,253,3.309,284,3.867,336,5.115,396,2.571,439,2.917,506,4.972,562,4.556,935,4.848,1104,4.626,1424,5.767,1794,8.009,1802,6.575,1803,8.197,1804,6.575,1805,6.575,1806,6.575]],["t/306",[4,1.1,5,0.829,6,1.425,49,3.782,62,3.031,89,4.755,109,4.175,173,3.313,189,4.903,193,4.524,330,4.755,451,5.687,500,3.674,731,4.175,779,3.9,1028,3.574,1034,4.755,1147,5.96,1179,5.249,1411,4.741,1458,4.175,1479,5.766,1785,5.766,1807,5.766,1808,7.216,1809,5.067,1810,5.002,1811,5.766,1812,5.766,1813,6.43,1814,6.43]],["t/308",[4,1.054,7,0.561,31,2.182,38,3.998,41,0.826,45,2.631,104,1.096,117,1.102,129,1.64,130,2.16,160,5.103,162,1.597,194,4.154,196,3.333,201,2.902,213,3.099,236,1.966,241,2.902,295,2.902,326,3.173,332,2.68,364,3.173,441,3.735,555,3.25,556,3.86,808,5.522,1028,4.371,1147,4.54,1231,4.154,1262,5.522,1494,5.107,1661,5.522,1808,6.741,1812,5.522,1815,5.522,1816,5.522,1817,6.158,1818,6.158,1819,6.158,1820,6.158]],["t/310",[1,2.071,4,0.434,5,0.327,7,0.375,14,1.279,15,1.078,17,2.158,18,2.775,22,1.045,31,2.054,32,1.931,39,2.227,43,0.843,45,1.758,51,1.785,64,1.125,69,0.866,72,0.886,76,1.064,86,0.886,87,1.506,91,1.784,93,1.59,98,1.248,99,1.277,106,1.825,116,1.569,117,0.894,129,1.382,131,2.496,138,4.114,142,3.076,162,1.346,166,1.647,170,1.758,173,2.674,176,2.35,184,1.171,193,1.784,197,1.104,199,2.912,201,1.196,208,1.248,233,2.227,238,2.024,244,3.053,245,5.007,248,2.894,256,1.196,259,1.027,264,2.12,267,3.232,276,1.647,280,2.757,284,1.492,295,1.196,305,1.647,317,1.647,332,1.791,333,2.227,337,2.102,340,1.41,341,4.948,369,4.114,390,1.307,404,1.307,405,1.084,420,2.579,421,1.248,435,2.381,441,1.539,490,1.41,500,2.35,503,1.277,513,2.884,520,1.87,522,1.084,523,1.711,524,1.87,527,3.651,538,1.647,546,2.274,555,1.339,565,1.711,645,3.033,728,3.148,731,1.647,733,2.35,763,2.894,800,2.102,817,3.033,819,1.277,835,1.492,841,1.647,916,1.539,935,1.87,987,1.492,1001,1.973,1093,1.784,1147,1.87,1231,2.775,1264,1.784,1411,1.87,1424,1.784,1453,1.973,1491,4.301,1497,1.973,1500,4.224,1518,1.59,1534,1.87,1650,3.689,1741,1.492,1808,6.643,1809,4.833,1810,1.973,1811,2.274,1815,2.274,1821,2.274,1822,2.536,1823,2.536,1824,6.563,1825,2.536,1826,4.645,1827,2.274,1828,5.19,1829,2.536,1830,1.87,1831,2.536,1832,2.274,1833,5.19,1834,2.536,1835,2.536,1836,2.536,1837,2.536,1838,2.536,1839,2.536,1840,2.536,1841,4.301,1842,2.274,1843,2.274,1844,2.536,1845,2.536,1846,2.536,1847,1.973,1848,2.536,1849,2.536,1850,2.536,1851,1.973,1852,2.536,1853,2.274,1854,2.536,1855,4.114,1856,2.536,1857,3.689,1858,1.973,1859,2.274]],["t/312",[5,0.698,6,1.2,7,0.741,12,4.525,17,1.78,31,1.502,34,1.028,38,3.515,51,1.862,62,2.552,84,2.047,89,3.184,95,3.652,109,3.515,117,1.151,130,1.349,150,3.093,162,1.404,173,2.789,189,3.284,244,4.253,246,2.191,270,3.184,322,2.552,326,3.725,445,3.093,458,4.878,497,2.997,499,3.393,502,3.817,518,2.477,542,2.356,708,4.854,735,3.033,779,3.284,945,3.284,975,4.486,1028,3.009,1123,2.356,1129,1.951,1179,3.515,1641,4.486,1808,4.211,1841,4.486,1860,6.112,1861,4.854,1862,4.854,1863,4.854,1864,4.486,1865,5.413]],["t/314",[5,1.035,6,1.778,562,5.134,1866,9.237]],["t/316",[5,1.108,7,0.782,17,2.333,32,2.64,51,2.44,62,3.344,87,2.598,101,2.923,188,2.598,193,4.992,330,4.174,396,2.775,562,3.944,728,4.304,779,5.211,932,5.578,1807,6.363,1867,4.992,1868,7.096,1869,6.363,1870,6.363]],["t/318",[5,0.873,7,0.447,17,2.546,22,2.023,28,1.953,31,1.362,32,1.827,33,3.189,34,0.932,51,2.328,69,1.034,75,2.889,117,0.624,166,3.189,170,2.098,199,2.179,209,2.138,230,2.222,236,2.664,237,3.455,267,2.659,296,2.592,317,3.189,321,3.664,322,2.315,326,2.53,332,3.633,338,3.189,367,4.07,369,3.762,370,3.82,396,1.92,405,2.891,435,1.664,497,2.402,518,1.93,522,2.098,527,3.455,534,4.566,542,2.946,562,2.73,706,4.755,744,3.455,746,3.82,748,2.806,841,3.189,889,3.189,1028,2.73,1128,4.865,1251,3.82,1363,4.07,1369,4.404,1735,4.404,1842,4.404,1871,4.911,1872,4.911,1873,4.911,1874,4.911,1875,4.911,1876,4.911,1877,4.911,1878,4.911,1879,3.82,1880,3.621,1881,4.911,1882,4.404,1883,4.404,1884,4.911,1885,4.404]],["t/321",[5,0.879,7,0.552,14,1.436,15,0.668,16,1.302,17,1.057,19,1.492,22,1.325,29,1.787,31,1.682,41,1.093,43,0.806,61,5.088,73,1.787,81,2.161,117,0.867,129,0.857,138,3.801,139,1.892,170,2.59,188,2.496,205,2.502,209,1.4,232,4.136,245,3.224,246,1.302,263,1.698,280,1.485,295,2.34,313,2.39,316,1.787,321,2.688,330,2.92,396,2.666,435,2.054,437,1.698,490,1.787,497,1.54,518,0.917,522,2.121,562,1.787,603,4.091,706,3.709,728,3.678,744,2.263,748,1.837,794,2.837,835,1.892,850,2.371,1028,4.512,1128,3.79,1421,2.884,1424,2.263,1500,2.203,1741,1.892,1810,2.502,1816,4.452,1821,2.884,1860,2.263,1883,2.884,1886,2.263,1887,3.216,1888,4.965,1889,3.216,1890,4.965,1891,3.216,1892,4.965,1893,4.091,1894,2.884,1895,3.216,1896,3.216,1897,3.216,1898,3.216,1899,3.216,1900,5.65,1901,6.064,1902,5.025,1903,3.216,1904,3.216,1905,3.216,1906,3.216,1907,3.216,1908,3.216,1909,3.216,1910,3.216,1911,3.216,1912,3.216,1913,5.437,1914,2.169,1915,3.216]],["t/323",[5,1.001,7,0.449,14,1.708,17,1.621,19,1.374,31,1.883,32,2.525,37,2.032,41,1.063,61,3.091,67,2.427,69,1.038,92,3.091,98,2.427,104,0.878,116,1.784,142,2.541,188,1.806,196,2.67,199,2.188,202,4.423,230,2.232,232,4.708,236,1.574,237,3.47,245,4.407,334,1.962,338,3.202,372,2.325,374,4.255,396,1.928,435,1.671,437,2.603,526,2.901,606,3.202,706,2.482,1128,2.741,1809,4.865,1841,4.087,1847,3.837,1864,4.087,1886,3.47,1893,3.327,1900,6.432,1916,4.579,1917,4.932,1918,4.932,1919,5.46,1920,4.932,1921,6.788,1922,3.837,1923,4.932,1924,4.932,1925,6.788,1926,4.932,1927,4.932,1928,4.932,1929,4.932,1930,4.932]],["t/325",[5,0.869,9,1.509,14,1.452,17,1.259,19,1.509,31,1.062,32,1.425,41,1.104,61,2.4,64,1.699,69,1.568,87,1.402,104,0.681,105,2.514,117,0.487,130,0.954,139,2.252,144,3.173,170,1.636,188,1.402,205,2.979,232,2.323,304,2.694,313,2.727,374,2.4,396,2.215,404,1.973,426,1.844,500,2.188,527,2.694,723,4.177,791,4.985,825,3.173,834,6.9,875,2.021,976,2.4,1741,3.332,1809,2.4,1830,4.177,1886,2.694,1900,3.173,1902,6.59,1913,6.046,1914,3.822,1916,5.365,1931,3.829,1932,3.829,1933,5.665,1934,3.829,1935,3.829,1936,3.829,1937,3.829,1938,5.665,1939,3.829,1940,5.08,1941,5.665,1942,3.829,1943,3.829,1944,3.829,1945,3.173,1946,3.829,1947,3.829,1948,3.829,1949,3.829,1950,3.829,1951,5.665,1952,3.434,1953,2.979,1954,3.829,1955,3.829,1956,3.829]],["t/327",[5,0.61,6,1.049,7,0.6,41,1.089,61,2.966,69,0.996,117,0.965,130,1.179,150,3.768,188,1.732,232,4.605,236,2.106,369,4.22,401,3.329,497,2.355,502,2.498,646,3.489,743,3.681,765,3.681,794,2.703,835,2.783,1028,3.666,1067,3.57,1123,2.06,1128,3.666,1129,1.705,1521,3.329,1659,3.921,1741,2.783,1809,2.966,1860,5.342,1864,3.921,1880,3.489,1893,3.192,1902,5.466,1914,3.192,1916,3.192,1919,3.329,1922,3.681,1957,5.914,1958,6.595,1959,3.489,1960,6.595,1961,6.595,1962,4.243,1963,6.595,1964,4.243,1965,4.732,1966,4.732,1967,6.595,1968,6.595,1969,6.595,1970,6.595,1971,4.732,1972,4.732,1973,4.732]],["t/329",[1,2.636,13,1.734,18,3.533,28,1.022,31,0.713,41,1.105,46,4.975,61,3.282,69,1.266,98,1.265,101,1.059,116,1.581,117,0.529,142,1.324,162,1.834,170,3.021,173,2.142,176,2.992,197,1.81,205,6.396,208,2.577,232,4.008,236,0.82,245,2.7,264,2.142,267,2.835,280,1.187,295,3.333,313,1.237,348,2.13,367,2.13,369,4.307,385,2.13,396,2.584,435,1.408,490,1.428,527,1.808,646,1.895,706,2.093,728,3.65,753,3.08,784,1.895,786,1.734,872,1.808,983,1.357,1128,2.311,1374,3.234,1424,2.925,1500,2.67,1741,2.446,1809,3.282,1826,5.5,1827,4.696,1830,3.861,1832,2.305,1843,2.305,1853,2.305,1858,4.073,1882,2.305,1893,3.533,1914,4.458,1916,4.059,1919,3.684,1945,4.986,1953,3.234,1957,2.305,1959,3.861,1974,2.57,1975,2.57,1976,2.57,1977,2.57,1978,2.57,1979,2.57,1980,5.237,1981,4.158,1982,3.446,1983,4.158,1984,2.57,1985,4.158,1986,2.57,1987,2.57,1988,2.57,1989,2.57,1990,2.57,1991,2.57,1992,2.57,1993,2.57,1994,2.57,1995,3.234,1996,4.158,1997,4.158,1998,3.446,1999,2.57,2000,2.57,2001,2.57,2002,2.305,2003,2.13,2004,2.13,2005,2.13]],["t/331",[1,2.135,5,0.97,6,0.94,7,0.485,17,1.75,32,0.98,34,1.27,39,1.426,41,1.067,46,2.984,51,2.099,52,0.439,53,0.457,61,1.651,62,1.241,69,0.554,72,0.92,84,0.996,87,1.553,92,1.651,99,1.326,117,0.776,150,1.505,170,1.125,173,1.357,196,1.426,208,1.296,232,2.573,246,1.066,267,2.296,308,1.326,316,1.464,333,1.426,334,1.687,335,2.362,338,1.71,340,1.464,369,4.179,372,1.241,388,2.56,396,1.03,401,2.984,404,2.185,436,1.192,443,1.598,462,1.192,490,1.464,497,2.426,502,1.39,518,2.5,522,1.125,542,1.846,545,1.942,547,1.942,552,1.71,568,1.71,646,1.942,706,4.264,713,2.357,728,3.702,735,1.779,739,1.777,744,5.96,745,2.362,746,4.142,748,3.042,759,1.549,786,1.777,794,1.505,832,2.959,835,1.549,900,2.362,904,1.651,906,3.59,919,1.853,923,3.515,935,1.942,998,1.777,1036,1.853,1128,1.464,1147,3.127,1163,1.71,1213,2.362,1216,1.853,1363,2.183,1405,2.362,1468,4.774,1469,2.984,1471,1.942,1507,2.362,1708,2.183,1752,2.183,1809,1.651,1810,2.049,1826,2.049,1830,1.942,1858,2.049,1860,2.984,1880,1.942,1893,1.777,1914,4.514,1916,3.592,1919,4.294,1922,2.049,1953,2.049,1959,1.942,1982,2.183,1995,2.049,1998,3.515,2003,2.183,2004,2.183,2005,2.183,2006,2.634,2007,2.634,2008,2.634,2009,2.634,2010,3.803,2011,4.241,2012,4.241,2013,4.774,2014,2.362,2015,2.634,2016,2.634,2017,4.241,2018,4.241,2019,4.241,2020,2.634,2021,2.362,2022,2.362,2023,2.634,2024,2.634,2025,2.634,2026,2.634,2027,2.634,2028,2.634,2029,2.634,2030,2.634,2031,2.634,2032,5.324,2033,2.634,2034,2.634,2035,2.634]],["t/334",[5,0.805,17,2.052,34,0.831,41,1.096,46,4.391,51,1.505,61,2.743,64,1.942,69,0.921,101,1.803,107,2.153,116,1.15,129,1.663,130,1.091,170,1.869,173,2.255,208,3.58,232,3.786,246,1.771,256,2.063,267,3.379,369,3.469,396,1.711,497,2.602,518,2.074,522,1.869,542,1.905,606,2.841,728,3.786,759,2.574,780,3.626,872,3.079,1035,2.841,1067,2.369,1411,3.226,1462,3.626,1494,2.841,1534,3.226,1809,2.743,1826,3.404,1830,3.226,1847,4.856,1858,3.404,1860,3.079,1879,3.404,1880,3.226,1886,3.079,1893,2.952,1914,4.211,1916,2.952,1919,3.079,1922,3.404,1953,3.404,1959,3.226,1982,3.626,1995,3.404,1998,5.173,2002,3.924,2003,3.626,2004,3.626,2005,5.173,2021,3.924,2022,3.924,2036,6.242,2037,6.242,2038,4.376,2039,3.924,2040,4.376,2041,4.376,2042,4.376,2043,4.376]],["t/336",[1,1.947,4,0.403,5,1.13,6,1.265,7,0.617,14,0.458,15,0.489,17,1.876,19,0.476,34,1.762,35,1.949,39,1.273,40,2.275,41,1.016,51,2.465,61,3.088,62,1.109,69,1.037,72,1.721,87,0.861,91,1.655,95,1.587,107,1.157,117,0.802,129,0.627,138,2.425,173,1.212,189,1.427,232,1.427,241,2.69,250,1.064,253,2.48,254,1.427,274,2.721,276,1.527,315,1.109,316,1.307,317,1.527,325,2.346,332,1.024,337,4.73,338,4.095,369,3.172,371,1.949,374,1.474,388,2.066,396,2.466,397,1.307,398,1.527,401,1.655,402,0.969,404,2.941,421,1.157,435,0.797,436,1.75,442,1.474,443,1.427,462,1.75,465,1.527,497,2.406,498,1.655,518,2.383,522,1.652,526,1.383,533,2.109,541,1.83,545,1.734,547,2.852,564,4.015,573,1.587,587,2.15,618,1.427,619,1.83,636,2.042,706,1.184,710,1.655,713,2.15,728,3.826,735,0.987,744,3.466,756,2.425,759,2.275,780,1.949,784,1.734,786,1.587,819,1.184,835,3.357,848,1.83,886,2.852,904,5.006,906,2.898,945,2.988,947,1.655,983,1.242,1155,2.109,1164,1.527,1212,1.949,1254,1.949,1256,2.852,1273,1.655,1285,1.587,1387,4.418,1453,1.83,1471,4.65,1485,1.83,1516,2.109,1576,1.949,1582,2.609,1624,1.949,1641,1.949,1701,3.205,1708,1.949,1809,3.578,1847,3.009,1860,4.015,1879,3.009,1880,1.734,1886,1.655,1893,3.323,1914,2.609,1916,2.609,1919,2.721,1952,4.418,1959,1.734,1962,2.109,2010,3.469,2013,2.109,2014,2.109,2039,2.109,2044,2.352,2045,3.868,2046,2.352,2047,2.352,2048,2.352,2049,2.352,2050,2.352,2051,2.352,2052,2.352,2053,2.352,2054,2.352,2055,2.352,2056,2.352,2057,2.352,2058,3.868,2059,2.352,2060,3.868,2061,3.868,2062,4.926,2063,2.352,2064,2.352,2065,2.352,2066,2.352,2067,2.109]],["t/340",[22,3.175,31,2.138,60,4.166,1792,5.995,2068,7.054,2069,6.91,2070,7.706,2071,7.706,2072,7.706]],["t/342",[5,1.014,7,0.716,17,2.585,107,3.869,129,2.094,360,5.797,2073,7.862,2074,7.05,2075,7.05]],["t/345",[5,1.014,7,0.789,22,3.24,28,2.449,29,3.422,41,0.91,65,3.998,66,4.626,95,4.154,101,2.537,129,1.64,197,2.68,397,3.422,409,4.332,528,2.843,597,4.54,798,4.332,819,3.099,901,3.998,1398,5.103,1449,5.522,1741,3.622,2068,6.39,2076,6.158,2077,6.158,2078,5.522,2079,6.158,2080,5.103,2081,7.053,2082,7.865,2083,6.158,2084,6.158,2085,6.158,2086,6.158,2087,5.522,2088,6.158,2089,5.522,2090,6.158,2091,6.158]],["t/347",[5,0.996,7,0.703,17,1.608,22,3.994,53,1.444,60,3.116,63,4.976,66,3.969,95,4.553,96,6.051,98,2.407,106,2.994,173,2.52,187,2.718,238,2.407,244,2.877,435,1.657,447,2.355,523,3.299,528,3.116,676,3.299,744,3.441,787,2.718,809,3.441,910,2.877,921,4.053,946,3.804,949,3.066,1179,3.176,1293,4.976,1398,4.053,1452,4.385,1485,3.804,1741,3.969,1792,6.011,2068,6.958,2069,4.385,2075,4.385,2080,4.053,2087,4.385,2092,4.891,2093,6.748,2094,4.891,2095,6.748,2096,6.748,2097,6.051,2098,6.748,2099,7.727,2100,4.891,2101,4.891,2102,4.891,2103,6.748,2104,4.891,2105,4.891,2106,4.891,2107,4.891,2108,4.891]],["t/349",[7,0.812,17,2.484,28,3.548,60,3.489,69,1.59,435,2.56,500,4.317,794,4.317,1293,5.571,2068,5.571,2080,6.262,2109,6.776,2110,7.556]],["t/353",[1,3.663,3,2.566,4,0.832,5,0.867,7,0.543,8,1.203,10,1.093,28,1.933,30,2.702,32,1.164,41,0.764,43,0.508,51,1.672,52,1.481,53,1.54,62,1.475,72,1.698,86,2.347,87,1.146,98,2.392,99,1.575,104,1.061,117,0.398,129,0.834,162,1.743,173,2.504,177,4.028,201,3.916,208,2.392,209,2.595,210,2.202,213,1.575,236,1.903,238,1.54,248,2.202,264,3.071,267,3.227,284,2.859,296,1.652,302,3.279,303,4.534,305,2.032,307,2.307,314,2.593,317,4.725,321,2.631,322,1.475,325,4.672,332,2.116,396,1.224,404,1.612,405,1.337,420,1.962,423,2.032,462,1.416,513,2.702,525,2.307,528,3.103,542,2.595,551,2.593,555,1.652,571,2.111,606,2.032,647,2.434,779,1.898,802,2.202,873,2.595,906,3.506,911,3.156,932,2.032,938,2.307,945,3.615,949,1.962,983,1.652,1028,1.739,1037,1.962,1051,2.593,1067,1.694,1068,2.202,1104,3.42,1136,3.781,1217,1.739,1322,2.593,1412,3.42,1461,2.434,1582,3.279,1775,3.781,1784,2.806,1885,2.806,2111,4.861,2112,4.861,2113,3.129,2114,4.861,2115,4.861,2116,4.028,2117,5.96,2118,4.861,2119,4.861,2120,4.861,2121,4.861,2122,4.861,2123,4.861,2124,3.129,2125,2.806,2126,2.806,2127,2.806,2128,3.129,2129,3.129,2130,3.129,2131,3.129,2132,3.129,2133,3.129,2134,3.129,2135,3.129,2136,3.129,2137,3.129,2138,3.129,2139,4.861,2140,3.129]],["t/355",[4,1.059,6,1.372,7,0.718,28,2.462,38,4.02,41,0.65,51,2.129,52,1.316,53,1.368,162,2.047,199,2.747,213,3.116,322,4.095,372,2.918,404,3.189,405,3.371,420,3.88,441,3.755,446,4.355,452,3.88,458,4.176,538,4.02,839,4.787,873,3.435,906,3.641,1028,4.828,1037,3.88,1136,6.758,1217,3.441,1415,5.551,2141,6.19,2142,6.19,2143,6.19,2144,6.19,2145,5.551,2146,6.19]],["t/357",[6,1.008,7,0.844,17,2.443,45,1.942,51,1.564,52,1.239,53,1.288,67,2.237,72,1.588,98,2.237,99,2.289,129,1.211,176,3.665,199,4.112,233,2.461,256,2.143,267,2.461,312,4.077,315,2.143,320,2.952,322,2.143,340,2.527,372,2.143,378,2.758,390,2.343,396,1.778,405,2.74,420,2.85,435,1.54,442,2.85,443,2.758,457,5.78,463,2.85,534,3.067,538,2.952,625,3.768,631,2.952,638,2.85,685,5.741,756,2.85,758,3.067,783,3.199,787,2.527,839,4.508,842,3.768,895,3.537,898,3.352,899,3.768,910,2.674,938,3.352,978,3.537,987,2.674,1211,3.199,1218,4.989,1255,3.768,1265,3.537,1360,6.62,1364,5.315,1365,5.751,1371,4.077,1372,4.077,1373,6.663,1375,3.768,1412,3.199,1436,4.077,1462,3.768,1485,3.537,1509,3.768,1657,3.768,1851,3.537,1857,4.077,1859,4.077,1861,4.077,2147,6.414,2148,4.077,2149,4.547,2150,4.077]],["t/360",[4,1.351,13,4.176,14,1.206,15,1.64,18,5.324,30,3.441,41,0.912,72,2.162,97,3.755,138,3.88,147,3.755,176,5.399,201,2.918,263,3.268,397,3.441,466,3.268,528,4.224,634,4.176,1255,5.13,1412,4.355,1461,4.815,2126,7.79,2127,7.79,2151,8.687,2152,8.687,2153,6.19,2154,6.19,2155,6.19,2156,6.19]],["t/363",[16,2.82,34,1.323,52,1.416,53,1.208,81,3.033,98,3.429,131,4.227,236,2.225,295,3.284,372,4.005,436,4.148,463,4.368,497,2.161,518,1.987,758,4.701,870,4.903,873,3.033,1129,3.438,1305,4.525,1523,5.138,2125,6.249]],["t/365",[3,4.029,5,0.758,7,0.535,12,3.267,17,1.932,28,3.036,52,0.98,53,1.019,81,2.559,84,2.223,115,1.723,117,0.97,192,2.421,201,3.995,305,3.817,326,3.028,330,4.49,369,3.267,386,4.871,499,4.785,503,2.959,542,2.559,573,3.965,596,4.572,714,5.149,715,6.542,728,3.566,755,4.785,819,2.959,870,4.135,873,2.559,899,4.871,945,3.566,954,4.871,967,4.871,1305,5.504,1423,5.271,1458,3.817,1851,4.572,2157,5.878,2158,5.878,2159,5.878,2160,5.878,2161,5.878]],["t/367",[17,2.091,19,1.929,43,1.304,107,3.95,189,4.87,201,2.997,308,4.04,388,2.667,421,3.129,497,2.955,518,1.813,528,2.936,715,4.474,755,3.986,889,6.317,938,5.919,946,4.947,948,4.947,1129,2.893,1294,5.27,1461,6.245,1886,4.474,2162,6.359,2163,6.359]],["t/369",[3,4.068,4,1.319,17,2.533,62,3.632,72,2.691,201,3.632,270,4.533,302,5.199,308,3.879,725,6.087,779,4.675]],["t/371",[1,2.515,3,3.615,4,0.411,5,0.822,6,0.532,7,0.455,9,0.639,14,0.468,15,1.038,17,1.643,19,0.796,29,1.334,32,1.463,34,1.433,41,0.964,52,0.963,53,1.002,62,1.131,64,1.065,75,1.412,79,1.065,87,0.879,99,1.98,101,2.627,104,1.028,116,1.313,117,0.635,129,0.639,130,1.589,155,2.9,185,4.141,186,1.77,192,1.62,196,2.129,201,3.79,238,1.181,255,1.559,274,1.689,276,1.559,296,1.267,302,3.371,307,1.77,308,1.98,313,1.894,314,1.989,320,1.559,326,1.237,328,1.77,333,1.299,342,1.505,371,1.989,388,1.65,390,1.237,396,2.259,404,2.027,405,1.026,413,4.26,442,1.505,444,2.153,445,1.372,497,1.55,499,2.466,518,0.684,522,3.09,539,2.153,540,1.689,545,3.684,570,1.867,602,1.989,627,1.867,631,1.559,652,4.141,683,4.495,713,3.544,730,2.153,731,2.554,735,2.674,739,4.879,769,1.867,787,1.334,825,4.141,828,1.989,832,3.807,833,1.372,862,2.153,872,2.767,874,1.867,894,1.77,896,2.554,898,1.77,916,1.456,982,2.153,987,1.412,997,3.06,1012,1.619,1118,1.989,1123,1.045,1129,0.865,1209,1.867,1210,1.989,1211,1.689,1217,1.334,1233,1.867,1235,1.989,1238,1.989,1248,2.153,1256,1.77,1360,6.54,1361,5.181,1375,1.989,1376,2.153,1377,4.481,1381,4.141,1401,4.26,1412,1.689,1458,2.554,1471,1.77,1489,1.77,1534,4.26,1535,1.989,1560,1.867,1656,1.867,1697,2.153,1774,2.153,1863,2.153,1940,2.153,1945,3.26,1964,2.153,2067,2.153,2081,2.153,2089,3.527,2097,5.181,2148,3.527,2164,2.4,2165,2.4,2166,2.4,2167,2.4,2168,2.4,2169,2.4,2170,2.4,2171,2.4,2172,2.4,2173,2.4,2174,2.4,2175,2.4,2176,2.4,2177,2.4,2178,2.4,2179,2.4,2180,2.4,2181,2.4,2182,2.4,2183,2.4,2184,2.4,2185,2.4,2186,2.4,2187,2.4,2188,2.4,2189,2.4,2190,2.4,2191,2.4,2192,2.4,2193,2.4,2194,2.4,2195,2.4,2196,2.4,2197,2.4,2198,2.4,2199,2.4,2200,2.4,2201,2.4,2202,3.933,2203,2.4,2204,2.4,2205,2.153,2206,2.4,2207,2.4,2208,2.4,2209,3.933,2210,2.4]],["t/373",[0,3.931,4,1.336,9,2.08,15,1.623,19,1.581,43,1.268,72,2.727,503,3.931,779,4.737,1458,5.071]],["t/375",[4,0.974,5,0.497,6,0.519,7,0.774,8,1.482,10,1.346,15,0.487,16,0.948,17,1.872,28,3.081,29,1.302,31,1.069,32,1.434,37,2.024,39,1.268,41,1.002,42,1.856,43,0.925,44,4.589,45,3.057,46,1.648,49,4.397,50,3.818,51,1.958,52,1.129,53,1.383,54,2.89,55,3.569,56,2.268,60,1.082,66,2.268,67,2.417,69,0.811,72,1.346,89,1.378,98,1.153,104,0.417,105,1.711,129,1.676,130,1.419,139,1.378,162,1.274,173,1.207,190,1.468,197,1.02,198,2.712,209,2.947,210,1.648,212,2.203,213,1.179,233,1.268,236,0.748,244,1.378,264,1.207,273,1.941,291,2.601,313,1.128,315,2.966,321,4.047,325,1.421,332,1.02,333,1.268,340,1.302,349,1.648,350,2.101,359,1.941,374,1.468,405,1.001,423,2.503,435,1.306,458,2.601,465,2.503,479,4.006,480,1.822,493,2.101,499,1.468,500,1.338,503,1.179,506,2.339,513,3.762,556,1.468,748,1.338,765,1.822,795,1.648,839,1.421,873,1.678,875,1.237,895,1.822,901,1.521,906,2.89,910,2.268,911,3.697,914,2.101,921,1.941,926,3.195,932,1.521,998,1.58,1008,2.101,1009,2.101,1010,2.101,1116,2.601,1156,2.101,1157,2.101,1158,2.999,1164,1.521,1168,3.457,1231,1.58,1241,1.822,1286,3.457,1293,1.727,1505,1.468,1612,1.727,1621,2.843,1622,3.622,1752,1.941,1789,1.727,1851,1.822,2109,2.101,2211,2.343,2212,2.343,2213,2.343,2214,2.343,2215,2.343,2216,2.343,2217,2.343,2218,2.343,2219,3.457,2220,2.343,2221,2.343,2222,2.343,2223,1.941,2224,3.195,2225,3.195,2226,1.941,2227,2.343,2228,2.101,2229,3.855,2230,2.101,2231,2.343,2232,2.343,2233,2.343,2234,4.913,2235,2.343,2236,2.343,2237,2.343,2238,2.101,2239,2.343,2240,2.343,2241,2.343,2242,2.343,2243,2.343,2244,2.343,2245,3.855,2246,2.343,2247,3.855,2248,2.343]],["t/377",[0,2.146,5,0.55,6,0.945,7,0.388,9,1.136,15,0.886,28,2.437,32,1.586,41,0.448,42,2.053,43,0.995,44,4.375,45,1.822,46,6.709,49,3.604,50,4.35,51,1.466,52,1.307,53,1.544,54,2.508,55,4.495,56,2.508,57,3.823,58,5.494,64,1.892,65,2.769,66,3.604,67,2.098,72,2.14,84,1.612,104,1.276,105,1.892,130,1.063,139,2.508,162,1.106,187,2.37,209,2.667,210,3,233,2.308,291,2.876,321,2.308,340,2.37,423,2.769,503,2.146,525,3.144,528,1.969,618,2.586,636,2.251,784,3.144,906,2.508,911,2.769,926,5.077,1164,2.769,1241,4.766,1505,2.673,1574,3.317,1612,3.144,1617,4.518,1621,3.144,1622,5.288,1789,3.144,1867,4.311,1894,3.823,2116,3.533,2223,3.533,2224,3.533,2225,3.533,2226,3.533,2228,6.431,2230,6.431,2238,3.823,2249,4.264,2250,4.264,2251,4.264,2252,5.494,2253,5.494,2254,6.127,2255,4.264,2256,4.264,2257,4.264,2258,3.823]],["t/379",[4,1.346,28,3.127,52,1.311,53,1.363,60,3.63,72,2.746,250,3.558,2259,7.862,2260,7.862]],["t/381",[0,2.056,3,2.156,5,0.527,6,1.316,7,0.637,8,1.57,9,1.088,10,1.426,15,0.849,19,1.203,28,3.057,41,1.066,42,1.966,43,0.663,52,0.681,53,0.708,60,2.742,63,6.02,64,2.635,66,2.402,72,1.426,81,1.778,84,1.545,90,1.778,104,1.057,117,0.755,119,3.011,127,5.326,129,1.088,130,1.018,160,4.922,162,1.54,163,3.177,164,3.603,165,3.177,176,3.393,209,2.585,210,2.874,211,3.857,236,1.896,322,2.799,372,1.925,435,1.384,447,1.966,455,3.177,499,2.56,506,2.478,556,2.56,636,2.156,748,2.334,753,2.402,875,3.135,896,2.652,952,3.663,998,2.755,1064,3.385,1093,2.874,1217,2.27,1503,2.01,1523,3.011,1617,3.011,1741,4.52,1789,3.011,1792,5.978,1795,3.663,1797,4.922,1798,3.177,1799,3.663,1800,3.663,1801,3.663,1995,4.62,2252,3.663,2253,3.663,2261,4.084,2262,7.685,2263,5.939,2264,3.663,2265,4.084,2266,4.084,2267,4.084,2268,4.084,2269,4.084,2270,4.084,2271,4.084,2272,4.084,2273,4.084,2274,4.084]],["t/383",[5,0.968,17,2.468,60,3.466,72,2.622,84,2.839,90,3.268,528,3.466,542,3.268,587,4.173,933,6.732,1219,6.221,1741,4.416,2068,6.551,2275,7.507,2276,7.507]],["t/385",[7,0.666,28,2.911,37,3.015,51,3.01,188,2.679,192,3.015,435,2.479,797,5.693,840,5.149,911,4.752,1084,6.563,1178,6.563,1796,5.693,2277,7.319,2278,7.319,2279,7.319,2280,7.319,2281,7.319,2282,7.319]],["t/387",[14,1.281,15,1.703,28,2.615,51,2.819,52,1.367,53,1.421,60,3.036,64,2.917,106,2.917,188,3.001,313,3.165,342,4.121,396,2.571,853,5.115,855,4.626,962,5.115,1241,5.115,1550,5.449,2283,6.575,2284,6.575,2285,6.575,2286,6.575,2287,7.351,2288,6.575,2289,6.575,2290,6.575,2291,6.575,2292,6.575,2293,6.575,2294,6.575,2295,6.575,2296,6.575]],["t/389",[15,1.414,28,3.331,51,3.255,52,1.512,53,1.18,64,3.716,115,2.455,250,3.08,396,2.661,435,3.073,600,4.788,722,5.018,794,3.888,840,4.788,1323,6.103,2287,7.509,2297,9.071,2298,6.805,2299,6.805]],["t/391",[51,2.704,52,1.311,53,1.363,129,2.094,256,3.706,284,4.625,779,4.769,1796,6.116,2300,7.862]],["t/393",[7,0.522,15,1.191,28,2.28,34,1.088,39,3.104,40,3.372,42,2.76,44,3.947,45,2.449,49,3.372,50,3.478,52,1.482,53,1.541,66,3.372,81,2.496,106,2.544,117,0.729,200,4.227,204,5.141,209,2.496,210,4.034,230,2.594,256,2.702,315,3.54,316,4.174,321,3.104,334,2.28,391,3.372,402,2.362,423,3.723,436,2.594,447,2.76,479,4.034,552,3.723,556,4.707,600,4.034,636,3.026,735,2.405,786,3.868,833,3.276,873,3.269,906,4.417,1037,4.707,1085,4.034,1118,4.751,1789,4.227,1867,5.284,2116,6.223]],["t/395",[8,2.393,10,2.174,41,0.832,43,1.011,44,2.933,50,4.803,51,2.14,52,1.452,53,1.589,54,3.661,55,3.901,56,3.661,67,3.063,104,1.107,105,2.762,106,2.762,117,0.791,139,4.658,188,2.899,209,2.709,233,3.369,291,4.198,340,3.459,396,2.433,850,4.589,855,4.379,1164,4.041,1233,4.841,1505,3.901,1612,4.589,1621,4.589,1622,4.589,1862,5.581,2223,5.157,2224,5.157,2225,5.157,2226,5.157,2258,5.581,2301,5.157]],["t/397",[4,0.661,5,1.029,6,1.09,7,0.745,9,1.029,14,0.752,15,0.488,16,0.95,29,1.305,34,1.471,37,2.027,40,3.353,41,0.859,44,3.376,50,4.841,52,1.33,53,1.384,56,3.706,60,1.783,64,1.713,66,1.381,72,0.82,73,2.146,77,1.209,79,2.796,81,2.743,84,1.46,85,1.239,90,1.681,97,1.424,101,0.967,104,0.687,106,1.713,107,3.1,115,0.688,117,0.491,122,1.471,129,1.31,130,0.962,138,1.471,162,1.276,164,1.424,170,2.692,183,1.209,188,3.113,189,2.342,198,2.717,199,1.042,207,1.471,209,1.022,230,2.226,233,2.09,236,2.011,238,2.805,250,1.747,253,1.181,256,1.106,259,1.991,264,1.209,276,2.507,288,1.945,296,1.239,313,2.744,315,1.82,332,2.141,334,1.957,349,2.717,364,2.535,374,1.471,375,1.731,382,1.584,389,1.859,396,1.924,402,1.591,405,1.003,426,1.13,435,1.666,436,3.241,439,1.042,440,1.945,441,1.424,447,1.13,452,2.421,462,3.066,466,1.239,522,1.003,528,1.084,538,2.507,606,1.524,631,1.524,636,3.009,706,1.181,735,0.985,782,2.507,785,2.847,787,2.734,832,2.146,835,1.381,841,3.701,851,1.731,855,1.651,875,1.239,910,2.894,932,1.524,959,1.471,960,1.381,983,1.239,998,1.584,1067,2.09,1081,2.105,1083,2.105,1085,5.039,1086,2.105,1087,2.105,1095,2.105,1116,2.605,1129,0.846,1214,2.105,1264,2.717,1265,3.004,1404,1.826,1414,3.004,1480,1.826,1489,1.731,1490,3.463,1506,2.105,1615,1.945,1616,1.945,1617,1.731,1709,2.105,2078,2.105,2301,4.724,2302,2.347,2303,2.347,2304,2.347,2305,2.347,2306,2.347,2307,2.347,2308,3.463,2309,2.347,2310,2.347,2311,2.347,2312,2.347,2313,2.347,2314,2.347,2315,2.347,2316,2.347,2317,2.347,2318,2.347,2319,3.463,2320,3.463,2321,2.347,2322,2.347,2323,2.347,2324,2.347]],["t/399",[0,1.655,4,1.052,5,0.424,6,1.119,7,0.769,14,0.641,22,1.355,34,0.959,37,2.533,41,0.646,42,2.96,43,0.82,44,3.509,45,1.405,49,1.934,50,5.122,51,1.131,52,1.364,53,1.419,56,4.058,64,1.459,73,1.828,79,2.241,84,1.244,86,2.148,97,3.73,106,2.241,107,3.026,129,1.638,139,1.934,162,1.931,173,1.694,183,1.694,184,1.518,187,1.828,188,2.877,213,2.542,230,1.488,236,2.203,244,1.934,253,2.542,254,3.064,256,1.55,259,3.013,267,1.78,296,1.736,313,3.322,315,3.252,364,4.351,391,4.967,392,3.166,393,2.725,394,2.725,395,4.186,396,1.975,397,1.828,398,3.28,399,2.949,400,2.949,401,2.314,402,1.355,404,1.694,405,2.627,406,2.558,407,3.929,420,2.061,421,1.618,422,2.949,423,2.135,432,3.724,436,2.286,440,2.725,441,1.995,447,1.583,475,2.949,476,2.949,477,2.949,478,2.725,479,2.314,480,2.558,481,2.949,482,2.949,483,2.949,484,2.425,485,2.949,486,2.949,487,2.949,488,2.949,490,1.828,542,1.431,565,2.218,735,1.379,787,1.828,1064,2.725,1404,2.558,1489,4.534,1619,2.725,1620,2.725,2301,5.096,2319,2.949,2320,2.949,2325,3.288,2326,3.288,2327,3.288,2328,3.288,2329,3.288,2330,3.288,2331,3.288,2332,3.288]],["t/401",[0,2.886,4,1.285,5,0.739,6,1.271,15,1.191,28,2.987,34,1.088,44,3.54,45,3.208,49,3.372,50,3.478,52,1.396,53,1.302,64,2.544,66,3.372,72,2.623,99,2.886,102,4.034,129,2,130,1.429,188,2.099,195,4.034,199,2.544,201,2.702,230,2.594,254,3.478,256,3.54,258,5.842,315,2.702,321,3.104,334,2.28,378,4.555,484,4.227,497,1.778,518,1.635,743,4.46,748,3.276,794,4.291,873,2.496,910,3.372,911,3.723,1158,4.46,1264,4.034,1404,4.46,1489,4.227,1739,5.141,2308,5.141,2333,5.733,2334,5.733,2335,5.141,2336,5.733]],["t/403",[1,3.019,2,4.667,4,1.465,5,0.774,6,1.33,7,0.546,15,1.246,29,3.334,34,1.468,37,2.471,43,1.256,44,2.828,52,1,53,1.04,60,3.571,72,2.701,73,4.299,84,2.925,88,4.667,89,3.529,100,5.38,129,1.598,130,1.495,131,3.639,166,3.895,190,3.76,250,2.715,256,2.828,271,4.047,272,2.715,330,3.529,336,4.667,497,1.861,542,2.611,618,3.639,634,4.047,895,4.667,1035,3.895,1204,6.409,1217,3.334,1396,4.667,1869,5.38,1870,5.38,2337,5.999,2338,5.999,2339,5.999]],["t/406",[1,3.067,4,1.043,7,0.555,14,1.187,21,2.424,31,1.69,39,3.299,44,2.872,52,1.302,53,1.354,54,3.584,55,3.819,62,2.872,192,2.51,196,3.299,360,5.76,396,2.383,402,2.51,465,3.956,480,4.74,555,3.216,748,3.481,753,5.072,795,5.496,832,4.342,834,5.049,835,3.584,896,3.956,901,3.956,919,4.287,935,4.493,1230,4.74,1505,3.819,1601,5.817,1798,4.74,2340,6.093,2341,6.093,2342,6.093,2343,6.093,2344,6.093,2345,6.093,2346,6.093,2347,6.093]],["t/408",[7,0.592,28,3.238,41,0.683,44,4.731,45,3.477,49,5.227,52,1.553,53,1.615,54,3.824,55,4.075,104,1.157,256,3.064,340,3.613,484,4.794,511,6.332,873,2.83,1240,5.83,1293,6.002,1535,5.388,2219,5.83,2348,6.501]],["t/410",[7,0.683,52,1.252,53,1.302,60,3.466,233,4.064,506,4.554,511,6.912,795,5.282,817,5.535,1067,4.064,1797,6.221,1798,6.912,2074,6.732,2349,7.507]],["t/412",[4,0.807,5,1.057,6,1.755,7,0.69,9,0.801,12,1.672,13,2.029,16,1.217,21,1.197,33,1.953,34,1.775,37,1.942,40,1.769,42,2.798,44,1.418,51,1.035,52,0.786,53,1.008,54,1.769,60,1.389,64,2.091,65,1.953,70,1.953,75,3.418,81,1.309,84,1.138,85,1.588,86,1.051,87,1.101,90,2.863,91,2.116,92,2.955,93,1.886,117,0.908,166,1.953,168,2.493,178,2.493,201,1.418,230,1.361,231,2.116,236,1.505,247,2.697,253,1.514,272,2.133,274,2.116,284,1.769,289,2.116,299,1.418,316,1.672,320,1.953,321,1.628,322,1.418,325,1.825,331,2.697,332,2.53,334,1.197,339,2.218,341,2.493,356,2.697,378,1.825,388,2.759,389,1.448,391,3.418,420,1.886,435,1.019,436,3.429,443,2.859,462,3.232,464,2.218,496,2.772,497,1.462,499,2.955,500,1.719,502,1.588,513,1.672,517,2.493,518,1.875,526,1.769,528,3.037,543,2.697,554,2.34,564,4.089,582,3.18,587,1.672,590,2.493,623,2.34,624,2.218,636,1.588,706,1.514,711,2.34,712,2.116,714,2.029,715,2.116,716,2.34,717,2.34,718,2.218,719,2.218,720,2.116,721,2.218,722,2.218,723,2.218,724,2.697,725,2.029,726,2.697,727,2.34,733,1.719,735,1.977,748,1.719,756,1.886,794,1.719,819,2.372,839,1.825,841,1.953,851,2.218,896,1.953,911,1.953,934,2.697,947,3.316,963,4.227,976,1.886,987,1.769,997,2.34,1012,2.029,1028,1.672,1034,1.769,1085,2.116,1104,2.116,1146,2.493,1151,2.493,1163,1.953,1217,2.62,1231,2.029,1251,2.34,1400,2.697,1403,2.697,1459,2.218,1487,2.697,1501,1.628,1505,2.955,1542,2.34,1574,2.34,1575,2.493,1611,2.493,1775,2.34,1796,2.34,1867,2.116,2205,2.697,2350,3.008,2351,4.713,2352,3.008,2353,3.008,2354,3.008,2355,3.008,2356,3.008,2357,3.008,2358,3.008,2359,3.008,2360,3.008,2361,3.008]],["t/414",[4,1.577,5,1.236,6,1.897,16,3.464,17,2.814,34,1.339,84,3.237,129,1.879,256,3.324,334,2.805,396,2.758,497,2.187,518,2.011,534,4.758,542,3.07,1775,5.486,2362,7.053]],["t/416",[4,1.369,5,1.253,6,1.773,34,1.519,40,3.72,43,1.027,45,2.702,51,2.175,81,2.753,87,2.316,104,1.424,117,1.017,130,1.576,199,2.807,322,2.981,326,3.259,388,3.868,445,3.614,518,1.803,522,2.702,542,2.753,624,4.664,636,3.339,675,4.45,706,4.027,733,3.614,735,2.653,997,4.92,1085,4.45,1390,5.672,2363,5.672]],["t/418",[4,1.237,6,2.064,34,1.372,42,3.48,43,1.174,87,2.646,104,1.286,117,0.919,199,3.207,244,4.251,388,3.032,436,3.271,439,3.207,445,4.13,462,3.271,518,2.061,542,3.146,733,4.13,2363,6.481,2364,6.481]],["t/420",[64,3.611,72,2.842,1574,6.33,1867,5.725]],["t/422",[60,3.783,72,2.862,779,4.971]],["t/424",[4,1.402,72,2.862,779,4.971]],["t/426",[4,1.403,15,1.366,67,3.235,81,2.862,87,2.407,98,3.235,101,2.709,105,2.917,130,1.639,131,3.988,162,1.705,187,3.654,201,3.099,203,5.449,305,4.269,316,3.654,378,5.418,405,2.809,436,2.975,439,2.917,441,3.988,465,5.8,466,3.471,783,4.626,841,4.269,1264,5.767,1411,4.848,1879,5.115,2150,5.896,2335,5.896,2365,6.575,2366,6.575]],["t/428",[1,3.957,2,6.116,3,4.819,4,1.346,62,3.706,188,2.878,264,4.051,1256,5.797]],["t/430",[102,5.685,562,4.491,896,5.247,1867,5.685,2264,7.246]],["t/432",[2367,8.311]],["t/434",[6,1.708,34,1.463,42,3.71,43,1.251,244,4.533,436,3.487,439,3.419,462,3.487,518,2.197,542,3.354,739,5.199,2364,6.91]],["t/436",[41,1.065,42,3.638,104,1.345,391,4.445,436,3.419,462,3.419,496,4.445,518,2.154,582,5.098,794,4.317]],["t/439",[6,1.474,34,1.833,52,1.109,53,1.153,62,3.134,99,3.347,174,4.903,231,4.679,233,3.6,250,3.009,256,3.134,315,3.134,339,6.619,340,3.696,397,3.696,551,6.841,587,3.696,589,4.903,769,5.173,789,5.173,1036,4.679,1210,5.511,1458,4.318,2145,5.963,2368,6.65,2369,6.65,2370,6.65,2371,6.65,2372,6.65]],["t/441",[4,1.022,5,1.101,6,1.953,7,0.64,9,1.096,14,1.369,15,1.24,25,1.775,32,1.53,34,1.334,39,2.227,41,1.023,52,0.995,53,1.035,69,1.256,85,2.171,90,1.79,94,2.495,104,1.372,106,1.825,115,2.06,116,1.081,117,0.523,129,1.59,130,1.025,132,3.2,172,3.2,194,2.775,196,3.804,197,1.79,212,2.35,230,2.701,280,1.899,308,4.435,315,1.939,323,5.353,333,2.227,334,1.636,349,4.944,378,3.621,404,3.076,421,2.024,426,1.98,461,3.688,497,1.852,518,2.664,522,2.55,541,3.2,598,2.894,638,2.578,641,3.512,705,3.688,706,3.537,748,2.35,759,2.419,794,5.157,835,2.419,873,1.79,998,2.775,1256,3.033,1534,3.033,2373,4.113,2374,4.113,2375,4.113,2376,5.97,2377,4.113]]],"invertedIndex":[["",{"_index":41,"t":{"4":{"position":[[624,1],[751,3],[984,1],[986,3],[990,1],[992,3],[1291,1],[1320,1],[2544,1],[2546,1],[2596,3],[2608,1],[2774,1],[2776,1],[2778,1],[2951,1],[2992,1],[4057,1],[4118,1],[4216,1],[4248,2],[4319,2],[4340,1],[4389,2],[4403,1],[4405,1],[4502,1],[4652,1],[4654,1],[4656,2],[4670,1],[4672,1],[4736,1],[4795,1],[4797,1],[4799,2],[4814,1],[4816,1],[4937,1],[4973,1],[4975,2],[4978,1],[5161,1],[5196,1],[5198,1],[5200,1],[5202,1]]},"10":{"position":[[146,2]]},"12":{"position":[[991,1],[1002,1],[1016,1],[1062,1],[1064,2],[1067,2],[1070,3],[1074,1],[1740,1],[1751,1],[1761,1],[1807,1],[1809,2],[1812,2],[1815,3],[1819,1],[2359,1],[2370,1],[2384,1],[2449,1],[2451,2],[2454,2],[2457,3],[2461,1],[2937,1],[2948,1],[2962,1],[3008,1],[3010,2],[3013,2],[3016,3],[3020,1],[3228,1],[3230,3],[3234,1],[3707,1],[3718,1],[3732,1],[3799,1],[3801,2],[3804,2],[3807,3],[3811,1]]},"14":{"position":[[468,1],[500,6],[507,2],[510,3],[514,1]]},"20":{"position":[[356,1],[369,1],[371,5],[377,2],[391,1],[393,5],[399,2],[414,1],[416,1],[517,2],[520,1],[570,5],[576,2],[579,1],[622,5],[628,2],[631,5],[637,1],[639,1],[821,1],[958,1],[994,1],[996,1],[1174,1],[1356,1],[1391,1],[1393,1],[1554,1],[1701,2],[1866,1]]},"24":{"position":[[248,2],[659,2]]},"26":{"position":[[247,1],[249,1],[308,1],[416,1],[418,1],[420,1],[525,1],[538,1],[540,1],[599,1],[707,2],[726,1],[728,1],[730,1]]},"30":{"position":[[446,1],[448,1],[525,1],[674,1],[676,1],[678,1],[783,1],[796,1],[798,1],[875,1],[1024,2],[1044,1],[1046,1],[1048,1]]},"34":{"position":[[269,1],[271,1],[346,1],[458,1],[460,1],[462,1],[567,1],[580,1],[582,1],[657,1],[769,2],[795,1],[797,1],[799,1]]},"36":{"position":[[382,1]]},"38":{"position":[[190,1],[192,1],[270,1],[329,1],[331,1],[333,1],[438,1],[451,1],[453,1],[531,1],[590,2],[610,1],[612,1],[614,1]]},"45":{"position":[[701,1],[703,1],[765,1],[845,1],[847,1],[849,1],[954,1],[967,1],[969,1],[1031,1],[1111,2],[1132,1],[1134,1],[1136,1]]},"49":{"position":[[127,1],[151,1]]},"52":{"position":[[837,1],[839,1],[892,1],[966,1],[968,1],[970,1],[1075,1],[1088,1],[1090,1],[1143,1],[1217,2],[1237,1],[1239,1],[1241,1]]},"56":{"position":[[23,1],[43,1],[66,2],[87,1],[204,2],[225,1],[368,2],[427,1],[440,1],[442,1],[532,2],[553,1],[579,2],[600,1],[743,2],[802,1],[815,1],[817,1],[907,2],[921,1],[923,1],[999,1],[1073,2],[1087,1],[1113,2],[1174,1],[1176,2],[1179,1],[1255,1],[1289,2],[1420,1],[1422,2],[1425,1],[1501,1],[1586,2],[1679,1],[1681,2],[1684,1],[1757,1],[1849,1],[1851,2],[1854,1],[1927,1],[2020,2],[2145,1],[2147,2],[2150,1],[2189,2],[2284,1],[2377,1],[2379,2],[2382,1],[2425,2],[2520,1],[2645,1],[2647,2],[2650,1],[2731,1],[2816,1],[2818,2],[2821,1],[2900,1],[3037,5],[3043,1],[3045,2],[3048,1],[3135,1],[3156,1],[3158,1],[3160,2],[3174,1],[3176,1],[3226,1],[3289,1],[3291,2],[3294,1],[3344,1],[3407,1],[3409,2],[3412,1],[3462,1],[3525,1],[3527,2],[3530,1],[3577,1],[3682,1],[3684,1],[3686,1],[3688,1]]},"58":{"position":[[24,1],[26,1],[28,2],[163,1],[236,1],[238,2],[241,1],[298,1],[371,1],[373,2],[376,1],[433,1],[517,1],[519,2],[522,1],[545,1],[547,1],[604,1],[696,1],[698,2],[701,1],[758,1],[882,1],[884,2],[887,1],[918,1],[1011,1],[1013,1],[1015,1],[1042,1],[1044,1],[1075,1],[1200,1],[1202,1],[1204,1],[1230,1],[1232,1],[1292,1],[1429,5],[1435,1],[1437,1],[1439,1],[1468,1],[1470,1],[1535,1],[1557,1],[1559,1],[1561,1],[1586,1],[1588,1],[1620,1],[1683,1],[1685,2],[1688,1],[1720,1],[1783,1],[1785,2],[1788,1],[1820,1],[1883,1],[1885,1],[1887,1],[1912,1],[1914,1],[1943,1],[2048,1],[2050,1],[2052,1]]},"62":{"position":[[121,1],[123,1],[125,1],[127,1],[151,1],[153,1],[155,1],[157,1],[200,1],[202,1],[204,1],[206,1],[232,1],[234,1],[236,1],[238,1],[265,1],[267,1],[269,1],[271,1],[296,1],[298,1],[300,1],[302,1],[325,1],[327,1],[329,1],[331,1],[354,1],[356,1],[358,1],[360,1],[385,1],[387,1],[389,1],[391,1],[428,1],[430,1],[432,1],[434,1],[464,1],[466,1],[468,1],[470,1],[512,1],[514,1],[516,1],[518,1],[542,1],[544,1],[546,1],[548,1],[573,1],[575,1],[577,1],[579,1],[623,1],[625,1],[627,1],[629,1],[657,1],[659,1],[661,1],[663,1],[686,1],[688,1],[690,1],[692,1],[717,1],[719,1],[721,1],[723,1],[749,1],[751,1],[753,1],[755,1],[798,1],[800,1],[802,1],[804,1],[829,1],[831,1],[833,1],[835,1],[866,1],[868,1],[870,1],[872,1],[894,1],[896,1],[898,1],[900,1],[935,1],[937,1],[939,1],[941,1],[972,1],[974,1],[976,1],[978,1]]},"69":{"position":[[197,1],[280,1],[282,2],[285,3],[289,2],[292,1],[331,3]]},"71":{"position":[[394,1],[404,1],[406,2],[409,3],[413,2],[427,1],[451,1],[469,2],[535,2],[602,1],[604,1],[606,1]]},"73":{"position":[[679,1],[689,1],[691,2],[694,3],[698,2],[712,1],[714,2],[762,2],[833,1],[835,1]]},"75":{"position":[[319,1],[724,2],[756,2],[834,2],[932,2],[1344,1],[1354,1],[1356,2],[1359,3],[1363,2],[1377,1],[1379,2],[1427,2],[1498,1],[1500,2]]},"77":{"position":[[376,1],[378,1],[442,1],[554,1],[556,1],[558,1],[647,1],[660,1],[662,1],[726,1],[838,1],[840,1],[842,1],[844,1]]},"81":{"position":[[402,4],[787,1]]},"83":{"position":[[153,1],[155,1],[205,3],[217,1],[350,1],[352,1],[354,1],[443,1],[456,1],[458,1],[508,3],[520,1],[652,2],[672,1],[674,1],[676,1]]},"85":{"position":[[291,1],[293,1],[323,1],[357,2],[371,1],[410,1],[412,1],[414,1]]},"87":{"position":[[1308,3],[1404,3],[2289,1],[2291,1],[2341,1],[2343,2],[2468,2],[2471,1],[2473,1],[2821,1],[2823,1],[2873,1],[2875,2],[3055,2],[3058,1],[3060,1],[3480,1],[3482,1],[3532,1],[3534,5],[3540,2],[3554,1],[3575,1],[3577,1],[3579,1]]},"89":{"position":[[664,1],[666,1],[694,1],[718,3],[744,3],[767,3],[790,2],[793,1],[795,1],[797,1],[894,1],[907,1],[909,1],[937,1],[961,3],[987,3],[1010,3],[1033,2],[1036,2],[1060,1],[1062,1],[1064,1]]},"91":{"position":[[1302,1],[1304,1],[1347,1],[1425,1],[1427,1],[1429,1]]},"93":{"position":[[126,1],[128,1],[171,1],[209,1],[211,1],[213,1],[310,1],[323,1],[325,1],[368,1],[406,2],[427,1],[429,1],[431,1]]},"95":{"position":[[121,1],[139,1],[152,1],[225,1],[380,1],[2148,1],[2150,1],[2201,3],[2213,1],[2311,2],[2616,2],[2630,1],[2680,1],[2682,1],[2684,1],[2773,1],[2786,1],[2788,1],[2839,3],[2851,1],[2963,1],[2991,2],[3008,1],[3024,2],[3043,1],[3055,2],[3074,1],[3090,2],[3111,1],[3125,2],[3146,1],[3159,2],[3195,1],[3211,2],[3236,2],[3250,1],[3300,2],[3322,1],[3324,1],[3326,1]]},"97":{"position":[[142,1],[153,1]]},"99":{"position":[[135,2],[184,2]]},"101":{"position":[[328,1],[330,1],[376,1],[441,1],[443,1],[445,1],[550,1],[563,1],[565,1],[611,1],[676,2],[696,1],[698,1],[700,1]]},"103":{"position":[[139,1],[151,1]]},"105":{"position":[[133,2],[182,2]]},"107":{"position":[[253,1],[255,1],[299,1],[388,1],[390,1],[392,1],[497,1],[510,1],[512,1],[556,1],[645,2],[663,1],[665,1],[667,1]]},"109":{"position":[[666,1],[668,1],[727,1],[835,1],[837,1],[839,1],[944,1],[957,1],[959,1],[1018,1],[1126,2],[1145,1],[1147,1],[1149,1]]},"115":{"position":[[333,1],[335,1],[378,1],[397,1],[399,1],[401,1],[506,1],[519,1],[521,1],[564,1],[583,2],[608,1],[610,1],[612,1]]},"119":{"position":[[286,1],[288,1],[365,1],[514,1],[516,1],[518,1],[623,1],[636,1],[638,1],[715,1],[864,2],[884,1],[886,1],[888,1]]},"127":{"position":[[411,1],[413,1],[455,1],[476,1],[478,1],[480,1],[585,1],[598,1],[600,1],[642,1],[663,2],[687,1],[689,1],[691,1]]},"131":{"position":[[307,1],[309,1],[384,1],[496,1],[498,1],[500,1],[605,1],[618,1],[620,1],[695,1],[807,2],[833,1],[835,1],[837,1]]},"135":{"position":[[284,1],[286,1],[364,1],[423,1],[425,1],[427,1],[532,1],[545,1],[547,1],[625,1],[684,2],[704,1],[706,1],[708,1]]},"137":{"position":[[490,2],[539,2],[883,1],[900,1]]},"139":{"position":[[350,1],[383,1]]},"141":{"position":[[353,1],[400,1]]},"143":{"position":[[80,1],[82,1],[128,1],[166,3],[186,3],[208,2],[211,1],[213,1],[215,1],[320,1],[333,1],[335,1],[381,1],[419,3],[439,3],[461,2],[464,2],[484,1],[486,1],[488,1]]},"145":{"position":[[151,1]]},"147":{"position":[[157,1],[159,1],[202,1],[259,2],[273,1],[301,1],[303,1],[305,1],[410,1],[423,1],[425,1],[468,1],[525,2],[539,1],[567,2],[584,1],[586,1],[588,1]]},"151":{"position":[[379,1],[381,1],[425,1],[440,1],[455,2],[471,1],[483,1],[485,1],[487,1],[489,1],[594,1],[607,1],[609,1],[653,1],[668,1],[683,2],[699,1],[711,1],[713,2],[732,1],[734,1],[736,1]]},"153":{"position":[[177,1],[191,1]]},"155":{"position":[[200,1],[202,1],[270,1],[328,1],[330,1],[332,1],[437,1],[450,1],[452,1],[520,1],[578,1],[580,1],[582,1],[584,1]]},"157":{"position":[[1059,1],[2270,1],[2272,1],[2322,3],[2334,1],[2404,1],[2432,2],[2449,1],[2465,2],[2484,1],[2496,2],[2515,1],[2531,2],[2552,1],[2566,2],[2587,1],[2600,1],[2602,2],[2616,1],[2696,1],[2698,1],[2700,1],[2805,1],[2818,1],[2820,1],[2870,3],[2882,1],[2952,1],[2980,2],[2997,1],[3013,2],[3032,1],[3044,2],[3063,1],[3079,2],[3100,1],[3114,2],[3135,1],[3148,1],[3150,2],[3164,1],[3244,2],[3262,1],[3264,1],[3266,1]]},"163":{"position":[[476,1],[478,1],[540,1],[620,1],[622,1],[624,1],[729,1],[742,1],[744,1],[806,1],[886,2],[907,1],[909,1],[911,1]]},"167":{"position":[[247,1],[249,1],[299,3],[311,1],[477,1],[479,1],[481,1],[586,1],[599,1],[601,1],[651,3],[663,1],[829,2],[850,1],[852,1],[854,1]]},"171":{"position":[[214,1],[216,1],[264,1],[369,1],[382,1],[384,1],[386,1],[388,1],[493,1],[506,1],[508,1],[556,1],[661,1],[674,1],[676,2],[698,1],[700,1],[702,1]]},"177":{"position":[[475,1],[477,1],[536,1],[610,1],[612,1],[614,1],[719,1],[732,1],[734,1],[793,1],[867,2],[887,1],[889,1],[891,1]]},"179":{"position":[[108,1],[221,1],[352,1],[371,1],[390,1],[402,1],[1589,1],[1591,1],[1634,1],[1636,2],[1639,3],[1643,2],[1657,1],[1679,1],[1681,2],[1741,2],[1823,2],[1826,2],[1918,1],[1920,1],[1922,1],[2353,1],[2355,1],[2398,1],[2400,2],[2403,3],[2407,2],[2421,1],[2447,1],[2449,1],[2451,1]]},"181":{"position":[[158,1],[160,1],[203,1],[253,1],[255,1],[257,1],[362,1],[375,1],[377,1],[420,1],[470,2],[487,1],[489,1],[491,1]]},"185":{"position":[[179,1],[181,1],[213,1],[231,2],[242,1],[260,1],[262,2],[265,1],[297,1],[315,2],[326,1],[344,1],[346,1],[348,1]]},"189":{"position":[[377,1],[379,1],[415,1],[456,3],[473,2],[476,1],[478,1],[480,1],[585,1],[598,1],[600,1],[636,1],[677,3],[694,2],[697,2],[723,1],[725,1],[727,1]]},"193":{"position":[[160,1],[162,1],[208,1],[233,1],[235,1],[237,1],[342,1],[355,1],[357,1],[403,1],[428,2],[451,1],[453,1],[455,1]]},"195":{"position":[[1024,1],[1086,1],[1135,7],[1143,2],[1157,1],[1205,1],[1207,1],[2161,1],[2571,1],[2633,1],[2733,2],[2747,1],[2795,1],[2797,1],[2918,3],[2937,3],[3800,1],[3862,1],[4036,2],[4050,1],[4098,1],[4100,1],[4524,1]]},"197":{"position":[[387,1],[389,1],[439,3],[451,1],[500,8],[590,2],[604,1],[622,1],[624,1],[626,1],[731,1],[744,1],[746,1],[796,3],[808,1],[857,8],[947,2],[961,1],[979,2],[1000,1],[1002,1],[1004,1]]},"203":{"position":[[379,1],[381,1],[452,1],[454,2],[457,3],[461,2],[475,1],[494,1],[510,3],[514,3],[518,4],[534,3],[538,3],[542,4],[562,3],[566,3],[570,3],[574,1],[576,1],[578,1],[580,1]]},"205":{"position":[[1307,1],[1309,1],[1331,2],[1334,3],[1349,1],[1368,1],[1381,1],[1383,1],[1398,3],[1402,3],[1406,4],[1411,2],[1463,3],[1467,3],[1471,4],[1476,2],[1555,1],[1557,2],[1560,1],[1562,1],[1564,1],[1566,1]]},"207":{"position":[[655,1],[674,2],[715,1]]},"209":{"position":[[481,1],[483,2],[486,3],[506,1],[508,1],[571,1],[573,2],[643,1],[645,3],[649,2],[652,2],[740,1],[742,1],[744,1],[746,1],[789,1],[791,1],[823,1],[825,2],[828,3],[832,4],[848,1],[867,1],[883,1],[885,1],[904,2],[973,1],[975,1],[977,1],[979,1],[981,1],[983,1],[1131,1],[1133,2],[1136,3],[1156,1],[1158,1],[1216,1],[1232,1],[1234,3],[1238,2],[1273,1],[1275,2],[1278,1],[1331,1],[1333,2],[1421,1],[1423,1],[1425,1],[1427,1],[1470,1],[1472,1],[1504,1],[1506,2],[1509,3],[1513,4],[1529,1],[1548,1],[1564,1],[1566,1],[1610,1],[1612,1],[1614,1],[1616,1],[1618,1],[1620,1],[1653,1],[1655,1],[1682,1],[1684,2],[1687,3],[1691,4],[1707,1],[1726,1],[1742,1],[1744,1],[1783,1],[1785,1],[1787,1],[1789,1],[1791,1],[1793,1],[1966,1],[1968,2],[1971,3],[1991,1],[1993,1],[2056,1],[2058,2],[2128,1],[2130,3],[2134,2],[2137,2],[2225,1],[2227,1],[2229,1],[2231,1],[2274,1],[2276,1],[2308,1],[2310,2],[2313,3],[2317,4],[2333,1],[2352,1],[2368,1],[2370,1],[2420,2],[2499,1],[2501,1],[2503,1],[2505,1],[2507,1],[2509,1]]},"211":{"position":[[175,1],[195,2],[198,3],[218,2],[273,1],[283,3],[287,3],[291,4],[296,2],[362,2],[365,3],[369,2],[372,2],[397,2],[463,2],[524,2],[602,2],[675,1]]},"213":{"position":[[417,1],[427,1],[455,2],[531,2],[589,1],[591,1],[593,1],[603,1],[605,1],[633,2],[709,2],[767,2],[770,2],[776,1],[806,2],[883,2],[932,1],[934,1],[936,1],[1131,1],[1133,2],[1166,2],[1208,1],[1224,1],[1226,1],[1254,1],[1256,1],[1285,1],[1287,1],[1289,1],[1291,2],[1294,1],[1296,1],[1345,1],[1347,2],[1374,2],[1377,2],[1413,2],[1492,1],[1508,1],[1539,1],[1549,1],[1551,1],[1580,1],[1582,1],[1584,2],[1587,1],[1589,1],[1591,1]]},"215":{"position":[[142,2],[166,1],[233,2],[257,1],[311,1],[340,10],[362,1],[381,1],[397,10],[420,1],[422,1],[424,1]]},"224":{"position":[[217,1],[219,2],[222,3],[242,1],[244,1],[293,1],[303,1],[305,1],[341,1],[343,1],[345,2],[348,1],[350,1],[352,1],[786,1],[788,2],[791,3],[811,1],[813,1],[862,1],[872,1],[874,1],[910,2],[969,2],[972,2],[993,1],[1071,1],[1073,1],[1075,2],[1078,1],[1080,1],[1082,1]]},"226":{"position":[[137,1],[139,2],[142,3],[162,1],[164,1],[213,1],[223,1],[225,1],[261,1],[263,2],[278,1],[379,1],[381,2],[384,1],[386,1],[388,1]]},"228":{"position":[[125,1],[165,2],[168,3],[188,2],[243,1],[253,3],[257,3],[261,4],[266,2],[332,2],[335,3],[339,2],[342,2],[359,2],[415,2],[458,1]]},"230":{"position":[[1011,1],[1457,1],[1656,1],[1851,1],[1954,1]]},"234":{"position":[[684,1],[764,1],[786,1],[882,1],[980,1],[2130,1],[2210,1],[2246,1],[2478,1],[2592,1],[2623,2],[2626,3],[2642,1],[2644,2],[2647,3],[2684,1],[2997,1],[3096,1],[3108,1],[3116,1],[3217,1],[3299,1],[3330,2],[3333,3],[3349,1],[3351,2],[3354,3],[3390,1],[4560,2],[4563,3],[4579,1],[4581,2],[4584,3],[4619,1]]},"237":{"position":[[210,1],[212,2],[215,3],[231,2],[283,1]]},"239":{"position":[[1338,1],[1340,5],[1925,2],[1928,3],[1944,1],[1946,2],[1949,3],[1979,2],[2052,1]]},"241":{"position":[[809,1],[811,5]]},"244":{"position":[[377,1],[379,2],[461,2],[561,2],[622,1],[773,1],[775,2],[828,2],[886,1]]},"248":{"position":[[396,1],[398,1],[430,1],[432,2],[435,3],[439,4],[455,1],[474,1],[490,1],[492,1],[619,1],[621,1],[623,1],[625,1],[627,1],[629,1]]},"250":{"position":[[579,1],[581,1],[613,1],[615,2],[618,3],[622,4],[638,1],[657,1],[687,1],[689,1],[730,1],[732,1],[734,1],[736,1],[738,1],[740,1]]},"253":{"position":[[37,1],[39,2],[42,3],[62,1],[64,1],[113,1],[123,1],[125,1],[161,1],[163,1],[165,2],[168,1],[170,1],[172,1],[215,1],[217,1],[249,1],[251,2],[254,3],[258,4],[274,1],[293,1],[309,1],[311,1],[351,1],[353,1],[355,1],[357,1],[359,1],[361,1]]},"255":{"position":[[125,1],[127,2],[130,3],[150,1],[152,1],[201,1],[211,1],[213,1],[249,1],[251,1],[253,2],[268,1],[438,1],[440,1],[442,1],[444,1],[487,1],[489,1],[521,1],[523,2],[526,3],[530,4],[546,1],[565,1],[581,1],[583,1],[623,1],[625,1],[627,1],[629,1],[631,1],[633,1]]},"257":{"position":[[314,1],[316,2],[319,3],[339,1],[341,1],[390,1],[400,1],[402,1],[438,1],[440,1],[442,2],[457,1],[459,2],[501,1],[503,1],[505,1],[507,1],[550,1],[552,1],[584,1],[586,2],[589,3],[593,4],[609,1],[628,1],[644,1],[646,1],[773,2],[817,1],[819,1],[821,1],[823,1],[825,1],[827,1]]},"259":{"position":[[384,1],[733,1],[813,1],[835,1],[867,1],[965,1]]},"261":{"position":[[187,2],[190,1],[192,1],[194,1],[665,1],[688,1],[1495,2],[1557,2],[1618,2],[1670,2],[1699,2],[1702,2]]},"263":{"position":[[126,1],[146,2],[149,3],[169,2],[224,1],[234,3],[238,3],[242,4],[247,2],[313,2],[316,3],[320,2],[323,2],[340,2],[383,1]]},"265":{"position":[[279,1],[281,1],[313,1],[315,2],[318,3],[322,4],[338,1],[357,1],[373,1],[375,1],[395,2],[457,1],[459,1],[461,1],[463,1],[465,1],[467,1]]},"267":{"position":[[266,1],[712,1],[979,1],[1077,1]]},"270":{"position":[[37,1],[39,2],[42,3],[62,1],[64,1],[127,1],[129,2],[199,1],[201,3],[205,2],[208,2],[296,1],[298,1],[300,1],[302,1],[345,1],[347,1],[379,1],[381,2],[384,3],[388,4],[404,1],[423,1],[439,1],[441,1],[491,1],[493,1],[495,1],[497,1],[499,1],[501,1]]},"272":{"position":[[37,1],[39,2],[42,3],[62,1],[64,1],[127,1],[146,1],[170,1],[186,1],[193,1],[195,1],[197,1],[199,1],[201,1],[244,1],[246,1],[278,1],[280,2],[283,3],[287,4],[303,1],[322,1],[338,1],[340,1],[390,1],[392,1],[394,1],[396,1],[398,1],[400,1]]},"274":{"position":[[277,1],[279,1],[311,1],[313,2],[316,3],[320,4],[336,1],[355,1],[371,1],[373,1],[408,2],[431,1],[433,1],[435,1],[437,1],[439,1],[441,1]]},"278":{"position":[[190,1],[192,2],[195,3],[215,1],[217,1],[269,1],[280,1],[300,2],[314,1],[334,1],[336,1],[338,1],[340,1],[342,1],[611,1],[613,1],[645,1],[647,2],[650,3],[654,4],[670,1],[689,1],[705,1],[707,1],[725,2],[794,1],[796,2],[842,1],[844,1],[846,1],[848,1],[850,1],[852,1],[854,1]]},"280":{"position":[[147,2],[293,2],[451,1],[481,2],[546,2],[584,1],[623,2],[657,1],[687,2],[773,2],[815,1],[851,2]]},"282":{"position":[[74,1],[76,1],[131,1],[133,2],[136,3],[140,2],[154,1],[173,1],[205,1],[207,1],[218,1],[220,2],[263,1],[265,2],[370,1],[372,1],[374,1],[376,2],[379,1],[381,1],[383,1],[385,1]]},"285":{"position":[[48,2],[81,2],[117,2],[170,2],[173,2],[218,1],[229,1],[231,1],[296,3],[308,1],[310,1],[339,1],[341,1],[343,2],[401,2],[404,1]]},"287":{"position":[[68,1],[79,1],[99,1],[101,1]]},"289":{"position":[[8,1],[21,1],[36,1],[47,1],[66,1],[68,2],[83,1],[94,1],[113,1],[115,2],[118,2],[121,1]]},"291":{"position":[[8,1],[21,1],[23,1],[73,1],[75,1],[77,1]]},"293":{"position":[[8,1],[19,1],[21,1],[63,2],[66,1],[68,1],[70,1]]},"295":{"position":[[176,1],[192,1],[270,3],[563,1],[579,1],[664,1],[677,1],[679,1],[742,1],[744,1],[746,1]]},"302":{"position":[[311,1],[340,1]]},"308":{"position":[[175,1],[221,1]]},"321":{"position":[[234,1],[251,1],[281,1],[320,1],[341,2],[440,2],[537,1],[539,2],[582,3],[586,1],[658,1],[670,1],[678,1],[687,1],[689,1],[737,1],[739,2],[756,3],[760,1],[808,1],[810,1],[847,1],[849,2],[868,1],[937,1],[966,1],[1042,1],[1044,2],[1150,1],[1285,1],[1337,1],[1363,2],[1366,3],[1377,1],[1429,1],[1480,1],[1502,2],[1505,3],[1509,1],[1563,1],[1588,2],[1591,3],[1595,1],[1764,1],[1776,2],[1779,3],[1783,1],[1838,1],[1840,1],[1853,2],[1856,3],[1873,2]]},"323":{"position":[[171,1],[196,1],[312,1],[330,1],[375,2],[498,1],[500,2],[711,1],[767,2],[824,1],[832,2],[919,1],[928,2],[1013,1],[1021,1],[1023,1]]},"325":{"position":[[294,2],[297,3],[308,1],[343,1],[412,1],[414,2],[417,3],[444,1],[487,1],[489,3],[493,2],[496,1],[498,2],[501,3],[505,2],[570,2],[648,1],[670,1],[672,2],[675,3],[697,2],[700,3],[739,1],[741,1],[804,1],[837,2],[842,3],[858,1],[1003,3],[1007,1],[1032,1],[1034,1],[1036,1],[1038,2],[1041,3],[1045,2],[1135,1],[1197,1],[1199,3],[1203,2],[1206,1],[1208,2],[1211,3],[1260,1],[1262,2],[1265,3],[1287,2],[1290,3],[1330,1],[1456,1],[1458,1],[1460,1]]},"327":{"position":[[213,1],[240,1],[292,1],[305,1],[395,1],[397,2],[400,3],[404,2],[451,2],[515,2],[664,1],[666,4],[682,1],[690,1],[746,1],[748,1],[762,1],[770,1],[831,2],[861,2],[932,2],[941,1],[964,1],[966,1],[968,1],[970,1]]},"329":{"position":[[330,1],[336,1],[350,2],[353,3],[416,1],[433,2],[436,3],[479,1],[494,1],[579,1],[611,3],[620,2],[632,3],[636,3],[640,1],[651,1],[661,1],[680,3],[684,4],[689,1],[704,1],[715,1],[729,1],[779,1],[788,1],[801,1],[809,1],[826,1],[828,1],[853,3],[862,2],[871,3],[885,2],[902,3],[915,2],[931,3],[935,4],[940,1],[986,1],[1000,3],[1009,2],[1020,3],[1034,2],[1053,3],[1066,2],[1084,3],[1088,4],[1093,1],[1141,1],[1147,1],[1162,1],[1210,1],[1222,1],[1292,1],[1338,2],[1394,1],[1396,1],[1550,1],[1566,1],[1610,2],[1613,3],[1676,1],[1678,2],[1681,3],[1735,1],[1744,1],[1757,1],[1763,1],[1776,1],[1836,2],[1968,2],[2023,1],[2035,1],[2046,1],[2048,1],[2050,1],[2188,1],[2204,1],[2248,2],[2251,3],[2314,1],[2316,2],[2319,3],[2340,1],[2348,2],[2351,2],[2354,1],[2360,1],[2373,1],[2486,1],[2498,1],[2500,2],[2624,1],[2626,1],[2628,1]]},"331":{"position":[[1577,1],[1632,1],[1677,2],[1680,3],[1743,1],[1745,2],[1748,3],[1817,1],[1819,4],[1846,1],[1874,1],[1876,3],[1884,1],[1886,2],[1943,1],[2054,1],[2062,1],[2077,2],[2128,2],[2183,1],[2185,1],[2210,1],[2218,1],[2220,2],[2234,3],[2238,1],[2240,1],[2242,1],[2250,2],[2329,1],[2331,1],[2423,2],[2426,2],[2544,1],[2556,1],[2567,1],[2569,2],[2615,2],[2663,2],[2784,1],[2818,2],[2905,2],[2981,1],[2983,1]]},"334":{"position":[[373,1],[387,1],[432,2],[435,3],[498,1],[515,3],[519,3],[523,1],[534,3],[538,4],[543,2],[546,3],[550,2],[627,1],[635,1],[637,2],[640,3],[673,1],[737,2],[740,1],[746,1],[759,1],[859,2],[920,2],[971,1],[978,1],[980,2],[983,1],[985,1],[1011,2],[1050,1],[1062,1],[1141,1],[1143,1],[1145,1]]},"336":{"position":[[831,1],[844,1],[875,2],[878,3],[941,1],[958,3],[962,3],[966,1],[977,3],[981,4],[986,2],[989,3],[993,2],[1109,1],[1131,1],[1133,1],[2859,1],[2890,1],[2892,2],[2975,2],[3068,1],[3097,1],[3099,1],[3537,1],[3568,1],[3601,1],[3630,2],[3704,1],[3706,1]]},"345":{"position":[[304,2],[362,2],[488,2]]},"353":{"position":[[385,1],[640,1],[985,1],[992,1],[2101,1]]},"355":{"position":[[637,1]]},"360":{"position":[[76,1],[164,1],[231,1]]},"371":{"position":[[1524,1],[1570,1],[1572,3],[1576,2],[1590,1],[1608,1],[1610,1],[1834,2],[1924,2],[2024,2],[2107,2],[2134,3],[2359,1],[2405,1],[2407,3],[2411,2],[2425,1],[2462,1],[2464,1]]},"375":{"position":[[471,1],[584,1],[604,1],[621,1],[639,1],[673,1],[692,1],[705,1],[791,1],[804,1],[890,1],[1052,1],[1117,1],[1158,1],[1232,1],[1357,1],[1443,1],[1841,3],[1963,1],[1965,3],[2306,3],[2408,1],[2410,3],[2812,3],[2936,1],[2938,3]]},"377":{"position":[[1052,1]]},"381":{"position":[[132,1],[161,1],[234,2],[553,1],[579,1],[609,1],[619,1],[662,1],[664,1],[916,1],[929,1],[931,1],[1014,1],[1115,1],[1117,1],[1119,2],[1133,1],[1135,1],[1183,1],[1242,1],[1244,1],[1246,2],[1249,1]]},"395":{"position":[[250,1],[400,1]]},"397":{"position":[[361,1],[427,1],[485,1],[2777,1],[2844,1],[3753,1],[3755,1],[3816,1],[3949,1],[3951,1],[3953,1]]},"399":{"position":[[566,1],[1419,2],[1826,2]]},"408":{"position":[[178,3]]},"436":{"position":[[25,1],[40,1],[48,1],[57,1],[67,1],[77,1]]},"441":{"position":[[1027,1],[1029,1],[1090,1],[1092,2],[1095,3],[1099,2],[1113,1],[1115,2],[1157,2],[1160,2],[1250,2],[1362,1],[1364,2],[1367,1]]}}}],["0",{"_index":639,"t":{"56":{"position":[[63,2]]}}}],["0.0.0.0",{"_index":1038,"t":{"99":{"position":[[589,7]]},"101":{"position":[[385,10],[620,10]]},"105":{"position":[[581,7]]}}}],["02",{"_index":2127,"t":{"353":{"position":[[958,2]]},"360":{"position":[[50,2],[137,2],[204,2]]}}}],["029b081ba",{"_index":427,"t":{"26":{"position":[[319,10],[610,10]]},"34":{"position":[[357,10],[668,10]]},"109":{"position":[[738,10],[1029,10]]},"131":{"position":[[395,10],[706,10]]}}}],["0400",{"_index":2114,"t":{"353":{"position":[[374,5],[629,5]]}}}],["05:00",{"_index":2129,"t":{"353":{"position":[[973,5]]}}}],["06:00",{"_index":2152,"t":{"360":{"position":[[65,5],[152,5],[219,5]]}}}],["07",{"_index":2112,"t":{"353":{"position":[[354,2],[609,2]]}}}],["0845bdc965b4",{"_index":1899,"t":{"321":{"position":[[724,12]]}}}],["0:48/3:56",{"_index":2027,"t":{"331":{"position":[[2187,9]]}}}],["1",{"_index":155,"t":{"4":{"position":[[4269,2],[4293,2],[4363,2]]},"56":{"position":[[201,2],[576,2]]},"77":{"position":[[552,1],[836,1]]},"295":{"position":[[737,4]]},"371":{"position":[[1776,2],[1949,1]]}}}],["1.5",{"_index":158,"t":{"4":{"position":[[4315,3],[4385,3]]},"56":{"position":[[363,4],[738,4]]}}}],["10",{"_index":177,"t":{"4":{"position":[[4970,2]]},"20":{"position":[[991,2]]},"353":{"position":[[357,2],[612,2]]}}}],["10,000",{"_index":1549,"t":{"217":{"position":[[733,7]]},"219":{"position":[[130,7]]}}}],["10.7",{"_index":995,"t":{"95":{"position":[[23,4]]}}}],["100",{"_index":553,"t":{"40":{"position":[[1806,4]]}}}],["1000",{"_index":1169,"t":{"149":{"position":[[1571,4]]}}}],["1000:1000",{"_index":2251,"t":{"377":{"position":[[321,9]]}}}],["120",{"_index":663,"t":{"56":{"position":[[1581,4]]},"58":{"position":[[513,3]]}}}],["1234",{"_index":1122,"t":{"139":{"position":[[497,4]]},"157":{"position":[[2345,7],[2893,7]]}}}],["127.0.0.1",{"_index":1220,"t":{"165":{"position":[[1145,9],[1908,10]]},"183":{"position":[[348,9]]}}}],["127.0.0.1:5079",{"_index":1246,"t":{"165":{"position":[[3161,14]]}}}],["127.0.0.1:5079:8080",{"_index":1242,"t":{"165":{"position":[[2746,19]]}}}],["12:32:21.417",{"_index":2113,"t":{"353":{"position":[[360,12]]}}}],["12:32:21.418",{"_index":2124,"t":{"353":{"position":[[615,12]]}}}],["192.168.0.100",{"_index":2116,"t":{"353":{"position":[[510,15],[721,15]]},"377":{"position":[[192,15]]},"393":{"position":[[203,13],[635,13]]}}}],["192.168.0.100:6600",{"_index":1143,"t":{"147":{"position":[[211,21],[477,21]]}}}],["192.168.0.101",{"_index":215,"t":{"10":{"position":[[620,13]]},"193":{"position":[[217,15],[412,15]]}}}],["192.168.0.101:3456",{"_index":1041,"t":{"99":{"position":[[863,18]]},"105":{"position":[[845,18]]},"137":{"position":[[1161,18]]}}}],["192.168.0.101:4000/my/subfold",{"_index":225,"t":{"10":{"position":[[978,31]]}}}],["192.168.0.233:32400",{"_index":668,"t":{"56":{"position":[[1799,22],[1969,22],[2326,22]]},"58":{"position":[[646,22],[800,22],[960,22]]}}}],["192.168.0.xxx",{"_index":1221,"t":{"165":{"position":[[1188,15]]}}}],["19t10:05:42",{"_index":2151,"t":{"360":{"position":[[53,11],[140,11],[207,11]]}}}],["1:50/2:40",{"_index":747,"t":{"65":{"position":[[803,11]]}}}],["1m:20",{"_index":749,"t":{"65":{"position":[[862,7]]}}}],["1psidts=sidt",{"_index":1378,"t":{"195":{"position":[[1108,13]]},"197":{"position":[[473,13],[830,13]]}}}],["1x",{"_index":82,"t":{"4":{"position":[[1571,2],[3254,2]]}}}],["2",{"_index":652,"t":{"56":{"position":[[1110,2]]},"165":{"position":[[3918,2]]},"371":{"position":[[1861,2],[2049,1],[3304,1]]}}}],["2.7",{"_index":1546,"t":{"217":{"position":[[674,3]]},"219":{"position":[[71,3]]}}}],["20",{"_index":773,"t":{"71":{"position":[[532,2],[568,3]]}}}],["200",{"_index":370,"t":{"22":{"position":[[124,3]]},"217":{"position":[[703,3]]},"219":{"position":[[100,3]]},"318":{"position":[[268,3]]}}}],["2023",{"_index":2126,"t":{"353":{"position":[[953,4]]},"360":{"position":[[45,4],[132,4],[199,4]]}}}],["2025",{"_index":2111,"t":{"353":{"position":[[348,5],[603,5]]}}}],["22t11:16:12",{"_index":2128,"t":{"353":{"position":[[961,11]]}}}],["25",{"_index":1385,"t":{"195":{"position":[[1365,3]]}}}],["2x",{"_index":78,"t":{"4":{"position":[[1532,2],[3215,2]]}}}],["3",{"_index":185,"t":{"4":{"position":[[5171,2]]},"20":{"position":[[1366,2]]},"371":{"position":[[1951,2],[2132,1],[3306,1]]}}}],["3.7",{"_index":2071,"t":{"340":{"position":[[80,5]]}}}],["30",{"_index":151,"t":{"4":{"position":[[4230,3]]}}}],["37",{"_index":1544,"t":{"217":{"position":[[637,2]]},"219":{"position":[[34,2]]}}}],["3be671f5ea2b",{"_index":431,"t":{"26":{"position":[[345,14],[636,14]]},"34":{"position":[[383,14],[694,14]]},"109":{"position":[[764,14],[1055,14]]},"131":{"position":[[421,14],[732,14]]}}}],["3papisid=3axsxpy0mkgu75qb/akisxgqonsdn1jekn",{"_index":687,"t":{"56":{"position":[[2922,44]]},"58":{"position":[[1314,44]]}}}],["3rd",{"_index":539,"t":{"40":{"position":[[1412,3]]},"371":{"position":[[2759,3]]}}}],["3x",{"_index":80,"t":{"4":{"position":[[1550,2],[3233,2]]}}}],["4",{"_index":186,"t":{"4":{"position":[[5182,2]]},"20":{"position":[[1377,2]]},"71":{"position":[[220,2]]},"165":{"position":[[2995,1]]},"371":{"position":[[2051,2]]}}}],["40",{"_index":772,"t":{"71":{"position":[[465,3],[502,2]]}}}],["401",{"_index":2147,"t":{"357":{"position":[[58,3],[142,3]]}}}],["403",{"_index":1857,"t":{"310":{"position":[[3282,3],[3294,3]]},"357":{"position":[[65,3]]}}}],["48",{"_index":2026,"t":{"331":{"position":[[2179,2]]}}}],["49d7",{"_index":1897,"t":{"321":{"position":[[714,4]]}}}],["4dhe",{"_index":615,"t":{"52":{"position":[[955,4],[1206,4]]},"177":{"position":[[599,4],[856,4]]}}}],["4pe7",{"_index":429,"t":{"26":{"position":[[335,4],[626,4]]},"34":{"position":[[373,4],[684,4]]},"109":{"position":[[754,4],[1045,4]]},"131":{"position":[[411,4],[722,4]]}}}],["5",{"_index":174,"t":{"4":{"position":[[4947,2],[5194,1]]},"20":{"position":[[968,2],[1389,1]]},"217":{"position":[[656,1]]},"219":{"position":[[53,1]]},"439":{"position":[[126,1]]}}}],["50",{"_index":153,"t":{"4":{"position":[[4245,2]]},"71":{"position":[[155,4]]}}}],["500",{"_index":373,"t":{"22":{"position":[[161,3],[327,3],[451,3],[609,3],[708,3]]}}}],["5353/udp",{"_index":908,"t":{"87":{"position":[[955,9]]}}}],["6",{"_index":2186,"t":{"371":{"position":[[1859,1]]}}}],["60",{"_index":125,"t":{"4":{"position":[[2771,2]]},"167":{"position":[[474,2],[826,2]]}}}],["6600",{"_index":1137,"t":{"145":{"position":[[188,6]]}}}],["6644",{"_index":1170,"t":{"149":{"position":[[1594,5]]}}}],["6680",{"_index":1108,"t":{"137":{"position":[[902,4]]}}}],["6969",{"_index":1882,"t":{"318":{"position":[[673,4]]},"329":{"position":[[653,7]]}}}],["7",{"_index":175,"t":{"4":{"position":[[4958,2]]},"20":{"position":[[979,2]]}}}],["7905",{"_index":1182,"t":{"153":{"position":[[416,5]]}}}],["7cdr86vis3mpq5b1pi01md0hkm7ykzzxjy81r",{"_index":581,"t":{"45":{"position":[[774,40],[1040,40]]}}}],["846b",{"_index":1898,"t":{"321":{"position":[[719,4]]}}}],["88e5",{"_index":430,"t":{"26":{"position":[[340,4],[631,4]]},"34":{"position":[[378,4],[689,4]]},"109":{"position":[[759,4],[1050,4]]},"131":{"position":[[416,4],[727,4]]}}}],["8910....6jqupl.apps.googleusercontent.com",{"_index":1408,"t":{"195":{"position":[[2647,44],[3876,44]]}}}],["891098404....apps.googleusercontent.com",{"_index":1447,"t":{"197":{"position":[[521,42],[878,42]]}}}],["8dcc73a59",{"_index":2133,"t":{"353":{"position":[[1082,10]]}}}],["90",{"_index":1662,"t":{"237":{"position":[[206,3],[228,2],[253,2]]}}}],["9078",{"_index":210,"t":{"10":{"position":[[301,4]]},"353":{"position":[[2259,4]]},"375":{"position":[[2231,5]]},"377":{"position":[[144,4]]},"381":{"position":[[1306,5]]},"393":{"position":[[161,4]]}}}],["9078:9078",{"_index":1622,"t":{"230":{"position":[[2069,11]]},"267":{"position":[[1192,11]]},"375":{"position":[[1433,9],[2313,9],[2423,11]]},"377":{"position":[[633,9],[788,9],[1432,11]]},"395":{"position":[[496,11]]}}}],["9156",{"_index":428,"t":{"26":{"position":[[330,4],[621,4]]},"34":{"position":[[368,4],[679,4]]},"109":{"position":[[749,4],[1040,4]]},"131":{"position":[[406,4],[717,4]]}}}],["__secur",{"_index":686,"t":{"56":{"position":[[2912,9]]},"58":{"position":[[1304,9]]},"195":{"position":[[1098,9]]},"197":{"position":[[463,9],[820,9]]}}}],["_transforms=musicbrainz",{"_index":1604,"t":{"230":{"position":[[855,24]]}}}],["_transforms=n",{"_index":1742,"t":{"267":{"position":[[115,19]]}}}],["a89cba1569901a0671d5a9875fed4be1",{"_index":119,"t":{"4":{"position":[[2622,35],[4516,35]]},"30":{"position":[[537,35],[887,35]]},"119":{"position":[[377,35],[727,35]]},"167":{"position":[[325,35],[677,35]]},"381":{"position":[[1026,35]]}}}],["abcd",{"_index":344,"t":{"20":{"position":[[510,6]]}}}],["abil",{"_index":1212,"t":{"165":{"position":[[355,7]]},"199":{"position":[[36,7]]},"336":{"position":[[2008,7]]}}}],["abov",{"_index":187,"t":{"6":{"position":[[28,5]]},"105":{"position":[[487,6]]},"153":{"position":[[330,6]]},"203":{"position":[[33,5]]},"230":{"position":[[32,5]]},"234":{"position":[[1032,5]]},"239":{"position":[[1164,5]]},"244":{"position":[[822,5]]},"267":{"position":[[32,5]]},"347":{"position":[[1036,5]]},"377":{"position":[[878,5]]},"399":{"position":[[1947,5]]},"426":{"position":[[377,5]]}}}],["above...aft",{"_index":2303,"t":{"397":{"position":[[772,13]]}}}],["absolut",{"_index":2086,"t":{"345":{"position":[[369,8]]}}}],["abstract",{"_index":1811,"t":{"306":{"position":[[325,8]]},"310":{"position":[[27,8]]}}}],["abstractcompon",{"_index":1821,"t":{"310":{"position":[[48,18]]},"321":{"position":[[1924,17]]}}}],["abstractsourc",{"_index":1952,"t":{"325":{"position":[[1230,15]]},"336":{"position":[[2702,14],[2844,14],[3522,14]]}}}],["abstractsource'",{"_index":2053,"t":{"336":{"position":[[1970,16]]}}}],["accept",{"_index":437,"t":{"28":{"position":[[103,6]]},"32":{"position":[[110,6]]},"111":{"position":[[39,6]]},"113":{"position":[[69,6]]},"115":{"position":[[268,9]]},"117":{"position":[[168,6]]},"121":{"position":[[39,6]]},"123":{"position":[[69,6]]},"127":{"position":[[348,9]]},"129":{"position":[[209,6]]},"153":{"position":[[42,6]]},"165":{"position":[[668,6]]},"179":{"position":[[1453,7]]},"321":{"position":[[1948,7]]},"323":{"position":[[82,6]]}}}],["access",{"_index":405,"t":{"24":{"position":[[523,6],[570,10],[1626,10]]},"40":{"position":[[938,9]]},"47":{"position":[[1016,9]]},"54":{"position":[[418,6]]},"65":{"position":[[461,10]]},"75":{"position":[[633,6]]},"79":{"position":[[47,6]]},"149":{"position":[[201,6],[429,6],[1056,6],[1377,6]]},"157":{"position":[[327,9]]},"161":{"position":[[66,6]]},"165":{"position":[[505,6],[1049,6],[1820,10]]},"175":{"position":[[66,6]]},"179":{"position":[[521,10],[607,11]]},"183":{"position":[[564,10],[655,9]]},"195":{"position":[[1420,6],[4516,6]]},"310":{"position":[[1869,10]]},"318":{"position":[[656,8],[770,8]]},"353":{"position":[[2012,6]]},"355":{"position":[[155,6],[222,10]]},"357":{"position":[[784,6],[827,6]]},"371":{"position":[[506,6]]},"375":{"position":[[2117,6]]},"397":{"position":[[516,6]]},"399":{"position":[[1690,6],[1737,10],[2334,10]]},"426":{"position":[[323,8]]}}}],["accesstoken",{"_index":659,"t":{"56":{"position":[[1503,14]]},"58":{"position":[[435,14]]}}}],["accident",{"_index":1703,"t":{"241":{"position":[[637,12]]}}}],["accordingli",{"_index":2344,"t":{"406":{"position":[[336,12]]}}}],["account",{"_index":79,"t":{"4":{"position":[[1540,9],[1561,9],[3223,9],[3244,9]]},"24":{"position":[[60,7]]},"26":{"position":[[122,7]]},"28":{"position":[[66,7],[229,7]]},"30":{"position":[[123,7],[177,7]]},"32":{"position":[[68,7],[296,7]]},"40":{"position":[[674,8]]},"42":{"position":[[24,7],[168,7]]},"45":{"position":[[108,7],[165,8],[206,7],[558,7]]},"47":{"position":[[756,8]]},"49":{"position":[[26,8]]},"52":{"position":[[200,7],[257,8],[297,7],[706,7]]},"54":{"position":[[147,7],[253,7],[312,7]]},"79":{"position":[[286,8]]},"111":{"position":[[228,8]]},"121":{"position":[[248,8]]},"129":{"position":[[395,7]]},"165":{"position":[[656,7]]},"183":{"position":[[88,8]]},"195":{"position":[[1810,8]]},"371":{"position":[[2633,7]]},"397":{"position":[[1243,8],[3324,7],[3428,7],[3707,7],[4140,8]]},"399":{"position":[[915,7],[1019,7]]}}}],["account'",{"_index":1066,"t":{"109":{"position":[[29,9]]},"129":{"position":[[36,9]]}}}],["accur",{"_index":1209,"t":{"165":{"position":[[122,10]]},"169":{"position":[[520,8]]},"234":{"position":[[4274,8]]},"371":{"position":[[59,10]]}}}],["accuraci",{"_index":1213,"t":{"165":{"position":[[411,8]]},"331":{"position":[[479,8]]}}}],["action",{"_index":239,"t":{"12":{"position":[[123,7]]},"73":{"position":[[376,6]]},"75":{"position":[[1060,6]]}}}],["activ",{"_index":230,"t":{"12":{"position":[[28,10],[150,10]]},"24":{"position":[[38,8]]},"28":{"position":[[39,8]]},"32":{"position":[[39,8]]},"40":{"position":[[38,8]]},"47":{"position":[[38,8]]},"62":{"position":[[105,6],[112,8],[136,6],[184,6],[191,8],[216,6],[223,8],[249,6],[256,8],[280,6],[287,8],[309,6],[316,8],[339,6],[370,6],[449,6],[527,6],[557,6],[564,8],[607,6],[614,8],[641,6],[648,8],[670,6],[677,8],[702,6],[733,6],[740,8],[782,6],[789,8],[814,6],[878,6],[885,8],[919,6],[926,8],[957,6]]},"65":{"position":[[168,6],[302,8],[644,8],[948,8]]},"67":{"position":[[164,8]]},"71":{"position":[[23,6]]},"87":{"position":[[1635,8]]},"111":{"position":[[201,8]]},"117":{"position":[[72,8]]},"121":{"position":[[216,8]]},"318":{"position":[[848,8]]},"323":{"position":[[969,8]]},"393":{"position":[[373,8]]},"397":{"position":[[86,9],[536,8],[3121,8]]},"399":{"position":[[87,8]]},"401":{"position":[[624,8]]},"412":{"position":[[1623,8]]},"441":{"position":[[606,7],[723,6]]}}}],["actual",{"_index":442,"t":{"28":{"position":[[263,8]]},"165":{"position":[[251,6]]},"211":{"position":[[681,6]]},"234":{"position":[[4478,8]]},"239":{"position":[[1716,6]]},"295":{"position":[[34,8]]},"336":{"position":[[3940,8]]},"357":{"position":[[658,6]]},"371":{"position":[[3142,8]]}}}],["ad",{"_index":287,"t":{"12":{"position":[[3062,6],[3131,5],[3236,6]]},"73":{"position":[[592,6]]},"75":{"position":[[1257,6]]},"141":{"position":[[196,6]]},"183":{"position":[[271,6]]},"205":{"position":[[485,6]]},"217":{"position":[[438,6],[508,6]]},"224":{"position":[[442,5]]},"244":{"position":[[633,6]]}}}],["adapt",{"_index":557,"t":{"42":{"position":[[62,7]]}}}],["add",{"_index":313,"t":{"14":{"position":[[430,3]]},"36":{"position":[[209,3],[503,3]]},"75":{"position":[[446,3]]},"149":{"position":[[1675,3]]},"165":{"position":[[4127,3]]},"183":{"position":[[97,3]]},"195":{"position":[[959,3],[2082,3],[3228,3],[3712,3]]},"199":{"position":[[501,4]]},"201":{"position":[[385,4],[804,4]]},"228":{"position":[[418,4]]},"244":{"position":[[778,3]]},"321":{"position":[[1152,3],[1633,3]]},"325":{"position":[[220,3],[578,3]]},"329":{"position":[[257,3]]},"371":{"position":[[1166,4],[1487,3]]},"375":{"position":[[1249,3]]},"387":{"position":[[172,3]]},"397":{"position":[[216,3],[813,3],[2220,4],[2592,3]]},"399":{"position":[[393,3],[690,3],[1070,3],[1984,3]]}}}],["add/substitut",{"_index":2329,"t":{"399":{"position":[[1925,14]]}}}],["addit",{"_index":555,"t":{"40":{"position":[[1851,10]]},"73":{"position":[[280,10]]},"87":{"position":[[1449,10],[1523,10]]},"91":{"position":[[1052,10]]},"95":{"position":[[721,10]]},"149":{"position":[[1118,10]]},"224":{"position":[[354,10],[395,11],[975,10]]},"234":{"position":[[1090,10],[1678,10],[2892,10],[3705,10]]},"241":{"position":[[31,10]]},"261":{"position":[[144,8],[734,10]]},"274":{"position":[[160,10]]},"308":{"position":[[496,10]]},"310":{"position":[[859,10]]},"353":{"position":[[1572,10]]},"406":{"position":[[84,10]]}}}],["addition",{"_index":786,"t":{"73":{"position":[[498,13]]},"75":{"position":[[1182,13]]},"234":{"position":[[3484,12]]},"329":{"position":[[213,13]]},"331":{"position":[[984,12]]},"336":{"position":[[3106,12]]},"393":{"position":[[604,13]]}}}],["additionalallowedlibrarytyp",{"_index":1004,"t":{"95":{"position":[[906,29],[2543,32],[3162,32]]}}}],["additionalconfig",{"_index":1937,"t":{"325":{"position":[[452,19]]}}}],["additon",{"_index":1431,"t":{"195":{"position":[[5044,7]]}}}],["address",{"_index":1136,"t":{"145":{"position":[[175,7]]},"165":{"position":[[1134,7]]},"353":{"position":[[484,8],[1830,7]]},"355":{"position":[[130,7],[388,9],[458,7]]}}}],["address/ip",{"_index":1247,"t":{"165":{"position":[[3185,10]]}}}],["addsourc",{"_index":1949,"t":{"325":{"position":[[1125,9]]}}}],["admin",{"_index":432,"t":{"26":{"position":[[372,8],[663,8]]},"36":{"position":[[255,5],[341,5]]},"95":{"position":[[413,5]]},"109":{"position":[[791,8],[1082,8]]},"399":{"position":[[439,5],[525,5]]}}}],["administr",{"_index":796,"t":{"75":{"position":[[303,14]]},"95":{"position":[[123,14]]}}}],["advanc",{"_index":88,"t":{"4":{"position":[[1746,8]]},"99":{"position":[[455,8]]},"169":{"position":[[248,8]]},"403":{"position":[[9,8]]}}}],["advantag",{"_index":2012,"t":{"331":{"position":[[932,9],[1253,9]]}}}],["affect",{"_index":194,"t":{"8":{"position":[[14,6]]},"165":{"position":[[343,6],[400,6]]},"187":{"position":[[192,7],[232,6]]},"195":{"position":[[4220,7]]},"205":{"position":[[599,6]]},"308":{"position":[[476,6]]},"441":{"position":[[400,7]]}}}],["after=network.target",{"_index":2290,"t":{"387":{"position":[[276,20]]}}}],["afterward",{"_index":312,"t":{"14":{"position":[[393,11]]},"357":{"position":[[1117,11]]}}}],["again",{"_index":602,"t":{"49":{"position":[[237,5]]},"195":{"position":[[4663,5]]},"371":{"position":[[3198,6]]}}}],["against",{"_index":547,"t":{"40":{"position":[[1618,7]]},"205":{"position":[[1547,7]]},"239":{"position":[[228,7]]},"331":{"position":[[802,7]]},"336":{"position":[[2446,7],[4001,7]]}}}],["agent",{"_index":1579,"t":{"224":{"position":[[89,5]]}}}],["aggreg",{"_index":377,"t":{"22":{"position":[[230,10],[388,10]]}}}],["aggress",{"_index":877,"t":{"85":{"position":[[246,12],[397,12],[464,12]]},"230":{"position":[[744,10]]},"234":{"position":[[1810,10]]}}}],["agnost",{"_index":508,"t":{"40":{"position":[[391,8]]},"47":{"position":[[473,8]]}}}],["agress",{"_index":1629,"t":{"234":{"position":[[215,11]]}}}],["aio",{"_index":25,"t":{"4":{"position":[[310,3],[1969,3],[3097,3],[3499,3],[3623,3]]},"12":{"position":[[846,3],[1603,3],[2227,3],[2584,3],[2715,3],[3484,3]]},"14":{"position":[[440,3]]},"20":{"position":[[218,3]]},"26":{"position":[[9,3],[486,3]]},"30":{"position":[[9,3],[744,3]]},"34":{"position":[[9,3],[528,3]]},"38":{"position":[[9,3],[399,3]]},"45":{"position":[[428,3],[915,3]]},"52":{"position":[[566,3],[1036,3]]},"71":{"position":[[369,3]]},"73":{"position":[[652,3]]},"75":{"position":[[1317,3]]},"77":{"position":[[9,3]]},"83":{"position":[[9,3]]},"89":{"position":[[9,3]]},"93":{"position":[[9,3]]},"95":{"position":[[1207,3]]},"101":{"position":[[9,3],[511,3]]},"107":{"position":[[9,3],[458,3]]},"109":{"position":[[396,3],[592,3],[905,3]]},"115":{"position":[[9,3],[467,3]]},"119":{"position":[[9,3],[209,3],[584,3]]},"127":{"position":[[9,3],[546,3]]},"131":{"position":[[9,3],[219,3],[566,3]]},"135":{"position":[[9,3],[208,3],[493,3]]},"143":{"position":[[9,3],[281,3]]},"147":{"position":[[9,3],[371,3]]},"151":{"position":[[9,3],[555,3]]},"155":{"position":[[9,3],[398,3]]},"157":{"position":[[1555,3],[2766,3]]},"163":{"position":[[198,3],[398,3],[690,3]]},"167":{"position":[[9,3],[547,3]]},"169":{"position":[[657,3]]},"171":{"position":[[9,3],[454,3]]},"177":{"position":[[198,3],[398,3],[680,3]]},"181":{"position":[[9,3],[323,3]]},"189":{"position":[[9,3],[546,3]]},"193":{"position":[[9,3],[303,3]]},"197":{"position":[[9,3],[692,3]]},"209":{"position":[[40,3],[457,3],[1107,3],[1942,3]]},"224":{"position":[[193,3]]},"253":{"position":[[13,3]]},"255":{"position":[[101,3]]},"257":{"position":[[290,3]]},"270":{"position":[[13,3]]},"272":{"position":[[13,3]]},"441":{"position":[[891,3],[984,3]]}}}],["airson",{"_index":623,"t":{"54":{"position":[[173,8]]},"60":{"position":[[167,9]]},"169":{"position":[[126,8],[239,8]]},"412":{"position":[[400,8]]}}}],["aka",{"_index":1690,"t":{"239":{"position":[[1104,3]]}}}],["album",{"_index":1123,"t":{"141":{"position":[[69,7],[118,5],[182,5],[212,5],[437,6]]},"179":{"position":[[1136,5],[1443,6]]},"199":{"position":[[150,5],[549,6]]},"211":{"position":[[148,5],[434,5],[448,8],[500,5]]},"213":{"position":[[513,8],[559,5],[691,8],[737,5],[856,8],[891,5],[973,5]]},"217":{"position":[[667,6]]},"219":{"position":[[64,6]]},"228":{"position":[[345,8],[396,5]]},"234":{"position":[[151,5],[1133,5],[1203,5],[1306,6],[1338,5],[1401,5],[3411,5]]},"239":{"position":[[302,7],[365,5],[408,6],[473,5],[530,5],[796,6]]},"241":{"position":[[922,7],[1000,9]]},"244":{"position":[[471,6],[534,9]]},"248":{"position":[[567,8]]},"255":{"position":[[344,9]]},"257":{"position":[[721,8]]},"263":{"position":[[326,8],[377,5]]},"276":{"position":[[243,6]]},"278":{"position":[[282,7]]},"282":{"position":[[437,6]]},"287":{"position":[[19,6],[81,7]]},"293":{"position":[[10,8]]},"312":{"position":[[200,6]]},"327":{"position":[[795,6]]},"371":{"position":[[2910,5]]}}}],["albumartist",{"_index":1520,"t":{"211":{"position":[[375,15]]},"213":{"position":[[979,11]]},"248":{"position":[[583,15]]},"257":{"position":[[737,15]]}}}],["albumblacklist",{"_index":1126,"t":{"141":{"position":[[355,17]]},"143":{"position":[[190,17],[443,17]]}}}],["albumnam",{"_index":1969,"t":{"327":{"position":[[715,10],[802,10]]}}}],["alice.bsky.soci",{"_index":569,"t":{"45":{"position":[[135,17],[825,19],[1091,19]]},"52":{"position":[[227,17],[908,20],[1159,20]]},"163":{"position":[[600,19],[866,19]]},"177":{"position":[[552,20],[809,20]]}}}],["allow",{"_index":421,"t":{"24":{"position":[[1506,5]]},"40":{"position":[[224,5]]},"47":{"position":[[306,5]]},"87":{"position":[[928,5],[1974,5],[2061,7],[2175,5],[2351,5]]},"95":{"position":[[623,7],[939,5],[2013,5]]},"103":{"position":[[167,5]]},"139":{"position":[[32,5]]},"157":{"position":[[94,7],[398,5],[1338,7],[2130,5]]},"165":{"position":[[1081,6]]},"207":{"position":[[166,6]]},"209":{"position":[[1037,8]]},"239":{"position":[[482,7],[1217,5],[1384,5],[1800,5],[1866,5]]},"246":{"position":[[55,5],[106,5]]},"310":{"position":[[351,5]]},"336":{"position":[[2587,8]]},"367":{"position":[[280,5]]},"399":{"position":[[2214,5]]},"441":{"position":[[1220,7]]}}}],["allowunknown",{"_index":1007,"t":{"95":{"position":[[1135,15],[2593,15],[3214,15]]}}}],["allowunknownmedia",{"_index":940,"t":{"87":{"position":[[2080,20],[2407,20]]}}}],["allowunknownmedia=fals",{"_index":2162,"t":{"367":{"position":[[231,24]]}}}],["along",{"_index":137,"t":{"4":{"position":[[3967,5]]},"207":{"position":[[605,5]]}}}],["alongsid",{"_index":1869,"t":{"316":{"position":[[90,9]]},"403":{"position":[[261,9]]}}}],["alphabet",{"_index":2375,"t":{"441":{"position":[[835,14]]}}}],["alpin",{"_index":918,"t":{"87":{"position":[[1120,7]]}}}],["alreadi",{"_index":253,"t":{"12":{"position":[[637,7],[1394,7]]},"24":{"position":[[129,7]]},"36":{"position":[[38,7]]},"45":{"position":[[284,7]]},"49":{"position":[[48,7]]},"52":{"position":[[379,7]]},"56":{"position":[[1651,7]]},"165":{"position":[[1523,7]]},"201":{"position":[[271,7],[414,8],[652,7],[838,7]]},"205":{"position":[[153,7],[389,7],[495,7]]},"217":{"position":[[393,7]]},"234":{"position":[[2001,7]]},"304":{"position":[[201,7]]},"336":{"position":[[472,7],[2366,7],[2454,7]]},"397":{"position":[[3056,7]]},"399":{"position":[[222,7],[1300,7]]},"412":{"position":[[2058,7]]}}}],["altern",{"_index":1230,"t":{"165":{"position":[[1779,14]]},"234":{"position":[[4147,11]]},"241":{"position":[[391,11]]},"406":{"position":[[442,14]]}}}],["alway",{"_index":241,"t":{"12":{"position":[[171,6]]},"73":{"position":[[732,6]]},"75":{"position":[[1397,6]]},"87":{"position":[[479,6],[1875,6],[2778,6],[2935,6]]},"109":{"position":[[525,6]]},"119":{"position":[[142,6]]},"131":{"position":[[152,6]]},"135":{"position":[[140,6]]},"163":{"position":[[331,6]]},"165":{"position":[[3760,6]]},"177":{"position":[[331,6]]},"211":{"position":[[405,6],[471,6],[532,6],[610,6]]},"213":{"position":[[1350,6]]},"228":{"position":[[367,6]]},"230":{"position":[[147,6]]},"239":{"position":[[334,6]]},"241":{"position":[[613,6]]},"263":{"position":[[348,6]]},"308":{"position":[[41,6]]},"336":{"position":[[231,6],[445,6],[695,6],[2619,8]]}}}],["ambplayobject",{"_index":1865,"t":{"312":{"position":[[750,13]]}}}],["amount",{"_index":768,"t":{"71":{"position":[[172,6]]},"217":{"position":[[1463,6]]},"221":{"position":[[367,6]]}}}],["and/or",{"_index":316,"t":{"16":{"position":[[33,6]]},"40":{"position":[[1640,6]]},"67":{"position":[[50,6]]},"123":{"position":[[804,6]]},"179":{"position":[[1436,6]]},"211":{"position":[[141,6]]},"261":{"position":[[394,6]]},"321":{"position":[[2133,6]]},"331":{"position":[[1078,6]]},"336":{"position":[[39,6]]},"393":{"position":[[344,6],[428,6]]},"412":{"position":[[1286,6]]},"426":{"position":[[260,6]]}}}],["android",{"_index":637,"t":{"54":{"position":[[908,7]]}}}],["anecdot",{"_index":1707,"t":{"244":{"position":[[164,12]]}}}],["annot",{"_index":1894,"t":{"321":{"position":[[554,10]]},"377":{"position":[[905,12]]}}}],["anoth",{"_index":525,"t":{"40":{"position":[[960,7]]},"47":{"position":[[1038,7]]},"295":{"position":[[194,7],[581,7],[644,7]]},"353":{"position":[[2288,7]]},"377":{"position":[[34,7]]}}}],["anotherbadterm",{"_index":1757,"t":{"280":{"position":[[463,17],[507,16],[595,14]]}}}],["anotherus",{"_index":1020,"t":{"95":{"position":[[2399,16],[3010,13]]},"157":{"position":[[2451,13],[2999,13]]}}}],["any/al",{"_index":951,"t":{"87":{"position":[[3099,7]]}}}],["anyon",{"_index":1188,"t":{"157":{"position":[[311,6]]}}}],["anyth",{"_index":375,"t":{"22":{"position":[[190,8]]},"125":{"position":[[112,8]]},"234":{"position":[[2946,8]]},"244":{"position":[[408,8]]},"397":{"position":[[1939,9]]}}}],["anywher",{"_index":1492,"t":{"205":{"position":[[740,8]]}}}],["apassword",{"_index":1050,"t":{"101":{"position":[[429,11],[664,11]]}}}],["api",{"_index":236,"t":{"12":{"position":[[98,3],[289,3],[1821,3]]},"16":{"position":[[161,3]]},"24":{"position":[[167,3],[251,3],[1034,3]]},"26":{"position":[[98,3]]},"28":{"position":[[225,3]]},"30":{"position":[[101,3],[119,3],[173,3]]},"36":{"position":[[384,3],[533,3]]},"38":{"position":[[146,3]]},"42":{"position":[[240,3]]},"45":{"position":[[614,3]]},"56":{"position":[[1669,3]]},"62":{"position":[[777,4]]},"81":{"position":[[153,3]]},"95":{"position":[[49,3],[154,3],[302,3],[372,3],[618,4],[1389,3],[1416,3]]},"157":{"position":[[1740,3]]},"165":{"position":[[324,4]]},"169":{"position":[[73,3],[602,4]]},"171":{"position":[[165,3]]},"183":{"position":[[109,3],[376,3],[469,3]]},"185":{"position":[[103,3],[376,3],[458,3]]},"191":{"position":[[396,3]]},"195":{"position":[[1860,4],[3054,4],[3524,3]]},"209":{"position":[[407,3]]},"217":{"position":[[1666,3]]},"224":{"position":[[45,3],[295,7],[455,3],[560,3],[864,7]]},"226":{"position":[[215,7]]},"250":{"position":[[230,3]]},"253":{"position":[[115,7]]},"255":{"position":[[203,7]]},"257":{"position":[[392,7]]},"300":{"position":[[317,3]]},"308":{"position":[[322,3]]},"318":{"position":[[187,4],[196,4],[763,3],[832,3]]},"323":{"position":[[996,3]]},"327":{"position":[[101,3],[596,3]]},"329":{"position":[[706,8]]},"353":{"position":[[393,5],[648,5],[832,3]]},"363":{"position":[[36,3]]},"375":{"position":[[1507,3]]},"381":{"position":[[568,3],[1284,3]]},"397":{"position":[[201,3],[429,3],[3320,3],[3462,3],[3703,3]]},"399":{"position":[[568,3],[911,3],[1338,3],[1422,3]]},"412":{"position":[[389,4],[1398,4]]}}}],["api/health",{"_index":1876,"t":{"318":{"position":[[243,11]]}}}],["api/live/nowplaying/websocket",{"_index":801,"t":{"75":{"position":[[484,31]]}}}],["api/now",{"_index":1881,"t":{"318":{"position":[[492,8]]}}}],["api/rec",{"_index":1878,"t":{"318":{"position":[[414,11]]}}}],["apikey",{"_index":164,"t":{"4":{"position":[[4771,9]]},"30":{"position":[[527,9],[877,9]]},"38":{"position":[[305,9],[566,9]]},"56":{"position":[[2572,9],[3266,9],[3384,9],[3502,9],[3579,9]]},"58":{"position":[[1127,9],[1660,9],[1760,9],[1860,9],[1945,9]]},"95":{"position":[[1471,6],[1579,6],[2265,9],[2903,9]]},"119":{"position":[[367,9],[717,9]]},"135":{"position":[[399,9],[660,9]]},"381":{"position":[[1016,9],[1218,9]]},"397":{"position":[[3818,9]]}}}],["apis/listenbrainz",{"_index":410,"t":{"24":{"position":[[742,18]]}}}],["app",{"_index":528,"t":{"40":{"position":[[1061,3]]},"47":{"position":[[1139,3]]},"49":{"position":[[153,3],[180,3]]},"52":{"position":[[788,3]]},"54":{"position":[[922,3]]},"58":{"position":[[62,3]]},"87":{"position":[[640,3],[2368,3]]},"89":{"position":[[499,5],[602,5]]},"95":{"position":[[260,3]]},"123":{"position":[[381,4]]},"165":{"position":[[559,3],[757,3],[830,3],[1685,4],[4052,4]]},"300":{"position":[[291,3]]},"345":{"position":[[105,3]]},"347":{"position":[[95,4],[1062,3]]},"353":{"position":[[105,3],[387,5],[642,5],[987,4]]},"360":{"position":[[78,5],[84,3],[166,5],[233,5]]},"367":{"position":[[17,3]]},"377":{"position":[[132,3]]},"383":{"position":[[98,3]]},"397":{"position":[[571,3]]},"412":{"position":[[13,3],[1113,4],[1300,3],[1490,4]]}}}],["app'",{"_index":1261,"t":{"165":{"position":[[4097,5]]}}}],["app.rockski",{"_index":521,"t":{"40":{"position":[[860,14]]}}}],["appear",{"_index":2173,"t":{"371":{"position":[[831,6]]}}}],["append",{"_index":523,"t":{"40":{"position":[[893,8]]},"45":{"position":[[377,6]]},"47":{"position":[[971,8]]},"52":{"position":[[515,6]]},"191":{"position":[[367,6]]},"310":{"position":[[615,6]]},"347":{"position":[[1005,6]]}}}],["appli",{"_index":1517,"t":{"211":{"position":[[41,5],[230,5],[309,5],[412,5],[478,5],[539,5],[617,5]]},"228":{"position":[[200,5],[279,5],[374,5]]},"230":{"position":[[337,6],[372,8],[470,7],[570,7],[643,7],[757,7],[914,5],[940,7],[1307,5],[1853,7]]},"248":{"position":[[13,5],[234,8]]},"263":{"position":[[181,5],[260,5],[355,5]]},"267":{"position":[[50,7],[169,5],[195,7],[562,5],[981,7]]}}}],["applic",{"_index":439,"t":{"28":{"position":[[133,12]]},"32":{"position":[[140,12]]},"40":{"position":[[240,12],[423,11],[554,11],[968,11]]},"47":{"position":[[322,12],[505,11],[636,11],[1046,11]]},"54":{"position":[[375,11]]},"56":{"position":[[1306,12],[1639,11]]},"81":{"position":[[374,12]]},"87":{"position":[[1715,11],[1834,11],[2214,12],[2246,11],[2539,11],[2598,11],[2748,11],[2889,12]]},"111":{"position":[[69,12]]},"117":{"position":[[198,12]]},"121":{"position":[[69,12]]},"123":{"position":[[315,11],[720,12]]},"127":{"position":[[287,11]]},"129":{"position":[[239,12]]},"169":{"position":[[32,11]]},"183":{"position":[[206,11]]},"195":{"position":[[2188,11],[2212,11]]},"230":{"position":[[198,12]]},"304":{"position":[[128,11]]},"397":{"position":[[790,11]]},"418":{"position":[[15,11]]},"426":{"position":[[395,10]]},"434":{"position":[[15,11]]}}}],["apppassword",{"_index":612,"t":{"52":{"position":[[929,14],[1180,14]]},"177":{"position":[[573,14],[830,14]]}}}],["appris",{"_index":356,"t":{"20":{"position":[[1395,8],[1564,10]]},"412":{"position":[[736,8]]}}}],["appriseconfig",{"_index":357,"t":{"20":{"position":[[1435,13]]}}}],["approach",{"_index":1250,"t":{"165":{"position":[[3443,8],[3889,9]]}}}],["appropri",{"_index":1407,"t":{"195":{"position":[[2553,11]]},"246":{"position":[[280,11]]}}}],["aqzi58fa.rfszbm",{"_index":352,"t":{"20":{"position":[[925,18]]}}}],["arch",{"_index":2282,"t":{"385":{"position":[[128,5]]}}}],["architectur",{"_index":2264,"t":{"381":{"position":[[365,12]]},"430":{"position":[[9,12]]}}}],["arg",{"_index":2084,"t":{"345":{"position":[[295,5]]}}}],["arl",{"_index":838,"t":{"81":{"position":[[4,3],[103,3],[270,3],[505,4],[718,3]]},"83":{"position":[[85,3],[219,6],[522,6]]},"85":{"position":[[325,6]]}}}],["arm64",{"_index":2214,"t":{"375":{"position":[[56,5]]}}}],["array",{"_index":108,"t":{"4":{"position":[[2392,5]]},"22":{"position":[[505,5]]},"91":{"position":[[1212,5]]},"213":{"position":[[1070,5]]},"215":{"position":[[214,5],[305,5]]},"282":{"position":[[21,5]]}}}],["artist",{"_index":1129,"t":{"141":{"position":[[478,7],[493,6],[565,7],[580,6]]},"169":{"position":[[172,7],[568,8]]},"179":{"position":[[1117,7],[1423,6],[1693,6],[1747,6]]},"199":{"position":[[137,8],[446,6],[531,6],[607,6]]},"207":{"position":[[296,7],[318,6]]},"209":{"position":[[728,11],[1261,11],[1361,7],[2213,11],[2478,11]]},"211":{"position":[[133,7],[262,10],[331,7],[440,7]]},"213":{"position":[[429,9],[476,6],[607,9],[654,6],[874,8],[917,8],[965,7],[1143,6],[1258,9],[1383,6],[1452,9],[1528,10],[1553,9]]},"217":{"position":[[687,7],[1064,8],[1080,6],[1247,6],[1324,8],[1345,6]]},"219":{"position":[[84,7],[461,8]]},"221":{"position":[[151,6],[228,8],[249,6]]},"228":{"position":[[232,10],[301,7]]},"230":{"position":[[684,6]]},"234":{"position":[[533,6],[622,6],[659,7],[734,10],[836,7],[861,6],[916,10],[1313,6],[1444,6],[1563,7],[1581,6],[1866,7],[1918,6],[1943,6],[2180,10],[2310,6],[2421,6],[2512,10],[2755,6],[2831,6],[2903,7],[2920,6],[3047,10],[3267,10],[3426,6],[3838,8],[4382,6]]},"244":{"position":[[258,6],[640,6],[720,7]]},"248":{"position":[[549,10]]},"257":{"position":[[703,10]]},"259":{"position":[[60,7],[188,7],[259,7],[270,6],[315,7],[371,7],[442,6],[496,7],[561,7],[783,10],[901,10]]},"261":{"position":[[133,7],[278,8],[437,6],[580,8],[596,7],[667,11],[695,7],[745,7],[758,6],[815,7],[890,7],[941,7],[1120,7],[1173,6],[1281,7],[1369,7],[1508,7],[1536,11],[1606,11]]},"263":{"position":[[213,10],[282,7]]},"270":{"position":[[284,11]]},"274":{"position":[[42,7]]},"276":{"position":[[292,7],[305,6],[361,6]]},"278":{"position":[[303,10],[325,8]]},"282":{"position":[[429,7]]},"285":{"position":[[87,6],[312,9]]},"291":{"position":[[10,10]]},"293":{"position":[[42,9]]},"295":{"position":[[17,6],[51,7],[145,6],[165,6],[181,6],[209,6],[220,7],[452,6],[466,6],[552,6],[568,6],[617,6],[632,6],[666,10]]},"312":{"position":[[191,8]]},"327":{"position":[[772,8]]},"363":{"position":[[50,6],[141,8],[263,6],[281,6]]},"367":{"position":[[179,6],[328,6]]},"371":{"position":[[3008,7]]},"397":{"position":[[1504,7]]}}}],["artist(",{"_index":1628,"t":{"234":{"position":[[136,10],[1185,10]]}}}],["artist/album/track",{"_index":979,"t":{"91":{"position":[[329,18]]}}}],["artist/title/album",{"_index":1502,"t":{"207":{"position":[[219,18],[432,18]]},"234":{"position":[[3586,19]]}}}],["artist/track",{"_index":1722,"t":{"259":{"position":[[78,12]]}}}],["artistnam",{"_index":1968,"t":{"327":{"position":[[703,11],[781,13]]}}}],["artists/album/titl",{"_index":1719,"t":{"257":{"position":[[53,21]]}}}],["artists/title/album",{"_index":1716,"t":{"248":{"position":[[146,19]]}}}],["artistsignor",{"_index":1733,"t":{"261":{"position":[[360,13]]},"272":{"position":[[129,16]]}}}],["artistsparsefrom",{"_index":1511,"t":{"209":{"position":[[708,19],[1241,19],[1391,19],[2193,19],[2458,19]]},"261":{"position":[[500,16],[916,16],[1424,16],[1516,19],[1586,19],[1640,19],[1679,19]]},"270":{"position":[[264,19]]}}}],["artistsparsemonolithiconli",{"_index":1736,"t":{"261":{"position":[[1001,26]]}}}],["ask",{"_index":1427,"t":{"195":{"position":[[4471,4]]}}}],["aspect",{"_index":1807,"t":{"306":{"position":[[41,7]]},"316":{"position":[[116,7]]}}}],["associ",{"_index":1665,"t":{"239":{"position":[[29,10],[1587,10]]},"257":{"position":[[106,11]]}}}],["assum",{"_index":1067,"t":{"109":{"position":[[502,7]]},"119":{"position":[[117,7]]},"131":{"position":[[122,7]]},"135":{"position":[[116,7]]},"157":{"position":[[1071,9]]},"163":{"position":[[306,7]]},"177":{"position":[[306,7]]},"211":{"position":[[987,7]]},"224":{"position":[[674,7]]},"327":{"position":[[834,8],[864,8]]},"334":{"position":[[862,8]]},"353":{"position":[[1674,6]]},"397":{"position":[[693,8],[2150,8]]},"410":{"position":[[0,8]]}}}],["async",{"_index":1830,"t":{"310":{"position":[[880,5]]},"325":{"position":[[446,5],[1137,5]]},"329":{"position":[[741,5],[1695,5],[2342,5]]},"331":{"position":[[1762,5]]},"334":{"position":[[675,5]]}}}],["asynchron",{"_index":546,"t":{"40":{"position":[[1576,14]]},"310":{"position":[[335,12]]}}}],["athent",{"_index":1441,"t":{"197":{"position":[[165,13],[224,13],[290,13]]}}}],["atproto",{"_index":566,"t":{"45":{"position":[[57,7],[530,7]]},"47":{"position":[[54,7],[188,7]]},"52":{"position":[[4,7],[131,7],[671,7]]},"173":{"position":[[29,7],[160,7]]}}}],["atproto.at",{"_index":595,"t":{"47":{"position":[[1579,10]]}}}],["attempt",{"_index":645,"t":{"56":{"position":[[419,7],[794,7]]},"179":{"position":[[1098,7]]},"234":{"position":[[1535,7]]},"261":{"position":[[1101,7]]},"310":{"position":[[2835,7],[3302,7]]}}}],["attribut",{"_index":1664,"t":{"239":{"position":[[18,10],[164,10],[564,11],[582,10],[1170,10]]},"241":{"position":[[13,9],[267,9]]}}}],["attribute_nam",{"_index":1675,"t":{"239":{"position":[[593,15]]}}}],["attribute_name]allow",{"_index":1693,"t":{"239":{"position":[[1316,21]]}}}],["attribute_name]deni",{"_index":1694,"t":{"239":{"position":[[1346,20]]}}}],["attribute_name]prior",{"_index":1705,"t":{"241":{"position":[[784,24]]}}}],["audio",{"_index":985,"t":{"91":{"position":[[1045,6]]},"95":{"position":[[1053,6]]}}}],["audiobook",{"_index":1006,"t":{"95":{"position":[[980,11]]}}}],["auser",{"_index":1049,"t":{"101":{"position":[[408,8],[643,8]]}}}],["auserw",{"_index":1332,"t":{"185":{"position":[[191,10],[357,7]]}}}],["auth",{"_index":245,"t":{"12":{"position":[[269,4],[1753,7]]},"165":{"position":[[4346,4]]},"195":{"position":[[4329,4],[5360,4]]},"300":{"position":[[179,4]]},"310":{"position":[[1946,5],[1969,4],[2192,4],[2314,4],[2602,4],[2626,4],[3095,4],[3334,4]]},"321":{"position":[[397,4],[629,4]]},"323":{"position":[[112,4],[877,4]]},"329":{"position":[[2057,5],[2090,4]]}}}],["authent",{"_index":199,"t":{"10":{"position":[[67,14]]},"12":{"position":[[1076,14]]},"22":{"position":[[574,14],[629,13]]},"30":{"position":[[261,15],[373,14]]},"95":{"position":[[459,12],[595,13],[1367,12],[1435,14],[1540,12]]},"97":{"position":[[230,14]]},"101":{"position":[[179,14],[245,13]]},"125":{"position":[[42,15]]},"127":{"position":[[233,15]]},"157":{"position":[[202,13],[602,13],[776,13],[978,13],[1090,13],[1268,13]]},"165":{"position":[[459,12],[1306,14],[2191,15],[2440,15],[2904,12],[3344,15]]},"183":{"position":[[727,14]]},"195":{"position":[[489,15],[750,14],[1225,14],[4650,12],[4777,14],[4881,14],[4926,12],[5002,14],[5145,14],[5225,14]]},"197":{"position":[[113,14]]},"310":{"position":[[2383,14],[2538,14],[2671,14],[2849,13],[2954,14]]},"318":{"position":[[311,13]]},"323":{"position":[[791,14]]},"355":{"position":[[269,14]]},"357":{"position":[[176,15],[234,15],[267,14],[440,15],[469,14],[563,15],[841,13],[1135,12]]},"397":{"position":[[652,14]]},"401":{"position":[[485,14]]},"416":{"position":[[322,12]]},"418":{"position":[[243,12]]}}}],["author",{"_index":841,"t":{"81":{"position":[[121,10]]},"165":{"position":[[957,14]]},"195":{"position":[[2015,10],[2101,10],[2257,13],[2296,10],[3199,10],[3739,10],[4121,10]]},"310":{"position":[[3205,13]]},"318":{"position":[[385,13]]},"397":{"position":[[1205,9],[1294,13],[4102,9],[4191,13]]},"412":{"position":[[1091,13]]},"426":{"position":[[242,9]]}}}],["auto",{"_index":2353,"t":{"412":{"position":[[1036,4]]}}}],["autom",{"_index":1449,"t":{"199":{"position":[[75,9]]},"345":{"position":[[43,9]]}}}],["automat",{"_index":250,"t":{"12":{"position":[[499,14],[1256,14]]},"40":{"position":[[634,13]]},"45":{"position":[[363,13]]},"47":{"position":[[716,13]]},"52":{"position":[[501,13]]},"56":{"position":[[92,9]]},"73":{"position":[[205,14],[748,13],[796,13]]},"75":{"position":[[432,13],[1413,13],[1461,13],[1757,13],[1845,9]]},"87":{"position":[[812,13]]},"91":{"position":[[538,13],[608,9],[733,9],[1151,9],[1586,13]]},"157":{"position":[[142,13]]},"191":{"position":[[353,13]]},"195":{"position":[[4609,14]]},"234":{"position":[[1254,13],[1618,10],[3638,10]]},"265":{"position":[[96,13]]},"278":{"position":[[453,13]]},"336":{"position":[[2122,13]]},"379":{"position":[[70,13]]},"389":{"position":[[254,13]]},"397":{"position":[[1274,13],[4171,13]]},"403":{"position":[[418,13]]},"439":{"position":[[193,13]]}}}],["automix",{"_index":1207,"t":{"165":{"position":[[12,7],[47,7]]}}}],["avahi",{"_index":912,"t":{"87":{"position":[[1038,5],[1167,5],[1205,5],[1250,5]]}}}],["avail",{"_index":190,"t":{"6":{"position":[[146,9],[204,9]]},"22":{"position":[[60,9]]},"73":{"position":[[31,9]]},"89":{"position":[[71,9]]},"149":{"position":[[1576,9]]},"195":{"position":[[5061,9],[5287,9]]},"261":{"position":[[0,9]]},"375":{"position":[[80,9]]},"403":{"position":[[231,9]]}}}],["avoid",{"_index":273,"t":{"12":{"position":[[1934,5]]},"224":{"position":[[3,5]]},"375":{"position":[[3287,5]]}}}],["await",{"_index":1953,"t":{"325":{"position":[[1332,5]]},"329":{"position":[[1778,5],[2375,5]]},"331":{"position":[[1945,5]]},"334":{"position":[[761,5]]}}}],["awar",{"_index":309,"t":{"14":{"position":[[231,5]]},"165":{"position":[[3538,6]]}}}],["az_stat",{"_index":821,"t":{"77":{"position":[[112,10]]}}}],["az_url",{"_index":818,"t":{"77":{"position":[[66,6]]}}}],["azura",{"_index":827,"t":{"77":{"position":[[425,8],[709,8]]}}}],["azura_l",{"_index":810,"t":{"75":{"position":[[1624,11]]},"77":{"position":[[169,10]]}}}],["azura_listeners_num",{"_index":813,"t":{"75":{"position":[[1674,20]]},"77":{"position":[[231,19]]}}}],["azuracast",{"_index":711,"t":{"62":{"position":[[95,9]]},"75":{"position":[[21,9],[222,9],[375,9]]},"77":{"position":[[77,9],[388,12],[672,12]]},"412":{"position":[[135,9]]}}}],["azuracast.json",{"_index":788,"t":{"73":{"position":[[664,14]]},"75":{"position":[[1329,14]]}}}],["b",{"_index":2082,"t":{"345":{"position":[[266,1],[360,1]]}}}],["back",{"_index":1238,"t":{"165":{"position":[[2697,4]]},"195":{"position":[[4402,4]]},"371":{"position":[[3026,4]]}}}],["backend",{"_index":1103,"t":{"137":{"position":[[204,7]]},"300":{"position":[[68,7],[94,7],[328,7]]}}}],["background",{"_index":2260,"t":{"379":{"position":[[91,11]]}}}],["backlog",{"_index":2037,"t":{"334":{"position":[[266,11],[582,10]]}}}],["backslash",{"_index":1781,"t":{"295":{"position":[[511,9]]}}}],["bad",{"_index":1124,"t":{"141":{"position":[[178,3],[301,3]]},"234":{"position":[[585,3]]},"276":{"position":[[172,3]]}}}],["bad/incomplet",{"_index":955,"t":{"87":{"position":[[3218,14]]}}}],["bad\\w+/i",{"_index":1755,"t":{"280":{"position":[[246,11]]}}}],["badmus",{"_index":1025,"t":{"95":{"position":[[2529,13],[3148,10]]},"157":{"position":[[2589,10],[3137,10]]}}}],["badsometh",{"_index":1756,"t":{"280":{"position":[[267,12]]}}}],["badterm",{"_index":1753,"t":{"278":{"position":[[807,7],[832,9]]},"280":{"position":[[107,9],[126,7]]},"282":{"position":[[231,9],[252,10]]}}}],["balanc",{"_index":1587,"t":{"224":{"position":[[552,7]]}}}],["band",{"_index":1571,"t":{"217":{"position":[[1409,4]]},"221":{"position":[[313,4]]},"234":{"position":[[2239,6],[2300,4],[2574,6]]},"259":{"position":[[336,4]]}}}],["bandcamp",{"_index":1101,"t":{"137":{"position":[[123,9]]}}}],["bar",{"_index":854,"t":{"81":{"position":[[496,3]]},"259":{"position":[[323,3]]},"261":{"position":[[1455,4],[1574,5],[1635,4]]}}}],["barterm",{"_index":1765,"t":{"282":{"position":[[318,9],[360,9]]}}}],["base",{"_index":32,"t":{"4":{"position":[[456,5],[1418,5],[3101,5]]},"16":{"position":[[202,5]]},"24":{"position":[[714,4],[856,4],[904,4],[968,4],[1008,4]]},"26":{"position":[[182,4]]},"28":{"position":[[424,4]]},"34":{"position":[[200,4]]},"38":{"position":[[97,4]]},"71":{"position":[[101,5],[265,5]]},"75":{"position":[[588,5],[1560,5],[1780,5]]},"85":{"position":[[188,5]]},"87":{"position":[[789,5],[2118,5],[2715,5]]},"89":{"position":[[94,5]]},"91":{"position":[[426,5],[870,5],[1085,5],[1169,5]]},"123":{"position":[[283,4]]},"171":{"position":[[139,4]]},"179":{"position":[[1559,5]]},"183":{"position":[[427,5]]},"185":{"position":[[139,5]]},"191":{"position":[[515,4]]},"195":{"position":[[1730,5],[3316,4]]},"224":{"position":[[593,4]]},"241":{"position":[[85,5]]},"310":{"position":[[36,4],[1165,4],[2002,5]]},"316":{"position":[[161,5]]},"318":{"position":[[54,5]]},"323":{"position":[[398,4],[538,4]]},"325":{"position":[[73,5]]},"331":{"position":[[1207,5]]},"353":{"position":[[26,5]]},"371":{"position":[[625,5],[2557,6]]},"375":{"position":[[2435,4],[2665,4]]},"377":{"position":[[215,4]]},"441":{"position":[[799,5]]}}}],["base_url",{"_index":204,"t":{"10":{"position":[[184,8],[598,8],[832,8]]},"393":{"position":[[582,8]]}}}],["base_url:port/lastfm/callback",{"_index":214,"t":{"10":{"position":[[502,29]]}}}],["base_url=\"http://hostmachineip",{"_index":2241,"t":{"375":{"position":[[2819,31]]}}}],["base_url=192.168.0.100",{"_index":2254,"t":{"377":{"position":[[516,24],[760,24]]}}}],["base_url=http://192.168.0.100:9078",{"_index":2258,"t":{"377":{"position":[[1275,34]]},"395":{"position":[[365,34]]}}}],["base_url=http://192.168.0.101:9078",{"_index":2232,"t":{"375":{"position":[[1123,34]]}}}],["base_url=http://hostmachineip",{"_index":2242,"t":{"375":{"position":[[2957,29]]}}}],["base_url=http://myhostip:9078",{"_index":2233,"t":{"375":{"position":[[1161,29]]}}}],["baseurl",{"_index":205,"t":{"10":{"position":[[196,7]]},"321":{"position":[[852,8]]},"325":{"position":[[743,8]]},"329":{"position":[[162,7],[245,7],[418,9],[818,7],[991,8],[1012,7],[1045,7],[1257,8],[1266,12],[1327,10]]}}}],["baseurl.trim",{"_index":1988,"t":{"329":{"position":[[1069,14]]}}}],["bash",{"_index":2076,"t":{"345":{"position":[[14,4]]}}}],["basic",{"_index":91,"t":{"4":{"position":[[1822,5]]},"87":{"position":[[423,5]]},"165":{"position":[[4103,5]]},"310":{"position":[[3089,5]]},"336":{"position":[[1916,5]]},"412":{"position":[[935,5]]}}}],["baz",{"_index":1726,"t":{"259":{"position":[[332,3]]}}}],["be",{"_index":756,"t":{"67":{"position":[[85,5]]},"85":{"position":[[629,5]]},"117":{"position":[[407,5]]},"179":{"position":[[1014,5]]},"195":{"position":[[259,5],[5055,5]]},"205":{"position":[[119,5],[357,5],[1436,5],[1532,5]]},"336":{"position":[[209,5],[2176,5]]},"357":{"position":[[1002,5]]},"412":{"position":[[1597,5]]}}}],["bearer",{"_index":1854,"t":{"310":{"position":[[3072,6]]}}}],["befor",{"_index":62,"t":{"4":{"position":[[1043,6]]},"56":{"position":[[269,6],[463,6],[644,6],[838,6]]},"179":{"position":[[2222,6]]},"195":{"position":[[3046,7]]},"199":{"position":[[282,6],[823,6]]},"203":{"position":[[61,6]]},"205":{"position":[[203,6],[438,6]]},"234":{"position":[[2080,6]]},"250":{"position":[[260,6]]},"306":{"position":[[461,6]]},"312":{"position":[[659,6]]},"316":{"position":[[191,6]]},"331":{"position":[[2908,6]]},"336":{"position":[[2930,6]]},"353":{"position":[[1386,6]]},"369":{"position":[[0,6]]},"371":{"position":[[3288,6]]},"406":{"position":[[424,6]]},"428":{"position":[[63,6]]},"439":{"position":[[158,6]]}}}],["begin",{"_index":1414,"t":{"195":{"position":[[3016,9],[5468,5]]},"201":{"position":[[83,9]]},"239":{"position":[[1851,5]]},"397":{"position":[[1268,5],[4165,5]]}}}],["behavior",{"_index":196,"t":{"8":{"position":[[39,8]]},"73":{"position":[[543,8]]},"75":{"position":[[979,9],[1208,8],[1551,8],[1953,9]]},"87":{"position":[[3272,8]]},"91":{"position":[[506,8],[688,8]]},"187":{"position":[[210,8],[261,8]]},"209":{"position":[[1084,9]]},"261":{"position":[[1411,8]]},"308":{"position":[[483,9]]},"323":{"position":[[117,9]]},"331":{"position":[[259,8]]},"371":{"position":[[2182,9],[3078,8]]},"406":{"position":[[268,8]]},"441":{"position":[[214,8],[432,8],[948,8]]}}}],["behind",{"_index":1091,"t":{"123":{"position":[[877,6]]},"165":{"position":[[1555,6],[1831,6]]},"191":{"position":[[442,6]]}}}],["bell",{"_index":1873,"t":{"318":{"position":[[136,5]]}}}],["belong",{"_index":1667,"t":{"239":{"position":[[93,7],[448,7]]}}}],["below",{"_index":106,"t":{"4":{"position":[[2360,5]]},"12":{"position":[[161,5],[811,5],[1568,5],[2192,5],[3254,5]]},"24":{"position":[[450,5],[948,5]]},"36":{"position":[[586,6]]},"81":{"position":[[248,5]]},"87":{"position":[[3420,5]]},"95":{"position":[[341,5],[2325,5]]},"97":{"position":[[334,6]]},"103":{"position":[[302,6]]},"117":{"position":[[475,6]]},"157":{"position":[[485,5]]},"165":{"position":[[4228,5]]},"230":{"position":[[453,6]]},"244":{"position":[[791,5]]},"295":{"position":[[287,6]]},"310":{"position":[[281,5],[445,6]]},"347":{"position":[[38,5],[639,5]]},"387":{"position":[[185,5]]},"393":{"position":[[597,6]]},"395":{"position":[[433,5]]},"397":{"position":[[3297,6],[3629,5]]},"399":{"position":[[1621,5],[1843,5]]},"441":{"position":[[458,7]]}}}],["benefit",{"_index":1542,"t":{"217":{"position":[[495,7]]},"248":{"position":[[205,7]]},"257":{"position":[[93,7]]},"412":{"position":[[2335,7]]}}}],["best",{"_index":978,"t":{"91":{"position":[[315,4]]},"232":{"position":[[122,4]]},"241":{"position":[[577,4]]},"357":{"position":[[713,4]]}}}],["better",{"_index":23,"t":{"4":{"position":[[259,6]]},"246":{"position":[[422,6]]}}}],["between",{"_index":1458,"t":{"199":{"position":[[655,7]]},"250":{"position":[[452,7]]},"295":{"position":[[432,7]]},"306":{"position":[[88,7]]},"365":{"position":[[230,7]]},"371":{"position":[[677,7],[934,7]]},"373":{"position":[[23,7]]},"439":{"position":[[304,7]]}}}],["bidirection",{"_index":1166,"t":{"149":{"position":[[1451,15]]}}}],["bind",{"_index":2236,"t":{"375":{"position":[[1626,4]]}}}],["bind_to_address",{"_index":1134,"t":{"145":{"position":[[129,15]]}}}],["blacklist",{"_index":902,"t":{"87":{"position":[[626,9]]},"139":{"position":[[286,9]]},"151":{"position":[[334,9],[458,12],[686,12]]},"189":{"position":[[460,12],[681,12]]}}}],["blacklistedapp",{"_index":972,"t":{"89":{"position":[[748,18],[991,18]]}}}],["blacklisteddevic",{"_index":970,"t":{"89":{"position":[[696,21],[939,21]]}}}],["blank",{"_index":1402,"t":{"195":{"position":[[2290,5],[2396,5]]}}}],["block",{"_index":1508,"t":{"209":{"position":[[98,6]]}}}],["blueski",{"_index":501,"t":{"40":{"position":[[160,10],[666,7],[1089,7]]},"42":{"position":[[16,7],[160,7]]},"45":{"position":[[100,7],[157,7],[256,7],[550,7]]},"47":{"position":[[748,7],[1163,7]]},"49":{"position":[[0,8],[18,7]]},"52":{"position":[[192,7],[249,7],[347,7],[698,7]]},"159":{"position":[[135,10]]},"161":{"position":[[81,7]]},"175":{"position":[[81,7]]}}}],["bluesky/atproto",{"_index":609,"t":{"52":{"position":[[764,15]]}}}],["bodi",{"_index":2005,"t":{"329":{"position":[[2573,4]]},"331":{"position":[[2056,5]]},"334":{"position":[[881,4],[973,4]]}}}],["body.map(x",{"_index":2041,"t":{"334":{"position":[[1000,10]]}}}],["book",{"_index":1005,"t":{"95":{"position":[[971,4]]}}}],["boolean",{"_index":1594,"t":{"228":{"position":[[29,8]]},"261":{"position":[[1030,7]]},"263":{"position":[[29,8]]}}}],["bootleg",{"_index":1670,"t":{"239":{"position":[[387,7],[706,8]]}}}],["both",{"_index":1179,"t":{"153":{"position":[[130,4]]},"203":{"position":[[146,4]]},"232":{"position":[[362,4]]},"234":{"position":[[3406,4]]},"261":{"position":[[613,5],[631,4]]},"306":{"position":[[96,5],[397,4]]},"312":{"position":[[490,4]]},"347":{"position":[[215,4]]}}}],["bottom",{"_index":393,"t":{"24":{"position":[[229,7]]},"179":{"position":[[129,6],[449,6]]},"399":{"position":[[1400,7]]}}}],["bowl",{"_index":1636,"t":{"234":{"position":[[745,9],[927,9],[2191,9],[2257,7],[2523,9],[3058,9],[3154,8],[3278,9]]},"259":{"position":[[794,9],[912,9]]}}}],["box",{"_index":1290,"t":{"179":{"position":[[427,3]]}}}],["boz",{"_index":1771,"t":{"291":{"position":[[35,4],[60,4]]}}}],["brainzclient",{"_index":473,"t":{"34":{"position":[[281,15],[592,15]]}}}],["brainzsourc",{"_index":1099,"t":{"131":{"position":[[319,15],[630,15]]}}}],["branch",{"_index":2073,"t":{"342":{"position":[[8,6]]}}}],["brand",{"_index":1397,"t":{"195":{"position":[[1996,8]]}}}],["break",{"_index":834,"t":{"79":{"position":[[167,8]]},"325":{"position":[[704,6],[1009,6],[1025,6],[1294,6],[1433,6],[1449,6]]},"406":{"position":[[248,8]]}}}],["bridg",{"_index":2234,"t":{"375":{"position":[[1275,6],[2030,6],[2562,6]]}}}],["broadcast",{"_index":981,"t":{"91":{"position":[[451,11]]},"201":{"position":[[427,10]]}}}],["broken",{"_index":729,"t":{"65":{"position":[[50,6]]}}}],["brows",{"_index":1375,"t":{"195":{"position":[[949,9]]},"357":{"position":[[121,7]]},"371":{"position":[[2971,7]]}}}],["browser",{"_index":839,"t":{"81":{"position":[[13,7]]},"83":{"position":[[122,7]]},"165":{"position":[[927,7],[2003,7],[2381,7],[2593,7]]},"179":{"position":[[579,7]]},"183":{"position":[[433,8],[487,8]]},"195":{"position":[[207,8],[804,8],[3117,7]]},"355":{"position":[[242,7],[349,7]]},"357":{"position":[[665,7],[692,8],[1109,7]]},"375":{"position":[[2762,8]]},"412":{"position":[[1268,7]]}}}],["bsky.soci",{"_index":575,"t":{"45":{"position":[[384,12]]},"52":{"position":[[522,12]]}}}],["bu",{"_index":924,"t":{"87":{"position":[[1238,3]]}}}],["build",{"_index":1741,"t":{"265":{"position":[[110,6]]},"278":{"position":[[467,6]]},"310":{"position":[[779,5]]},"321":{"position":[[377,5]]},"325":{"position":[[67,5],[123,5]]},"327":{"position":[[528,5]]},"329":{"position":[[76,5],[111,5]]},"345":{"position":[[84,8]]},"347":{"position":[[77,5],[617,5]]},"381":{"position":[[245,5],[272,5],[292,8],[438,6]]},"383":{"position":[[76,5]]}}}],["build/artifact",{"_index":2087,"t":{"345":{"position":[[432,16]]},"347":{"position":[[744,16]]}}}],["builder",{"_index":2069,"t":{"340":{"position":[[32,7]]},"347":{"position":[[789,7]]}}}],["buildsourcesfromconfig",{"_index":1936,"t":{"325":{"position":[[421,22]]}}}],["built",{"_index":500,"t":{"40":{"position":[[135,5]]},"87":{"position":[[1190,5]]},"159":{"position":[[110,5]]},"195":{"position":[[4758,5]]},"207":{"position":[[265,5]]},"259":{"position":[[22,5]]},"306":{"position":[[375,5]]},"310":{"position":[[121,5],[2470,5]]},"325":{"position":[[549,5]]},"349":{"position":[[3,5]]},"375":{"position":[[26,5]]},"412":{"position":[[618,5]]}}}],["buserw",{"_index":1335,"t":{"185":{"position":[[275,10],[439,7]]}}}],["busi",{"_index":1560,"t":{"217":{"position":[[968,8],[1431,8]]},"219":{"position":[[365,8]]},"221":{"position":[[335,8]]},"371":{"position":[[2243,4]]}}}],["button",{"_index":890,"t":{"87":{"position":[[47,6]]},"95":{"position":[[227,6]]}}}],["bvki",{"_index":1434,"t":{"195":{"position":[[5129,5]]}}}],["c9fae8756fbf481ebd9c5bb56bd6540c",{"_index":679,"t":{"56":{"position":[[2582,35]]},"58":{"position":[[1137,35]]},"95":{"position":[[2275,35],[2913,35]]}}}],["cach",{"_index":229,"t":{"12":{"position":[[16,6],[178,6],[331,6],[735,5],[784,6],[930,5],[993,8],[1118,6],[1492,5],[1541,6],[1683,5],[1742,8],[1924,6],[2028,6],[2062,6],[2125,6],[2165,6],[2306,5],[2361,8],[2473,7],[2508,5],[2613,5],[2807,5],[2906,5],[2939,8],[3579,5],[3709,8]]},"217":{"position":[[1637,7],[1648,5]]}}}],["cache_auth",{"_index":268,"t":{"12":{"position":[[1660,10]]}}}],["cache_auth_conn",{"_index":269,"t":{"12":{"position":[[1701,15]]}}}],["cache_metadata",{"_index":277,"t":{"12":{"position":[[2284,14],[3549,14]]}}}],["cache_metadata_conn",{"_index":278,"t":{"12":{"position":[[2324,19],[3597,19]]}}}],["cache_scrobbl",{"_index":261,"t":{"12":{"position":[[903,14],[2780,14]]}}}],["cache_scrobble_conn",{"_index":262,"t":{"12":{"position":[[948,19],[2825,19]]}}}],["cachename].cach",{"_index":282,"t":{"12":{"position":[[2692,18]]}}}],["call",{"_index":237,"t":{"12":{"position":[[102,6],[293,5],[1825,5],[1895,5],[1950,5],[2013,5],[2069,5]]},"54":{"position":[[686,6]]},"217":{"position":[[1670,5]]},"224":{"position":[[564,6]]},"318":{"position":[[73,6]]},"323":{"position":[[29,6]]}}}],["callback",{"_index":441,"t":{"28":{"position":[[247,8]]},"165":{"position":[[2414,8]]},"167":{"position":[[201,8]]},"300":{"position":[[184,9]]},"308":{"position":[[307,8]]},"310":{"position":[[2344,8]]},"355":{"position":[[580,8]]},"397":{"position":[[3366,8]]},"399":{"position":[[957,8]]},"426":{"position":[[291,8]]}}}],["callback/redirect",{"_index":2141,"t":{"355":{"position":[[71,17]]}}}],["can...spotti",{"_index":654,"t":{"56":{"position":[[1161,12]]}}}],["cancel",{"_index":1671,"t":{"239":{"position":[[398,9]]}}}],["candid",{"_index":1498,"t":{"205":{"position":[[1385,12]]},"234":{"position":[[92,11]]},"289":{"position":[[23,12]]}}}],["capabl",{"_index":2038,"t":{"334":{"position":[[278,13]]}}}],["captur",{"_index":554,"t":{"40":{"position":[[1811,8]]},"179":{"position":[[1344,7]]},"295":{"position":[[328,7]]},"412":{"position":[[2346,9]]}}}],["card",{"_index":785,"t":{"73":{"position":[[492,5]]},"75":{"position":[[1176,5]]},"165":{"position":[[4328,4]]},"195":{"position":[[4309,4],[5400,4]]},"397":{"position":[[1197,4],[4094,4]]}}}],["care",{"_index":2014,"t":{"331":{"position":[[1170,4]]},"336":{"position":[[2742,4]]}}}],["case",{"_index":791,"t":{"75":{"position":[[97,4]]},"123":{"position":[[839,4]]},"139":{"position":[[324,4]]},"141":{"position":[[327,4]]},"179":{"position":[[2215,6]]},"191":{"position":[[163,4]]},"230":{"position":[[390,4]]},"295":{"position":[[374,5]]},"325":{"position":[[590,4],[679,4],[711,4],[1269,4],[1301,4]]}}}],["cast",{"_index":715,"t":{"62":{"position":[[166,4]]},"87":{"position":[[28,4],[162,4],[456,4],[654,5],[697,4],[738,4],[1584,4],[1773,4],[3062,4]]},"89":{"position":[[39,4],[198,4],[300,4],[411,4],[492,6],[595,6]]},"365":{"position":[[11,4],[92,7],[132,4],[463,4],[576,4]]},"367":{"position":[[36,4]]},"412":{"position":[[159,4]]}}}],["catalog",{"_index":550,"t":{"40":{"position":[[1657,9]]}}}],["catch",{"_index":1858,"t":{"310":{"position":[[3286,5]]},"329":{"position":[[1212,5],[2025,5],[2488,5]]},"331":{"position":[[2546,5]]},"334":{"position":[[1052,5]]}}}],["categori",{"_index":732,"t":{"65":{"position":[[71,11]]}}}],["caus",{"_index":872,"t":{"85":{"position":[[49,5]]},"195":{"position":[[332,5]]},"199":{"position":[[691,6]]},"329":{"position":[[1279,7]]},"334":{"position":[[1128,7]]},"371":{"position":[[1676,5],[2476,5]]}}}],["cc_blacklist_app",{"_index":968,"t":{"89":{"position":[[547,17]]}}}],["cc_blacklist_devic",{"_index":965,"t":{"89":{"position":[[360,20]]}}}],["cc_enabl",{"_index":957,"t":{"89":{"position":[[161,9]]}}}],["cc_whitelist_app",{"_index":966,"t":{"89":{"position":[[446,17]]}}}],["cc_whitelist_devic",{"_index":958,"t":{"89":{"position":[[251,20]]}}}],["cd",{"_index":1801,"t":{"302":{"position":[[313,2]]},"381":{"position":[[134,2]]}}}],["certain",{"_index":752,"t":{"65":{"position":[[994,7]]},"141":{"position":[[4,7]]}}}],["certificates/http",{"_index":1225,"t":{"165":{"position":[[1439,18]]}}}],["cf5b",{"_index":1896,"t":{"321":{"position":[[709,4]]}}}],["chanc",{"_index":1372,"t":{"195":{"position":[[903,6]]},"357":{"position":[[979,6]]}}}],["chang",{"_index":832,"t":{"79":{"position":[[123,6]]},"165":{"position":[[2492,8]]},"179":{"position":[[141,6],[472,7]]},"195":{"position":[[174,6],[4108,8]]},"197":{"position":[[342,7]]},"211":{"position":[[240,7],[315,7],[418,7],[484,7],[545,7],[623,7]]},"228":{"position":[[210,7],[285,7],[380,7]]},"248":{"position":[[135,6]]},"263":{"position":[[191,7],[266,7],[361,7]]},"331":{"position":[[1230,7],[2631,7],[2655,7]]},"371":{"position":[[646,7],[927,6],[1428,6],[1704,7],[1747,7],[2789,7]]},"397":{"position":[[1993,7],[2335,7]]},"406":{"position":[[257,7],[301,8]]}}}],["changem",{"_index":1319,"t":{"181":{"position":[[242,10],[459,10]]}}}],["charact",{"_index":1732,"t":{"261":{"position":[[81,10],[226,10]]},"280":{"position":[[983,11]]}}}],["check",{"_index":1,"t":{"2":{"position":[[4,5]]},"56":{"position":[[1612,5]]},"69":{"position":[[499,5]]},"73":{"position":[[64,5]]},"97":{"position":[[169,5],[245,7]]},"103":{"position":[[161,5]]},"139":{"position":[[183,5]]},"211":{"position":[[744,5]]},"310":{"position":[[1407,5],[1912,5]]},"329":{"position":[[137,5],[1398,5],[1445,5]]},"331":{"position":[[794,7],[2857,6]]},"336":{"position":[[2341,7],[3986,5]]},"353":{"position":[[1357,5],[1547,5],[1596,5],[2146,5],[2398,5]]},"371":{"position":[[697,7],[792,7],[946,6]]},"403":{"position":[[336,5]]},"406":{"position":[[408,5]]},"428":{"position":[[49,5]]}}}],["check/test",{"_index":1849,"t":{"310":{"position":[[2181,10]]}}}],["child",{"_index":1833,"t":{"310":{"position":[[1036,5],[1771,5],[3018,5]]}}}],["choic",{"_index":1702,"t":{"241":{"position":[[582,6],[668,7],[758,7]]}}}],["choos",{"_index":491,"t":{"36":{"position":[[571,6]]},"91":{"position":[[463,7]]},"195":{"position":[[2163,6]]},"230":{"position":[[418,6]]}}}],["chrome",{"_index":843,"t":{"81":{"position":[[288,6]]}}}],["chromecast",{"_index":716,"t":{"62":{"position":[[171,12]]},"87":{"position":[[2319,13],[2851,13],[3510,13]]},"89":{"position":[[1047,12]]},"412":{"position":[[164,12]]}}}],["chromecast.j",{"_index":1906,"t":{"321":{"position":[[1344,18]]}}}],["chromecast.json",{"_index":941,"t":{"87":{"position":[[2273,15],[2805,15],[3464,15]]}}}],["chromecastsourceaioconfig",{"_index":1904,"t":{"321":{"position":[[1287,26]]}}}],["chromecastsourceconfig",{"_index":1905,"t":{"321":{"position":[[1314,22]]}}}],["chromium",{"_index":1326,"t":{"183":{"position":[[418,8]]}}}],["circumv",{"_index":913,"t":{"87":{"position":[[1062,10]]}}}],["cjeb3egaevcd",{"_index":1379,"t":{"195":{"position":[[1122,12]]},"197":{"position":[[487,12],[844,12]]}}}],["class",{"_index":1809,"t":{"306":{"position":[[284,5],[334,5]]},"310":{"position":[[41,6],[1042,5],[1230,5],[1777,5],[2015,5],[2118,6],[3024,5],[3148,5]]},"323":{"position":[[403,5],[454,5],[543,5]]},"325":{"position":[[390,5]]},"327":{"position":[[351,5]]},"329":{"position":[[372,5],[1632,5],[2270,5]]},"331":{"position":[[1699,5]]},"334":{"position":[[454,5]]},"336":{"position":[[897,5],[1760,6],[2816,5],[3488,5]]}}}],["classifi",{"_index":937,"t":{"87":{"position":[[1882,10]]}}}],["claus",{"_index":1526,"t":{"213":{"position":[[327,6],[375,7]]}}}],["clean",{"_index":1452,"t":{"199":{"position":[[249,6]]},"347":{"position":[[994,5]]}}}],["click",{"_index":782,"t":{"73":{"position":[[420,8]]},"75":{"position":[[1104,8]]},"81":{"position":[[464,5],[747,5],[780,5]]},"95":{"position":[[219,5]]},"165":{"position":[[4290,5]]},"179":{"position":[[431,5]]},"195":{"position":[[4264,5],[5444,5]]},"397":{"position":[[1159,5],[4047,5]]}}}],["client",{"_index":6,"t":{"4":{"position":[[12,7],[593,6],[1619,6],[1715,7],[2585,10],[3302,6],[3398,7],[4442,10],[4659,10]]},"6":{"position":[[75,6],[175,7],[192,7]]},"18":{"position":[[105,7]]},"20":{"position":[[163,6],[380,10]]},"26":{"position":[[266,8],[290,9],[527,10],[557,8],[581,9]]},"30":{"position":[[507,9],[785,10],[857,9]]},"34":{"position":[[328,9],[569,10],[639,9]]},"38":{"position":[[212,8],[252,9],[440,10],[473,8],[513,9]]},"40":{"position":[[1871,7]]},"45":{"position":[[747,9],[956,10],[1013,9]]},"52":{"position":[[874,9],[1077,10],[1125,9]]},"56":{"position":[[628,6],[964,10],[1220,10],[1466,10],[1722,10],[1892,10],[2201,7],[2268,7],[2437,7],[2504,7],[2696,10],[2865,10],[3100,10],[3163,10]]},"58":{"position":[[128,10],[263,10],[398,10],[569,10],[723,10],[1257,10],[1500,10]]},"69":{"position":[[15,7],[57,7],[147,7],[221,10],[302,7],[319,11],[414,8],[433,6],[579,6],[647,6]]},"83":{"position":[[194,10],[497,10]]},"95":{"position":[[2190,10],[2828,10]]},"109":{"position":[[110,8],[176,8],[199,8],[469,6],[545,6]]},"111":{"position":[[165,8]]},"117":{"position":[[95,8],[156,8],[378,8]]},"119":{"position":[[84,6],[162,6]]},"121":{"position":[[180,8]]},"125":{"position":[[18,7]]},"129":{"position":[[117,8],[197,8]]},"131":{"position":[[89,6],[172,6]]},"133":{"position":[[59,8],[83,8]]},"135":{"position":[[83,6],[160,6]]},"145":{"position":[[39,6]]},"157":{"position":[[2311,10],[2859,10]]},"159":{"position":[[52,8],[255,8],[323,8]]},"161":{"position":[[45,8]]},"163":{"position":[[16,8],[273,6],[351,6]]},"165":{"position":[[572,6],[3725,6],[4071,6],[4135,6]]},"167":{"position":[[288,10],[640,10]]},"173":{"position":[[59,8],[334,8],[402,8]]},"175":{"position":[[45,8]]},"177":{"position":[[16,8],[273,6],[351,6]]},"185":{"position":[[202,10],[286,10]]},"195":{"position":[[563,6],[1375,7],[2177,6],[2466,6],[2488,6],[2502,6],[2899,7],[2907,6],[2922,6],[3180,6],[3792,7],[4858,7]]},"197":{"position":[[145,6],[200,6],[428,10],[785,10]]},"199":{"position":[[311,6],[678,6]]},"201":{"position":[[474,7],[491,7],[551,6],[592,6],[739,6]]},"203":{"position":[[162,6],[358,8]]},"205":{"position":[[230,7],[242,8]]},"230":{"position":[[1230,7],[1383,8]]},"248":{"position":[[183,7],[272,6]]},"257":{"position":[[170,7]]},"267":{"position":[[485,7],[638,8]]},"306":{"position":[[64,7]]},"312":{"position":[[507,7]]},"314":{"position":[[32,6]]},"327":{"position":[[480,6]]},"331":{"position":[[903,7],[2929,7]]},"336":{"position":[[3014,7],[3373,7],[3669,7],[3973,7]]},"355":{"position":[[11,6]]},"357":{"position":[[433,6]]},"371":{"position":[[2769,7]]},"375":{"position":[[2480,6]]},"377":{"position":[[117,6]]},"381":{"position":[[953,10],[1122,10]]},"397":{"position":[[584,6],[3151,8],[3281,7]]},"399":{"position":[[0,7],[135,7]]},"401":{"position":[[355,7]]},"403":{"position":[[253,7]]},"412":{"position":[[508,7],[698,7],[803,7],[989,6],[1700,6],[1883,7],[2253,7]]},"414":{"position":[[66,8],[224,7]]},"416":{"position":[[372,6],[476,8]]},"418":{"position":[[2,6],[158,6],[265,7]]},"434":{"position":[[2,6]]},"439":{"position":[[55,6]]},"441":{"position":[[90,7],[185,7],[408,7],[515,7],[756,6],[910,7],[1072,9]]}}}],["client/sourc",{"_index":11,"t":{"4":{"position":[[72,13],[2337,13],[2414,14]]},"22":{"position":[[289,13],[373,14]]}}}],["client1maloja",{"_index":1333,"t":{"185":{"position":[[215,15]]}}}],["client2maloja",{"_index":1336,"t":{"185":{"position":[[299,15]]}}}],["clientconfig",{"_index":1950,"t":{"325":{"position":[[1143,14]]}}}],["clientdefault",{"_index":159,"t":{"4":{"position":[[4322,17]]},"56":{"position":[[535,17]]}}}],["clientid",{"_index":118,"t":{"4":{"position":[[2610,11],[4504,11]]},"56":{"position":[[1001,11],[1257,11]]},"58":{"position":[[165,11],[300,11]]},"167":{"position":[[313,11],[665,11]]},"195":{"position":[[2635,11],[3864,11]]},"197":{"position":[[509,11],[866,11]]}}}],["clients/sourc",{"_index":379,"t":{"22":{"position":[[255,15],[545,15]]}}}],["clientsecret",{"_index":120,"t":{"4":{"position":[[2658,15],[4552,15]]},"56":{"position":[[1033,15],[1380,15]]},"58":{"position":[[197,15],[332,15]]},"167":{"position":[[361,15],[713,15]]},"195":{"position":[[2692,15],[3921,15]]},"197":{"position":[[564,15],[921,15]]}}}],["clone",{"_index":1797,"t":{"302":{"position":[[179,5],[259,5]]},"381":{"position":[[0,5],[80,5]]},"410":{"position":[[67,6]]}}}],["close",{"_index":1657,"t":{"234":{"position":[[4515,6]]},"237":{"position":[[77,5]]},"357":{"position":[[1097,7]]}}}],["cloud",{"_index":1390,"t":{"195":{"position":[[1785,5],[4156,5]]},"416":{"position":[[145,5]]}}}],["clv",{"_index":1432,"t":{"195":{"position":[[5120,4]]}}}],["code",{"_index":1218,"t":{"165":{"position":[[997,4],[3667,4]]},"195":{"position":[[5115,4],[5258,4]]},"239":{"position":[[1061,4]]},"357":{"position":[[136,5],[302,5]]}}}],["cog",{"_index":486,"t":{"36":{"position":[[353,4]]},"399":{"position":[[537,4]]}}}],["collect",{"_index":1252,"t":{"165":{"position":[[3554,7]]},"199":{"position":[[371,10]]},"244":{"position":[[742,10]]},"248":{"position":[[83,10]]}}}],["column",{"_index":864,"t":{"81":{"position":[[763,6]]}}}],["combin",{"_index":1523,"t":{"211":{"position":[[881,9]]},"230":{"position":[[400,8]]},"234":{"position":[[646,8]]},"363":{"position":[[130,10]]},"381":{"position":[[384,11]]}}}],["come",{"_index":881,"t":{"85":{"position":[[428,5]]},"205":{"position":[[944,6]]},"217":{"position":[[305,6]]},"246":{"position":[[70,4]]}}}],["comma",{"_index":959,"t":{"89":{"position":[[314,5],[425,5],[505,5],[608,5]]},"95":{"position":[[1623,5],[1713,5],[1814,5],[1889,5],[1976,5],[2062,5]]},"151":{"position":[[186,5],[263,5]]},"157":{"position":[[1764,5],[1846,5],[1939,5],[2010,5],[2093,5],[2175,5]]},"189":{"position":[[225,5],[314,5]]},"230":{"position":[[293,5]]},"244":{"position":[[845,7]]},"295":{"position":[[605,5]]},"397":{"position":[[2822,5]]}}}],["command",{"_index":1293,"t":{"179":{"position":[[755,7],[945,7]]},"347":{"position":[[645,7],[1042,7]]},"349":{"position":[[90,7]]},"375":{"position":[[3452,8]]},"408":{"position":[[191,7],[218,7]]}}}],["commerci",{"_index":1556,"t":{"217":{"position":[[855,10]]},"219":{"position":[[252,10]]}}}],["commit",{"_index":2074,"t":{"342":{"position":[[22,6]]},"410":{"position":[[103,7]]}}}],["common",{"_index":330,"t":{"18":{"position":[[30,6]]},"87":{"position":[[415,7]]},"179":{"position":[[2170,6]]},"234":{"position":[[439,6],[1880,6],[1902,6],[2731,6],[3127,6]]},"259":{"position":[[290,6],[507,6]]},"295":{"position":[[390,6]]},"306":{"position":[[308,6],[434,6]]},"316":{"position":[[236,6]]},"321":{"position":[[64,6],[415,6]]},"365":{"position":[[44,6],[353,6]]},"403":{"position":[[530,6]]}}}],["common.j",{"_index":1889,"t":{"321":{"position":[[258,15]]}}}],["common/errors/upstreamerror.j",{"_index":1997,"t":{"329":{"position":[[1573,36],[2211,36]]}}}],["common/infrastructure/atomic.j",{"_index":1922,"t":{"323":{"position":[[337,37]]},"327":{"position":[[247,37]]},"331":{"position":[[1639,37]]},"334":{"position":[[394,37]]}}}],["common/infrastructure/config/source/coolplayer.j",{"_index":1918,"t":{"323":{"position":[[203,55]]}}}],["commonclientconfig",{"_index":1817,"t":{"308":{"position":[[136,19]]}}}],["commonsourceconfig",{"_index":1816,"t":{"308":{"position":[[113,18]]},"321":{"position":[[283,19],[918,18]]}}}],["commonsourcedata",{"_index":1890,"t":{"321":{"position":[[303,16],[504,17]]}}}],["commun",{"_index":733,"t":{"65":{"position":[[86,13]]},"97":{"position":[[32,11]]},"103":{"position":[[32,11]]},"145":{"position":[[3,12]]},"149":{"position":[[34,13],[315,12],[382,13],[1473,13]]},"179":{"position":[[3,12]]},"195":{"position":[[8,13]]},"300":{"position":[[300,12]]},"310":{"position":[[1468,11],[2410,11]]},"412":{"position":[[1363,12]]},"416":{"position":[[307,11]]},"418":{"position":[[228,11]]}}}],["compar",{"_index":1273,"t":{"169":{"position":[[577,8]]},"201":{"position":[[218,8],[599,8]]},"203":{"position":[[76,8],[93,8],[116,8],[523,10]]},"205":{"position":[[69,7],[125,8],[307,7],[363,8],[675,7],[1007,7],[1024,7],[1370,10],[1442,8],[1538,8]]},"289":{"position":[[10,10]]},"336":{"position":[[2395,9]]}}}],["comparison",{"_index":1496,"t":{"205":{"position":[[1155,10],[1283,11]]}}}],["compat",{"_index":724,"t":{"62":{"position":[[766,10]]},"412":{"position":[[378,10]]}}}],["compens",{"_index":2169,"t":{"371":{"position":[[532,10]]}}}],["compil",{"_index":1673,"t":{"239":{"position":[[461,11],[899,12],[1470,12],[1516,15]]}}}],["complet",{"_index":538,"t":{"40":{"position":[[1402,9]]},"165":{"position":[[948,8],[1289,8],[2180,10],[3335,8]]},"195":{"position":[[5322,10]]},"246":{"position":[[481,10]]},"310":{"position":[[2305,8]]},"355":{"position":[[258,10]]},"357":{"position":[[257,9]]},"397":{"position":[[1311,9],[4208,9]]}}}],["complex",{"_index":103,"t":{"4":{"position":[[2276,7],[3901,7]]}}}],["complic",{"_index":2337,"t":{"403":{"position":[[187,11]]}}}],["compon",{"_index":1808,"t":{"306":{"position":[[145,10],[158,9],[263,9],[362,9]]},"308":{"position":[[24,9],[265,9],[427,9]]},"310":{"position":[[0,10],[108,9],[195,9],[726,9],[975,9],[1501,9],[1592,9],[1643,9],[1992,9],[2108,9],[2206,9],[2364,9]]},"312":{"position":[[552,9]]}}}],["compos",{"_index":49,"t":{"4":{"position":[[766,7]]},"12":{"position":[[615,8],[1372,8],[3167,7]]},"36":{"position":[[311,7]]},"149":{"position":[[1093,7]]},"306":{"position":[[171,8]]},"375":{"position":[[1591,7],[1794,7],[1908,8],[2259,7],[2353,8],[2793,7],[2881,8],[3095,8]]},"377":{"position":[[56,7],[345,7]]},"393":{"position":[[84,8]]},"399":{"position":[[495,7]]},"401":{"position":[[237,7]]},"408":{"position":[[14,7],[271,7],[291,7]]}}}],["compose.yaml",{"_index":1159,"t":{"149":{"position":[[1144,12]]}}}],["compose.yml",{"_index":50,"t":{"4":{"position":[[781,11]]},"12":{"position":[[3189,11]]},"36":{"position":[[112,12],[145,11]]},"375":{"position":[[259,12],[344,11],[1924,11],[2369,11],[2897,11]]},"377":{"position":[[292,11],[859,11],[925,11]]},"393":{"position":[[264,11]]},"395":{"position":[[76,11],[123,11]]},"397":{"position":[[274,11],[315,11],[871,11],[912,11],[1845,11],[1886,11],[2232,11],[2650,11],[2691,11],[3598,11]]},"399":{"position":[[296,12],[329,11],[748,11],[817,11],[1128,11],[1197,11],[2034,11],[2103,11]]},"401":{"position":[[168,11]]}}}],["compositeconfig",{"_index":1955,"t":{"325":{"position":[[1365,15]]}}}],["compris",{"_index":1625,"t":{"232":{"position":[[215,9]]}}}],["concern",{"_index":319,"t":{"16":{"position":[[74,8]]}}}],["concret",{"_index":1479,"t":{"203":{"position":[[259,8]]},"306":{"position":[[275,8]]}}}],["condit",{"_index":815,"t":{"75":{"position":[[1800,10]]},"211":{"position":[[898,9]]},"213":{"position":[[1030,10],[1083,10],[1121,9],[1335,9]]},"228":{"position":[[114,10]]},"263":{"position":[[114,11]]},"285":{"position":[[15,11]]}}}],["config",{"_index":14,"t":{"4":{"position":[[100,6],[132,6],[633,6],[1322,7],[1973,6],[1995,7],[2505,6],[3503,6],[3627,6],[4019,6]]},"12":{"position":[[585,8],[795,6],[971,7],[1052,9],[1342,8],[1552,6],[1720,7],[1797,9],[2176,6],[2588,7],[2848,7],[2998,9]]},"20":{"position":[[662,6],[1017,6],[1417,6]]},"24":{"position":[[1552,6]]},"26":{"position":[[17,6],[217,6],[490,6]]},"30":{"position":[[17,6],[415,6],[748,6]]},"34":{"position":[[17,6],[232,6],[532,6]]},"38":{"position":[[17,6],[159,6],[403,6]]},"45":{"position":[[436,6],[669,6],[919,6]]},"52":{"position":[[574,6],[806,6],[1040,6]]},"56":{"position":[[173,6],[337,6],[525,6],[712,6],[900,6]]},"58":{"position":[[100,7]]},"69":{"position":[[671,7]]},"71":{"position":[[373,7]]},"73":{"position":[[656,7]]},"75":{"position":[[717,6],[1321,7]]},"85":{"position":[[175,6]]},"87":{"position":[[3403,6]]},"89":{"position":[[100,7]]},"91":{"position":[[1226,6]]},"99":{"position":[[52,6],[666,6]]},"101":{"position":[[17,6],[293,6],[515,6]]},"105":{"position":[[50,6],[658,6]]},"107":{"position":[[17,6],[224,6],[462,6]]},"109":{"position":[[312,6],[328,6],[404,6],[476,6],[596,6],[636,6],[909,6]]},"115":{"position":[[17,6],[297,6],[471,6]]},"119":{"position":[[17,6],[91,6],[213,6],[255,6],[588,6]]},"127":{"position":[[17,6],[376,6],[550,6]]},"131":{"position":[[17,6],[96,6],[223,6],[270,6],[570,6]]},"133":{"position":[[196,6],[212,6]]},"135":{"position":[[17,6],[90,6],[212,6],[253,6],[497,6]]},"137":{"position":[[407,6],[967,6]]},"139":{"position":[[154,7]]},"143":{"position":[[17,6],[49,6],[285,6]]},"145":{"position":[[121,7]]},"147":{"position":[[17,6],[129,6],[375,6]]},"151":{"position":[[17,6],[349,6],[559,6]]},"155":{"position":[[17,6],[166,6],[402,6]]},"157":{"position":[[1563,6],[2241,6],[2770,6]]},"163":{"position":[[129,6],[145,6],[206,6],[280,6],[402,6],[444,6],[694,6]]},"167":{"position":[[17,6],[215,6],[551,6]]},"171":{"position":[[17,6],[181,6],[458,6]]},"177":{"position":[[129,6],[145,6],[206,6],[280,6],[402,6],[444,6],[684,6]]},"179":{"position":[[1565,7]]},"181":{"position":[[17,6],[130,6],[327,6]]},"185":{"position":[[145,7]]},"189":{"position":[[17,6],[340,6],[550,6]]},"193":{"position":[[17,6],[126,6],[307,6]]},"195":{"position":[[995,6],[4724,7]]},"197":{"position":[[17,6],[355,6],[696,6]]},"199":{"position":[[16,7]]},"209":{"position":[[44,6],[461,7],[767,7],[1111,7],[1448,7],[1636,7],[1946,7],[2252,7]]},"215":{"position":[[114,6]]},"217":{"position":[[1527,6]]},"224":{"position":[[197,7]]},"230":{"position":[[99,6]]},"239":{"position":[[612,7]]},"250":{"position":[[557,7]]},"253":{"position":[[17,7],[193,7]]},"255":{"position":[[10,6],[57,7],[80,7],[105,7],[465,7]]},"257":{"position":[[294,7],[528,7]]},"261":{"position":[[1488,6]]},"265":{"position":[[257,7]]},"267":{"position":[[68,6]]},"270":{"position":[[17,7],[323,7]]},"272":{"position":[[17,7],[222,7]]},"274":{"position":[[255,7]]},"278":{"position":[[589,7]]},"310":{"position":[[1145,6],[1236,6],[1257,6],[3128,6],[3376,6]]},"321":{"position":[[21,6],[71,6],[104,6],[156,7],[1960,6]]},"323":{"position":[[93,6],[549,6],[575,7],[630,7],[739,7]]},"325":{"position":[[28,7],[86,7],[166,6],[1097,6]]},"336":{"position":[[3428,7]]},"360":{"position":[[88,6]]},"371":{"position":[[2344,6]]},"387":{"position":[[62,7]]},"397":{"position":[[1801,6],[3544,8]]},"399":{"position":[[2260,6]]},"406":{"position":[[328,7]]},"441":{"position":[[902,7],[995,8],[1190,8]]}}}],["config.json",{"_index":263,"t":{"12":{"position":[[979,11],[1728,11],[2347,11],[2925,11],[3695,11]]},"14":{"position":[[444,11],[456,11]]},"20":{"position":[[222,11],[344,11],[809,11],[1162,11],[1542,11]]},"91":{"position":[[1290,11]]},"209":{"position":[[51,11],[469,11],[1119,11],[1954,11]]},"224":{"position":[[205,11],[774,11]]},"226":{"position":[[125,11]]},"253":{"position":[[25,11]]},"255":{"position":[[113,11]]},"257":{"position":[[302,11]]},"270":{"position":[[25,11]]},"272":{"position":[[25,11]]},"278":{"position":[[178,11]]},"321":{"position":[[1073,13]]},"360":{"position":[[246,11]]}}}],["config/config.json",{"_index":127,"t":{"4":{"position":[[2994,19]]},"381":{"position":[[874,20],[895,20]]}}}],["config/config.json.exampl",{"_index":134,"t":{"4":{"position":[[3681,27]]}}}],["config/data",{"_index":2249,"t":{"377":{"position":[[224,11]]}}}],["config/endpointlfm.json",{"_index":1076,"t":{"115":{"position":[[309,23]]}}}],["config/endpointlz.json",{"_index":1097,"t":{"127":{"position":[[388,22]]}}}],["config/kodi.json",{"_index":1062,"t":{"107":{"position":[[236,16]]}}}],["config/koito.json",{"_index":425,"t":{"26":{"position":[[229,17]]},"109":{"position":[[648,17]]}}}],["config/lastfm.json",{"_index":460,"t":{"30":{"position":[[427,18]]},"119":{"position":[[267,18]]}}}],["config/listenbrainz.json",{"_index":472,"t":{"34":{"position":[[244,24]]},"131":{"position":[[282,24]]}}}],["config/maloja.json",{"_index":494,"t":{"38":{"position":[[171,18]]},"135":{"position":[[265,18]]}}}],["config/mopidy.json",{"_index":1130,"t":{"143":{"position":[[61,18]]}}}],["config/mpd.json",{"_index":1141,"t":{"147":{"position":[[141,15]]}}}],["config/mpris.json",{"_index":1177,"t":{"151":{"position":[[361,17]]}}}],["config/musiccast.json",{"_index":1356,"t":{"193":{"position":[[138,21]]}}}],["config/musikcube.json",{"_index":1186,"t":{"155":{"position":[[178,21]]}}}],["config/plex.json",{"_index":1200,"t":{"157":{"position":[[2253,16]]}}}],["config/rocksky.json",{"_index":579,"t":{"45":{"position":[[681,19]]},"163":{"position":[[456,19]]}}}],["config/spotify.json",{"_index":1268,"t":{"167":{"position":[[227,19]]}}}],["config/subsonic.json",{"_index":1277,"t":{"171":{"position":[[193,20]]}}}],["config/systemd/us",{"_index":2284,"t":{"387":{"position":[[79,22]]}}}],["config/systemd/user/multi",{"_index":2286,"t":{"387":{"position":[[108,28]]}}}],["config/tealfm.json",{"_index":610,"t":{"52":{"position":[[818,18]]},"177":{"position":[[456,18]]}}}],["config/vlc.json",{"_index":1307,"t":{"179":{"position":[[1573,15],[2337,15]]},"181":{"position":[[142,15]]}}}],["config/webscrobbler.json",{"_index":1345,"t":{"189":{"position":[[352,24]]}}}],["config/ytmusic.json",{"_index":1445,"t":{"197":{"position":[[367,19]]}}}],["config:/config",{"_index":1621,"t":{"230":{"position":[[2041,18]]},"267":{"position":[[1164,18]]},"375":{"position":[[1202,18],[1980,18]]},"377":{"position":[[1404,18]]},"395":{"position":[[468,18]]}}}],["config_dir",{"_index":68,"t":{"4":{"position":[[1209,10],[2458,11],[2869,10]]},"12":{"position":[[2636,10]]}}}],["config_dir/azuracast.json",{"_index":826,"t":{"77":{"position":[[350,25]]}}}],["config_dir/chromecast.json",{"_index":969,"t":{"89":{"position":[[637,26]]}}}],["config_dir/config.json",{"_index":140,"t":{"4":{"position":[[4034,22]]},"26":{"position":[[502,22]]},"30":{"position":[[760,22]]},"34":{"position":[[544,22]]},"38":{"position":[[415,22]]},"45":{"position":[[931,22]]},"52":{"position":[[1052,22]]},"56":{"position":[[0,22]]},"77":{"position":[[624,22]]},"83":{"position":[[420,22]]},"89":{"position":[[871,22]]},"93":{"position":[[287,22]]},"95":{"position":[[2750,22]]},"101":{"position":[[527,22]]},"107":{"position":[[474,22]]},"109":{"position":[[921,22]]},"115":{"position":[[483,22]]},"119":{"position":[[600,22]]},"127":{"position":[[562,22]]},"131":{"position":[[582,22]]},"135":{"position":[[509,22]]},"143":{"position":[[297,22]]},"147":{"position":[[387,22]]},"151":{"position":[[571,22]]},"155":{"position":[[414,22]]},"157":{"position":[[2782,22]]},"163":{"position":[[706,22]]},"167":{"position":[[563,22]]},"171":{"position":[[470,22]]},"177":{"position":[[696,22]]},"181":{"position":[[339,22]]},"189":{"position":[[562,22]]},"193":{"position":[[319,22]]},"197":{"position":[[708,22]]}}}],["config_dir/deezer.json",{"_index":866,"t":{"83":{"position":[[130,22]]}}}],["config_dir/endpointlz.json",{"_index":703,"t":{"58":{"position":[[1441,26]]}}}],["config_dir/icecast.json",{"_index":994,"t":{"93":{"position":[[102,23]]}}}],["config_dir/jellyfin.json",{"_index":701,"t":{"58":{"position":[[1017,24]]},"95":{"position":[[2123,24]]}}}],["config_dir/jriver.json",{"_index":1047,"t":{"101":{"position":[[305,22]]}}}],["config_dir/lastfm.json",{"_index":705,"t":{"58":{"position":[[1889,22]]},"441":{"position":[[1004,22]]}}}],["config_dir/maloja.json",{"_index":704,"t":{"58":{"position":[[1563,22]]}}}],["config_dir/plex.json",{"_index":700,"t":{"58":{"position":[[524,20]]}}}],["config_dir/spotify.json",{"_index":113,"t":{"4":{"position":[[2520,23]]},"58":{"position":[[0,23]]}}}],["config_dir/ytmusic.json",{"_index":702,"t":{"58":{"position":[[1206,23]]}}}],["configs.push",{"_index":1946,"t":{"325":{"position":[[860,14]]}}}],["configur",{"_index":4,"t":{"2":{"position":[[47,14]]},"4":{"position":[[24,10],[158,13],[181,13],[224,14],[462,13],[1147,13],[1384,9],[1424,13],[1755,13],[1828,13],[1859,13],[1922,14],[2140,13],[2284,14],[2808,13],[3068,9],[3107,13],[3765,13],[3909,14],[3952,14]]},"6":{"position":[[8,13],[82,15],[256,13],[300,9],[321,13]]},"10":{"position":[[215,13],[453,14],[583,14]]},"12":{"position":[[213,12],[480,10],[526,10],[571,13],[751,14],[1237,10],[1283,10],[1328,13],[1508,14],[2132,14],[2481,14],[2558,10]]},"14":{"position":[[89,13]]},"20":{"position":[[42,10],[200,10],[302,10]]},"24":{"position":[[1492,10]]},"32":{"position":[[385,14]]},"36":{"position":[[548,13]]},"67":{"position":[[134,13]]},"69":{"position":[[97,13],[403,10],[443,10]]},"71":{"position":[[626,10]]},"73":{"position":[[291,14]]},"75":{"position":[[1600,11],[1733,10],[1834,10]]},"87":{"position":[[605,9],[767,10],[795,13],[914,10],[2124,14],[2156,10],[2721,13]]},"89":{"position":[[27,11]]},"91":{"position":[[723,9],[1547,10]]},"95":{"position":[[327,13],[1168,14],[1183,14]]},"97":{"position":[[320,13]]},"103":{"position":[[288,13]]},"109":{"position":[[99,10],[208,13],[272,14],[372,14],[552,14]]},"113":{"position":[[29,13]]},"115":{"position":[[151,14]]},"117":{"position":[[84,10],[277,9],[342,13],[461,13]]},"119":{"position":[[169,14]]},"123":{"position":[[29,13],[298,11]]},"125":{"position":[[202,13]]},"127":{"position":[[149,14]]},"129":{"position":[[106,10],[485,14]]},"131":{"position":[[179,14]]},"133":{"position":[[92,13],[156,14]]},"135":{"position":[[167,14]]},"137":{"position":[[748,13],[835,13]]},"149":{"position":[[1009,10]]},"153":{"position":[[26,9]]},"157":{"position":[[491,13],[1531,14]]},"159":{"position":[[244,10]]},"163":{"position":[[25,13],[89,14],[358,14]]},"165":{"position":[[1940,10],[2252,13],[4206,13]]},"169":{"position":[[661,13]]},"173":{"position":[[323,10]]},"177":{"position":[[25,13],[89,14],[358,14]]},"179":{"position":[[869,13]]},"187":{"position":[[10,10],[279,10]]},"195":{"position":[[1879,9],[4984,14]]},"203":{"position":[[314,13]]},"209":{"position":[[23,10],[260,13],[370,9],[1025,11],[1806,14],[1833,13]]},"211":{"position":[[1079,11]]},"217":{"position":[[1604,14]]},"224":{"position":[[171,13],[459,14]]},"226":{"position":[[69,10],[89,13]]},"230":{"position":[[12,13],[50,10],[246,9],[599,13],[1113,13],[1428,13]]},"232":{"position":[[387,14]]},"234":{"position":[[1495,13],[1821,13],[2029,10],[2600,13],[3307,13],[4537,13]]},"237":{"position":[[129,13]]},"239":{"position":[[1910,14]]},"241":{"position":[[769,14]]},"244":{"position":[[73,13]]},"261":{"position":[[31,14]]},"265":{"position":[[60,14],[149,14]]},"267":{"position":[[12,13],[368,13],[683,13]]},"274":{"position":[[177,13]]},"278":{"position":[[10,13],[102,13],[417,14]]},"304":{"position":[[105,14]]},"306":{"position":[[240,13]]},"308":{"position":[[4,13]]},"310":{"position":[[834,14]]},"336":{"position":[[3391,10]]},"353":{"position":[[1646,13],[1929,11]]},"355":{"position":[[52,14]]},"360":{"position":[[304,13],[357,13]]},"369":{"position":[[65,14]]},"371":{"position":[[1458,13]]},"373":{"position":[[74,13]]},"375":{"position":[[322,14],[1550,13],[1679,14],[3248,13]]},"379":{"position":[[37,9]]},"397":{"position":[[156,13],[2001,9]]},"399":{"position":[[117,10],[147,9],[2200,10]]},"401":{"position":[[328,10],[434,10]]},"403":{"position":[[102,13],[140,9],[271,13]]},"406":{"position":[[280,14]]},"412":{"position":[[820,11],[1123,13]]},"414":{"position":[[11,14],[99,10],[247,10]]},"416":{"position":[[244,14],[465,10]]},"418":{"position":[[165,14]]},"424":{"position":[[8,13]]},"426":{"position":[[61,13],[194,14]]},"428":{"position":[[34,14]]},"441":{"position":[[535,10],[815,13]]}}}],["configuraion",{"_index":1623,"t":{"232":{"position":[[96,12]]}}}],["configuration/data",{"_index":1831,"t":{"310":{"position":[[941,18]]}}}],["configurea",{"_index":426,"t":{"26":{"position":[[275,14],[566,14]]},"30":{"position":[[492,14],[842,14]]},"34":{"position":[[313,14],[624,14]]},"38":{"position":[[237,14],[498,14]]},"45":{"position":[[732,14],[998,14]]},"52":{"position":[[859,14],[1110,14]]},"109":{"position":[[348,14],[694,14],[985,14]]},"117":{"position":[[413,14]]},"119":{"position":[[332,14],[682,14]]},"131":{"position":[[351,14],[662,14]]},"133":{"position":[[232,14]]},"135":{"position":[[331,14],[592,14]]},"163":{"position":[[165,14],[507,14],[773,14]]},"177":{"position":[[165,14],[503,14],[760,14]]},"203":{"position":[[419,14]]},"282":{"position":[[98,14]]},"325":{"position":[[943,12]]},"397":{"position":[[3783,14]]},"441":{"position":[[1057,14]]}}}],["confirm",{"_index":2091,"t":{"345":{"position":[[507,10]]}}}],["confus",{"_index":2158,"t":{"365":{"position":[[269,7]]}}}],["congratul",{"_index":2035,"t":{"331":{"position":[[2985,16]]}}}],["conjunct",{"_index":1704,"t":{"241":{"position":[[722,11]]}}}],["connect",{"_index":264,"t":{"12":{"position":[[1038,13],[1783,13],[2408,13],[2528,10],[2984,13],[3356,10],[3401,7],[3645,7],[3756,13]]},"75":{"position":[[364,7]]},"87":{"position":[[718,10]]},"89":{"position":[[51,11]]},"99":{"position":[[16,7],[83,7],[561,7],[719,7]]},"105":{"position":[[16,7],[81,7],[553,7],[711,7]]},"137":{"position":[[360,7],[438,7],[1020,7]]},"145":{"position":[[46,11]]},"153":{"position":[[59,11]]},"157":{"position":[[63,7]]},"310":{"position":[[1413,11],[1897,10]]},"329":{"position":[[1404,11],[1451,10]]},"353":{"position":[[271,8],[908,7],[1200,7]]},"375":{"position":[[1378,7]]},"397":{"position":[[2561,7]]},"428":{"position":[[19,11]]}}}],["connect:/run/user/1000/bu",{"_index":1172,"t":{"149":{"position":[[1642,26]]}}}],["connector",{"_index":1341,"t":{"187":{"position":[[69,11],[149,10],[251,9]]},"189":{"position":[[213,11],[302,11]]}}}],["consecut",{"_index":2171,"t":{"371":{"position":[[685,11]]}}}],["consent",{"_index":1392,"t":{"195":{"position":[[1899,7]]}}}],["consid",{"_index":255,"t":{"12":{"position":[[708,8],[1465,8]]},"169":{"position":[[390,11]]},"217":{"position":[[429,8]]},"237":{"position":[[272,10]]},"244":{"position":[[624,8]]},"246":{"position":[[28,9]]},"261":{"position":[[107,10],[252,10]]},"371":{"position":[[583,9]]}}}],["consist",{"_index":445,"t":{"28":{"position":[[320,10]]},"91":{"position":[[395,11]]},"205":{"position":[[1095,8]]},"207":{"position":[[557,8]]},"209":{"position":[[116,8]]},"217":{"position":[[1144,10]]},"221":{"position":[[48,10]]},"300":{"position":[[54,8]]},"312":{"position":[[127,8]]},"371":{"position":[[968,11]]},"416":{"position":[[259,7]]},"418":{"position":[[180,7]]}}}],["consol",{"_index":1391,"t":{"195":{"position":[[1791,7],[4162,7]]}}}],["const",{"_index":1914,"t":{"321":{"position":[[1806,5]]},"325":{"position":[[614,6],[730,5]]},"327":{"position":[[684,5]]},"329":{"position":[[481,5],[569,5],[803,5],[1765,5],[2362,5]]},"331":{"position":[[1848,5],[1932,5],[2048,5],[2295,5],[2769,5]]},"334":{"position":[[748,5],[965,5]]},"336":{"position":[[3037,5],[3570,5]]}}}],["constraint",{"_index":1646,"t":{"234":{"position":[[3614,11]]}}}],["constructor",{"_index":1847,"t":{"310":{"position":[[2072,11]]},"323":{"position":[[67,11]]},"334":{"position":[[236,11],[500,14]]},"336":{"position":[[659,12],[943,14]]}}}],["constructor(nam",{"_index":1924,"t":{"323":{"position":[[607,17]]}}}],["consult",{"_index":2338,"t":{"403":{"position":[[497,7]]}}}],["contact",{"_index":1582,"t":{"224":{"position":[[307,10],[876,10],[995,10]]},"226":{"position":[[227,10]]},"253":{"position":[[127,10]]},"255":{"position":[[215,10]]},"257":{"position":[[404,10]]},"336":{"position":[[1280,8],[1331,10]]},"353":{"position":[[140,7],[195,10]]}}}],["contact@mydomain.com",{"_index":1583,"t":{"224":{"position":[[318,22],[887,22],[1006,23]]},"226":{"position":[[238,22]]},"253":{"position":[[138,22]]},"255":{"position":[[226,22]]},"257":{"position":[[415,22]]}}}],["contain",{"_index":45,"t":{"4":{"position":[[659,12],[1338,10],[3022,10]]},"12":{"position":[[2882,10],[3076,9],[3114,9]]},"36":{"position":[[280,10]]},"60":{"position":[[31,8]]},"87":{"position":[[1278,9],[2377,8],[2907,8]]},"149":{"position":[[735,9],[847,9],[965,10],[1027,9]]},"165":{"position":[[985,7],[2346,9],[2555,9],[2650,9],[3419,9]]},"207":{"position":[[62,10]]},"209":{"position":[[328,10]]},"217":{"position":[[628,8]]},"219":{"position":[[25,8]]},"224":{"position":[[100,8]]},"234":{"position":[[306,8],[1167,8],[1426,8]]},"237":{"position":[[35,8]]},"304":{"position":[[16,8],[422,9]]},"308":{"position":[[228,8]]},"310":{"position":[[1152,10],[1269,8]]},"357":{"position":[[50,7]]},"375":{"position":[[1253,9],[1657,9],[1750,9],[2095,9],[2213,9],[3032,9],[3145,9]]},"377":{"position":[[156,9]]},"393":{"position":[[469,9]]},"399":{"position":[[464,10]]},"401":{"position":[[44,9],[210,10]]},"408":{"position":[[77,9],[115,9]]},"416":{"position":[[31,8]]}}}],["container_nam",{"_index":1612,"t":{"230":{"position":[[1548,15]]},"267":{"position":[[803,15]]},"375":{"position":[[413,15]]},"377":{"position":[[994,15]]},"395":{"position":[[192,15]]}}}],["content",{"_index":855,"t":{"81":{"position":[[523,8]]},"165":{"position":[[2216,8]]},"295":{"position":[[306,8]]},"387":{"position":[[176,8]]},"395":{"position":[[98,8]]},"397":{"position":[[3635,9]]}}}],["context",{"_index":1863,"t":{"312":{"position":[[374,7]]},"371":{"position":[[2605,8]]}}}],["continu",{"_index":524,"t":{"40":{"position":[[912,8]]},"47":{"position":[[990,8]]},"165":{"position":[[3001,8]]},"195":{"position":[[1619,8],[4388,8]]},"310":{"position":[[747,8]]}}}],["contribut",{"_index":1548,"t":{"217":{"position":[[718,11]]},"219":{"position":[[115,11]]}}}],["control",{"_index":320,"t":{"16":{"position":[[108,7]]},"103":{"position":[[153,7],[180,7]]},"105":{"position":[[461,7]]},"165":{"position":[[1421,8],[3505,7],[3816,8]]},"239":{"position":[[134,12]]},"357":{"position":[[947,8]]},"371":{"position":[[434,7]]},"412":{"position":[[941,8]]}}}],["conveni",{"_index":597,"t":{"47":{"position":[[1611,12]]},"165":{"position":[[3369,12]]},"265":{"position":[[9,12]]},"278":{"position":[[368,12]]},"345":{"position":[[2,11]]}}}],["cooki",{"_index":685,"t":{"56":{"position":[[2902,9]]},"58":{"position":[[1294,9]]},"81":{"position":[[21,6],[274,6],[448,7],[545,6],[655,7]]},"83":{"position":[[89,6]]},"195":{"position":[[549,7],[672,6],[784,6],[849,6],[967,6],[1088,9],[1337,8],[1721,8]]},"197":{"position":[[106,6],[453,9],[810,9]]},"357":{"position":[[391,7],[555,7],[640,7],[1035,6],[1204,7]]}}}],["cool",{"_index":1128,"t":{"141":{"position":[[466,4],[488,4],[553,4],[575,4]]},"179":{"position":[[1759,4]]},"234":{"position":[[2234,4],[2295,4],[2569,4]]},"259":{"position":[[346,4],[612,4]]},"261":{"position":[[1465,4]]},"274":{"position":[[89,4]]},"280":{"position":[[134,4],[161,4],[280,4],[307,4],[610,4],[644,4],[838,4],[878,4]]},"318":{"position":[[80,4],[93,4],[630,4],[704,4],[919,4]]},"321":{"position":[[42,4],[617,4],[645,4],[786,4]]},"323":{"position":[[770,4]]},"327":{"position":[[87,4],[582,4]]},"329":{"position":[[1978,5],[2506,4]]},"331":{"position":[[2432,4]]}}}],["coolplay",{"_index":1902,"t":{"321":{"position":[[1137,12],[1785,13],[1860,12]]},"325":{"position":[[155,10],[716,13],[881,13],[1112,12],[1306,13]]},"327":{"position":[[457,10],[951,12]]}}}],["coolplayer'",{"_index":1915,"t":{"321":{"position":[[2012,12]]}}}],["coolplayer.j",{"_index":1907,"t":{"321":{"position":[[1436,18]]}}}],["coolplayerdata",{"_index":1933,"t":{"325":{"position":[[328,14],[988,14]]}}}],["coolplayersourc",{"_index":1916,"t":{"323":{"position":[[36,16],[460,16]]},"325":{"position":[[131,16],[224,16],[310,17],[511,16],[1070,16]]},"327":{"position":[[357,16]]},"329":{"position":[[50,16],[378,16],[1638,16],[2276,16]]},"331":{"position":[[607,16],[1705,16],[3007,16]]},"334":{"position":[[460,16]]},"336":{"position":[[903,16],[2088,16]]}}}],["coolplayersource(nam",{"_index":1954,"t":{"325":{"position":[[1342,22]]}}}],["coolplayersource.formatplayobj(play",{"_index":2030,"t":{"331":{"position":[[2376,37]]}}}],["coolplayersource.formatplayobj(x",{"_index":2042,"t":{"334":{"position":[[1014,35]]}}}],["coolplayersource.j",{"_index":1934,"t":{"325":{"position":[[350,24]]}}}],["coolplayersource.parseconnectionurl(baseurl",{"_index":1991,"t":{"329":{"position":[[1164,45]]}}}],["coolplayersourceaioconfig",{"_index":1901,"t":{"321":{"position":[[985,25],[1379,26],[1597,26]]}}}],["coolplayersourceconfig",{"_index":1900,"t":{"321":{"position":[[887,22],[1019,22],[1406,22],[1511,23]]},"323":{"position":[[173,22],[583,23],[638,23]]},"325":{"position":[[1384,23]]}}}],["coolplayersourcedata",{"_index":1892,"t":{"321":{"position":[[475,20],[945,20]]}}}],["copi",{"_index":97,"t":{"4":{"position":[[2125,6],[3750,6]]},"24":{"position":[[302,4],[325,4]]},"36":{"position":[[465,4]]},"81":{"position":[[510,4],[789,4]]},"95":{"position":[[285,4]]},"165":{"position":[[2207,4],[4062,4]]},"195":{"position":[[2522,4]]},"360":{"position":[[337,4]]},"397":{"position":[[3620,4]]},"399":{"position":[[652,4],[1473,4],[1496,4]]}}}],["core",{"_index":2052,"t":{"336":{"position":[[1937,4]]}}}],["core/atomic.j",{"_index":1962,"t":{"327":{"position":[[312,23]]},"336":{"position":[[851,23]]}}}],["corner",{"_index":488,"t":{"36":{"position":[[373,7]]},"399":{"position":[[557,7]]}}}],["corpor",{"_index":1572,"t":{"217":{"position":[[1421,9]]},"221":{"position":[[325,9]]}}}],["correct",{"_index":1217,"t":{"165":{"position":[[783,7]]},"217":{"position":[[149,7]]},"239":{"position":[[1273,7]]},"244":{"position":[[193,10]]},"246":{"position":[[183,8]]},"276":{"position":[[137,10],[317,10]]},"302":{"position":[[357,7]]},"353":{"position":[[2381,7]]},"355":{"position":[[36,7]]},"371":{"position":[[327,7]]},"381":{"position":[[180,7]]},"403":{"position":[[432,7]]},"412":{"position":[[627,12],[2022,7]]}}}],["correctli",{"_index":74,"t":{"4":{"position":[[1399,9],[3083,9]]},"75":{"position":[[39,9],[207,10],[660,9]]},"87":{"position":[[1748,9]]},"179":{"position":[[2072,9]]},"191":{"position":[[117,9],[273,10]]}}}],["correspond",{"_index":1641,"t":{"234":{"position":[[792,13]]},"312":{"position":[[591,13]]},"336":{"position":[[1445,13]]}}}],["count",{"_index":812,"t":{"75":{"position":[[1668,5]]}}}],["countri",{"_index":1674,"t":{"239":{"position":[[505,7],[946,7],[983,7],[1144,7]]}}}],["cover",{"_index":1314,"t":{"179":{"position":[[2201,5]]},"217":{"position":[[810,6]]},"219":{"position":[[207,6]]}}}],["cp",{"_index":1941,"t":{"325":{"position":[[736,2],[982,2]]}}}],["crash",{"_index":893,"t":{"87":{"position":[[211,7]]}}}],["creat",{"_index":188,"t":{"6":{"position":[[55,8]]},"24":{"position":[[68,6],[148,6],[260,6]]},"28":{"position":[[74,6],[181,6]]},"32":{"position":[[76,6],[202,6]]},"36":{"position":[[439,6]]},"40":{"position":[[60,6],[657,6]]},"47":{"position":[[70,6],[739,6]]},"49":{"position":[[9,6],[167,6]]},"95":{"position":[[39,6],[238,6],[294,7]]},"109":{"position":[[161,6]]},"111":{"position":[[148,6],[237,6]]},"117":{"position":[[139,6],[246,6]]},"121":{"position":[[158,6],[257,6]]},"129":{"position":[[175,6],[301,6]]},"133":{"position":[[43,6]]},"159":{"position":[[35,6]]},"165":{"position":[[542,6],[750,6],[1470,6],[2546,6]]},"173":{"position":[[42,6]]},"195":{"position":[[1799,7],[1833,6],[2141,6],[2438,6],[2458,7]]},"230":{"position":[[1658,7]]},"250":{"position":[[267,8]]},"304":{"position":[[435,8]]},"316":{"position":[[52,8]]},"321":{"position":[[8,6],[129,6],[634,7],[1888,6]]},"323":{"position":[[9,6]]},"325":{"position":[[1059,6]]},"327":{"position":[[12,6]]},"385":{"position":[[150,6]]},"387":{"position":[[0,6],[207,8]]},"395":{"position":[[0,6],[62,6]]},"397":{"position":[[290,8],[437,7],[554,6],[805,7],[887,8],[1650,6],[1687,6],[1751,8],[1861,8],[2467,7],[2666,8],[2906,6],[3501,6]]},"399":{"position":[[626,6],[764,7],[1144,7],[1319,6],[1431,6],[2050,7]]},"401":{"position":[[184,7]]},"428":{"position":[[70,8]]}}}],["creation",{"_index":2320,"t":{"397":{"position":[[3436,8],[3715,9]]},"399":{"position":[[1027,8]]}}}],["credenti",{"_index":1231,"t":{"165":{"position":[[2027,12]]},"169":{"position":[[282,12]]},"195":{"position":[[1555,11],[2129,11],[2148,11],[4579,11],[4705,11]]},"308":{"position":[[294,12]]},"310":{"position":[[1329,11],[3235,11]]},"375":{"position":[[1698,12]]},"412":{"position":[[1066,11]]}}}],["critic",{"_index":953,"t":{"87":{"position":[[3175,8]]}}}],["crosbi",{"_index":1744,"t":{"272":{"position":[[148,8]]}}}],["cross",{"_index":2211,"t":{"375":{"position":[[0,5]]}}}],["ctrl+shift+i",{"_index":858,"t":{"81":{"position":[[583,12]]}}}],["current",{"_index":748,"t":{"65":{"position":[[815,7]]},"73":{"position":[[21,9]]},"87":{"position":[[1627,7]]},"318":{"position":[[578,7]]},"321":{"position":[[2112,7]]},"331":{"position":[[397,10],[1889,9],[2670,9]]},"375":{"position":[[3429,7]]},"381":{"position":[[338,7]]},"401":{"position":[[466,7]]},"406":{"position":[[0,10]]},"412":{"position":[[2288,7]]},"441":{"position":[[31,9]]}}}],["custom",{"_index":638,"t":{"54":{"position":[[949,6]]},"71":{"position":[[323,10]]},"75":{"position":[[618,6]]},"123":{"position":[[745,6]]},"191":{"position":[[451,6]]},"195":{"position":[[2886,6],[3353,8],[3435,6],[3721,6]]},"197":{"position":[[260,6]]},"357":{"position":[[402,6]]},"441":{"position":[[922,9]]}}}],["cwd/build",{"_index":2088,"t":{"345":{"position":[[473,11]]}}}],["d",{"_index":484,"t":{"36":{"position":[[323,1]]},"87":{"position":[[1236,1]]},"399":{"position":[[507,1]]},"401":{"position":[[249,1]]},"408":{"position":[[303,1]]}}}],["daemon",{"_index":722,"t":{"62":{"position":[[599,7]]},"87":{"position":[[1044,6],[1256,6]]},"149":{"position":[[455,7]]},"389":{"position":[[34,6]]},"412":{"position":[[308,7]]}}}],["daemon/socket",{"_index":930,"t":{"87":{"position":[[1390,13]]}}}],["daemon/socket:/var/run/avahi",{"_index":929,"t":{"87":{"position":[[1361,28]]}}}],["dashboard",{"_index":315,"t":{"16":{"position":[[23,9]]},"24":{"position":[[198,9],[541,9],[620,9],[1613,9]]},"42":{"position":[[216,9]]},"45":{"position":[[654,9]]},"69":{"position":[[525,9]]},"73":{"position":[[407,9]]},"75":{"position":[[1091,9]]},"95":{"position":[[141,9]]},"165":{"position":[[726,9],[4276,9]]},"195":{"position":[[3097,9],[4254,9],[5080,10],[5172,9],[5304,11],[5390,9]]},"300":{"position":[[359,10]]},"336":{"position":[[3155,9]]},"357":{"position":[[533,10]]},"375":{"position":[[1037,9],[1075,9],[2128,9],[2647,9],[2747,9]]},"393":{"position":[[136,9],[526,9]]},"397":{"position":[[1116,9],[4004,9]]},"399":{"position":[[1369,9],[1708,9],[1787,9],[2321,9]]},"401":{"position":[[418,9]]},"439":{"position":[[270,10]]},"441":{"position":[[686,9]]}}}],["data",{"_index":117,"t":{"4":{"position":[[2600,7],[4494,7],[4728,7]]},"12":{"position":[[60,4],[274,4],[363,4],[447,4],[1204,4]]},"26":{"position":[[300,7],[591,7]]},"30":{"position":[[517,7],[867,7]]},"34":{"position":[[338,7],[649,7]]},"38":{"position":[[262,7],[523,7]]},"40":{"position":[[288,5],[299,4],[358,4],[381,4],[473,4],[757,4],[797,4],[855,4],[1012,4],[1072,4],[1540,4],[1613,4]]},"45":{"position":[[757,7],[1023,7]]},"47":{"position":[[239,4],[370,5],[381,4],[440,4],[463,4],[555,4],[839,4],[879,4],[937,4],[1090,4],[1606,4]]},"52":{"position":[[884,7],[1135,7]]},"56":{"position":[[991,7],[1247,7],[1493,7],[1749,7],[1919,7],[2276,7],[2512,7],[2723,7],[2892,7],[3127,7],[3218,7],[3336,7],[3454,7],[3569,7]]},"58":{"position":[[155,7],[290,7],[425,7],[596,7],[750,7],[910,7],[1067,7],[1284,7],[1527,7],[1612,7],[1712,7],[1812,7],[1935,7]]},"60":{"position":[[14,4]]},"65":{"position":[[133,4],[265,4],[381,4],[540,4],[725,4],[1275,4]]},"69":{"position":[[272,7]]},"71":{"position":[[396,7]]},"73":{"position":[[681,7]]},"75":{"position":[[1346,7]]},"77":{"position":[[434,7],[718,7]]},"79":{"position":[[61,4]]},"83":{"position":[[209,7],[512,7]]},"85":{"position":[[315,7]]},"87":{"position":[[435,4],[510,4],[2333,7],[2865,7],[3524,7]]},"89":{"position":[[686,7],[929,7]]},"91":{"position":[[370,4],[1339,7]]},"93":{"position":[[163,7],[360,7]]},"95":{"position":[[2205,7],[2843,7]]},"101":{"position":[[368,7],[603,7]]},"107":{"position":[[291,7],[548,7]]},"109":{"position":[[719,7],[1010,7]]},"115":{"position":[[370,7],[556,7]]},"117":{"position":[[356,4]]},"119":{"position":[[357,7],[707,7]]},"127":{"position":[[447,7],[634,7]]},"131":{"position":[[376,7],[687,7]]},"135":{"position":[[356,7],[617,7]]},"141":{"position":[[188,4],[305,5]]},"143":{"position":[[120,7],[373,7]]},"147":{"position":[[194,7],[460,7]]},"151":{"position":[[417,7],[645,7]]},"155":{"position":[[262,7],[512,7]]},"157":{"position":[[2326,7],[2874,7]]},"161":{"position":[[117,5]]},"163":{"position":[[532,7],[798,7]]},"165":{"position":[[3571,4]]},"167":{"position":[[303,7],[655,7]]},"171":{"position":[[256,7],[548,7]]},"173":{"position":[[211,4]]},"175":{"position":[[117,5]]},"177":{"position":[[528,7],[785,7]]},"179":{"position":[[1626,7],[1868,4],[2390,7]]},"181":{"position":[[195,7],[412,7]]},"185":{"position":[[234,7],[318,7]]},"189":{"position":[[407,7],[628,7]]},"193":{"position":[[200,7],[395,7]]},"195":{"position":[[1005,4],[1078,7],[2625,7],[3854,7]]},"197":{"position":[[443,7],[800,7]]},"199":{"position":[[64,4],[260,4],[506,4],[780,4],[834,4]]},"203":{"position":[[68,4],[85,4],[108,4],[444,7]]},"205":{"position":[[38,4],[103,4],[198,4],[276,4],[341,4],[433,4],[564,4],[611,4],[888,4],[1221,5]]},"207":{"position":[[119,5],[374,4],[451,4],[491,4],[626,4],[702,4]]},"209":{"position":[[311,4],[343,4],[815,7],[1496,7],[1674,7],[2300,7]]},"211":{"position":[[107,4],[1011,4],[1202,5]]},"213":{"position":[[289,5],[1470,4]]},"215":{"position":[[332,7]]},"217":{"position":[[40,4],[202,5],[268,5],[598,4],[1021,4],[1158,4],[1201,4]]},"219":{"position":[[418,4]]},"221":{"position":[[62,4],[105,4]]},"224":{"position":[[151,4],[285,7],[854,7]]},"226":{"position":[[205,7]]},"228":{"position":[[68,4],[453,4]]},"232":{"position":[[176,4]]},"234":{"position":[[176,4],[301,4],[487,4],[540,5],[589,4],[1162,4],[1421,4],[1984,5],[2444,4],[3183,4],[3581,4],[4001,4]]},"239":{"position":[[246,4]]},"244":{"position":[[238,4],[345,4]]},"246":{"position":[[192,4],[242,4],[476,4]]},"248":{"position":[[37,4],[305,4],[368,5],[422,7]]},"250":{"position":[[605,7]]},"253":{"position":[[105,7],[241,7]]},"255":{"position":[[193,7],[513,7]]},"257":{"position":[[33,4],[382,7],[576,7]]},"259":{"position":[[91,5],[155,4],[699,5]]},"261":{"position":[[1144,4],[1298,4]]},"263":{"position":[[68,4]]},"265":{"position":[[305,7]]},"270":{"position":[[371,7]]},"272":{"position":[[270,7]]},"274":{"position":[[303,7]]},"276":{"position":[[101,5],[176,5],[209,5],[312,4]]},"278":{"position":[[637,7]]},"282":{"position":[[123,7]]},"308":{"position":[[190,6],[223,4],[237,4]]},"310":{"position":[[785,5],[870,4],[1264,4],[2455,4],[2553,4],[2686,4]]},"312":{"position":[[31,4],[94,4],[146,4],[303,4],[636,4]]},"318":{"position":[[1057,4]]},"321":{"position":[[364,4],[383,4],[939,5],[2031,4]]},"325":{"position":[[976,5]]},"327":{"position":[[68,4],[572,4],[764,5]]},"329":{"position":[[82,5],[117,4]]},"331":{"position":[[1225,4],[1927,4],[2229,4],[2290,4]]},"336":{"position":[[116,4],[204,4],[1796,4],[2541,4],[2641,4]]},"353":{"position":[[823,4]]},"365":{"position":[[65,4],[554,4]]},"371":{"position":[[219,4],[1562,7],[2397,7]]},"381":{"position":[[1006,7],[1175,7]]},"393":{"position":[[217,4]]},"395":{"position":[[48,4]]},"397":{"position":[[3677,4],[3808,7]]},"412":{"position":[[591,4],[1589,4],[1932,4],[2011,4],[2361,4]]},"416":{"position":[[14,4],[292,4]]},"418":{"position":[[213,4]]},"441":{"position":[[1082,7]]}}}],["data.baseurl",{"_index":1835,"t":{"310":{"position":[[1179,13]]}}}],["databas",{"_index":1505,"t":{"207":{"position":[[400,8]]},"217":{"position":[[66,9],[619,8],[801,8]]},"219":{"position":[[16,8],[198,8]]},"234":{"position":[[59,8],[258,8]]},"375":{"position":[[498,8]]},"377":{"position":[[1079,8]]},"395":{"position":[[277,8]]},"406":{"position":[[45,9]]},"412":{"position":[[659,8],[1982,8]]}}}],["datatyp",{"_index":510,"t":{"40":{"position":[[453,9]]},"47":{"position":[[535,9]]}}}],["date",{"_index":1861,"t":{"312":{"position":[[227,4]]},"357":{"position":[[738,4]]}}}],["datetim",{"_index":1474,"t":{"201":{"position":[[336,9],[717,9]]}}}],["dayj",{"_index":1960,"t":{"327":{"position":[[186,5],[197,8]]}}}],["dayjs(playedat",{"_index":1973,"t":{"327":{"position":[[916,15]]}}}],["dbu",{"_index":1150,"t":{"149":{"position":[[450,4],[939,4],[1350,4],[1503,4],[1548,4]]}}}],["dbus_session_bus_address=tcp:host=yourhostip,port=6644",{"_index":1173,"t":{"149":{"position":[[1726,54]]}}}],["dbus_session_bus_address=unix:path=/run/user/uid/bu",{"_index":1160,"t":{"149":{"position":[[1172,52]]}}}],["dead",{"_index":2369,"t":{"439":{"position":[[281,4]]}}}],["debian",{"_index":2281,"t":{"385":{"position":[[116,7]]}}}],["debug",{"_index":303,"t":{"14":{"position":[[11,5],[60,11],[121,5],[279,5],[412,5]]},"87":{"position":[[370,5],[3444,5]]},"95":{"position":[[2672,7],[3292,7]]},"157":{"position":[[2658,8],[3206,8]]},"179":{"position":[[1837,5]]},"250":{"position":[[170,5],[365,6]]},"353":{"position":[[979,5],[1422,5],[1452,5],[2443,9]]}}}],["debug_mode=tru",{"_index":314,"t":{"14":{"position":[[531,15]]},"353":{"position":[[1524,16]]},"371":{"position":[[1650,15]]}}}],["debugmod",{"_index":141,"t":{"4":{"position":[[4059,12]]},"14":{"position":[[470,12]]}}}],["decid",{"_index":1359,"t":{"195":{"position":[[163,7]]}}}],["declar",{"_index":1923,"t":{"323":{"position":[[567,7]]}}}],["decod",{"_index":1270,"t":{"169":{"position":[[303,9]]}}}],["deezer",{"_index":712,"t":{"62":{"position":[[129,6]]},"79":{"position":[[54,6],[112,6],[279,6]]},"81":{"position":[[33,6],[217,7]]},"83":{"position":[[663,8]]},"85":{"position":[[30,6],[55,6],[161,6]]},"412":{"position":[[145,6]]}}}],["deezer'",{"_index":830,"t":{"79":{"position":[[98,8]]},"81":{"position":[[144,8]]}}}],["deezer.com",{"_index":845,"t":{"81":{"position":[[306,11],[470,11],[567,11],[689,10]]}}}],["deezer.json",{"_index":878,"t":{"85":{"position":[[259,11],[279,11]]}}}],["deezer_arl",{"_index":865,"t":{"83":{"position":[[66,10]]}}}],["deezerarl",{"_index":867,"t":{"83":{"position":[[165,12],[468,12]]}}}],["default",{"_index":69,"t":{"4":{"position":[[1258,8],[2918,8],[3462,8],[3531,7]]},"10":{"position":[[41,7],[138,7]]},"12":{"position":[[433,8],[826,7],[883,7],[1190,8],[1583,7],[1640,7],[1998,8],[2207,7],[2264,7],[2760,7],[3529,7]]},"26":{"position":[[62,7]]},"30":{"position":[[62,7]]},"34":{"position":[[62,7]]},"38":{"position":[[62,7]]},"40":{"position":[[1081,7]]},"45":{"position":[[481,7]]},"47":{"position":[[1155,7]]},"52":{"position":[[619,7]]},"56":{"position":[[79,7],[217,7],[381,7],[592,7],[756,7],[1125,7]]},"69":{"position":[[358,7]]},"71":{"position":[[246,7]]},"73":{"position":[[535,7]]},"75":{"position":[[1200,7],[1532,7],[1864,8],[1945,7]]},"77":{"position":[[46,7]]},"83":{"position":[[46,7]]},"87":{"position":[[1908,8],[2442,8],[3029,8]]},"89":{"position":[[141,7]]},"91":{"position":[[659,8]]},"93":{"position":[[46,7]]},"95":{"position":[[524,8],[536,10],[1244,7]]},"99":{"position":[[176,7],[281,7]]},"101":{"position":[[61,7]]},"105":{"position":[[174,7],[277,7]]},"107":{"position":[[61,7]]},"115":{"position":[[62,7]]},"127":{"position":[[62,7]]},"137":{"position":[[531,7],[634,7]]},"147":{"position":[[62,7]]},"151":{"position":[[62,7]]},"153":{"position":[[405,7]]},"155":{"position":[[62,7]]},"157":{"position":[[112,8],[184,8],[551,7],[695,9],[1061,9],[1360,8],[1372,7],[1608,7]]},"167":{"position":[[62,7]]},"171":{"position":[[62,7]]},"181":{"position":[[62,7]]},"189":{"position":[[62,7]]},"191":{"position":[[378,7]]},"193":{"position":[[62,7]]},"197":{"position":[[62,7]]},"209":{"position":[[222,8],[252,7],[559,11],[576,7],[655,7],[1076,7],[1204,11],[1319,11],[1825,7],[2044,11],[2061,7],[2140,7],[2447,10]]},"224":{"position":[[918,7]]},"226":{"position":[[106,9],[266,11]]},"230":{"position":[[262,8],[460,7],[481,9],[591,7],[1675,8]]},"232":{"position":[[84,7]]},"234":{"position":[[2630,11],[3337,11],[4567,11]]},"237":{"position":[[195,7]]},"239":{"position":[[1932,11]]},"241":{"position":[[1066,8]]},"244":{"position":[[813,8]]},"255":{"position":[[35,7],[256,11]]},"257":{"position":[[445,11],[492,8]]},"261":{"position":[[174,7],[327,9],[619,8],[1045,8]]},"263":{"position":[[431,8]]},"265":{"position":[[131,8],[423,7]]},"267":{"position":[[4,7]]},"270":{"position":[[115,11],[132,7],[211,7]]},"272":{"position":[[115,11]]},"274":{"position":[[221,7]]},"278":{"position":[[94,7],[160,9],[257,11],[344,7],[753,7]]},"310":{"position":[[2140,8],[2242,8]]},"318":{"position":[[648,7]]},"323":{"position":[[446,7]]},"325":{"position":[[382,7],[1016,8],[1172,9],[1440,8]]},"327":{"position":[[343,7]]},"329":{"position":[[261,7],[364,7],[1624,7],[2262,7]]},"331":{"position":[[1691,7]]},"334":{"position":[[446,7]]},"336":{"position":[[889,7],[2808,7],[3480,7]]},"349":{"position":[[31,8]]},"375":{"position":[[2045,8],[2205,7]]},"441":{"position":[[161,7],[768,7]]}}}],["default/exampl",{"_index":2142,"t":{"355":{"position":[[372,15]]}}}],["defaultconfigurea",{"_index":1948,"t":{"325":{"position":[[956,19]]}}}],["defaults/filt",{"_index":2317,"t":{"397":{"position":[[2975,18]]}}}],["defin",{"_index":197,"t":{"10":{"position":[[0,7]]},"12":{"position":[[2671,7]]},"40":{"position":[[435,7]]},"47":{"position":[[517,7]]},"89":{"position":[[233,6]]},"99":{"position":[[377,6]]},"105":{"position":[[373,6]]},"117":{"position":[[437,7]]},"137":{"position":[[730,6]]},"157":{"position":[[748,7]]},"169":{"position":[[711,7]]},"185":{"position":[[621,8]]},"189":{"position":[[141,6]]},"205":{"position":[[1127,6]]},"207":{"position":[[183,6]]},"209":{"position":[[243,8],[926,8],[1053,6]]},"224":{"position":[[501,7],[582,6],[650,7]]},"265":{"position":[[36,6]]},"278":{"position":[[395,6]]},"310":{"position":[[72,7]]},"329":{"position":[[975,10],[1130,10]]},"345":{"position":[[456,7]]},"375":{"position":[[2542,7]]},"441":{"position":[[1166,6]]}}}],["definit",{"_index":754,"t":{"65":{"position":[[1166,12]]}}}],["degre",{"_index":2009,"t":{"331":{"position":[[468,7]]}}}],["delay",{"_index":643,"t":{"56":{"position":[[395,5],[770,5]]}}}],["delet",{"_index":1398,"t":{"195":{"position":[[2042,6]]},"345":{"position":[[307,6]]},"347":{"position":[[194,7]]}}}],["delim",{"_index":1777,"t":{"295":{"position":[[322,5],[408,13],[593,11]]}}}],["delim>\\\\s*\\\\/\\\\",{"_index":1782,"t":{"295":{"position":[[691,34]]}}}],["delim>\\\\s*\\\\\\\\\\",{"_index":1780,"t":{"295":{"position":[[489,21]]}}}],["delimit",{"_index":960,"t":{"89":{"position":[[320,9],[431,9],[511,9],[614,9]]},"151":{"position":[[192,9],[269,9]]},"189":{"position":[[231,9],[320,9]]},"209":{"position":[[584,10],[629,13],[663,10],[1218,13],[2069,10],[2114,13],[2148,10]]},"230":{"position":[[299,9]]},"234":{"position":[[1887,10],[2738,9],[3134,10]]},"259":{"position":[[297,10],[404,10],[468,9]]},"261":{"position":[[118,10],[196,10],[263,10],[300,10]]},"270":{"position":[[140,10],[185,13],[219,10]]},"295":{"position":[[59,9],[232,9],[351,9]]},"397":{"position":[[2828,9]]}}}],["delimitersextra",{"_index":1731,"t":{"261":{"position":[[46,15]]}}}],["deni",{"_index":1691,"t":{"239":{"position":[[1247,4]]},"246":{"position":[[45,4]]}}}],["depend",{"_index":935,"t":{"87":{"position":[[1698,9]]},"304":{"position":[[188,12]]},"310":{"position":[[1653,7]]},"331":{"position":[[488,9]]},"406":{"position":[[58,12]]}}}],["deploy",{"_index":1610,"t":{"230":{"position":[[1412,6]]},"267":{"position":[[667,6]]}}}],["deriv",{"_index":2015,"t":{"331":{"position":[[1178,8]]}}}],["describ",{"_index":193,"t":{"6":{"position":[[283,9]]},"22":{"position":[[516,9]]},"24":{"position":[[772,8]]},"306":{"position":[[216,10]]},"310":{"position":[[420,10]]},"316":{"position":[[100,10]]}}}],["descript",{"_index":260,"t":{"12":{"position":[[891,11],[1648,11],[2272,11],[2768,11],[3537,11]]},"26":{"position":[[70,11]]},"30":{"position":[[70,11]]},"34":{"position":[[70,11]]},"38":{"position":[[70,11]]},"45":{"position":[[489,11]]},"52":{"position":[[627,11]]},"77":{"position":[[54,11]]},"83":{"position":[[54,11]]},"89":{"position":[[149,11]]},"93":{"position":[[54,11]]},"95":{"position":[[1252,11]]},"101":{"position":[[69,11]]},"107":{"position":[[69,11]]},"115":{"position":[[70,11]]},"127":{"position":[[70,11]]},"147":{"position":[[70,11]]},"151":{"position":[[70,11]]},"155":{"position":[[70,11]]},"157":{"position":[[1616,11]]},"167":{"position":[[70,11]]},"171":{"position":[[70,11]]},"181":{"position":[[70,11]]},"189":{"position":[[70,11]]},"193":{"position":[[70,11]]},"197":{"position":[[70,11]]}}}],["description=multi",{"_index":2289,"t":{"387":{"position":[[248,17]]}}}],["design",{"_index":535,"t":{"40":{"position":[[1355,6]]},"183":{"position":[[540,8]]}}}],["desir",{"_index":1713,"t":{"246":{"position":[[148,7]]}}}],["desired/allow",{"_index":1627,"t":{"232":{"position":[[340,15]]}}}],["desktop",{"_index":997,"t":{"95":{"position":[[93,7]]},"371":{"position":[[2741,9],[2825,7]]},"412":{"position":[[329,8]]},"416":{"position":[[108,7]]}}}],["destin",{"_index":709,"t":{"62":{"position":[[56,11]]}}}],["detail",{"_index":896,"t":{"87":{"position":[[331,8]]},"195":{"position":[[374,8],[412,7]]},"295":{"position":[[0,7]]},"371":{"position":[[2594,6],[2624,8]]},"381":{"position":[[690,7]]},"406":{"position":[[353,8]]},"412":{"position":[[954,8]]},"430":{"position":[[0,8]]}}}],["detect",{"_index":413,"t":{"24":{"position":[[999,8]]},"85":{"position":[[477,6]]},"95":{"position":[[1042,7],[1111,8]]},"195":{"position":[[431,9]]},"371":{"position":[[7,7],[731,8],[1259,9],[1435,10]]}}}],["determin",{"_index":404,"t":{"24":{"position":[[471,9]]},"65":{"position":[[574,9]]},"71":{"position":[[67,9]]},"73":{"position":[[159,9]]},"91":{"position":[[552,9],[838,9]]},"165":{"position":[[133,9],[769,9]]},"211":{"position":[[1113,9]]},"310":{"position":[[1955,10]]},"325":{"position":[[40,10]]},"331":{"position":[[863,9],[1439,9]]},"336":{"position":[[92,11],[339,13],[1861,10],[2275,10]]},"353":{"position":[[1813,9]]},"355":{"position":[[444,9]]},"371":{"position":[[70,9],[339,9]]},"399":{"position":[[1638,9]]},"441":{"position":[[248,11],[1271,10]]}}}],["devcontain",{"_index":1794,"t":{"302":{"position":[[111,13],[399,12]]},"304":{"position":[[150,12],[278,12],[337,13]]}}}],["develop",{"_index":562,"t":{"42":{"position":[[206,9]]},"45":{"position":[[644,9]]},"47":{"position":[[1345,12]]},"81":{"position":[[340,9],[604,9]]},"165":{"position":[[675,9],[716,9],[3487,9]]},"195":{"position":[[1484,9]]},"302":{"position":[[0,11]]},"304":{"position":[[48,11],[167,11]]},"314":{"position":[[7,11],[39,11]]},"316":{"position":[[243,12]]},"318":{"position":[[12,9]]},"321":{"position":[[422,11]]},"430":{"position":[[26,11]]}}}],["devic",{"_index":755,"t":{"67":{"position":[[65,6],[186,7]]},"87":{"position":[[14,6],[461,6],[729,8],[743,7],[1589,7],[1778,6]]},"89":{"position":[[44,6],[305,8],[416,8]]},"95":{"position":[[1838,7],[1913,7]]},"157":{"position":[[1963,7],[2034,7]]},"191":{"position":[[424,6]]},"193":{"position":[[110,6]]},"365":{"position":[[100,7],[581,6]]},"367":{"position":[[41,6]]}}}],["device/receiv",{"_index":1348,"t":{"191":{"position":[[18,16]]}}}],["device/us",{"_index":708,"t":{"62":{"position":[[35,11]]},"312":{"position":[[444,11]]}}}],["device_info=chxoeku0tmpjek5ewtbprgd3tlrbmk16qxpndz09ejbs8z0ggjbs8z0g",{"_index":688,"t":{"56":{"position":[[2967,69]]},"58":{"position":[[1359,69]]}}}],["devicesallow",{"_index":1021,"t":{"95":{"position":[[2416,15],[3027,15]]},"157":{"position":[[2468,15],[3016,15]]}}}],["devicesblock",{"_index":1022,"t":{"95":{"position":[[2445,15],[3058,15]]},"157":{"position":[[2499,15],[3047,15]]}}}],["devot",{"_index":1567,"t":{"217":{"position":[[1296,6]]},"221":{"position":[[200,6]]}}}],["diagnos",{"_index":954,"t":{"87":{"position":[[3187,10],[3209,8],[3365,8]]},"250":{"position":[[189,8]]},"365":{"position":[[393,8]]}}}],["did:plc",{"_index":604,"t":{"52":{"position":[[94,11]]}}}],["did:web",{"_index":605,"t":{"52":{"position":[[109,11]]}}}],["diff",{"_index":1718,"t":{"250":{"position":[[433,4]]}}}],["differ",{"_index":503,"t":{"40":{"position":[[230,9],[1179,9]]},"47":{"position":[[312,9],[1253,9]]},"109":{"position":[[250,10]]},"113":{"position":[[269,9]]},"117":{"position":[[396,10]]},"123":{"position":[[584,9]]},"133":{"position":[[134,10]]},"163":{"position":[[67,10]]},"177":{"position":[[67,10]]},"199":{"position":[[164,9],[645,9]]},"205":{"position":[[1049,9]]},"211":{"position":[[79,9],[718,9]]},"310":{"position":[[80,9]]},"365":{"position":[[218,11]]},"373":{"position":[[12,10]]},"375":{"position":[[2599,9]]},"377":{"position":[[179,9]]}}}],["dir=/home/youruser/multi",{"_index":2106,"t":{"347":{"position":[[856,24]]}}}],["direct",{"_index":2313,"t":{"397":{"position":[[2360,10]]}}}],["directli",{"_index":1151,"t":{"149":{"position":[[531,8]]},"157":{"position":[[318,8]]},"412":{"position":[[1376,8]]}}}],["directori",{"_index":66,"t":{"4":{"position":[[1182,9],[2003,9],[2154,9],[2437,9],[2842,9],[3668,9],[3779,9]]},"12":{"position":[[682,9],[1439,9],[2647,9],[2860,10]]},"302":{"position":[[245,9]]},"345":{"position":[[223,9],[390,9]]},"347":{"position":[[244,12],[707,9]]},"375":{"position":[[1638,9],[3262,9]]},"377":{"position":[[236,9],[267,9]]},"381":{"position":[[66,9]]},"393":{"position":[[240,9]]},"397":{"position":[[3553,9]]},"401":{"position":[[144,9]]}}}],["dirti",{"_index":1454,"t":{"199":{"position":[[386,5]]}}}],["disabl",{"_index":323,"t":{"16":{"position":[[172,9],[267,9],[277,7]]},"441":{"position":[[324,8],[1118,7]]}}}],["disable_web=tru",{"_index":327,"t":{"16":{"position":[[303,16]]}}}],["disablediscoveri",{"_index":1145,"t":{"147":{"position":[[275,19],[541,19]]}}}],["disableweb",{"_index":143,"t":{"4":{"position":[[4079,13]]},"16":{"position":[[366,13]]}}}],["disallow",{"_index":1014,"t":{"95":{"position":[[1766,8],[1924,8],[2099,8]]},"139":{"position":[[15,8]]},"157":{"position":[[1895,8],[2045,8],[2212,8]]}}}],["discov",{"_index":904,"t":{"87":{"position":[[826,10]]},"109":{"position":[[78,10]]},"129":{"position":[[85,10]]},"159":{"position":[[223,10]]},"173":{"position":[[302,10]]},"201":{"position":[[365,9],[510,10]]},"205":{"position":[[161,10]]},"331":{"position":[[821,12]]},"336":{"position":[[2019,8],[2379,12],[2462,10],[2721,10],[2959,10],[3043,11],[3180,11],[3241,10],[3576,11],[3800,10]]}}}],["discovered/scrobbl",{"_index":2336,"t":{"401":{"position":[[533,20]]}}}],["discoveri",{"_index":498,"t":{"40":{"position":[[116,9],[1485,9]]},"47":{"position":[[116,9]]},"87":{"position":[[854,10]]},"159":{"position":[[91,9]]},"173":{"position":[[88,9]]},"336":{"position":[[2215,10]]}}}],["display",{"_index":1404,"t":{"195":{"position":[[2362,9],[3247,10],[5410,7]]},"397":{"position":[[3490,10]]},"399":{"position":[[1044,9]]},"401":{"position":[[508,7]]}}}],["dissemin",{"_index":2064,"t":{"336":{"position":[[3344,12]]}}}],["distribut",{"_index":920,"t":{"87":{"position":[[1145,13]]}}}],["distro",{"_index":2278,"t":{"385":{"position":[[73,7]]}}}],["diverg",{"_index":1814,"t":{"306":{"position":[[468,9]]}}}],["dn",{"_index":914,"t":{"87":{"position":[[1090,3]]},"375":{"position":[[1359,3]]}}}],["doauthent",{"_index":1853,"t":{"310":{"position":[[2993,16]]},"329":{"position":[[2323,16]]}}}],["dobuildinitdata",{"_index":1832,"t":{"310":{"position":[[1012,15]]},"329":{"position":[[747,18]]}}}],["doc",{"_index":73,"t":{"4":{"position":[[1368,4],[3052,4]]},"24":{"position":[[767,4]]},"42":{"position":[[83,4]]},"157":{"position":[[505,5]]},"159":{"position":[[332,5]]},"161":{"position":[[54,4]]},"173":{"position":[[411,5]]},"175":{"position":[[54,4]]},"211":{"position":[[754,4]]},"321":{"position":[[434,5]]},"397":{"position":[[687,5],[3013,4]]},"399":{"position":[[1920,4]]},"403":{"position":[[86,4],[116,4]]}}}],["docheckconnect",{"_index":1843,"t":{"310":{"position":[[1745,17]]},"329":{"position":[[1701,20]]}}}],["docker",{"_index":44,"t":{"4":{"position":[[652,6],[672,6],[759,6],[774,6],[1312,6],[2085,6],[2984,6],[3713,6]]},"10":{"position":[[388,6]]},"12":{"position":[[608,6],[1365,6],[3160,6],[3182,6]]},"36":{"position":[[105,6],[304,6]]},"87":{"position":[[1004,6],[1297,6],[1480,6]]},"149":{"position":[[469,6],[681,6],[728,6],[1137,6]]},"165":{"position":[[2339,6],[2727,6]]},"230":{"position":[[1405,6]]},"267":{"position":[[660,6]]},"375":{"position":[[252,6],[337,6],[727,6],[765,6],[826,6],[864,6],[1330,6],[1574,6],[1584,6],[1780,6],[1787,6],[1822,7],[1830,6],[1901,6],[1917,6],[2054,6],[2245,6],[2252,6],[2267,6],[2295,6],[2346,6],[2362,6],[2779,6],[2786,6],[2801,6],[2874,6],[2890,6],[3078,8],[3087,7],[3160,6],[3293,6]]},"377":{"position":[[49,6],[149,6],[285,6],[331,6],[338,6],[362,6],[693,6],[852,6],[918,6]]},"393":{"position":[[66,6],[77,6],[257,6]]},"395":{"position":[[69,6]]},"397":{"position":[[267,6],[864,6],[1838,6],[2177,6],[2225,6],[2643,6],[3591,6]]},"399":{"position":[[289,6],[488,6],[741,6],[1121,6],[2027,6]]},"401":{"position":[[161,6],[230,6]]},"403":{"position":[[18,6]]},"406":{"position":[[513,6]]},"408":{"position":[[0,6],[7,6],[22,6],[70,6],[108,6],[144,6],[264,6],[284,6]]},"412":{"position":[[1172,6]]}}}],["docker.io/foxxmd/multi",{"_index":2218,"t":{"375":{"position":[[139,22]]}}}],["dockerhub",{"_index":2217,"t":{"375":{"position":[[97,9]]}}}],["docs.rocksky.app",{"_index":558,"t":{"42":{"position":[[91,16]]}}}],["docs:instal",{"_index":2261,"t":{"381":{"position":[[221,12]]}}}],["docsit",{"_index":2093,"t":{"347":{"position":[[236,7],[446,7]]}}}],["docsite/packag",{"_index":2101,"t":{"347":{"position":[[502,15]]}}}],["document",{"_index":779,"t":{"73":{"position":[[84,13]]},"306":{"position":[[13,9]]},"312":{"position":[[718,13]]},"316":{"position":[[5,8],[209,8]]},"353":{"position":[[1660,13]]},"369":{"position":[[92,14]]},"373":{"position":[[61,8]]},"391":{"position":[[31,8]]},"422":{"position":[[21,13]]},"424":{"position":[[22,13]]}}}],["doesn't",{"_index":626,"t":{"54":{"position":[[454,7]]}}}],["domain",{"_index":571,"t":{"45":{"position":[[227,7]]},"52":{"position":[[281,6],[318,7]]},"123":{"position":[[783,6]]},"165":{"position":[[1410,6],[1843,7],[1890,6],[2505,6],[3457,6]]},"183":{"position":[[448,6]]},"195":{"position":[[2026,7],[3535,6]]},"353":{"position":[[1841,6]]}}}],["domain.tld",{"_index":1325,"t":{"183":{"position":[[319,13]]}}}],["domain/ip:port",{"_index":1351,"t":{"191":{"position":[[299,14]]}}}],["don't",{"_index":598,"t":{"49":{"position":[[42,5]]},"151":{"position":[[137,5]]},"234":{"position":[[510,5]]},"239":{"position":[[1982,5]]},"244":{"position":[[831,6]]},"441":{"position":[[421,5]]}}}],["done",{"_index":254,"t":{"12":{"position":[[645,5],[1402,5]]},"24":{"position":[[137,4]]},"36":{"position":[[46,4]]},"40":{"position":[[621,4]]},"47":{"position":[[703,4]]},"103":{"position":[[107,4]]},"278":{"position":[[27,4],[143,4]]},"336":{"position":[[2136,4]]},"399":{"position":[[230,4],[1308,4]]},"401":{"position":[[258,5]]}}}],["dottransform",{"_index":1513,"t":{"209":{"position":[[1186,17],[1593,16]]}}}],["doubl",{"_index":863,"t":{"81":{"position":[[740,6]]}}}],["down",{"_index":730,"t":{"65":{"position":[[57,4]]},"371":{"position":[[1136,4]]}}}],["downstream",{"_index":1463,"t":{"199":{"position":[[844,10]]},"201":{"position":[[765,10]]},"205":{"position":[[462,10],[1210,10]]},"230":{"position":[[1372,10]]},"267":{"position":[[627,10]]}}}],["dream",{"_index":1530,"t":{"213":{"position":[[522,8],[574,8],[700,8],[752,8]]}}}],["drink",{"_index":2190,"t":{"371":{"position":[[1898,8]]}}}],["driver",{"_index":294,"t":{"12":{"position":[[3338,7]]}}}],["drop",{"_index":2267,"t":{"381":{"position":[[508,4]]}}}],["due",{"_index":916,"t":{"87":{"position":[[1105,3]]},"179":{"position":[[2092,3]]},"183":{"position":[[384,3]]},"195":{"position":[[241,3],[4812,3]]},"199":{"position":[[318,3]]},"217":{"position":[[961,3]]},"219":{"position":[[358,3]]},"234":{"position":[[1383,3]]},"310":{"position":[[227,3]]},"371":{"position":[[2248,3]]}}}],["dumpvlcmetadata",{"_index":1315,"t":{"179":{"position":[[2423,18]]}}}],["duplic",{"_index":274,"t":{"12":{"position":[[1940,9]]},"85":{"position":[[550,11]]},"199":{"position":[[698,9],[874,9]]},"336":{"position":[[2494,9],[4056,11]]},"371":{"position":[[885,9]]},"412":{"position":[[1729,11]]}}}],["durat",{"_index":150,"t":{"4":{"position":[[4218,11]]},"65":{"position":[[832,8]]},"71":{"position":[[187,10],[453,11]]},"75":{"position":[[138,8]]},"91":{"position":[[942,8]]},"165":{"position":[[427,8]]},"191":{"position":[[204,8]]},"211":{"position":[[506,11],[561,8]]},"213":{"position":[[991,8]]},"312":{"position":[[213,9]]},"327":{"position":[[726,9],[851,9]]},"331":{"position":[[1410,8]]}}}],["dure",{"_index":1093,"t":{"125":{"position":[[80,6]]},"195":{"position":[[2817,6]]},"203":{"position":[[139,6]]},"239":{"position":[[2003,6]]},"310":{"position":[[2065,6]]},"381":{"position":[[285,6]]}}}],["e",{"_index":46,"t":{"4":{"position":[[684,1],[714,1]]},"329":{"position":[[1218,3],[1287,4],[2031,3],[2043,2],[2494,3],[2621,2]]},"331":{"position":[[2552,3],[2564,2]]},"334":{"position":[[1058,3],[1136,4]]},"375":{"position":[[2817,1]]},"377":{"position":[[397,1],[451,1],[488,1],[514,1],[542,1],[576,1],[601,1],[616,1],[728,1],[743,1],[758,1]]}}}],["e4xwktm7jxm607x8el1fcda30eu14dzb64h3j",{"_index":1206,"t":{"163":{"position":[[549,40],[815,40]]}}}],["e90b20526808373353afad7fb98a201198c0c3e0555bea19f182df3388af7b17",{"_index":365,"t":{"20":{"position":[[1732,69]]}}}],["each",{"_index":76,"t":{"4":{"position":[[1483,4],[2299,4],[2376,4],[3166,4]]},"6":{"position":[[214,4]]},"10":{"position":[[448,4]]},"20":{"position":[[317,4]]},"40":{"position":[[418,4]]},"47":{"position":[[500,4]]},"54":{"position":[[73,4],[113,4]]},"73":{"position":[[70,4],[471,4]]},"75":{"position":[[1155,4]]},"207":{"position":[[0,4],[456,4],[536,4]]},"209":{"position":[[105,4]]},"211":{"position":[[0,4],[697,4],[732,4],[809,5],[836,4]]},"213":{"position":[[39,4],[153,4]]},"215":{"position":[[287,4]]},"217":{"position":[[749,4]]},"219":{"position":[[146,4]]},"228":{"position":[[0,4]]},"230":{"position":[[883,4],[1044,4]]},"237":{"position":[[0,4]]},"239":{"position":[[1152,4],[1299,4]]},"241":{"position":[[0,4]]},"250":{"position":[[460,4]]},"263":{"position":[[0,4]]},"267":{"position":[[138,4],[299,4]]},"282":{"position":[[0,4]]},"310":{"position":[[434,4]]}}}],["earlier",{"_index":1489,"t":{"205":{"position":[[569,7]]},"371":{"position":[[1114,7]]},"397":{"position":[[2489,8]]},"399":{"position":[[792,8],[1172,8],[2078,8]]},"401":{"position":[[192,7]]}}}],["eas",{"_index":2357,"t":{"412":{"position":[[1712,4]]}}}],["easi",{"_index":1575,"t":{"217":{"position":[[1580,4]]},"239":{"position":[[258,4]]},"412":{"position":[[1118,4]]}}}],["easili",{"_index":2359,"t":{"412":{"position":[[1851,6]]}}}],["ec42e09d5ae0ee0f0816ca151008412a",{"_index":121,"t":{"4":{"position":[[2674,35],[4568,35]]},"30":{"position":[[583,35],[933,35]]},"119":{"position":[[423,35],[773,35]]},"167":{"position":[[377,35],[729,35]]}}}],["echo",{"_index":1222,"t":{"165":{"position":[[1364,4],[1369,4],[1864,4],[2691,5],[3438,4],[3884,4]]}}}],["echo.multi",{"_index":1223,"t":{"165":{"position":[[1379,10]]}}}],["echo:36",{"_index":1237,"t":{"165":{"position":[[2630,7],[2785,7],[3411,7]]}}}],["edit",{"_index":1297,"t":{"179":{"position":[[899,7]]},"195":{"position":[[3157,4]]},"217":{"position":[[790,6]]},"219":{"position":[[187,6]]}}}],["editor",{"_index":1550,"t":{"217":{"position":[[741,7]]},"219":{"position":[[138,7]]},"387":{"position":[[165,6]]}}}],["editor/valid",{"_index":434,"t":{"26":{"position":[[469,16],[779,16]]},"30":{"position":[[727,16],[1097,16]]},"34":{"position":[[511,16],[848,16]]},"38":{"position":[[382,16],[663,16]]},"45":{"position":[[898,16],[1185,16]]},"52":{"position":[[1019,16],[1290,16]]},"77":{"position":[[607,16],[893,16]]},"83":{"position":[[403,16],[725,16]]},"89":{"position":[[846,16],[1113,16]]},"93":{"position":[[262,16],[480,16]]},"95":{"position":[[2733,16],[3375,16]]},"101":{"position":[[494,16],[749,16]]},"107":{"position":[[441,16],[716,16]]},"109":{"position":[[888,16],[1198,16]]},"115":{"position":[[450,16],[661,16]]},"119":{"position":[[567,16],[937,16]]},"127":{"position":[[529,16],[740,16]]},"131":{"position":[[549,16],[886,16]]},"135":{"position":[[476,16],[757,16]]},"143":{"position":[[264,16],[537,16]]},"147":{"position":[[354,16],[637,16]]},"151":{"position":[[538,16],[785,16]]},"155":{"position":[[381,16],[633,16]]},"157":{"position":[[2749,16],[3315,16]]},"163":{"position":[[673,16],[960,16]]},"167":{"position":[[530,16],[903,16]]},"171":{"position":[[437,16],[751,16]]},"177":{"position":[[663,16],[940,16]]},"181":{"position":[[306,16],[540,16]]},"189":{"position":[[529,16],[776,16]]},"193":{"position":[[286,16],[504,16]]},"197":{"position":[[675,16],[1053,16]]}}}],["effect",{"_index":2168,"t":{"371":{"position":[[458,6]]}}}],["effort",{"_index":1568,"t":{"217":{"position":[[1303,6]]},"221":{"position":[[207,6]]}}}],["eleph",{"_index":1528,"t":{"213":{"position":[[439,9],[492,9],[617,9],[670,9],[1153,8],[1268,10],[1398,9],[1563,10]]},"285":{"position":[[102,9],[322,10]]}}}],["elimin",{"_index":885,"t":{"85":{"position":[[536,9]]},"241":{"position":[[470,9]]},"246":{"position":[[381,9],[522,10]]}}}],["email",{"_index":1580,"t":{"224":{"position":[[112,5]]}}}],["emit",{"_index":2062,"t":{"336":{"position":[[3287,4],[3633,4],[3729,5]]}}}],["emitt",{"_index":1925,"t":{"323":{"position":[[688,8],[757,9]]}}}],["empti",{"_index":676,"t":{"56":{"position":[[2223,6],[2459,6]]},"69":{"position":[[313,5]]},"195":{"position":[[2053,5],[4969,5]]},"239":{"position":[[1532,5]]},"278":{"position":[[477,5]]},"282":{"position":[[450,5]]},"347":{"position":[[205,5]]}}}],["emul",{"_index":2007,"t":{"331":{"position":[[246,8]]}}}],["enabl",{"_index":115,"t":{"4":{"position":[[2569,9],[3515,7],[4426,9],[4692,9]]},"14":{"position":[[40,6],[154,8]]},"30":{"position":[[476,9],[826,9]]},"34":{"position":[[297,9],[608,9]]},"38":{"position":[[221,9],[482,9]]},"75":{"position":[[292,7]]},"77":{"position":[[401,9],[685,9]]},"83":{"position":[[178,9],[481,9]]},"87":{"position":[[3393,6],[3437,6]]},"89":{"position":[[191,6]]},"91":{"position":[[1323,9]]},"93":{"position":[[147,9],[344,9]]},"95":{"position":[[2174,9],[2812,9]]},"97":{"position":[[91,8]]},"101":{"position":[[197,8],[262,8],[352,9],[587,9]]},"103":{"position":[[86,8]]},"107":{"position":[[275,9],[532,9]]},"111":{"position":[[12,7]]},"115":{"position":[[354,9],[540,9]]},"119":{"position":[[316,9],[666,9]]},"121":{"position":[[12,7]]},"127":{"position":[[431,9],[618,9]]},"131":{"position":[[335,9],[646,9]]},"135":{"position":[[315,9],[576,9]]},"137":{"position":[[301,7]]},"143":{"position":[[104,9],[357,9]]},"147":{"position":[[161,9],[427,9]]},"151":{"position":[[401,9],[629,9]]},"153":{"position":[[88,6],[359,8]]},"155":{"position":[[225,9],[475,9]]},"157":{"position":[[2295,9],[2843,9]]},"165":{"position":[[55,7],[1458,8]]},"167":{"position":[[272,9],[624,9]]},"171":{"position":[[240,9],[532,9]]},"179":{"position":[[63,6],[278,6],[1610,9],[2374,9]]},"181":{"position":[[162,9],[379,9]]},"189":{"position":[[112,6]]},"193":{"position":[[184,9],[379,9]]},"195":{"position":[[1045,9],[2592,9],[3821,9]]},"197":{"position":[[412,9],[769,9]]},"203":{"position":[[403,9]]},"230":{"position":[[998,8]]},"234":{"position":[[1666,6],[3497,6],[3693,6],[4039,6]]},"250":{"position":[[141,6],[292,6],[472,6]]},"267":{"position":[[253,8]]},"365":{"position":[[424,6]]},"389":{"position":[[65,6],[219,6]]},"397":{"position":[[2375,8]]},"441":{"position":[[169,7],[313,7],[1129,6]]}}}],["encount",{"_index":952,"t":{"87":{"position":[[3152,11]]},"381":{"position":[[308,9]]}}}],["end",{"_index":552,"t":{"40":{"position":[[1731,3]]},"165":{"position":[[161,4]]},"167":{"position":[[194,3]]},"185":{"position":[[92,3]]},"195":{"position":[[3620,3]]},"241":{"position":[[650,6]]},"331":{"position":[[206,4]]},"393":{"position":[[100,3]]}}}],["endless",{"_index":1633,"t":{"234":{"position":[[695,8],[893,8],[2141,8],[2489,8],[3008,8],[3228,8]]},"259":{"position":[[744,8],[878,8]]}}}],["endors",{"_index":1358,"t":{"195":{"position":[[71,8]]}}}],["endpoint",{"_index":332,"t":{"18":{"position":[[64,8]]},"20":{"position":[[1507,9],[1714,9],[1823,9]]},"22":{"position":[[3,8]]},"28":{"position":[[198,10]]},"32":{"position":[[224,10]]},"62":{"position":[[401,10],[485,10]]},"91":{"position":[[1478,9]]},"113":{"position":[[237,8]]},"115":{"position":[[112,8]]},"117":{"position":[[263,10]]},"123":{"position":[[552,8]]},"125":{"position":[[224,9]]},"127":{"position":[[110,8]]},"129":{"position":[[323,10]]},"169":{"position":[[108,8],[423,10]]},"300":{"position":[[153,9]]},"308":{"position":[[332,10]]},"310":{"position":[[3191,8],[3339,8]]},"318":{"position":[[231,8],[325,9],[426,8],[509,8]]},"336":{"position":[[1409,9]]},"353":{"position":[[128,8],[1714,8]]},"375":{"position":[[2189,11]]},"397":{"position":[[1670,8],[1713,8],[1784,8]]},"412":{"position":[[228,10],[265,10],[760,8]]}}}],["endpointlfm",{"_index":1079,"t":{"115":{"position":[[594,13]]}}}],["endpointlz",{"_index":689,"t":{"56":{"position":[[3058,13]]},"127":{"position":[[674,12]]}}}],["enforc",{"_index":1812,"t":{"306":{"position":[[345,8]]},"308":{"position":[[73,8]]}}}],["enhanc",{"_index":271,"t":{"12":{"position":[[1871,7]]},"199":{"position":[[47,7]]},"207":{"position":[[87,9]]},"230":{"position":[[1154,9],[1272,8],[1972,8]]},"250":{"position":[[98,8],[247,12]]},"267":{"position":[[409,9],[527,8],[1095,8]]},"403":{"position":[[385,12]]}}}],["enhance/correct",{"_index":2350,"t":{"412":{"position":[[566,15]]}}}],["enough",{"_index":1469,"t":{"201":{"position":[[149,6]]},"217":{"position":[[103,6]]},"234":{"position":[[4522,8]]},"239":{"position":[[1641,6]]},"244":{"position":[[182,6]]},"331":{"position":[[1476,6],[2719,6]]}}}],["ensur",{"_index":420,"t":{"24":{"position":[[1471,6]]},"103":{"position":[[197,6]]},"241":{"position":[[508,6],[561,6]]},"310":{"position":[[1856,6],[2527,6]]},"353":{"position":[[2242,6]]},"355":{"position":[[0,6]]},"357":{"position":[[199,6]]},"399":{"position":[[2179,6]]},"412":{"position":[[1994,6]]}}}],["enter",{"_index":1436,"t":{"195":{"position":[[5248,5]]},"357":{"position":[[285,8]]}}}],["entir",{"_index":1784,"t":{"300":{"position":[[27,8]]},"353":{"position":[[2304,8]]}}}],["entri",{"_index":191,"t":{"6":{"position":[[219,5]]},"65":{"position":[[1313,5]]}}}],["env",{"_index":9,"t":{"4":{"position":[[56,5],[296,3],[452,3],[1850,4]]},"10":{"position":[[180,3]]},"12":{"position":[[842,3],[1599,3],[2223,3],[2577,3],[2711,3],[3480,3]]},"14":{"position":[[527,3]]},"16":{"position":[[299,3]]},"26":{"position":[[0,3],[13,3]]},"30":{"position":[[0,3],[13,3]]},"34":{"position":[[0,3],[13,3]]},"38":{"position":[[0,3],[13,3]]},"45":{"position":[[419,3],[432,3]]},"52":{"position":[[557,3],[570,3]]},"69":{"position":[[460,3]]},"71":{"position":[[668,5]]},"77":{"position":[[0,3]]},"83":{"position":[[0,3]]},"89":{"position":[[0,3],[246,4]]},"93":{"position":[[0,3]]},"95":{"position":[[1198,3]]},"101":{"position":[[0,3],[13,3]]},"107":{"position":[[0,3],[13,3]]},"109":{"position":[[308,3],[387,3],[400,3],[436,3],[516,4]]},"115":{"position":[[0,3],[13,3],[214,4]]},"119":{"position":[[0,3],[13,3],[49,3],[133,4]]},"123":{"position":[[426,4]]},"127":{"position":[[0,3],[13,3],[212,4]]},"131":{"position":[[0,3],[13,3],[49,3],[143,4]]},"133":{"position":[[192,3]]},"135":{"position":[[0,3],[13,3],[49,3],[131,4]]},"143":{"position":[[0,3],[13,3],[32,3]]},"147":{"position":[[0,3],[13,3]]},"149":{"position":[[1000,4],[1720,5]]},"151":{"position":[[0,3],[13,3]]},"155":{"position":[[0,3],[13,3]]},"157":{"position":[[470,5],[1546,3],[1559,3]]},"163":{"position":[[125,3],[189,3],[202,3],[238,3],[322,4]]},"165":{"position":[[1731,4],[2169,4],[2863,3],[4033,4]]},"167":{"position":[[0,3],[13,3]]},"171":{"position":[[0,3],[13,3]]},"177":{"position":[[125,3],[189,3],[202,3],[238,3],[322,4]]},"181":{"position":[[0,3],[13,3]]},"189":{"position":[[0,3],[13,3],[154,4]]},"193":{"position":[[0,3],[13,3]]},"195":{"position":[[1019,4],[2565,5],[3422,4]]},"197":{"position":[[0,3],[13,3]]},"217":{"position":[[1523,3],[1600,3]]},"230":{"position":[[95,3],[177,3],[851,3],[1065,3],[1424,3]]},"255":{"position":[[76,3]]},"267":{"position":[[64,3],[111,3],[320,3],[679,3]]},"325":{"position":[[560,4],[920,6]]},"371":{"position":[[1626,5]]},"373":{"position":[[31,3]]},"377":{"position":[[353,3]]},"381":{"position":[[714,3]]},"397":{"position":[[1797,3],[2051,4]]},"412":{"position":[[1145,4]]},"441":{"position":[[348,3]]}}}],["env/fil",{"_index":1030,"t":{"97":{"position":[[311,8]]},"103":{"position":[[279,8]]}}}],["environ",{"_index":56,"t":{"4":{"position":[[850,12]]},"16":{"position":[[129,12]]},"36":{"position":[[193,11]]},"149":{"position":[[1157,12]]},"230":{"position":[[1580,12]]},"267":{"position":[[835,12]]},"375":{"position":[[445,12],[2942,12]]},"377":{"position":[[1026,12]]},"395":{"position":[[224,12]]},"397":{"position":[[240,11],[837,11],[1811,11],[2205,11],[2616,11]]},"399":{"position":[[377,11],[714,11],[1094,11],[2000,11]]}}}],["environment",{"_index":8,"t":{"4":{"position":[[42,13],[328,13],[1220,13],[2880,13]]},"12":{"position":[[850,13],[1607,13],[2231,13],[2727,13],[3496,13]]},"26":{"position":[[29,13]]},"30":{"position":[[29,13]]},"34":{"position":[[29,13]]},"38":{"position":[[29,13]]},"45":{"position":[[448,13]]},"52":{"position":[[586,13]]},"77":{"position":[[13,13]]},"83":{"position":[[13,13]]},"89":{"position":[[108,13]]},"93":{"position":[[13,13]]},"95":{"position":[[1211,13]]},"101":{"position":[[29,13]]},"107":{"position":[[29,13]]},"115":{"position":[[29,13]]},"127":{"position":[[29,13]]},"147":{"position":[[29,13]]},"151":{"position":[[29,13]]},"155":{"position":[[29,13]]},"157":{"position":[[1575,13]]},"167":{"position":[[29,13]]},"171":{"position":[[29,13]]},"181":{"position":[[29,13]]},"189":{"position":[[29,13]]},"193":{"position":[[29,13]]},"197":{"position":[[29,13]]},"353":{"position":[[1501,13]]},"375":{"position":[[3052,13],[3359,13]]},"381":{"position":[[1348,13]]},"395":{"position":[[406,13]]}}}],["eol",{"_index":2276,"t":{"383":{"position":[[150,4]]}}}],["ep",{"_index":1669,"t":{"239":{"position":[[322,4],[811,3]]},"244":{"position":[[496,2],[554,6]]},"255":{"position":[[364,6]]}}}],["equal",{"_index":823,"t":{"77":{"position":[[326,5]]}}}],["equival",{"_index":1566,"t":{"217":{"position":[[1190,10]]},"221":{"position":[[94,10]]}}}],["error",{"_index":176,"t":{"4":{"position":[[4961,8],[5185,8]]},"18":{"position":[[117,7]]},"20":{"position":[[148,5],[785,5],[982,8],[1138,5],[1380,8]]},"22":{"position":[[181,5]]},"56":{"position":[[122,6],[276,5],[651,5]]},"87":{"position":[[223,6],[3145,6]]},"195":{"position":[[1240,6],[5091,6]]},"310":{"position":[[2657,6],[2809,5]]},"329":{"position":[[2530,5],[2567,5],[2592,5]]},"357":{"position":[[11,6],[74,6]]},"360":{"position":[[158,5],[193,5],[225,5],[239,6],[415,6]]},"381":{"position":[[278,6],[321,5]]}}}],["error('error",{"_index":2043,"t":{"334":{"position":[[1074,12]]}}}],["error(`'baseurl",{"_index":1989,"t":{"329":{"position":[[1105,16]]}}}],["error(`'token",{"_index":1987,"t":{"329":{"position":[[952,14]]}}}],["error(`could",{"_index":1992,"t":{"329":{"position":[[1234,12]]}}}],["error/network",{"_index":1822,"t":{"310":{"position":[[237,13]]}}}],["essenti",{"_index":2201,"t":{"371":{"position":[[2148,9]]}}}],["etc",{"_index":326,"t":{"16":{"position":[[248,7]]},"40":{"position":[[531,6]]},"47":{"position":[[613,6]]},"60":{"position":[[177,6]]},"209":{"position":[[436,7]]},"211":{"position":[[667,7]]},"239":{"position":[[715,6],[815,6],[931,6],[1025,6]]},"248":{"position":[[166,6]]},"259":{"position":[[544,7]]},"261":{"position":[[842,6]]},"308":{"position":[[343,6]]},"312":{"position":[[257,6],[483,6]]},"318":{"position":[[623,6]]},"365":{"position":[[156,7]]},"371":{"position":[[2777,7]]},"416":{"position":[[230,6]]}}}],["evalu",{"_index":1258,"t":{"165":{"position":[[3825,8]]}}}],["even",{"_index":514,"t":{"40":{"position":[[538,4]]},"47":{"position":[[620,4]]},"217":{"position":[[318,4]]}}}],["event",{"_index":337,"t":{"20":{"position":[[70,7]]},"310":{"position":[[212,5]]},"336":{"position":[[1309,6],[1620,6],[1655,6],[3738,5]]}}}],["eventemitt",{"_index":1926,"t":{"323":{"position":[[697,13]]}}}],["eventu",{"_index":1244,"t":{"165":{"position":[[3027,11]]}}}],["everyone'",{"_index":635,"t":{"54":{"position":[[796,10]]}}}],["everyth",{"_index":289,"t":{"12":{"position":[[3243,10]]},"22":{"position":[[136,10]]},"54":{"position":[[528,10],[876,10]]},"95":{"position":[[2314,10]]},"241":{"position":[[855,10],[949,10]]},"412":{"position":[[1420,10]]}}}],["everywher",{"_index":1609,"t":{"230":{"position":[[1357,10]]},"267":{"position":[[612,10]]}}}],["ex",{"_index":213,"t":{"10":{"position":[[476,2]]},"12":{"position":[[3656,3]]},"24":{"position":[[359,2],[617,2]]},"89":{"position":[[336,2],[527,2]]},"183":{"position":[[164,2]]},"191":{"position":[[533,2]]},"195":{"position":[[3125,3]]},"239":{"position":[[1367,2],[1456,2]]},"241":{"position":[[817,2],[909,2]]},"259":{"position":[[308,2],[606,2]]},"280":{"position":[[726,2]]},"295":{"position":[[159,2]]},"308":{"position":[[493,2]]},"353":{"position":[[2058,2]]},"355":{"position":[[595,2]]},"375":{"position":[[1054,3]]},"399":{"position":[[1530,2],[1784,2]]}}}],["exactli",{"_index":1403,"t":{"195":{"position":[[2334,7],[3062,7],[3271,7]]},"412":{"position":[[1563,7]]}}}],["exampl",{"_index":43,"t":{"4":{"position":[[640,7],[1914,7],[2112,8],[2211,7],[2233,8],[2429,7],[2512,7],[3615,7],[3739,7],[3836,7],[3858,8],[3981,7],[4026,7]]},"10":{"position":[[468,7]]},"12":{"position":[[802,8],[1559,8],[2183,8],[2719,7],[2917,7],[3488,7],[3687,7]]},"20":{"position":[[336,7],[801,7],[1154,7],[1534,7]]},"24":{"position":[[958,9],[977,8],[1017,7]]},"26":{"position":[[452,7],[762,7]]},"30":{"position":[[710,7],[1080,7]]},"34":{"position":[[494,7],[831,7]]},"36":{"position":[[97,7]]},"38":{"position":[[365,7],[646,7]]},"45":{"position":[[881,7],[1168,7]]},"52":{"position":[[1002,7],[1273,7]]},"60":{"position":[[114,8]]},"69":{"position":[[592,8]]},"75":{"position":[[698,9]]},"77":{"position":[[590,7],[876,7]]},"83":{"position":[[386,7],[708,7]]},"85":{"position":[[271,7]]},"87":{"position":[[2265,7],[2797,7],[3426,7],[3456,7]]},"89":{"position":[[629,7],[829,7],[863,7],[1096,7]]},"91":{"position":[[1282,7]]},"93":{"position":[[94,7],[245,7],[279,7],[463,7]]},"95":{"position":[[2716,7],[3358,7]]},"99":{"position":[[620,8],[629,8]]},"101":{"position":[[477,7],[732,7]]},"105":{"position":[[612,8],[621,8]]},"107":{"position":[[424,7],[699,7]]},"109":{"position":[[871,7],[1181,7]]},"115":{"position":[[433,7],[644,7]]},"119":{"position":[[550,7],[920,7]]},"127":{"position":[[512,7],[723,7]]},"131":{"position":[[532,7],[869,7]]},"135":{"position":[[459,7],[740,7]]},"137":{"position":[[921,8],[930,8]]},"139":{"position":[[342,7]]},"141":{"position":[[345,7]]},"143":{"position":[[247,7],[520,7]]},"147":{"position":[[337,7],[620,7]]},"151":{"position":[[521,7],[768,7]]},"155":{"position":[[364,7],[616,7]]},"157":{"position":[[686,8],[2732,7],[3298,7]]},"163":{"position":[[656,7],[943,7]]},"165":{"position":[[1503,8]]},"167":{"position":[[513,7],[886,7]]},"171":{"position":[[420,7],[734,7]]},"177":{"position":[[646,7],[923,7]]},"179":{"position":[[1535,7]]},"181":{"position":[[289,7],[523,7]]},"185":{"position":[[153,7]]},"189":{"position":[[512,7],[759,7]]},"193":{"position":[[269,7],[487,7]]},"197":{"position":[[658,7],[1036,7]]},"205":{"position":[[694,8]]},"207":{"position":[[130,8]]},"209":{"position":[[397,9],[444,7],[1094,7],[1929,7]]},"213":{"position":[[1094,7],[1298,7]]},"224":{"position":[[745,7]]},"226":{"position":[[116,8]]},"230":{"position":[[1392,7],[1466,7]]},"234":{"position":[[573,8],[2122,7],[2614,8],[2989,7],[3321,8],[4551,8]]},"248":{"position":[[374,7]]},"250":{"position":[[530,7]]},"253":{"position":[[0,7]]},"255":{"position":[[88,7]]},"257":{"position":[[277,7]]},"259":{"position":[[650,7]]},"261":{"position":[[1396,7]]},"265":{"position":[[230,7]]},"267":{"position":[[647,7],[721,7]]},"270":{"position":[[0,7]]},"272":{"position":[[0,7]]},"274":{"position":[[149,7]]},"276":{"position":[[215,7]]},"278":{"position":[[170,7],[562,7]]},"285":{"position":[[40,7]]},"287":{"position":[[60,7]]},"289":{"position":[[0,7]]},"291":{"position":[[0,7]]},"293":{"position":[[0,7]]},"295":{"position":[[656,7]]},"310":{"position":[[1070,8],[1805,8],[3052,8]]},"321":{"position":[[691,8],[812,8]]},"353":{"position":[[1630,8]]},"367":{"position":[[188,7],[337,7]]},"373":{"position":[[44,8]]},"375":{"position":[[244,7],[1772,7],[2237,7],[2771,7]]},"377":{"position":[[64,7],[76,7]]},"381":{"position":[[704,9]]},"395":{"position":[[439,8]]},"399":{"position":[[281,7],[1964,8]]},"403":{"position":[[285,8],[362,7]]},"416":{"position":[[166,8]]},"418":{"position":[[112,8]]},"434":{"position":[[112,8]]}}}],["example.com",{"_index":1089,"t":{"123":{"position":[[790,13]]}}}],["except",{"_index":1491,"t":{"205":{"position":[[652,7]]},"246":{"position":[[197,6]]},"310":{"position":[[673,9],[2766,9],[2890,9]]}}}],["exclud",{"_index":1692,"t":{"239":{"position":[[1252,9],[1462,7]]}}}],["execstart=npm",{"_index":2294,"t":{"387":{"position":[[371,13]]}}}],["exhaust",{"_index":544,"t":{"40":{"position":[[1520,10]]},"87":{"position":[[494,10]]},"246":{"position":[[320,13]]},"259":{"position":[[221,10]]}}}],["exist",{"_index":397,"t":{"24":{"position":[[288,9]]},"87":{"position":[[568,8]]},"165":{"position":[[639,8]]},"195":{"position":[[1531,9]]},"205":{"position":[[1451,11],[1490,10]]},"211":{"position":[[1188,8]]},"217":{"position":[[375,8]]},"289":{"position":[[71,11]]},"336":{"position":[[1474,8]]},"345":{"position":[[332,8]]},"360":{"position":[[100,6]]},"399":{"position":[[1459,9]]},"439":{"position":[[235,6]]}}}],["exit",{"_index":2153,"t":{"360":{"position":[[172,6]]}}}],["expand",{"_index":859,"t":{"81":{"position":[[648,6]]}}}],["expect",{"_index":1656,"t":{"234":{"position":[[4407,6]]},"244":{"position":[[333,6]]},"250":{"position":[[132,8]]},"371":{"position":[[3069,8]]}}}],["experi",{"_index":874,"t":{"85":{"position":[[127,10]]},"87":{"position":[[200,10],[283,10]]},"195":{"position":[[1926,10]]},"371":{"position":[[1239,10]]}}}],["experiment",{"_index":892,"t":{"87":{"position":[[178,13]]}}}],["explain",{"_index":2208,"t":{"371":{"position":[[3057,7]]}}}],["explan",{"_index":1362,"t":{"195":{"position":[[383,12]]}}}],["explicit",{"_index":1712,"t":{"246":{"position":[[115,8]]}}}],["explicitli",{"_index":212,"t":{"10":{"position":[[326,10]]},"73":{"position":[[574,10]]},"75":{"position":[[675,10],[1239,10],[1926,10]]},"87":{"position":[[2050,10]]},"99":{"position":[[366,10]]},"105":{"position":[[362,10]]},"137":{"position":[[719,10]]},"157":{"position":[[582,10]]},"191":{"position":[[492,10]]},"239":{"position":[[1223,11],[1373,10]]},"375":{"position":[[957,10],[2531,10]]},"441":{"position":[[302,10]]}}}],["explor",{"_index":135,"t":{"4":{"position":[[3924,7]]},"26":{"position":[[425,7],[735,7]]},"30":{"position":[[683,7],[1053,7]]},"34":{"position":[[467,7],[804,7]]},"38":{"position":[[338,7],[619,7]]},"45":{"position":[[854,7],[1141,7]]},"52":{"position":[[975,7],[1246,7]]},"77":{"position":[[563,7],[849,7]]},"83":{"position":[[359,7],[681,7]]},"89":{"position":[[802,7],[1069,7]]},"93":{"position":[[218,7],[436,7]]},"95":{"position":[[2689,7],[3331,7]]},"101":{"position":[[450,7],[705,7]]},"107":{"position":[[397,7],[672,7]]},"109":{"position":[[844,7],[1154,7]]},"115":{"position":[[406,7],[617,7]]},"119":{"position":[[523,7],[893,7]]},"127":{"position":[[485,7],[696,7]]},"131":{"position":[[505,7],[842,7]]},"135":{"position":[[432,7],[713,7]]},"143":{"position":[[220,7],[493,7]]},"147":{"position":[[310,7],[593,7]]},"151":{"position":[[494,7],[741,7]]},"155":{"position":[[337,7],[589,7]]},"157":{"position":[[2705,7],[3271,7]]},"163":{"position":[[629,7],[916,7]]},"167":{"position":[[486,7],[859,7]]},"171":{"position":[[393,7],[707,7]]},"177":{"position":[[619,7],[896,7]]},"181":{"position":[[262,7],[496,7]]},"189":{"position":[[485,7],[732,7]]},"193":{"position":[[242,7],[460,7]]},"197":{"position":[[631,7],[1009,7]]}}}],["export",{"_index":61,"t":{"4":{"position":[[1026,6]]},"321":{"position":[[458,6],[870,6],[968,6],[1455,6],[1535,6],[1741,6],[1799,6]]},"323":{"position":[[439,6]]},"325":{"position":[[375,6]]},"327":{"position":[[336,6]]},"329":{"position":[[357,6],[1617,6],[2255,6]]},"331":{"position":[[1684,6]]},"334":{"position":[[439,6]]},"336":{"position":[[882,6],[2801,6],[3473,6]]}}}],["expos",{"_index":741,"t":{"65":{"position":[[685,6],[1036,6]]},"149":{"position":[[1343,6]]}}}],["express",{"_index":1303,"t":{"179":{"position":[[1190,12],[1367,10],[1470,12]]},"213":{"position":[[194,11],[839,10]]},"261":{"position":[[409,12]]},"276":{"position":[[39,12]]},"278":{"position":[[57,11]]},"280":{"position":[[21,10],[95,11],[187,10],[234,11],[410,11]]},"282":{"position":[[49,12]]}}}],["expressj",{"_index":1788,"t":{"300":{"position":[[219,10]]}}}],["extend",{"_index":1893,"t":{"321":{"position":[[496,7],[910,7],[1011,7]]},"323":{"position":[[477,7]]},"327":{"position":[[374,7]]},"329":{"position":[[395,7],[1655,7],[2293,7]]},"331":{"position":[[1722,7]]},"334":{"position":[[477,7]]},"336":{"position":[[920,7],[2836,7],[3514,7]]}}}],["extens",{"_index":1104,"t":{"137":{"position":[[291,9]]},"183":{"position":[[34,9],[255,9]]},"187":{"position":[[171,10],[314,10]]},"304":{"position":[[226,10]]},"353":{"position":[[92,9],[2457,9]]},"412":{"position":[[1276,9]]}}}],["extern",{"_index":235,"t":{"12":{"position":[[89,8],[1834,8]]}}}],["extra",{"_index":1287,"t":{"179":{"position":[[246,5]]}}}],["extract",{"_index":1301,"t":{"179":{"position":[[1109,7],[1309,7],[1412,10],[1684,8],[1860,7]]},"207":{"position":[[288,7]]},"209":{"position":[[1336,8]]},"230":{"position":[[691,10]]},"234":{"position":[[1320,11],[1546,7],[1858,7],[2248,8],[2324,8],[2884,7],[2938,7],[3145,8],[3433,10]]},"244":{"position":[[647,10]]},"259":{"position":[[52,7],[552,8]]},"261":{"position":[[572,7],[726,7],[807,7],[1112,7],[1361,7],[1498,9]]},"274":{"position":[[34,7]]}}}],["f12",{"_index":847,"t":{"81":{"position":[[324,3]]}}}],["f243331e",{"_index":1895,"t":{"321":{"position":[[700,8]]}}}],["factori",{"_index":1640,"t":{"234":{"position":[[776,9],[959,9],[2222,8],[2284,7],[2555,9],[3088,7]]},"259":{"position":[[825,9],[944,9]]}}}],["fail",{"_index":248,"t":{"12":{"position":[[310,6]]},"22":{"position":[[281,7]]},"230":{"position":[[722,5],[833,4]]},"234":{"position":[[3453,4]]},"310":{"position":[[696,6],[2631,6]]},"353":{"position":[[2515,6]]}}}],["failur",{"_index":341,"t":{"20":{"position":[[179,7]]},"310":{"position":[[1627,8],[2749,7],[2787,7],[2969,8]]},"412":{"position":[[996,7]]}}}],["failure/etc",{"_index":1823,"t":{"310":{"position":[[251,14]]}}}],["fake",{"_index":1125,"t":{"141":{"position":[[207,4]]}}}],["fallback",{"_index":1614,"t":{"230":{"position":[[1696,8]]}}}],["fallbackartistsearch",{"_index":1592,"t":{"226":{"position":[[319,23]]},"230":{"position":[[651,21]]},"234":{"position":[[1458,20],[1642,20],[1697,20],[2651,23],[3358,23]]},"244":{"position":[[853,23]]},"255":{"position":[[405,23]]}}}],["fallbackfreetextseach",{"_index":1647,"t":{"234":{"position":[[3662,22]]}}}],["fallbackfreetextsearch",{"_index":1603,"t":{"230":{"position":[[782,23]]},"234":{"position":[[4588,25]]}}}],["fals",{"_index":142,"t":{"4":{"position":[[4072,6],[4093,6],[4134,6],[4187,6]]},"73":{"position":[[772,5]]},"75":{"position":[[1437,5]]},"95":{"position":[[2609,6],[3230,5]]},"147":{"position":[[295,5],[561,5]]},"157":{"position":[[2688,7],[3236,7]]},"197":{"position":[[320,5]]},"211":{"position":[[211,6]]},"228":{"position":[[181,6]]},"248":{"position":[[542,6],[560,6],[576,6],[599,6]]},"257":{"position":[[696,6],[714,6],[730,6],[753,6]]},"263":{"position":[[162,6]]},"274":{"position":[[402,5]]},"310":{"position":[[2149,6],[2251,6],[2617,5],[2910,5]]},"323":{"position":[[921,6]]},"329":{"position":[[536,6]]}}}],["famili",{"_index":963,"t":{"89":{"position":[[350,6]]},"412":{"position":[[894,8],[1811,6]]}}}],["fan",{"_index":1569,"t":{"217":{"position":[[1335,3]]},"221":{"position":[[239,3]]}}}],["fanci",{"_index":1871,"t":{"318":{"position":[[27,6]]}}}],["faq",{"_index":2,"t":{"2":{"position":[[14,3]]},"195":{"position":[[364,3]]},"403":{"position":[[509,3]]},"428":{"position":[[59,3]]}}}],["fashion",{"_index":1450,"t":{"199":{"position":[[85,7]]}}}],["faster",{"_index":240,"t":{"12":{"position":[[131,7]]},"217":{"position":[[1680,6]]}}}],["favorit",{"_index":1570,"t":{"217":{"position":[[1400,8]]},"221":{"position":[[304,8]]}}}],["feat",{"_index":1634,"t":{"234":{"position":[[716,6],[2162,6],[2367,6],[3029,6],[3249,6]]},"259":{"position":[[534,5],[622,6],[765,6]]},"261":{"position":[[832,5]]},"274":{"position":[[100,6]]}}}],["featur",{"_index":778,"t":{"73":{"position":[[10,7]]}}}],["fedora",{"_index":2279,"t":{"385":{"position":[[99,7]]}}}],["feedback",{"_index":2180,"t":{"371":{"position":[[1339,8]]}}}],["fetch",{"_index":1825,"t":{"310":{"position":[[357,8]]}}}],["few",{"_index":1423,"t":{"195":{"position":[[4193,3]]},"365":{"position":[[40,3]]}}}],["ffff:127.0.0.1",{"_index":2115,"t":{"353":{"position":[[493,16],[704,16]]}}}],["ffff:192.168.0.100",{"_index":2131,"t":{"353":{"position":[[1028,20]]}}}],["field",{"_index":1305,"t":{"179":{"position":[[1298,7],[1391,5],[2115,6],[2177,5]]},"199":{"position":[[519,5]]},"228":{"position":[[97,6]]},"234":{"position":[[244,6],[346,6],[1015,6],[1220,7],[3869,7]]},"263":{"position":[[97,6]]},"282":{"position":[[412,5],[491,5]]},"363":{"position":[[57,5]]},"365":{"position":[[51,6],[181,6],[360,6]]}}}],["field/env",{"_index":1263,"t":{"165":{"position":[[4189,9]]}}}],["file",{"_index":15,"t":{"4":{"position":[[107,5],[139,4],[300,4],[305,4],[434,5],[1161,5],[1413,4],[2304,4],[2381,4],[2822,4],[3634,5]]},"12":{"position":[[468,4],[921,4],[1030,7],[1225,4],[1674,4],[1775,7],[2596,4],[2608,4],[2679,4],[2798,4],[2912,4],[2976,7]]},"16":{"position":[[334,4]]},"20":{"position":[[234,4]]},"26":{"position":[[4,4],[212,4]]},"30":{"position":[[4,4],[410,4]]},"34":{"position":[[4,4],[227,4]]},"38":{"position":[[4,4],[154,4]]},"45":{"position":[[423,4],[664,4]]},"52":{"position":[[561,4],[801,4]]},"58":{"position":[[80,4]]},"71":{"position":[[361,4]]},"73":{"position":[[644,4]]},"75":{"position":[[1309,4]]},"77":{"position":[[4,4]]},"83":{"position":[[4,4]]},"85":{"position":[[182,5]]},"87":{"position":[[784,4],[2113,4],[2710,4]]},"89":{"position":[[4,4],[89,4]]},"93":{"position":[[4,4]]},"95":{"position":[[1202,4]]},"99":{"position":[[47,4],[661,4]]},"101":{"position":[[4,4],[288,4]]},"105":{"position":[[45,4],[653,4]]},"107":{"position":[[4,4],[219,4]]},"109":{"position":[[391,4],[584,4],[631,4]]},"115":{"position":[[4,4],[292,4]]},"119":{"position":[[4,4],[201,4],[250,4]]},"127":{"position":[[4,4],[371,4]]},"131":{"position":[[4,4],[211,4],[265,4]]},"135":{"position":[[4,4],[199,5],[248,4]]},"137":{"position":[[402,4],[849,4],[962,4]]},"143":{"position":[[4,4],[44,4]]},"147":{"position":[[4,4],[124,4]]},"151":{"position":[[4,4],[344,4]]},"155":{"position":[[4,4],[161,4]]},"157":{"position":[[1550,4],[2236,4]]},"163":{"position":[[193,4],[390,4],[439,4]]},"167":{"position":[[4,4],[210,4]]},"169":{"position":[[649,4]]},"171":{"position":[[4,4],[176,4]]},"177":{"position":[[193,4],[390,4],[439,4]]},"179":{"position":[[883,4],[1009,4],[1554,4]]},"181":{"position":[[4,4],[125,4]]},"185":{"position":[[134,4]]},"189":{"position":[[4,4],[335,4]]},"193":{"position":[[4,4],[121,4]]},"197":{"position":[[4,4],[350,4]]},"209":{"position":[[63,4],[762,4],[1443,4],[1631,4],[2247,4]]},"250":{"position":[[552,4]]},"253":{"position":[[188,4]]},"255":{"position":[[460,4]]},"257":{"position":[[523,4]]},"265":{"position":[[252,4]]},"270":{"position":[[318,4]]},"272":{"position":[[217,4]]},"274":{"position":[[250,4]]},"278":{"position":[[584,4]]},"310":{"position":[[394,6],[894,6],[3247,4]]},"321":{"position":[[142,4]]},"336":{"position":[[1459,6]]},"360":{"position":[[95,4],[318,4]]},"371":{"position":[[2200,4],[2306,5],[2508,4]]},"373":{"position":[[39,4]]},"375":{"position":[[3300,4]]},"377":{"position":[[357,4]]},"381":{"position":[[718,4]]},"387":{"position":[[21,4],[198,4]]},"389":{"position":[[9,4]]},"393":{"position":[[276,4]]},"397":{"position":[[3514,4]]},"401":{"position":[[112,4]]},"403":{"position":[[172,5]]},"426":{"position":[[173,4]]},"441":{"position":[[883,4],[976,4]]}}}],["file/aio",{"_index":94,"t":{"4":{"position":[[1891,8]]},"69":{"position":[[88,8],[662,8]]},"95":{"position":[[1159,8]]},"109":{"position":[[319,8]]},"117":{"position":[[452,8]]},"133":{"position":[[203,8]]},"163":{"position":[[136,8]]},"177":{"position":[[136,8]]},"255":{"position":[[48,8]]},"441":{"position":[[449,8]]}}}],["filenam",{"_index":1298,"t":{"179":{"position":[[984,8],[1167,8],[1512,8],[1715,9],[1880,8]]}}}],["filenamepattern",{"_index":1309,"t":{"179":{"position":[[1659,19]]}}}],["fill",{"_index":1396,"t":{"195":{"position":[[1983,4]]},"217":{"position":[[161,4]]},"244":{"position":[[208,7]]},"403":{"position":[[444,4]]}}}],["filter",{"_index":757,"t":{"67":{"position":[[120,8]]},"81":{"position":[[456,7]]},"239":{"position":[[178,6],[1196,6],[1748,6],[2010,9]]},"241":{"position":[[186,9],[406,10],[422,7],[458,7],[707,8],[739,8]]},"246":{"position":[[20,7],[132,6],[354,9],[512,9]]}}}],["final",{"_index":490,"t":{"36":{"position":[[494,8]]},"99":{"position":[[681,5]]},"105":{"position":[[673,5]]},"137":{"position":[[982,5]]},"165":{"position":[[2280,5]]},"215":{"position":[[168,5],[259,5]]},"230":{"position":[[838,8]]},"239":{"position":[[194,5]]},"310":{"position":[[915,8]]},"321":{"position":[[1624,8]]},"329":{"position":[[2063,8]]},"331":{"position":[[2821,8]]},"399":{"position":[[681,8]]}}}],["find",{"_index":466,"t":{"32":{"position":[[350,4]]},"69":{"position":[[538,4]]},"81":{"position":[[700,4]]},"129":{"position":[[450,4]]},"157":{"position":[[0,4]]},"179":{"position":[[1958,4]]},"201":{"position":[[184,5]]},"217":{"position":[[1016,4]]},"219":{"position":[[413,4]]},"230":{"position":[[731,4],[1139,4]]},"234":{"position":[[406,4],[2776,5],[3110,5]]},"267":{"position":[[394,4]]},"360":{"position":[[400,4]]},"397":{"position":[[2498,4]]},"426":{"position":[[386,4]]}}}],["fine",{"_index":1818,"t":{"308":{"position":[[400,4]]}}}],["finish",{"_index":1235,"t":{"165":{"position":[[2470,6]]},"195":{"position":[[4554,8]]},"371":{"position":[[2925,6]]}}}],["firefox",{"_index":844,"t":{"81":{"position":[[295,7]]},"95":{"position":[[2432,12],[3045,9]]},"157":{"position":[[2486,9],[3034,9]]},"183":{"position":[[299,7],[391,7]]}}}],["firefox/139.0",{"_index":2123,"t":{"353":{"position":[[588,14],[799,14]]}}}],["firewal",{"_index":2139,"t":{"353":{"position":[[2152,8],[2233,8]]}}}],["first",{"_index":98,"t":{"4":{"position":[[2167,5],[3792,5]]},"179":{"position":[[1487,5]]},"185":{"position":[[577,5]]},"195":{"position":[[1682,5],[1704,5],[2432,5]]},"201":{"position":[[0,6]]},"209":{"position":[[940,5]]},"230":{"position":[[709,5]]},"234":{"position":[[4,5],[2719,5],[3121,5]]},"295":{"position":[[139,5]]},"310":{"position":[[151,5]]},"323":{"position":[[0,5]]},"329":{"position":[[88,5]]},"347":{"position":[[161,6]]},"353":{"position":[[862,5],[1437,6]]},"357":{"position":[[192,6]]},"363":{"position":[[257,5]]},"375":{"position":[[1445,5]]},"426":{"position":[[212,5]]}}}],["firstgotifyserv",{"_index":167,"t":{"4":{"position":[[4826,20]]},"20":{"position":[[426,20]]}}}],["fit",{"_index":2222,"t":{"375":{"position":[[313,3]]}}}],["fix",{"_index":1461,"t":{"199":{"position":[[816,3]]},"353":{"position":[[1291,3]]},"360":{"position":[[435,3]]},"367":{"position":[[316,3],[433,3]]}}}],["flatpak",{"_index":2068,"t":{"340":{"position":[[8,7],[24,7],[40,7]]},"345":{"position":[[97,7],[215,7],[424,7]]},"347":{"position":[[87,7],[117,7],[297,7],[475,7],[623,8],[692,7],[736,7],[781,7]]},"349":{"position":[[98,7]]},"383":{"position":[[90,7],[142,7]]}}}],["flatpak/build",{"_index":2108,"t":{"347":{"position":[[936,13]]}}}],["flatpak/flathub",{"_index":2275,"t":{"383":{"position":[[12,15]]}}}],["flatpak/nodej",{"_index":931,"t":{"87":{"position":[[1431,14]]}}}],["flatpak/repo",{"_index":2105,"t":{"347":{"position":[[835,12]]}}}],["flatpak/setup.sh",{"_index":2079,"t":{"345":{"position":[[181,17]]}}}],["flatpak/st",{"_index":2107,"t":{"347":{"position":[[891,13]]}}}],["flow",{"_index":459,"t":{"30":{"position":[[388,4]]},"195":{"position":[[4334,5],[4546,4],[5343,4]]}}}],["fm.teal",{"_index":586,"t":{"47":{"position":[[942,10]]}}}],["folder",{"_index":1233,"t":{"165":{"position":[[2266,6]]},"195":{"position":[[4732,7]]},"371":{"position":[[2526,6]]},"395":{"position":[[13,6]]}}}],["follow",{"_index":787,"t":{"73":{"position":[[603,9]]},"75":{"position":[[1268,9]]},"145":{"position":[[90,9]]},"149":{"position":[[1683,9]]},"161":{"position":[[0,6]]},"165":{"position":[[1235,9]]},"175":{"position":[[0,6]]},"195":{"position":[[1297,6],[4318,6]]},"347":{"position":[[27,6]]},"357":{"position":[[1151,6]]},"371":{"position":[[1375,9]]},"397":{"position":[[136,6],[2349,6],[3352,9]]},"399":{"position":[[943,9]]}}}],["foo",{"_index":1724,"t":{"259":{"position":[[311,3]]},"261":{"position":[[1445,5],[1564,5],[1625,5]]}}}],["foo.com",{"_index":1762,"t":{"280":{"position":[[817,10]]}}}],["foobar",{"_index":1749,"t":{"274":{"position":[[107,7]]}}}],["footerm",{"_index":1764,"t":{"282":{"position":[[276,9],[338,10]]}}}],["forc",{"_index":946,"t":{"87":{"position":[[2475,7],[2509,6]]},"95":{"position":[[1063,5]]},"347":{"position":[[988,5]]},"367":{"position":[[401,5]]}}}],["forcemediarecognitionon",{"_index":950,"t":{"87":{"position":[[2677,25],[2988,26]]}}}],["forget",{"_index":1711,"t":{"244":{"position":[[838,6]]}}}],["fork",{"_index":285,"t":{"12":{"position":[[3047,4]]}}}],["form",{"_index":297,"t":{"12":{"position":[[3448,5]]},"99":{"position":[[110,6]]},"105":{"position":[[108,6]]},"137":{"position":[[465,6]]}}}],["format",{"_index":975,"t":{"91":{"position":[[99,6],[474,6]]},"246":{"position":[[91,8]]},"312":{"position":[[165,6]]}}}],["formatplayobj(obj",{"_index":1966,"t":{"327":{"position":[[607,18]]}}}],["formatplayobjectopt",{"_index":1961,"t":{"327":{"position":[[215,24],[640,23]]}}}],["forward",{"_index":1775,"t":{"295":{"position":[[256,7],[532,7]]},"353":{"position":[[2170,11],[2338,10]]},"412":{"position":[[2204,7]]},"414":{"position":[[261,7]]}}}],["found",{"_index":105,"t":{"4":{"position":[[2351,5],[3647,5]]},"14":{"position":[[80,5]]},"73":{"position":[[462,5]]},"75":{"position":[[1146,5]]},"91":{"position":[[1100,5],[1496,5]]},"95":{"position":[[780,5]]},"99":{"position":[[446,5]]},"105":{"position":[[440,5]]},"137":{"position":[[815,5]]},"153":{"position":[[157,5]]},"157":{"position":[[1421,5]]},"199":{"position":[[767,5]]},"209":{"position":[[946,5],[1369,5]]},"226":{"position":[[22,5]]},"232":{"position":[[20,5]]},"234":{"position":[[2412,5],[2725,5],[3903,6]]},"261":{"position":[[849,5]]},"295":{"position":[[152,6]]},"325":{"position":[[94,6],[181,6]]},"375":{"position":[[272,5],[512,5]]},"377":{"position":[[1093,5]]},"395":{"position":[[291,5]]},"426":{"position":[[90,5]]}}}],["foxx",{"_index":620,"t":{"54":{"position":[[50,7]]},"56":{"position":[[2741,7]]}}}],["foxxairson",{"_index":680,"t":{"56":{"position":[[2680,15]]}}}],["foxxapikey",{"_index":693,"t":{"56":{"position":[[3276,12]]},"58":{"position":[[1670,12]]}}}],["foxxmaloja",{"_index":649,"t":{"56":{"position":[[975,15],[2707,15],[2876,15],[3111,15],[3204,13]]},"58":{"position":[[139,15],[1268,15],[1511,15],[1598,13]]}}}],["foxxmd",{"_index":474,"t":{"34":{"position":[[410,9],[721,9]]},"56":{"position":[[2562,9]]},"58":{"position":[[1117,9]]},"95":{"position":[[2255,9],[2893,9],[2965,9]]},"131":{"position":[[448,9],[759,9]]},"157":{"position":[[1112,7],[1134,10],[1287,8],[2406,9],[2954,9]]},"165":{"position":[[3497,7]]}}}],["foxxmd\",\"someotherus",{"_index":1018,"t":{"95":{"position":[[2357,27]]}}}],["foxxmd,plex_local_user,someus",{"_index":1191,"t":{"157":{"position":[[1197,31]]}}}],["foxxmd/multi",{"_index":55,"t":{"4":{"position":[[827,12]]},"87":{"position":[[1408,12]]},"230":{"position":[[1525,12]]},"267":{"position":[[780,12]]},"375":{"position":[[390,12],[1872,12],[2323,12],[2851,12]]},"377":{"position":[[670,12],[825,12],[971,12]]},"395":{"position":[[169,12]]},"406":{"position":[[562,12]]},"408":{"position":[[40,12]]}}}],["foxxpassword",{"_index":681,"t":{"56":{"position":[[2761,15]]}}}],["foxxspot",{"_index":648,"t":{"56":{"position":[[952,11]]},"58":{"position":[[116,11]]}}}],["foxxspotifyappid",{"_index":650,"t":{"56":{"position":[[1013,19],[1269,19]]},"58":{"position":[[177,19],[312,19]]}}}],["foxxspotifyappsecret",{"_index":651,"t":{"56":{"position":[[1049,23],[1396,23]]},"58":{"position":[[213,22],[348,22]]}}}],["foxxyoutub",{"_index":684,"t":{"56":{"position":[[2850,14]]},"58":{"position":[[1242,14]]}}}],["fqn",{"_index":1324,"t":{"183":{"position":[[314,4]]}}}],["frank",{"_index":1740,"t":{"261":{"position":[[1481,6],[1580,5],[1673,5]]}}}],["fred",{"_index":621,"t":{"54":{"position":[[58,5],[350,4],[477,5],[483,4],[816,4]]}}}],["fred'",{"_index":629,"t":{"54":{"position":[[558,6]]}}}],["fredapikey",{"_index":695,"t":{"56":{"position":[[3394,12]]},"58":{"position":[[1770,12]]}}}],["fredjelli",{"_index":677,"t":{"56":{"position":[[2412,12]]},"58":{"position":[[1054,12]]}}}],["fredmaloja",{"_index":658,"t":{"56":{"position":[[1477,15],[1733,15],[3322,13]]},"58":{"position":[[409,15],[580,15],[1698,13]]}}}],["fredplex",{"_index":666,"t":{"56":{"position":[[1710,11]]},"58":{"position":[[557,11]]}}}],["fredspot",{"_index":657,"t":{"56":{"position":[[1454,11]]},"58":{"position":[[386,11]]}}}],["fredsrefreshtoken",{"_index":662,"t":{"56":{"position":[[1548,20]]},"58":{"position":[[480,20]]}}}],["fredstoken",{"_index":660,"t":{"56":{"position":[[1518,13]]},"58":{"position":[[450,13]]}}}],["fredus",{"_index":670,"t":{"56":{"position":[[1836,12],[2632,12]]},"58":{"position":[[683,12],[1187,12]]}}}],["free",{"_index":1602,"t":{"230":{"position":[[765,4]]},"234":{"position":[[3392,4],[3504,4],[3732,4],[4052,4]]}}}],["friend",{"_index":2351,"t":{"412":{"position":[[882,7],[1799,7]]}}}],["friendli",{"_index":2363,"t":{"416":{"position":[[273,8]]},"418":{"position":[[194,8]]}}}],["frontend",{"_index":1786,"t":{"300":{"position":[[80,9],[245,9],[259,8]]}}}],["ft",{"_index":1728,"t":{"259":{"position":[[529,4]]},"261":{"position":[[828,3],[1476,4]]}}}],["full",{"_index":565,"t":{"45":{"position":[[52,4],[525,4]]},"52":{"position":[[126,4],[666,4]]},"87":{"position":[[527,4]]},"230":{"position":[[1400,4]]},"267":{"position":[[655,4]]},"310":{"position":[[1087,4]]},"399":{"position":[[1915,4]]}}}],["function",{"_index":835,"t":{"79":{"position":[[176,14]]},"123":{"position":[[916,14]]},"280":{"position":[[940,8]]},"310":{"position":[[411,8]]},"321":{"position":[[1990,8]]},"327":{"position":[[28,8]]},"331":{"position":[[700,9]]},"336":{"position":[[1736,8],[1987,13],[2054,9],[2156,13]]},"397":{"position":[[1462,13]]},"406":{"position":[[200,13]]},"441":{"position":[[131,14]]}}}],["funkwhal",{"_index":83,"t":{"4":{"position":[[1574,12],[3257,12]]}}}],["further",{"_index":2176,"t":{"371":{"position":[[1127,8]]}}}],["futur",{"_index":1383,"t":{"195":{"position":[[1290,6]]}}}],["fuzzydiscoveryignor",{"_index":876,"t":{"85":{"position":[[222,23],[373,23]]}}}],["g",{"_index":2248,"t":{"375":{"position":[[3502,1]]}}}],["garbag",{"_index":1455,"t":{"199":{"position":[[410,7]]}}}],["gather",{"_index":311,"t":{"14":{"position":[[337,9]]}}}],["gaurante",{"_index":1389,"t":{"195":{"position":[[1599,9]]}}}],["gave",{"_index":766,"t":{"69":{"position":[[638,4]]}}}],["gb",{"_index":1685,"t":{"239":{"position":[[1017,3]]}}}],["gecko/20100101",{"_index":2122,"t":{"353":{"position":[[573,14],[784,14]]}}}],["gener",{"_index":22,"t":{"4":{"position":[[249,9],[3989,9]]},"10":{"position":[[32,8]]},"30":{"position":[[360,9]]},"36":{"position":[[474,9]]},"47":{"position":[[1633,9]]},"65":{"position":[[488,9]]},"69":{"position":[[483,9]]},"87":{"position":[[2022,9]]},"109":{"position":[[226,7]]},"123":{"position":[[218,8]]},"133":{"position":[[110,7]]},"163":{"position":[[43,7]]},"177":{"position":[[43,7]]},"187":{"position":[[243,7]]},"195":{"position":[[2412,8]]},"211":{"position":[[815,12]]},"230":{"position":[[4,7]]},"234":{"position":[[4297,10]]},"244":{"position":[[0,10]]},"246":{"position":[[411,10]]},"310":{"position":[[3061,8]]},"318":{"position":[[355,9]]},"321":{"position":[[597,9]]},"340":{"position":[[53,10]]},"345":{"position":[[53,10],[341,9]]},"347":{"position":[[56,8],[130,9],[143,8],[310,9],[347,9],[406,9],[437,8],[488,9],[533,9],[592,9]]},"399":{"position":[[661,9]]}}}],["get",{"_index":1462,"t":{"199":{"position":[[839,4]]},"334":{"position":[[1102,7]]},"357":{"position":[[1023,7]]}}}],["get(`${this.baseurl}/now",{"_index":2024,"t":{"331":{"position":[[1959,25]]}}}],["get(`${this.baseurl}/rec",{"_index":2002,"t":{"329":{"position":[[2389,30]]},"334":{"position":[[775,30]]}}}],["getbackloggedplay",{"_index":2036,"t":{"334":{"position":[[198,18],[654,18]]}}}],["getnowplay",{"_index":1269,"t":{"169":{"position":[[94,13]]}}}],["getrecentlyplay",{"_index":2010,"t":{"331":{"position":[[710,18],[1045,18]]},"336":{"position":[[1690,17],[2196,18]]}}}],["getrecentlyplayed(opt",{"_index":2020,"t":{"331":{"position":[[1768,26]]}}}],["ghcr.io/foxxmd/multi",{"_index":2220,"t":{"375":{"position":[[195,20]]}}}],["gid",{"_index":2245,"t":{"375":{"position":[[3417,3],[3514,3]]}}}],["git",{"_index":1798,"t":{"302":{"position":[[255,3]]},"381":{"position":[[76,3]]},"406":{"position":[[501,3]]},"410":{"position":[[63,3],[111,3]]}}}],["github",{"_index":480,"t":{"36":{"position":[[176,6]]},"375":{"position":[[107,6]]},"399":{"position":[[360,6]]},"406":{"position":[[365,6]]}}}],["give",{"_index":589,"t":{"47":{"position":[[1476,5]]},"195":{"position":[[1215,5]]},"241":{"position":[[122,4]]},"261":{"position":[[351,4]]},"439":{"position":[[168,5]]}}}],["given",{"_index":763,"t":{"69":{"position":[[475,5]]},"99":{"position":[[643,5]]},"105":{"position":[[635,5]]},"137":{"position":[[944,5]]},"241":{"position":[[602,5]]},"310":{"position":[[3119,5],[3367,5]]}}}],["global",{"_index":132,"t":{"4":{"position":[[3578,6]]},"71":{"position":[[637,8]]},"209":{"position":[[14,8]]},"441":{"position":[[333,8]]}}}],["go",{"_index":850,"t":{"81":{"position":[[364,2],[620,2]]},"165":{"position":[[2984,2]]},"195":{"position":[[1854,2]]},"321":{"position":[[450,2]]},"395":{"position":[[448,2]]}}}],["goal",{"_index":536,"t":{"40":{"position":[[1362,4]]}}}],["goc",{"_index":1448,"t":{"197":{"position":[[580,9],[937,9]]}}}],["gocspx",{"_index":1409,"t":{"195":{"position":[[2708,7],[3937,7]]}}}],["good",{"_index":1701,"t":{"241":{"position":[[386,4]]},"244":{"position":[[112,4],[177,4]]},"336":{"position":[[3821,4],[3868,4]]}}}],["goodmus",{"_index":1023,"t":{"95":{"position":[[2496,14],[3113,11]]},"157":{"position":[[2554,11],[3102,11]]}}}],["goodterm",{"_index":1758,"t":{"280":{"position":[[535,10],[573,10],[635,8]]}}}],["googl",{"_index":714,"t":{"62":{"position":[[159,6]]},"87":{"position":[[155,6],[647,6],[690,6]]},"95":{"position":[[2461,8],[3076,7]]},"157":{"position":[[2517,7],[3065,7]]},"195":{"position":[[83,7],[156,6],[1778,6],[3167,6],[3779,6],[4149,6],[4819,6]]},"365":{"position":[[4,6],[456,6]]},"412":{"position":[[152,6]]}}}],["gorillaz",{"_index":2198,"t":{"371":{"position":[[2068,8]]}}}],["gotifi",{"_index":168,"t":{"4":{"position":[[4855,9]]},"20":{"position":[[455,9],[560,9],[641,7],[831,9]]},"412":{"position":[[721,8]]}}}],["gotify://192.168.0.101:8070/mytoken",{"_index":363,"t":{"20":{"position":[[1660,40]]}}}],["gotifyconfig",{"_index":347,"t":{"20":{"position":[[680,12]]}}}],["grab",{"_index":2362,"t":{"414":{"position":[[161,5]]}}}],["grace",{"_index":2352,"t":{"412":{"position":[[968,8]]}}}],["granular",{"_index":2318,"t":{"397":{"position":[[3029,8]]}}}],["greater",{"_index":996,"t":{"95":{"position":[[31,7]]}}}],["green",{"_index":2199,"t":{"371":{"position":[[2081,5]]}}}],["group",{"_index":1306,"t":{"179":{"position":[[1352,6]]},"239":{"position":[[730,5],[830,5]]},"295":{"position":[[336,5]]}}}],["guarante",{"_index":533,"t":{"40":{"position":[[1260,9],[1287,9]]},"336":{"position":[[3919,9]]}}}],["gui",{"_index":1029,"t":{"97":{"position":[[130,4]]},"103":{"position":[[124,4]]}}}],["guid",{"_index":1867,"t":{"316":{"position":[[42,5]]},"377":{"position":[[24,5],[42,6]]},"393":{"position":[[5,5],[111,5]]},"412":{"position":[[1233,5]]},"420":{"position":[[20,5]]},"430":{"position":[[38,6]]}}}],["guidanc",{"_index":771,"t":{"71":{"position":[[293,9]]}}}],["guy",{"_index":1725,"t":{"259":{"position":[[327,4]]},"295":{"position":[[202,3],[485,3],[589,3],[652,3]]}}}],["gym",{"_index":1529,"t":{"213":{"position":[[449,5],[502,4],[627,5],[680,4],[1162,3],[1279,5],[1408,4],[1574,5]]},"285":{"position":[[112,4],[333,5]]}}}],["handl",{"_index":564,"t":{"45":{"position":[[4,6],[65,7],[302,6],[405,6],[538,7],[815,9],[1081,9]]},"52":{"position":[[139,7],[172,7],[397,6],[543,6],[679,6]]},"163":{"position":[[590,9],[856,9]]},"300":{"position":[[102,7]]},"336":{"position":[[85,6],[161,7],[319,6],[1772,9]]},"412":{"position":[[1004,8],[1054,8],[1603,8]]}}}],["handle(someplay",{"_index":2060,"t":{"336":{"position":[[2861,16],[3539,16]]}}}],["hang",{"_index":633,"t":{"54":{"position":[[731,7]]}}}],["happen",{"_index":2210,"t":{"371":{"position":[[3151,8]]}}}],["hard",{"_index":2165,"t":{"371":{"position":[[280,4]]}}}],["hasn't",{"_index":2371,"t":{"439":{"position":[[359,6]]}}}],["have",{"_index":1256,"t":{"165":{"position":[[3713,6]]},"336":{"position":[[1224,6],[2654,6]]},"371":{"position":[[468,6]]},"428":{"position":[[0,6]]},"441":{"position":[[716,6]]}}}],["header",{"_index":1369,"t":{"195":{"position":[[765,7]]},"318":{"position":[[378,6]]}}}],["headless",{"_index":1100,"t":{"137":{"position":[[12,8]]}}}],["health",{"_index":367,"t":{"22":{"position":[[31,6],[220,9],[589,7],[695,7]]},"318":{"position":[[224,6]]},"329":{"position":[[1842,7]]}}}],["health?name=mymaloja",{"_index":384,"t":{"22":{"position":[[426,21]]}}}],["health?type=spotifi",{"_index":383,"t":{"22":{"position":[[402,20]]}}}],["healthcheck",{"_index":331,"t":{"18":{"position":[[52,11]]},"412":{"position":[[748,11]]}}}],["heavi",{"_index":665,"t":{"56":{"position":[[1663,5]]}}}],["help",{"_index":898,"t":{"87":{"position":[[365,4],[3360,4]]},"199":{"position":[[861,4],[916,4]]},"250":{"position":[[184,4]]},"357":{"position":[[964,4]]},"371":{"position":[[1284,4]]}}}],["here",{"_index":139,"t":{"4":{"position":[[4014,4]]},"28":{"position":[[237,5]]},"87":{"position":[[1670,6]]},"195":{"position":[[1761,7]]},"207":{"position":[[707,7]]},"321":{"position":[[453,4]]},"325":{"position":[[605,4]]},"375":{"position":[[518,4]]},"377":{"position":[[1099,4]]},"395":{"position":[[297,4],[451,5]]},"399":{"position":[[157,5]]}}}],["heureist",{"_index":2178,"t":{"371":{"position":[[1306,10]]}}}],["heurist",{"_index":1504,"t":{"207":{"position":[[274,10]]},"259":{"position":[[31,10],[240,11]]}}}],["hidden",{"_index":852,"t":{"81":{"position":[[430,7]]}}}],["high",{"_index":792,"t":{"75":{"position":[[255,4]]},"217":{"position":[[98,4]]},"234":{"position":[[4326,4]]}}}],["higher",{"_index":1663,"t":{"237":{"position":[[259,6]]},"246":{"position":[[253,6]]},"302":{"position":[[38,6]]}}}],["highli",{"_index":1370,"t":{"195":{"position":[[819,6]]}}}],["hint",{"_index":202,"t":{"10":{"position":[[131,6]]},"323":{"position":[[508,5]]}}}],["histor",{"_index":2364,"t":{"418":{"position":[[43,10]]},"434":{"position":[[43,10]]}}}],["histori",{"_index":713,"t":{"62":{"position":[[143,7],[346,7],[377,7],[420,7],[456,7],[504,7],[534,7],[709,7],[821,7],[858,7],[964,7]]},"65":{"position":[[663,7],[1179,9],[1267,7]]},"81":{"position":[[189,8]]},"85":{"position":[[111,8]]},"109":{"position":[[48,7]]},"117":{"position":[[43,7]]},"129":{"position":[[55,7]]},"165":{"position":[[525,7]]},"195":{"position":[[287,7]]},"197":{"position":[[334,7]]},"331":{"position":[[121,8],[189,8]]},"336":{"position":[[368,7],[518,7]]},"371":{"position":[[19,7],[155,9],[1149,8],[1192,8],[1696,7]]}}}],["hit",{"_index":857,"t":{"81":{"position":[[579,3]]},"195":{"position":[[4384,3]]}}}],["home",{"_index":962,"t":{"89":{"position":[[344,5]]},"95":{"position":[[2470,7],[3084,5]]},"157":{"position":[[2525,5],[3073,5]]},"387":{"position":[[57,4]]}}}],["home/myuser/ms:/config",{"_index":2256,"t":{"377":{"position":[[646,23]]}}}],["home/youruser/multi",{"_index":2103,"t":{"347":{"position":[[661,20],[905,20]]}}}],["hook",{"_index":1477,"t":{"203":{"position":[[197,4],[299,5]]},"205":{"position":[[683,6],[838,4],[995,5],[1015,4],[1032,4]]},"207":{"position":[[5,4],[472,4],[530,5]]},"209":{"position":[[216,5],[305,5],[624,4],[703,4],[1923,5],[2109,4],[2188,4]]},"213":{"position":[[16,5]]},"230":{"position":[[978,4],[1197,4]]},"267":{"position":[[233,4],[452,4]]},"270":{"position":[[180,4],[259,4]]}}}],["host",{"_index":321,"t":{"16":{"position":[[121,7]]},"20":{"position":[[1615,7]]},"87":{"position":[[869,4],[1015,4]]},"149":{"position":[[364,4],[567,4],[869,4]]},"165":{"position":[[3522,5]]},"179":{"position":[[802,4],[964,4]]},"318":{"position":[[43,6],[719,6]]},"321":{"position":[[766,4],[801,6]]},"353":{"position":[[1602,4],[1980,4]]},"375":{"position":[[743,5],[842,5],[1463,4],[1633,4],[2691,4],[3110,5],[3178,4],[3279,4]]},"377":{"position":[[249,4]]},"393":{"position":[[171,4]]},"401":{"position":[[65,4]]},"412":{"position":[[2376,6]]}}}],["host'",{"_index":1149,"t":{"149":{"position":[[443,6],[1496,6]]}}}],["host/ip",{"_index":300,"t":{"12":{"position":[[3625,7]]}}}],["host:port",{"_index":411,"t":{"24":{"position":[[923,10]]}}}],["hostnam",{"_index":1106,"t":{"137":{"position":[[776,8],[874,8]]}}}],["http",{"_index":207,"t":{"10":{"position":[[244,4],[357,5]]},"56":{"position":[[230,4],[605,4]]},"103":{"position":[[192,4]]},"123":{"position":[[819,11]]},"137":{"position":[[286,4],[867,6]]},"165":{"position":[[1114,8],[1343,5],[2624,5],[2674,4],[2779,5],[3405,5]]},"179":{"position":[[39,6],[70,4],[305,4],[384,4],[503,4],[797,4],[836,4],[958,5],[973,4]]},"183":{"position":[[409,5]]},"397":{"position":[[715,5]]}}}],["http://127.0.0.1:5079/callback",{"_index":1243,"t":{"165":{"position":[[2870,30]]}}}],["http://127.0.0.1:5079/callback?code=xxxxxx",{"_index":1245,"t":{"165":{"position":[[3095,45]]}}}],["http://127.0.0.1:9078/callback",{"_index":1232,"t":{"165":{"position":[[2069,30]]}}}],["http://192.168.0.100:4110",{"_index":407,"t":{"24":{"position":[[633,25],[682,25],[1042,25],[1068,25],[1285,25]]},"26":{"position":[[388,27],[679,27]]},"109":{"position":[[807,27],[1098,27]]},"399":{"position":[[1800,25],[1854,25]]}}}],["http://192.168.0.100:4110/apis/listenbrainz",{"_index":417,"t":{"24":{"position":[[1241,43]]}}}],["http://192.168.0.100:4110/apis/listenbrainz/1",{"_index":414,"t":{"24":{"position":[[1094,45],[1311,45]]}}}],["http://192.168.0.100:42010/admin_apikey",{"_index":2325,"t":{"399":{"position":[[584,41]]}}}],["http://192.168.0.100:6969",{"_index":1883,"t":{"318":{"position":[[729,25]]},"321":{"position":[[821,25]]}}}],["http://192.168.0.100:6969/api",{"_index":1884,"t":{"318":{"position":[[782,29]]}}}],["http://192.168.0.100:80/koito",{"_index":418,"t":{"24":{"position":[[1357,29],[1387,29]]}}}],["http://192.168.0.100:80/koito/apis/listenbrainz/1",{"_index":419,"t":{"24":{"position":[[1417,49]]}}}],["http://192.168.0.100:8070",{"_index":343,"t":{"20":{"position":[[472,28],[887,28]]}}}],["http://192.168.0.100:8080",{"_index":362,"t":{"20":{"position":[[1623,28]]}}}],["http://192.168.0.100:9078",{"_index":2308,"t":{"397":{"position":[[1129,25],[4017,25]]},"401":{"position":[[381,25]]}}}],["http://192.168.0.100:9078/lastfm/callback",{"_index":2319,"t":{"397":{"position":[[3380,41],[3905,43]]},"399":{"position":[[971,41]]}}}],["http://192.168.0.100:9991",{"_index":354,"t":{"20":{"position":[[1236,28]]}}}],["http://192.168.0.101",{"_index":1352,"t":{"191":{"position":[[556,20]]}}}],["http://192.168.0.101/my/subfold",{"_index":219,"t":{"10":{"position":[[743,33]]}}}],["http://192.168.0.101/yamahaextendedcontrol/v1",{"_index":1353,"t":{"191":{"position":[[577,45]]}}}],["http://192.168.0.101:3456/jsonprc",{"_index":1056,"t":{"105":{"position":[[864,33]]}}}],["http://192.168.0.101:3456/mcws/v1",{"_index":1042,"t":{"99":{"position":[[882,34]]}}}],["http://192.168.0.101:4000/my/subfolder/lastfm/callback",{"_index":226,"t":{"10":{"position":[[1010,54]]}}}],["http://192.168.0.101:80/lastfm/callback",{"_index":222,"t":{"10":{"position":[[873,39]]}}}],["http://192.168.0.101:8096",{"_index":2274,"t":{"381":{"position":[[1069,28]]}}}],["http://192.168.0.101:9078",{"_index":2231,"t":{"375":{"position":[[1088,27]]}}}],["http://192.168.0.101:9078/callback?code=xxxxxx",{"_index":1249,"t":{"165":{"position":[[3255,50]]}}}],["http://192.168.0.101:9078/lastfm/callback",{"_index":216,"t":{"10":{"position":[[634,41]]}}}],["http://192.168.0.101:9078/my/subfolder/lastfm/callback",{"_index":220,"t":{"10":{"position":[[777,54]]}}}],["http://192.168.0.120:32400",{"_index":1202,"t":{"157":{"position":[[2360,29],[2908,29]]}}}],["http://192.168.0.140:9078",{"_index":2144,"t":{"355":{"position":[[510,26]]}}}],["http://192.168.0.140:9078/api/webscrobbl",{"_index":2138,"t":{"353":{"position":[[2103,42]]}}}],["http://192.168.0.220:9078/lastfm/callback",{"_index":2146,"t":{"355":{"position":[[639,41]]}}}],["http://jriver.mydomain.com:52199/mcws/v1",{"_index":1040,"t":{"99":{"position":[[821,41]]}}}],["http://kodi.mydomain.com:8080/jsonrpc",{"_index":1055,"t":{"105":{"position":[[807,37]]}}}],["http://localhost",{"_index":2143,"t":{"355":{"position":[[398,21]]}}}],["http://localhost:32400",{"_index":1194,"t":{"157":{"position":[[1671,22]]}}}],["http://localhost:4040/airson",{"_index":1279,"t":{"171":{"position":[[273,33],[565,33]]}}}],["http://localhost:42010",{"_index":163,"t":{"4":{"position":[[4745,25]]},"38":{"position":[[279,25],[540,25]]},"135":{"position":[[373,25],[634,25]]},"381":{"position":[[1192,25]]}}}],["http://localhost:52199/mcws/v1",{"_index":1033,"t":{"99":{"position":[[187,31],[769,31]]},"101":{"position":[[96,31]]}}}],["http://localhost:8070",{"_index":169,"t":{"4":{"position":[[4872,24]]}}}],["http://localhost:8080",{"_index":1291,"t":{"179":{"position":[[549,21]]}}}],["http://localhost:8080/jsonrpc",{"_index":1052,"t":{"105":{"position":[[185,29],[759,29]]},"107":{"position":[[94,29],[308,32],[565,32]]}}}],["http://localhost:8096",{"_index":678,"t":{"56":{"position":[[2529,24]]},"58":{"position":[[1084,24]]},"95":{"position":[[1315,21],[2222,24],[2860,24]]}}}],["http://localhost:9078",{"_index":203,"t":{"10":{"position":[[149,21]]},"195":{"position":[[3129,22]]},"426":{"position":[[99,21]]}}}],["http://localhost:9078/2.0",{"_index":1069,"t":{"113":{"position":[[97,26]]}}}],["http://localhost:9078/api/lastfm/myslug",{"_index":1070,"t":{"113":{"position":[[327,39]]}}}],["http://localhost:9078/api/webscrobbl",{"_index":1322,"t":{"183":{"position":[[167,38]]},"185":{"position":[[518,38]]},"353":{"position":[[2061,38]]}}}],["http://localhost:9078/api/webscrobbler/usera",{"_index":1338,"t":{"185":{"position":[[387,44]]}}}],["http://localhost:9078/api/webscrobbler/userb",{"_index":1339,"t":{"185":{"position":[[469,44]]}}}],["http://localhost:9078/api/ytmusic/callback?name=myytm",{"_index":1413,"t":{"195":{"position":[[2955,53]]}}}],["http://localhost:9078/callback",{"_index":123,"t":{"4":{"position":[[2725,33],[4619,32]]},"167":{"position":[[154,30],[428,33],[780,33]]}}}],["http://localhost:9078/lastfm/callback",{"_index":446,"t":{"28":{"position":[[346,37]]},"30":{"position":[[208,37],[634,39],[984,39]]},"56":{"position":[[3642,39]]},"58":{"position":[[2008,39]]},"119":{"position":[[474,39],[824,39]]},"355":{"position":[[598,37]]}}}],["http://localhost:9991",{"_index":180,"t":{"4":{"position":[[5040,24]]}}}],["http://maloja:port",{"_index":2235,"t":{"375":{"position":[[1404,19]]}}}],["http://my.custom.domain/api/ytmusic/callback?name=myytm",{"_index":1422,"t":{"195":{"position":[[3978,57]]}}}],["http://my.domain.loc",{"_index":217,"t":{"10":{"position":[[676,22]]}}}],["http://my.domain.local:9000/lastfm/callback",{"_index":224,"t":{"10":{"position":[[934,43]]}}}],["http://my.domain.local:9078/lastfm/callback",{"_index":218,"t":{"10":{"position":[[699,43]]}}}],["http://mydomain.com/reverseproxy/cast",{"_index":1354,"t":{"191":{"position":[[623,37],[661,37]]}}}],["http://mydomain.com:80/kodireverse/jsonrpc",{"_index":1058,"t":{"105":{"position":[[934,42]]}}}],["http://myicecast.com/radio",{"_index":989,"t":{"91":{"position":[[1356,29]]},"93":{"position":[[180,28],[377,28]]}}}],["http://mymalojaserverip/admin_apikey",{"_index":489,"t":{"36":{"position":[[400,38]]}}}],["http://mymultiscrobblerip:9078/1",{"_index":1083,"t":{"123":{"position":[[242,33],[459,33]]},"397":{"position":[[2084,33]]}}}],["http://mymultiscrobblerip:9078/1/submit",{"_index":1082,"t":{"123":{"position":[[102,39]]}}}],["http://mymultiscrobblerip:9078/api/listenbrainz/myslug",{"_index":1088,"t":{"123":{"position":[[642,54]]}}}],["http://some_ip:7000/subfolder/api",{"_index":1834,"t":{"310":{"position":[[1101,33]]}}}],["http://your_jellyin_url/web/index.html#!/apikeys.html",{"_index":999,"t":{"95":{"position":[[163,55]]}}}],["http://yourmultiscrobblerdomain/health",{"_index":368,"t":{"22":{"position":[[77,38]]}}}],["https://192.168.0.101",{"_index":227,"t":{"10":{"position":[[1065,21]]}}}],["https://192.168.0.101:443/lastfm/callback",{"_index":228,"t":{"10":{"position":[[1087,41]]}}}],["https://airsonic.foxx.exampl",{"_index":682,"t":{"56":{"position":[[2784,31]]}}}],["https://api.listenbrainz.org",{"_index":471,"t":{"34":{"position":[[166,29],[427,30],[738,30]]},"131":{"position":[[465,30],[776,30]]}}}],["https://bsky.app/settings/app",{"_index":599,"t":{"49":{"position":[[77,29]]}}}],["https://developer.spotify.com",{"_index":1215,"t":{"165":{"position":[[599,29]]}}}],["https://echo.multi",{"_index":1259,"t":{"165":{"position":[[3926,18]]}}}],["https://en.wikipedia.org/wiki/list_of_tz_database_time_zon",{"_index":2226,"t":{"375":{"position":[[523,60]]},"377":{"position":[[1104,60]]},"395":{"position":[[302,60]]}}}],["https://github.com/foxxmd/multi",{"_index":1799,"t":{"302":{"position":[[265,31]]},"381":{"position":[[86,31]]}}}],["https://github.com/patrickkfkan/volumio",{"_index":1366,"t":{"195":{"position":[[602,39]]}}}],["https://koito.mydomain.com",{"_index":415,"t":{"24":{"position":[[1140,26],[1167,26]]}}}],["https://koito.mydomain.com/apis/listenbrainz/1",{"_index":416,"t":{"24":{"position":[[1194,46]]}}}],["https://maloja.foxx.exampl",{"_index":692,"t":{"56":{"position":[[3235,30]]},"58":{"position":[[1629,30]]}}}],["https://maloja.fred.exampl",{"_index":694,"t":{"56":{"position":[[3353,30]]},"58":{"position":[[1729,30]]}}}],["https://maloja.mary.exampl",{"_index":696,"t":{"56":{"position":[[3471,30]]},"58":{"position":[[1829,30]]}}}],["https://musicbrainz.org",{"_index":1589,"t":{"224":{"position":[[720,24],[945,23]]}}}],["https://my.mb.mirror.domain.com",{"_index":1590,"t":{"224":{"position":[[1037,33]]}}}],["https://scrobbler.mydomain.com",{"_index":1227,"t":{"165":{"position":[[1603,30]]}}}],["https://scrobbler.mydomain.com/callback",{"_index":1229,"t":{"165":{"position":[[1739,39]]}}}],["https://www.google.com/devic",{"_index":1435,"t":{"195":{"position":[[5185,29]]}}}],["https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copi",{"_index":1368,"t":{"195":{"position":[[682,67]]}}}],["icecast",{"_index":717,"t":{"62":{"position":[[208,7]]},"91":{"position":[[24,7],[145,7],[443,7],[633,7],[774,7],[1109,7],[1258,7],[1505,7]]},"93":{"position":[[82,7],[417,9]]},"412":{"position":[[177,7]]}}}],["icecast_url",{"_index":993,"t":{"93":{"position":[[66,11]]}}}],["ici",{"_index":990,"t":{"91":{"position":[[1397,7],[1611,3]]}}}],["icon",{"_index":395,"t":{"24":{"position":[[242,5],[330,4]]},"81":{"position":[[417,4]]},"399":{"position":[[1413,5],[1501,4]]}}}],["id",{"_index":458,"t":{"30":{"position":[[348,3]]},"165":{"position":[[4142,3]]},"195":{"position":[[2184,3],[2495,2],[2914,3]]},"197":{"position":[[152,2]]},"312":{"position":[[422,3],[456,2]]},"355":{"position":[[18,2]]},"375":{"position":[[3478,2],[3498,2]]}}}],["id/secret",{"_index":1214,"t":{"165":{"position":[[579,10],[3732,9],[4078,9]]},"397":{"position":[[591,9]]}}}],["id3",{"_index":1299,"t":{"179":{"position":[[1048,3]]},"199":{"position":[[348,3]]}}}],["ideal",{"_index":1964,"t":{"327":{"position":[[420,7]]},"371":{"position":[[3295,8]]}}}],["identifi",{"_index":603,"t":{"52":{"position":[[12,10],[412,10],[894,13],[1145,13]]},"157":{"position":[[300,10]]},"177":{"position":[[538,13],[795,13]]},"207":{"position":[[579,8]]},"224":{"position":[[58,8]]},"230":{"position":[[184,8]]},"321":{"position":[[1110,8],[1653,10],[1685,11]]}}}],["idl",{"_index":1438,"t":{"195":{"position":[[5421,4]]}}}],["ie",{"_index":39,"t":{"4":{"position":[[615,2],[1529,2],[1650,2],[3212,2],[3333,2]]},"22":{"position":[[399,2]]},"95":{"position":[[1312,2]]},"157":{"position":[[1668,2]]},"195":{"position":[[3558,2]]},"199":{"position":[[418,2],[525,2]]},"295":{"position":[[446,2],[546,2],[611,2]]},"310":{"position":[[2319,2],[2664,2]]},"331":{"position":[[2164,2]]},"336":{"position":[[485,2]]},"375":{"position":[[62,3]]},"393":{"position":[[541,3]]},"406":{"position":[[559,2]]},"441":{"position":[[603,2]]}}}],["if/when",{"_index":738,"t":{"65":{"position":[[584,7]]},"215":{"position":[[47,7]]}}}],["ignor",{"_index":1118,"t":{"139":{"position":[[299,8]]},"371":{"position":[[876,8]]},"393":{"position":[[575,6]]}}}],["ignoreinvalidcert",{"_index":1203,"t":{"157":{"position":[[2667,20],[3215,20]]}}}],["imag",{"_index":54,"t":{"4":{"position":[[820,6]]},"12":{"position":[[3268,6]]},"165":{"position":[[2638,6]]},"230":{"position":[[1518,6]]},"267":{"position":[[773,6]]},"375":{"position":[[15,6],[90,6],[383,6]]},"377":{"position":[[964,6]]},"395":{"position":[[162,6]]},"406":{"position":[[520,5]]},"408":{"position":[[29,5]]},"412":{"position":[[1179,6]]}}}],["immedi",{"_index":1485,"t":{"205":{"position":[[43,11],[281,11]]},"336":{"position":[[1014,11]]},"347":{"position":[[1076,12]]},"357":{"position":[[1085,11]]}}}],["implement",{"_index":728,"t":{"65":{"position":[[12,11]]},"169":{"position":[[49,10],[488,15]]},"310":{"position":[[1002,9],[1735,9],[2983,9]]},"316":{"position":[[149,11]]},"321":{"position":[[1977,10],[2054,10],[2081,10]]},"329":{"position":[[13,9],[97,9],[1431,9],[2080,9]]},"331":{"position":[[214,10],[569,11],[688,9],[3043,11]]},"334":{"position":[[188,9],[923,10]]},"336":{"position":[[1399,9],[1677,12],[1717,9],[1959,10],[2601,14]]},"365":{"position":[[244,15]]}}}],["import",{"_index":232,"t":{"12":{"position":[[50,9]]},"95":{"position":[[514,9]]},"321":{"position":[[227,6],[274,6],[1278,6],[1370,6]]},"323":{"position":[[164,6],[259,6],[305,6]]},"325":{"position":[[301,6]]},"327":{"position":[[179,6],[206,6],[285,6]]},"329":{"position":[[323,6],[1509,6],[1543,6],[2147,6],[2181,6]]},"331":{"position":[[1536,6],[1570,6]]},"334":{"position":[[332,6],[366,6]]},"336":{"position":[[824,6]]}}}],["importantli",{"_index":1735,"t":{"261":{"position":[[874,12]]},"318":{"position":[[165,11]]}}}],["imposs",{"_index":2161,"t":{"365":{"position":[[606,10]]}}}],["improv",{"_index":2177,"t":{"371":{"position":[[1289,7]]}}}],["incentiv",{"_index":1558,"t":{"217":{"position":[[917,12]]},"219":{"position":[[314,12]]}}}],["includ",{"_index":192,"t":{"6":{"position":[[245,8]]},"24":{"position":[[871,7]]},"30":{"position":[[282,7]]},"40":{"position":[[778,8]]},"45":{"position":[[73,9],[323,7]]},"47":{"position":[[860,8]]},"52":{"position":[[147,9],[461,7]]},"85":{"position":[[203,7]]},"87":{"position":[[307,7],[3091,7],[3316,7]]},"91":{"position":[[196,7],[1194,7],[1461,7]]},"109":{"position":[[340,7]]},"133":{"position":[[224,7]]},"163":{"position":[[157,7]]},"177":{"position":[[157,7]]},"179":{"position":[[2284,7]]},"195":{"position":[[3652,7]]},"230":{"position":[[154,7]]},"239":{"position":[[1235,8],[1701,8]]},"246":{"position":[[308,7]]},"250":{"position":[[311,7]]},"265":{"position":[[405,7]]},"278":{"position":[[735,7]]},"304":{"position":[[79,8]]},"365":{"position":[[493,7]]},"371":{"position":[[2692,9],[3268,9]]},"385":{"position":[[81,9]]},"406":{"position":[[240,7]]}}}],["incognito/priv",{"_index":1371,"t":{"195":{"position":[[864,17]]},"357":{"position":[[1050,17]]}}}],["incom",{"_index":2044,"t":{"336":{"position":[[107,8]]}}}],["inconsist",{"_index":1361,"t":{"195":{"position":[[311,12]]},"371":{"position":[[252,12],[383,13],[660,12],[855,12]]}}}],["incorrectli",{"_index":948,"t":{"87":{"position":[[2610,11]]},"179":{"position":[[1975,11]]},"199":{"position":[[489,11]]},"367":{"position":[[51,11]]}}}],["independ",{"_index":517,"t":{"40":{"position":[[593,12]]},"47":{"position":[[675,12]]},"412":{"position":[[1324,11]]}}}],["index.j",{"_index":1891,"t":{"321":{"position":[[327,13]]}}}],["indi",{"_index":1563,"t":{"217":{"position":[[1039,6]]},"219":{"position":[[436,6]]}}}],["indic",{"_index":780,"t":{"73":{"position":[[317,8]]},"334":{"position":[[248,10]]},"336":{"position":[[598,8]]}}}],["individu",{"_index":641,"t":{"56":{"position":[[162,10],[326,10],[514,10],[701,10],[889,10]]},"213":{"position":[[311,10],[1309,10]]},"217":{"position":[[1280,11],[1313,10]]},"221":{"position":[[184,11],[217,10]]},"230":{"position":[[110,10],[1088,10]]},"239":{"position":[[69,11]]},"250":{"position":[[499,10]]},"267":{"position":[[79,10],[343,10]]},"276":{"position":[[148,10],[350,10]]},"278":{"position":[[76,10]]},"441":{"position":[[108,10],[957,12]]}}}],["info",{"_index":173,"t":{"4":{"position":[[4939,7],[5163,7]]},"20":{"position":[[771,4],[960,7],[1124,4],[1358,7]]},"75":{"position":[[989,4]]},"79":{"position":[[225,4]]},"141":{"position":[[64,4]]},"306":{"position":[[0,4]]},"310":{"position":[[997,4],[1730,4],[2978,4]]},"312":{"position":[[577,4]]},"329":{"position":[[1867,4],[1936,4]]},"331":{"position":[[1399,4]]},"334":{"position":[[903,4]]},"336":{"position":[[2415,4]]},"347":{"position":[[1000,4]]},"353":{"position":[[380,4],[635,4]]},"375":{"position":[[3116,4]]},"399":{"position":[[1885,4]]}}}],["inform",{"_index":542,"t":{"40":{"position":[[1439,11]]},"60":{"position":[[40,11]]},"81":{"position":[[65,12]]},"85":{"position":[[671,11]]},"87":{"position":[[319,11],[3239,11]]},"91":{"position":[[127,11],[348,11]]},"165":{"position":[[4109,11]]},"169":{"position":[[546,11]]},"179":{"position":[[1066,11],[1142,11],[1258,11],[1322,11],[1928,11],[2003,11]]},"217":{"position":[[177,11]]},"239":{"position":[[1648,11]]},"312":{"position":[[78,11]]},"318":{"position":[[531,11],[947,11]]},"331":{"position":[[506,11],[1363,11]]},"334":{"position":[[122,11]]},"353":{"position":[[237,11],[1583,12],[2497,11]]},"365":{"position":[[334,11]]},"383":{"position":[[124,11]]},"399":{"position":[[1054,11]]},"403":{"position":[[466,11]]},"414":{"position":[[172,11]]},"416":{"position":[[40,11]]},"418":{"position":[[54,11]]},"434":{"position":[[54,11]]}}}],["ingest",{"_index":2056,"t":{"336":{"position":[[2628,6]]}}}],["ingress",{"_index":317,"t":{"16":{"position":[[40,7],[89,7],[194,7]]},"62":{"position":[[412,7],[496,7],[850,7]]},"65":{"position":[[175,7]]},"300":{"position":[[205,7]]},"310":{"position":[[1664,7]]},"318":{"position":[[979,7]]},"336":{"position":[[1155,7]]},"353":{"position":[[18,7],[399,9],[424,9],[654,9],[679,9]]}}}],["inherit",{"_index":1810,"t":{"306":{"position":[[290,10]]},"310":{"position":[[11,7]]},"321":{"position":[[1908,10]]},"331":{"position":[[624,8]]}}}],["initi",{"_index":817,"t":{"75":{"position":[[1911,8]]},"91":{"position":[[700,8]]},"209":{"position":[[360,9]]},"310":{"position":[[131,11],[2084,14]]},"410":{"position":[[37,7]]}}}],["initiali",{"_index":2348,"t":{"408":{"position":[[234,8]]}}}],["innaccuraci",{"_index":1630,"t":{"234":{"position":[[321,13]]}}}],["input",{"_index":1350,"t":{"191":{"position":[[70,7]]}}}],["insecur",{"_index":1162,"t":{"149":{"position":[[1318,9]]},"165":{"position":[[1088,8]]}}}],["insensit",{"_index":1119,"t":{"139":{"position":[[329,12]]},"141":{"position":[[332,12]]}}}],["insid",{"_index":1752,"t":{"278":{"position":[[69,6]]},"331":{"position":[[1038,6]]},"375":{"position":[[1305,6]]}}}],["instal",{"_index":60,"t":{"4":{"position":[[1013,12],[1277,12],[1360,7],[2092,13],[2937,12],[3044,7],[3720,13]]},"38":{"position":[[114,12]]},"99":{"position":[[510,12]]},"105":{"position":[[502,12]]},"149":{"position":[[517,13]]},"183":{"position":[[6,10]]},"302":{"position":[[48,9],[155,9],[220,7],[416,7]]},"304":{"position":[[209,9],[391,7]]},"340":{"position":[[0,7],[16,7]]},"347":{"position":[[1014,7],[1066,9]]},"349":{"position":[[16,7]]},"375":{"position":[[2580,10]]},"379":{"position":[[6,12]]},"381":{"position":[[41,7],[205,7]]},"383":{"position":[[28,8]]},"387":{"position":[[406,9]]},"397":{"position":[[2136,13],[2184,13]]},"403":{"position":[[50,7],[73,12]]},"410":{"position":[[45,12]]},"412":{"position":[[1158,7]]},"422":{"position":[[8,12]]}}}],["instanc",{"_index":296,"t":{"12":{"position":[[3424,8]]},"24":{"position":[[607,9]]},"32":{"position":[[320,8]]},"56":{"position":[[1371,8]]},"95":{"position":[[437,8]]},"129":{"position":[[419,9]]},"157":{"position":[[84,9]]},"165":{"position":[[2536,9],[3221,8]]},"276":{"position":[[159,9]]},"280":{"position":[[494,9]]},"318":{"position":[[692,8]]},"353":{"position":[[1232,8]]},"371":{"position":[[984,9]]},"397":{"position":[[2582,9]]},"399":{"position":[[1774,9]]}}}],["instead",{"_index":983,"t":{"91":{"position":[[906,7]]},"99":{"position":[[597,8]]},"105":{"position":[[589,8]]},"141":{"position":[[86,7],[526,7]]},"165":{"position":[[1897,7]]},"169":{"position":[[441,7]]},"205":{"position":[[1227,8]]},"234":{"position":[[2060,8]]},"241":{"position":[[696,7]]},"255":{"position":[[65,7]]},"295":{"position":[[521,7]]},"329":{"position":[[1881,7]]},"336":{"position":[[1666,7]]},"353":{"position":[[1903,7]]},"397":{"position":[[3181,8]]}}}],["instruct",{"_index":910,"t":{"87":{"position":[[977,12]]},"117":{"position":[[325,12]]},"161":{"position":[[17,12]]},"165":{"position":[[856,12],[2970,13],[3014,12]]},"175":{"position":[[17,12]]},"195":{"position":[[584,12],[1313,12],[1743,12]]},"347":{"position":[[100,12]]},"357":{"position":[[1166,12]]},"375":{"position":[[778,12],[877,12]]},"397":{"position":[[170,12],[667,12],[759,12]]},"401":{"position":[[80,12]]}}}],["integr",{"_index":870,"t":{"85":{"position":[[12,12]]},"87":{"position":[[539,13]]},"137":{"position":[[318,11]]},"195":{"position":[[112,11]]},"363":{"position":[[214,11]]},"365":{"position":[[16,11]]}}}],["intel/amd",{"_index":2213,"t":{"375":{"position":[[40,11]]}}}],["intend",{"_index":1564,"t":{"217":{"position":[[1087,8],[1265,8]]},"221":{"position":[[169,8]]}}}],["intention",{"_index":887,"t":{"85":{"position":[[594,13]]}}}],["interact",{"_index":1841,"t":{"310":{"position":[[1514,11],[2278,11],[2722,11]]},"312":{"position":[[676,10]]},"323":{"position":[[861,11]]}}}],["interaction/consider",{"_index":2340,"t":{"406":{"position":[[95,25]]}}}],["intercept",{"_index":1234,"t":{"165":{"position":[[2398,11]]}}}],["interest",{"_index":1561,"t":{"217":{"position":[[977,10]]},"219":{"position":[[374,10]]},"239":{"position":[[120,10]]}}}],["interfac",{"_index":1028,"t":{"97":{"position":[[81,9]]},"103":{"position":[[76,9]]},"149":{"position":[[20,9],[253,9]]},"179":{"position":[[46,9],[75,10],[210,9],[228,10],[252,9],[341,9],[359,10],[508,9],[594,9],[697,9],[2023,10]]},"306":{"position":[[205,10]]},"308":{"position":[[102,10],[156,9]]},"312":{"position":[[534,10]]},"318":{"position":[[117,9]]},"321":{"position":[[28,9],[465,9],[877,9],[975,9],[1164,9],[1195,10],[1967,9]]},"327":{"position":[[441,9],[542,10]]},"353":{"position":[[2027,9]]},"355":{"position":[[186,9],[204,9],[488,9]]},"412":{"position":[[914,9]]}}}],["intern",{"_index":374,"t":{"22":{"position":[[165,8]]},"165":{"position":[[1175,8]]},"217":{"position":[[1050,13]]},"219":{"position":[[447,13]]},"323":{"position":[[662,9],[747,9]]},"325":{"position":[[1408,9]]},"336":{"position":[[188,11]]},"375":{"position":[[1337,8]]},"397":{"position":[[1442,8]]}}}],["internalconfig",{"_index":1921,"t":{"323":{"position":[[314,15],[672,15]]}}}],["internet",{"_index":1329,"t":{"183":{"position":[[584,9]]}}}],["interpret",{"_index":504,"t":{"40":{"position":[[266,9]]},"47":{"position":[[348,9]]}}}],["interv",{"_index":124,"t":{"4":{"position":[[2759,11]]},"56":{"position":[[1569,11],[1618,8]]},"58":{"position":[[501,11]]},"167":{"position":[[462,11],[814,11]]}}}],["introduc",{"_index":2342,"t":{"406":{"position":[[181,9]]}}}],["intruct",{"_index":475,"t":{"36":{"position":[[70,11]]},"399":{"position":[[254,11]]}}}],["invalid",{"_index":1373,"t":{"195":{"position":[[925,11],[1256,12]]},"357":{"position":[[159,11],[811,10],[1008,11]]}}}],["invok",{"_index":1824,"t":{"310":{"position":[[291,7],[1051,6],[1546,7],[1786,6],[3033,6]]}}}],["involv",{"_index":1257,"t":{"165":{"position":[[3772,8]]}}}],["io.github.foxxmd.multiscrobbl",{"_index":2110,"t":{"349":{"position":[[113,31]]}}}],["io.github.foxxmd.multiscrobbler.yml",{"_index":2075,"t":{"342":{"position":[[68,35]]},"347":{"position":[[950,35]]}}}],["ip",{"_index":423,"t":{"24":{"position":[[1590,2]]},"157":{"position":[[362,2]]},"165":{"position":[[1184,3]]},"353":{"position":[[1827,2]]},"375":{"position":[[2681,2],[2718,2]]},"377":{"position":[[189,2]]},"393":{"position":[[197,2]]},"399":{"position":[[2298,2]]}}}],["ipv4/v6",{"_index":1135,"t":{"145":{"position":[[167,7]]}}}],["isn't",{"_index":530,"t":{"40":{"position":[[1169,5]]},"47":{"position":[[1243,5]]},"217":{"position":[[884,5]]},"219":{"position":[[281,5]]}}}],["iso2",{"_index":1684,"t":{"239":{"position":[[978,4]]}}}],["iso8601",{"_index":1971,"t":{"327":{"position":[[888,7]]}}}],["issu",{"_index":3,"t":{"2":{"position":[[34,6]]},"14":{"position":[[211,5]]},"22":{"position":[[530,6]]},"85":{"position":[[143,5]]},"87":{"position":[[270,5],[347,5],[381,6],[3198,7],[3379,6]]},"169":{"position":[[156,6]]},"179":{"position":[[2242,5]]},"195":{"position":[[482,6]]},"250":{"position":[[202,6],[279,5],[338,5]]},"353":{"position":[[1317,5],[1407,6]]},"365":{"position":[[408,6],[633,6]]},"369":{"position":[[20,5]]},"371":{"position":[[1224,7],[1269,6],[1354,6],[2676,5],[3253,5],[3339,6]]},"381":{"position":[[675,5]]},"428":{"position":[[7,6],[82,6]]}}}],["it'",{"_index":509,"t":{"40":{"position":[[400,5]]},"47":{"position":[[482,5]]},"69":{"position":[[657,4]]},"81":{"position":[[425,4]]},"165":{"position":[[3631,4]]},"205":{"position":[[726,4]]},"211":{"position":[[982,4]]},"234":{"position":[[374,4]]},"241":{"position":[[748,4]]}}}],["itself",{"_index":133,"t":{"4":{"position":[[3600,7]]},"209":{"position":[[390,6]]}}}],["i’m",{"_index":2184,"t":{"371":{"position":[[1802,3]]}}}],["javascript",{"_index":1400,"t":{"195":{"position":[[2271,10]]},"412":{"position":[[2,10]]}}}],["javascript'",{"_index":1763,"t":{"280":{"position":[[917,12]]}}}],["jellyfin",{"_index":636,"t":{"54":{"position":[[838,8]]},"56":{"position":[[2392,11]]},"60":{"position":[[136,9]]},"62":{"position":[[240,8]]},"95":{"position":[[14,8],[84,8],[428,8],[482,8],[789,8],[1033,8],[1296,8],[1663,9],[1753,9],[3311,10]]},"230":{"position":[[1448,8],[1898,8],[1995,8]]},"257":{"position":[[514,8]]},"267":{"position":[[703,8],[1021,8],[1118,8]]},"336":{"position":[[1207,9],[1603,9]]},"377":{"position":[[94,8]]},"381":{"position":[[941,11]]},"393":{"position":[[317,9]]},"397":{"position":[[96,8],[147,8],[370,8],[504,8]]},"412":{"position":[[185,8]]},"416":{"position":[[188,9]]}}}],["jellyfin.json",{"_index":760,"t":{"69":{"position":[[183,13]]}}}],["jellyfin/plex",{"_index":1842,"t":{"310":{"position":[[1678,13]]},"318":{"position":[[999,13]]}}}],["jellyfin_apikey",{"_index":1010,"t":{"95":{"position":[[1393,15]]},"375":{"position":[[587,16]]}}}],["jellyfin_apikey=c9fae8756fbf481ebd9c5bb56b",{"_index":1616,"t":{"230":{"position":[[1751,42]]},"267":{"position":[[884,42]]},"397":{"position":[[384,42]]}}}],["jellyfin_apikey=c9fae8756fbf481ebd9c5bb56bd6540c",{"_index":2252,"t":{"377":{"position":[[399,50],[1167,48]]},"381":{"position":[[723,48]]}}}],["jellyfin_devices_allow",{"_index":1015,"t":{"95":{"position":[[1788,22]]}}}],["jellyfin_devices_block",{"_index":1016,"t":{"95":{"position":[[1863,22]]}}}],["jellyfin_libraries_allow",{"_index":1003,"t":{"95":{"position":[[855,24],[1948,24]]}}}],["jellyfin_libraries_block",{"_index":1017,"t":{"95":{"position":[[2034,24]]}}}],["jellyfin_password",{"_index":1011,"t":{"95":{"position":[[1491,17]]}}}],["jellyfin_transforms=musicbrainz",{"_index":1618,"t":{"230":{"position":[[1819,31]]}}}],["jellyfin_transforms=n",{"_index":1743,"t":{"267":{"position":[[952,26]]}}}],["jellyfin_url",{"_index":1008,"t":{"95":{"position":[[1264,12]]},"375":{"position":[[607,13]]}}}],["jellyfin_url=192.168.0.101:8096",{"_index":2253,"t":{"377":{"position":[[453,33],[1218,31]]},"381":{"position":[[772,31]]}}}],["jellyfin_url=192.168.0.110:8096",{"_index":1615,"t":{"230":{"position":[[1717,31]]},"267":{"position":[[850,31]]},"397":{"position":[[329,31]]}}}],["jellyfin_us",{"_index":1009,"t":{"95":{"position":[[1337,13]]},"375":{"position":[[624,14]]}}}],["jellyfin_user=myus",{"_index":1617,"t":{"230":{"position":[[1796,20]]},"267":{"position":[[929,20]]},"377":{"position":[[490,22],[1252,20]]},"381":{"position":[[804,20]]},"397":{"position":[[464,20]]}}}],["jellyfin_users_allow",{"_index":1000,"t":{"95":{"position":[[652,21],[1599,20]]}}}],["jellyfin_users_block",{"_index":1013,"t":{"95":{"position":[[1689,20]]}}}],["join",{"_index":1644,"t":{"234":{"position":[[1909,8]]}}}],["joiner",{"_index":1727,"t":{"259":{"position":[[514,6],[591,6]]},"274":{"position":[[73,7]]}}}],["journey",{"_index":1466,"t":{"201":{"position":[[100,7]]}}}],["jq0t1mbbkl",{"_index":400,"t":{"24":{"position":[[400,10]]},"399":{"position":[[1571,10]]}}}],["jriver",{"_index":718,"t":{"62":{"position":[[273,6]]},"97":{"position":[[49,6],[123,6]]},"99":{"position":[[27,7],[388,6],[730,7]]},"101":{"position":[[143,6],[687,8]]},"412":{"position":[[194,6]]}}}],["jriver.mydomain.com",{"_index":1039,"t":{"99":{"position":[[801,19]]}}}],["jriver_password",{"_index":1046,"t":{"101":{"position":[[223,15]]}}}],["jriver_url",{"_index":1044,"t":{"101":{"position":[[81,10]]}}}],["jriver_usernam",{"_index":1045,"t":{"101":{"position":[[157,15]]}}}],["json",{"_index":13,"t":{"4":{"position":[[95,4],[127,4],[2074,6]]},"22":{"position":[[478,4]]},"40":{"position":[[411,6],[752,4]]},"47":{"position":[[493,6],[834,4]]},"329":{"position":[[2539,4]]},"360":{"position":[[291,4]]},"412":{"position":[[1153,4]]}}}],["jsonlint",{"_index":2156,"t":{"360":{"position":[[388,8]]}}}],["jtrnwqwd__xmjf8st3jc",{"_index":667,"t":{"56":{"position":[[1768,23],[1938,23],[2295,23]]},"58":{"position":[[615,23],[769,23],[929,23]]}}}],["keep",{"_index":443,"t":{"28":{"position":[[308,4]]},"65":{"position":[[905,5]]},"195":{"position":[[1567,4]]},"205":{"position":[[522,4]]},"234":{"position":[[4315,4]]},"274":{"position":[[127,4]]},"331":{"position":[[298,4]]},"336":{"position":[[2235,5]]},"357":{"position":[[721,4]]},"412":{"position":[[1894,4],[2278,4]]}}}],["key",{"_index":364,"t":{"20":{"position":[[1724,7]]},"24":{"position":[[171,3],[255,4],[273,3],[311,3],[355,3]]},"26":{"position":[[102,3]]},"30":{"position":[[105,3]]},"36":{"position":[[388,4],[452,3],[484,3],[537,3]]},"38":{"position":[[150,3]]},"42":{"position":[[244,3]]},"45":{"position":[[618,3],[767,6],[1033,6]]},"95":{"position":[[53,3],[158,4],[251,3],[306,3],[376,3],[1420,3]]},"163":{"position":[[542,6],[808,6]]},"179":{"position":[[907,4]]},"230":{"position":[[1069,5]]},"267":{"position":[[324,5]]},"308":{"position":[[326,5]]},"397":{"position":[[205,4],[433,3],[3466,3]]},"399":{"position":[[572,4],[639,3],[671,3],[1342,3],[1426,4],[1444,3],[1482,3],[1526,3]]}}}],["kfa",{"_index":1433,"t":{"195":{"position":[[5125,3]]}}}],["kind",{"_index":742,"t":{"65":{"position":[[697,4]]},"183":{"position":[[719,4]]},"246":{"position":[[82,5]]}}}],["kitchensink",{"_index":100,"t":{"4":{"position":[[2199,11],[3824,11]]},"403":{"position":[[350,11]]}}}],["know",{"_index":526,"t":{"40":{"position":[[985,5]]},"45":{"position":[[292,4]]},"47":{"position":[[1063,5]]},"52":{"position":[[387,4]]},"58":{"position":[[66,5]]},"87":{"position":[[1804,4]]},"234":{"position":[[3977,4]]},"248":{"position":[[62,4]]},"323":{"position":[[524,4]]},"336":{"position":[[2986,4]]},"412":{"position":[[1555,7]]}}}],["knower",{"_index":2183,"t":{"371":{"position":[[1793,6]]}}}],["known",{"_index":520,"t":{"40":{"position":[[826,5]]},"47":{"position":[[908,5]]},"169":{"position":[[150,5]]},"276":{"position":[[203,5]]},"310":{"position":[[3185,5]]}}}],["kodi",{"_index":719,"t":{"62":{"position":[[304,4]]},"103":{"position":[[49,4],[119,4]]},"105":{"position":[[27,5],[384,4],[722,5]]},"107":{"position":[[139,4],[656,6]]},"412":{"position":[[201,4]]}}}],["kodi.mydomain.com",{"_index":1054,"t":{"105":{"position":[[789,17]]}}}],["kodi_password",{"_index":1061,"t":{"107":{"position":[[185,13]]}}}],["kodi_url",{"_index":1059,"t":{"107":{"position":[[81,8]]}}}],["kodi_usernam",{"_index":1060,"t":{"107":{"position":[[151,13]]}}}],["koito",{"_index":391,"t":{"24":{"position":[[54,5],[77,5],[100,5],[185,5],[429,5],[486,5],[535,5],[708,5],[761,5],[802,5],[898,5],[1483,5],[1546,5]]},"26":{"position":[[116,5],[150,5],[199,5],[259,6],[550,6],[718,7]]},"62":{"position":[[333,5]]},"65":{"position":[[1111,6]]},"109":{"position":[[23,5],[147,5],[170,5],[193,5],[463,5],[510,5],[612,5],[678,6],[969,6],[1137,7]]},"248":{"position":[[310,7]]},"257":{"position":[[204,7]]},"393":{"position":[[435,5]]},"399":{"position":[[178,5],[1271,5],[1356,5],[1600,5],[1653,5],[1702,5],[2191,5],[2254,5]]},"412":{"position":[[90,6],[206,5],[516,5]]},"436":{"position":[[42,5]]}}}],["koito_allowed_host",{"_index":422,"t":{"24":{"position":[[1563,19]]},"399":{"position":[[2271,19]]}}}],["koito_token",{"_index":424,"t":{"26":{"position":[[82,11]]}}}],["koito_url",{"_index":408,"t":{"24":{"position":[[662,9],[986,9]]},"26":{"position":[[165,9]]}}}],["koito_url=myurl",{"_index":2332,"t":{"399":{"position":[[2159,15]]}}}],["koito_us",{"_index":403,"t":{"24":{"position":[[459,11]]},"26":{"position":[[130,10]]}}}],["kotio_token=mytoken",{"_index":2330,"t":{"399":{"position":[[2117,19]]}}}],["kotio_user=myus",{"_index":2331,"t":{"399":{"position":[[2139,17]]}}}],["label",{"_index":1002,"t":{"95":{"position":[[818,8]]},"157":{"position":[[1454,8]]}}}],["languag",{"_index":1547,"t":{"217":{"position":[[707,10]]},"219":{"position":[[104,10]]}}}],["larg",{"_index":1565,"t":{"217":{"position":[[1107,5]]},"221":{"position":[[11,5]]},"244":{"position":[[355,5]]}}}],["largest",{"_index":1573,"t":{"217":{"position":[[1486,7]]},"221":{"position":[[390,7]]}}}],["last",{"_index":1535,"t":{"215":{"position":[[196,4]]},"371":{"position":[[1760,4]]},"408":{"position":[[186,4]]}}}],["last.fm",{"_index":436,"t":{"28":{"position":[[58,7],[83,7],[172,8],[190,7]]},"40":{"position":[[1200,7]]},"47":{"position":[[1274,7]]},"54":{"position":[[304,7]]},"62":{"position":[[362,7],[393,7]]},"65":{"position":[[1122,7]]},"111":{"position":[[97,7],[139,8],[157,7],[220,7],[246,7]]},"113":{"position":[[76,7],[148,7],[229,7]]},"117":{"position":[[26,7],[130,8],[148,7],[237,8],[255,7],[370,7]]},"119":{"position":[[76,7],[125,7],[229,7]]},"234":{"position":[[564,8],[594,7]]},"331":{"position":[[152,7]]},"336":{"position":[[296,8],[548,9]]},"363":{"position":[[28,7],[86,7],[206,7]]},"393":{"position":[[351,7]]},"397":{"position":[[128,7],[3078,7],[3235,7],[3256,7],[3335,8],[3695,7],[4077,7]]},"399":{"position":[[170,7],[926,8]]},"412":{"position":[[63,8],[212,7],[220,7],[522,7],[2153,7],[2401,7]]},"418":{"position":[[133,8]]},"426":{"position":[[267,7]]},"434":{"position":[[133,8]]},"436":{"position":[[17,7]]}}}],["last.fm'",{"_index":770,"t":{"71":{"position":[[274,9]]}}}],["last.fm/listenbrainz",{"_index":2361,"t":{"412":{"position":[[2087,21]]}}}],["lastfm",{"_index":200,"t":{"10":{"position":[[97,6],[479,6],[576,6]]},"30":{"position":[[1035,8]]},"56":{"position":[[3540,9]]},"119":{"position":[[875,8]]},"393":{"position":[[412,7]]}}}],["lastfm.json",{"_index":1480,"t":{"203":{"position":[[367,11]]},"205":{"position":[[1295,11]]},"282":{"position":[[62,11]]},"397":{"position":[[3525,11]]}}}],["lastfm/callback",{"_index":454,"t":{"30":{"position":[[290,15]]}}}],["lastfm_api_key",{"_index":449,"t":{"30":{"position":[[82,14]]}}}],["lastfm_api_key=myapikey",{"_index":2326,"t":{"399":{"position":[[1211,23]]}}}],["lastfm_redirect_uri",{"_index":453,"t":{"30":{"position":[[185,19]]}}}],["lastfm_secret",{"_index":450,"t":{"30":{"position":[[131,13]]}}}],["lastfm_secret=myapisecret",{"_index":2327,"t":{"399":{"position":[[1237,25]]}}}],["lastfm_sess",{"_index":456,"t":{"30":{"position":[[322,14]]}}}],["later",{"_index":1490,"t":{"205":{"position":[[629,5],[855,5]]},"397":{"position":[[1067,6],[3955,6]]}}}],["latest",{"_index":2349,"t":{"410":{"position":[[96,6]]}}}],["launch",{"_index":1805,"t":{"304":{"position":[[98,6]]}}}],["lead",{"_index":1649,"t":{"234":{"position":[[3919,4]]}}}],["learn",{"_index":1204,"t":{"159":{"position":[[264,5]]},"173":{"position":[[343,5]]},"403":{"position":[[121,5],[294,5]]}}}],["leav",{"_index":1399,"t":{"195":{"position":[[2251,5],[2387,5]]}}}],["left",{"_index":394,"t":{"24":{"position":[[237,4]]},"179":{"position":[[136,4]]},"399":{"position":[[1408,4]]}}}],["length",{"_index":775,"t":{"71":{"position":[[595,6]]},"75":{"position":[[62,6]]},"91":{"position":[[804,7]]},"165":{"position":[[258,6]]},"191":{"position":[[140,7]]},"211":{"position":[[570,7]]}}}],["less",{"_index":900,"t":{"87":{"position":[[489,4]]},"331":{"position":[[1434,4]]}}}],["let'",{"_index":1464,"t":{"201":{"position":[[7,5]]}}}],["level",{"_index":329,"t":{"16":{"position":[[351,5]]},"20":{"position":[[261,5]]},"209":{"position":[[79,5]]},"244":{"position":[[227,5]]}}}],["lfm",{"_index":1072,"t":{"115":{"position":[[108,3],[278,3]]}}}],["lfm/lz",{"_index":2239,"t":{"375":{"position":[[2182,6]]}}}],["lfm_slug",{"_index":1074,"t":{"115":{"position":[[219,8]]}}}],["lfmendpoint_en",{"_index":1071,"t":{"115":{"position":[[82,18]]}}}],["librari",{"_index":631,"t":{"54":{"position":[[631,7],[670,7],[769,7]]},"95":{"position":[[798,9],[2000,9],[2086,9]]},"97":{"position":[[207,10]]},"157":{"position":[[1346,9],[1435,9],[2117,9],[2199,9]]},"195":{"position":[[1476,7]]},"357":{"position":[[583,7]]},"371":{"position":[[2997,7]]},"397":{"position":[[2967,7]]}}}],["librariesallow",{"_index":673,"t":{"56":{"position":[[2114,17],[2349,17]]},"58":{"position":[[851,17],[983,17]]},"95":{"position":[[837,14],[2478,17],[3093,17]]},"157":{"position":[[1473,14],[2534,17],[3082,17]]}}}],["librariesblock",{"_index":1024,"t":{"95":{"position":[[2511,17],[3128,17]]},"157":{"position":[[2569,17],[3117,17]]}}}],["licens",{"_index":1557,"t":{"217":{"position":[[904,9]]},"219":{"position":[[301,9]]}}}],["lifecycl",{"_index":1451,"t":{"199":{"position":[[201,10]]},"201":{"position":[[23,9]]},"203":{"position":[[220,9]]},"205":{"position":[[584,9],[642,9]]}}}],["limit",{"_index":758,"t":{"69":{"position":[[3,5]]},"87":{"position":[[1073,11]]},"195":{"position":[[893,5]]},"224":{"position":[[14,9]]},"259":{"position":[[147,7]]},"357":{"position":[[969,5]]},"363":{"position":[[10,10]]}}}],["line",{"_index":1294,"t":{"179":{"position":[[763,4],[953,4]]},"244":{"position":[[786,4]]},"367":{"position":[[164,5]]}}}],["link",{"_index":783,"t":{"73":{"position":[[433,4]]},"75":{"position":[[1117,4]]},"195":{"position":[[5160,4],[5460,4]]},"211":{"position":[[660,6]]},"357":{"position":[[514,4]]},"426":{"position":[[406,4]]}}}],["lint",{"_index":1806,"t":{"304":{"position":[[241,7]]}}}],["linux",{"_index":911,"t":{"87":{"position":[[990,5],[1139,5]]},"149":{"position":[[70,5],[106,5]]},"353":{"position":[[549,5],[760,5]]},"375":{"position":[[737,5],[836,5],[3104,5],[3172,5]]},"377":{"position":[[304,5]]},"385":{"position":[[67,5]]},"401":{"position":[[59,5]]},"412":{"position":[[322,6]]}}}],["list",{"_index":522,"t":{"40":{"position":[[880,4]]},"47":{"position":[[958,4]]},"65":{"position":[[1326,5]]},"87":{"position":[[2238,4],[2740,4]]},"89":{"position":[[330,5],[441,4],[521,5],[624,4]]},"95":{"position":[[1639,4],[1729,4],[1830,4],[1905,4],[1992,4],[2078,4]]},"139":{"position":[[193,4]]},"141":{"position":[[231,5]]},"151":{"position":[[202,4],[279,4]]},"157":{"position":[[593,4],[1780,4],[1862,4],[1955,4],[2026,4],[2109,4],[2191,4]]},"169":{"position":[[703,4]]},"189":{"position":[[241,4],[330,4]]},"230":{"position":[[309,4]]},"259":{"position":[[232,4]]},"261":{"position":[[66,4],[182,4],[211,4],[378,4],[473,4],[519,4],[1272,5],[1311,4]]},"310":{"position":[[312,7]]},"318":{"position":[[440,5]]},"321":{"position":[[1181,4],[1671,4]]},"331":{"position":[[2515,4]]},"334":{"position":[[871,4]]},"336":{"position":[[2970,4],[4040,4]]},"371":{"position":[[165,4],[232,4],[598,4],[641,4],[750,4],[847,4],[1770,5]]},"397":{"position":[[2814,4]]},"416":{"position":[[364,4]]},"441":{"position":[[1175,4],[1266,4]]}}}],["listen",{"_index":735,"t":{"65":{"position":[[292,9],[634,9],[653,9],[715,9],[823,8],[1257,9]]},"71":{"position":[[30,9],[115,10],[143,8],[208,8],[486,8],[552,8]]},"73":{"position":[[182,9]]},"75":{"position":[[124,9],[1659,8]]},"77":{"position":[[292,9],[312,9]]},"81":{"position":[[179,9]]},"85":{"position":[[101,9]]},"91":{"position":[[573,9],[928,9]]},"123":{"position":[[142,7]]},"137":{"position":[[244,6]]},"149":{"position":[[171,9],[238,6],[1520,9]]},"191":{"position":[[190,9]]},"195":{"position":[[277,9]]},"199":{"position":[[618,6]]},"201":{"position":[[132,8],[499,6]]},"234":{"position":[[4192,6],[4487,8]]},"300":{"position":[[168,6]]},"312":{"position":[[63,6],[264,6]]},"331":{"position":[[332,9],[2702,8]]},"336":{"position":[[3405,6]]},"371":{"position":[[1001,6],[2728,9],[2836,9],[2874,9],[2934,8]]},"393":{"position":[[363,9]]},"397":{"position":[[76,9]]},"399":{"position":[[77,9]]},"412":{"position":[[39,8],[1656,6]]},"416":{"position":[[88,8]]}}}],["listen:6644,reuseaddr,fork",{"_index":1171,"t":{"149":{"position":[[1610,26]]}}}],["listenbrainz",{"_index":462,"t":{"32":{"position":[[55,12],[85,12],[181,12],[211,12],[265,12]]},"34":{"position":[[780,14]]},"40":{"position":[[1211,13]]},"47":{"position":[[1285,13]]},"54":{"position":[[956,12]]},"62":{"position":[[436,12],[472,12]]},"65":{"position":[[1097,13]]},"121":{"position":[[97,12],[144,13],[167,12],[235,12],[266,12]]},"123":{"position":[[76,12],[174,12],[539,12],[707,12],[752,12]]},"125":{"position":[[5,12]]},"129":{"position":[[23,12],[154,12],[184,12],[280,12],[310,12],[364,12]]},"131":{"position":[[76,12],[130,12],[239,12],[818,14]]},"169":{"position":[[356,12],[410,12]]},"248":{"position":[[326,13]]},"331":{"position":[[135,12]]},"336":{"position":[[282,13],[533,14]]},"353":{"position":[[115,12]]},"397":{"position":[[1357,13],[1629,12],[1657,12],[1700,12],[2384,12],[2426,12]]},"412":{"position":[[72,13],[239,12],[252,12],[530,12],[2176,12]]},"418":{"position":[[142,15]]},"434":{"position":[[142,15]]},"436":{"position":[[27,12]]}}}],["listenbrainz.baseurl",{"_index":1086,"t":{"123":{"position":[[405,20]]},"397":{"position":[[2030,20]]}}}],["listenbrainzfoxx",{"_index":690,"t":{"56":{"position":[[3080,19]]},"58":{"position":[[1480,19]]}}}],["liter",{"_index":1754,"t":{"280":{"position":[[69,8]]}}}],["live",{"_index":433,"t":{"26":{"position":[[464,4],[774,4]]},"30":{"position":[[722,4],[1092,4]]},"34":{"position":[[506,4],[843,4]]},"38":{"position":[[377,4],[658,4]]},"45":{"position":[[893,4],[1180,4]]},"52":{"position":[[1014,4],[1285,4]]},"75":{"position":[[1612,4]]},"77":{"position":[[602,4],[888,4]]},"83":{"position":[[398,4],[720,4]]},"89":{"position":[[841,4],[1108,4]]},"93":{"position":[[257,4],[475,4]]},"95":{"position":[[2728,4],[3370,4]]},"101":{"position":[[489,4],[744,4]]},"107":{"position":[[436,4],[711,4]]},"109":{"position":[[883,4],[1193,4]]},"115":{"position":[[445,4],[656,4]]},"119":{"position":[[562,4],[932,4]]},"127":{"position":[[524,4],[735,4]]},"131":{"position":[[544,4],[881,4]]},"135":{"position":[[471,4],[752,4]]},"143":{"position":[[259,4],[532,4]]},"147":{"position":[[349,4],[632,4]]},"151":{"position":[[533,4],[780,4]]},"155":{"position":[[376,4],[628,4]]},"157":{"position":[[2744,4],[3310,4]]},"163":{"position":[[668,4],[955,4]]},"167":{"position":[[525,4],[898,4]]},"171":{"position":[[432,4],[746,4]]},"177":{"position":[[658,4],[935,4]]},"181":{"position":[[301,4],[535,4]]},"189":{"position":[[524,4],[771,4]]},"193":{"position":[[281,4],[499,4]]},"197":{"position":[[670,4],[1048,4]]}}}],["live|remast",{"_index":1767,"t":{"285":{"position":[[180,15]]}}}],["load",{"_index":478,"t":{"36":{"position":[[157,10]]},"224":{"position":[[547,4]]},"399":{"position":[[341,10]]}}}],["local",{"_index":70,"t":{"4":{"position":[[1271,5],[2931,5]]},"12":{"position":[[3346,5]]},"149":{"position":[[463,5],[511,5],[780,5]]},"157":{"position":[[244,5],[259,5],[356,5],[629,5],[799,5],[1005,5],[1304,5]]},"165":{"position":[[1356,7],[2228,5]]},"183":{"position":[[627,5]]},"302":{"position":[[91,7]]},"412":{"position":[[1201,7]]}}}],["local/nod",{"_index":59,"t":{"4":{"position":[[1002,10]]}}}],["localhost",{"_index":1037,"t":{"99":{"position":[[575,9]]},"105":{"position":[[567,9]]},"137":{"position":[[885,9]]},"143":{"position":[[137,12],[390,12]]},"165":{"position":[[1161,9]]},"183":{"position":[[333,10]]},"353":{"position":[[1914,9]]},"355":{"position":[[563,9]]},"393":{"position":[[545,10],[654,10]]}}}],["localhost:6600",{"_index":1139,"t":{"147":{"position":[[93,14]]}}}],["localhost:8080",{"_index":1317,"t":{"181":{"position":[[93,14],[212,17],[429,17]]}}}],["localhost:9078",{"_index":448,"t":{"28":{"position":[[395,14]]}}}],["locat",{"_index":65,"t":{"4":{"position":[[1167,7],[1980,7],[2827,7]]},"40":{"position":[[832,8]]},"47":{"position":[[914,8]]},"165":{"position":[[2286,8]]},"191":{"position":[[434,7]]},"345":{"position":[[155,7]]},"377":{"position":[[166,7]]},"412":{"position":[[2383,9]]}}}],["lock.json",{"_index":2096,"t":{"347":{"position":[[332,9],[518,9]]}}}],["log",{"_index":201,"t":{"10":{"position":[[123,7]]},"14":{"position":[[107,3],[242,4],[347,4]]},"81":{"position":[[204,7]]},"87":{"position":[[3107,4],[3304,7],[3324,3]]},"179":{"position":[[1829,4],[2272,7],[2309,4]]},"195":{"position":[[2852,3],[5034,6],[5356,3]]},"197":{"position":[[326,3]]},"215":{"position":[[7,3],[125,4],[130,6],[220,6],[408,6]]},"250":{"position":[[148,7],[299,7],[323,4],[479,6],[659,6]]},"308":{"position":[[507,7]]},"310":{"position":[[638,3]]},"353":{"position":[[233,3],[313,4],[882,4],[1164,4],[1428,8],[1458,7],[2419,5],[2474,4]]},"360":{"position":[[39,5]]},"365":{"position":[[439,7],[501,4],[559,6]]},"367":{"position":[[105,4]]},"369":{"position":[[43,7]]},"371":{"position":[[1688,3],[2205,8],[2234,4],[2283,3],[2296,4],[2498,4],[2521,4],[3225,4],[3278,4],[3319,5]]},"401":{"position":[[596,3]]},"412":{"position":[[963,4]]},"426":{"position":[[38,5]]}}}],["logauthupdatechang",{"_index":1380,"t":{"195":{"position":[[1159,23],[2749,23],[4052,23]]}}}],["logdiff",{"_index":1381,"t":{"195":{"position":[[1189,10],[2779,10],[4082,10]]},"197":{"position":[[606,10],[963,10]]},"371":{"position":[[1491,7],[1592,10],[2427,10]]}}}],["logfilenamepattern",{"_index":1313,"t":{"179":{"position":[[1889,22]]}}}],["logfilterfailur",{"_index":146,"t":{"4":{"position":[[4141,19]]},"95":{"position":[[2652,19],[3272,19]]},"157":{"position":[[2638,19],[3186,19]]}}}],["logic",{"_index":1787,"t":{"300":{"position":[[128,6]]}}}],["login",{"_index":840,"t":{"81":{"position":[[59,5]]},"157":{"position":[[387,7]]},"165":{"position":[[590,5]]},"195":{"position":[[1769,5]]},"385":{"position":[[185,6]]},"389":{"position":[[248,5]]}}}],["logpayload",{"_index":145,"t":{"4":{"position":[[4120,13]]},"87":{"position":[[3556,13]]},"95":{"position":[[2632,13],[3252,13]]},"157":{"position":[[2618,13],[3166,13]]}}}],["logplayerst",{"_index":148,"t":{"4":{"position":[[4169,17]]}}}],["logtofil",{"_index":2202,"t":{"371":{"position":[[2334,9],[2444,12]]}}}],["long",{"_index":1468,"t":{"201":{"position":[[144,4]]},"331":{"position":[[1381,4],[1471,4],[2714,4]]}}}],["longer",{"_index":1219,"t":{"165":{"position":[[1074,6],[1207,6]]},"195":{"position":[[1386,6]]},"383":{"position":[[44,6]]}}}],["look",{"_index":606,"t":{"52":{"position":[[432,4]]},"179":{"position":[[1730,4]]},"203":{"position":[[44,5]]},"234":{"position":[[2705,5]]},"323":{"position":[[556,5]]},"334":{"position":[[886,5]]},"353":{"position":[[321,5]]},"397":{"position":[[67,4]]}}}],["lose",{"_index":2370,"t":{"439":{"position":[[338,4]]}}}],["lost",{"_index":2237,"t":{"375":{"position":[[1736,4]]}}}],["lower",{"_index":1700,"t":{"241":{"position":[[334,5]]}}}],["lua",{"_index":1289,"t":{"179":{"position":[[373,3],[380,3]]}}}],["lz",{"_index":468,"t":{"34":{"position":[[116,2],[144,2],[217,2]]},"127":{"position":[[107,2],[230,2],[358,2]]}}}],["lz_token",{"_index":467,"t":{"34":{"position":[[82,8]]}}}],["lz_url",{"_index":470,"t":{"34":{"position":[[156,6]]}}}],["lz_user",{"_index":469,"t":{"34":{"position":[[127,7]]}}}],["lze_slug",{"_index":1096,"t":{"127":{"position":[[299,8]]}}}],["lze_token",{"_index":1095,"t":{"127":{"position":[[217,9]]},"397":{"position":[[2479,9]]}}}],["lze_token=mycooltoken",{"_index":2310,"t":{"397":{"position":[[1900,21]]}}}],["lzendpoint_en",{"_index":1094,"t":{"127":{"position":[[82,17]]}}}],["machin",{"_index":906,"t":{"87":{"position":[[874,7],[1020,7]]},"99":{"position":[[538,7]]},"105":{"position":[[530,7]]},"165":{"position":[[1987,7],[2368,7],[2577,7]]},"331":{"position":[[233,7],[558,7],[968,7],[2607,7]]},"336":{"position":[[52,7],[682,7],[1576,7]]},"353":{"position":[[1788,7],[2189,7],[2389,8]]},"355":{"position":[[336,7]]},"375":{"position":[[1006,7],[2609,7],[2696,8]]},"377":{"position":[[254,7]]},"393":{"position":[[176,7],[494,7]]}}}],["made",{"_index":1497,"t":{"205":{"position":[[1258,4]]},"207":{"position":[[13,4]]},"239":{"position":[[1120,4]]},"310":{"position":[[2504,4]]}}}],["magic",{"_index":936,"t":{"87":{"position":[[1794,9]]}}}],["main",{"_index":1286,"t":{"179":{"position":[[223,4],[354,4]]},"375":{"position":[[753,4],[852,4]]}}}],["mainstream",{"_index":1543,"t":{"217":{"position":[[587,10],[944,10]]},"219":{"position":[[341,10]]}}}],["major",{"_index":919,"t":{"87":{"position":[[1133,5]]},"91":{"position":[[168,8]]},"234":{"position":[[315,5]]},"239":{"position":[[1759,8]]},"331":{"position":[[4,8]]},"406":{"position":[[140,8]]}}}],["major/minor",{"_index":2341,"t":{"406":{"position":[[152,11]]}}}],["majorli",{"_index":1820,"t":{"308":{"position":[[468,7]]}}}],["make",{"_index":238,"t":{"12":{"position":[[113,4]]},"22":{"position":[[308,4]]},"56":{"position":[[264,4],[639,4],[2213,6],[2235,4],[2449,6],[2471,4]]},"65":{"position":[[197,5]]},"81":{"position":[[116,4]]},"99":{"position":[[404,4]]},"105":{"position":[[398,4]]},"125":{"position":[[136,4]]},"137":{"position":[[762,4]]},"149":{"position":[[976,4],[1543,4]]},"157":{"position":[[25,4]]},"195":{"position":[[4370,4],[4418,4]]},"234":{"position":[[18,6]]},"310":{"position":[[1814,4],[3165,4]]},"347":{"position":[[168,4]]},"353":{"position":[[2313,4]]},"371":{"position":[[271,5]]},"397":{"position":[[1981,6],[2323,6],[2523,4],[3445,4]]}}}],["maloja",{"_index":42,"t":{"4":{"position":[[626,6],[1662,6],[3345,6],[4682,9]]},"36":{"position":[[8,6],[57,6],[511,6]]},"38":{"position":[[601,8]]},"54":{"position":[[99,6]]},"56":{"position":[[3186,9],[3304,9],[3422,9]]},"62":{"position":[[520,6]]},"133":{"position":[[28,6],[52,6],[76,6]]},"135":{"position":[[76,6],[124,6],[228,6],[695,8]]},"230":{"position":[[1459,6],[1956,6]]},"267":{"position":[[714,6],[1079,6]]},"375":{"position":[[1295,6],[1389,6]]},"377":{"position":[[110,6]]},"381":{"position":[[1145,9]]},"393":{"position":[[420,7]]},"399":{"position":[[163,6],[192,6],[241,6]]},"412":{"position":[[55,7],[276,6],[543,6]]},"418":{"position":[[125,7]]},"434":{"position":[[125,7]]},"436":{"position":[[50,6]]}}}],["maloja'",{"_index":476,"t":{"36":{"position":[[88,8]]},"399":{"position":[[272,8]]}}}],["maloja.json",{"_index":112,"t":{"4":{"position":[[2493,11]]}}}],["maloja_api_key",{"_index":493,"t":{"38":{"position":[[127,14]]},"375":{"position":[[676,15]]}}}],["maloja_api_key=1234",{"_index":58,"t":{"4":{"position":[[964,19]]},"377":{"position":[[578,21],[1349,19]]}}}],["maloja_api_key=myapikey",{"_index":1620,"t":{"230":{"position":[[2006,23]]},"267":{"position":[[1129,23]]},"399":{"position":[[871,23]]}}}],["maloja_force_password=change_m",{"_index":482,"t":{"36":{"position":[[213,31]]},"399":{"position":[[397,31]]}}}],["maloja_url",{"_index":492,"t":{"38":{"position":[[82,10]]}}}],["maloja_url=\"http://domain.tld",{"_index":2271,"t":{"381":{"position":[[825,30]]}}}],["maloja_url=http://192.168.0.100:42010",{"_index":1619,"t":{"230":{"position":[[1916,37]]},"267":{"position":[[1039,37]]},"399":{"position":[[831,37]]}}}],["maloja_url=http://domain.tld",{"_index":2255,"t":{"377":{"position":[[544,30]]}}}],["maloja_url=http://domain.tld:42010",{"_index":57,"t":{"4":{"position":[[927,34]]},"377":{"position":[[1312,34]]}}}],["maloja_url=http://maloja:42010",{"_index":2227,"t":{"375":{"position":[[642,30]]}}}],["malojadata",{"_index":483,"t":{"36":{"position":[[291,12]]},"399":{"position":[[475,12]]}}}],["malojadata/dock",{"_index":477,"t":{"36":{"position":[[125,19]]},"399":{"position":[[309,19]]}}}],["manag",{"_index":1796,"t":{"302":{"position":[[144,6]]},"385":{"position":[[30,7]]},"391":{"position":[[85,9]]},"412":{"position":[[1749,6]]}}}],["mani",{"_index":75,"t":{"4":{"position":[[1453,4],[1475,4],[3136,4],[3158,4]]},"85":{"position":[[87,4]]},"87":{"position":[[1177,4]]},"137":{"position":[[67,4]]},"199":{"position":[[159,4]]},"217":{"position":[[764,4]]},"219":{"position":[[161,4]]},"234":{"position":[[4142,4]]},"318":{"position":[[131,4]]},"371":{"position":[[2255,4]]},"412":{"position":[[122,4],[503,4],[1680,4]]}}}],["manual",{"_index":809,"t":{"75":{"position":[[1045,9],[1902,8]]},"87":{"position":[[758,8]]},"89":{"position":[[18,8]]},"91":{"position":[[1434,8]]},"165":{"position":[[2461,8]]},"347":{"position":[[47,8]]}}}],["map",{"_index":350,"t":{"20":{"position":[[791,9],[1144,9]]},"375":{"position":[[2077,3]]}}}],["mari",{"_index":622,"t":{"54":{"position":[[68,4],[287,4],[548,4]]},"56":{"position":[[2045,4]]}}}],["maryapikey",{"_index":697,"t":{"56":{"position":[[3512,12],[3589,13]]},"58":{"position":[[1870,12],[1955,13]]}}}],["marylfm",{"_index":698,"t":{"56":{"position":[[3558,10]]},"58":{"position":[[1924,10]]}}}],["marymaloja",{"_index":656,"t":{"56":{"position":[[1231,15],[1903,15],[3440,13]]},"58":{"position":[[274,15],[734,15],[1798,13]]}}}],["maryplex",{"_index":671,"t":{"56":{"position":[[1880,11]]},"58":{"position":[[711,11]]}}}],["marysecret",{"_index":699,"t":{"56":{"position":[[3613,13]]},"58":{"position":[[1979,13]]}}}],["maryspot",{"_index":655,"t":{"56":{"position":[[1208,11]]},"58":{"position":[[251,11]]}}}],["maryus",{"_index":672,"t":{"56":{"position":[[2006,13]]},"58":{"position":[[837,13]]}}}],["match",{"_index":21,"t":{"4":{"position":[[218,5]]},"40":{"position":[[1591,7],[1738,8]]},"99":{"position":[[430,7]]},"105":{"position":[[424,7]]},"137":{"position":[[801,5]]},"139":{"position":[[219,7]]},"179":{"position":[[1378,8],[1502,7]]},"185":{"position":[[64,7],[560,7]]},"199":{"position":[[96,8]]},"207":{"position":[[363,5]]},"213":{"position":[[243,5],[483,8],[565,8],[661,8],[743,8],[825,5],[902,5],[1390,7]]},"217":{"position":[[22,7],[83,5],[140,5]]},"226":{"position":[[31,8]]},"230":{"position":[[533,8],[736,7]]},"232":{"position":[[146,8],[310,7],[356,5]]},"234":{"position":[[194,8],[415,8],[472,5],[1058,7],[3800,5],[4255,7],[4336,7],[4436,6]]},"237":{"position":[[5,5],[186,8],[234,7]]},"239":{"position":[[222,5],[493,6],[1203,7],[1776,7],[1806,8],[1997,5]]},"241":{"position":[[168,7],[210,7],[291,5],[362,6],[484,8],[525,5]]},"244":{"position":[[130,8],[154,5],[295,5]]},"246":{"position":[[156,5],[267,5],[395,8],[441,5],[537,7]]},"248":{"position":[[31,5],[218,7]]},"250":{"position":[[32,7],[75,5]]},"257":{"position":[[150,5],[229,5]]},"261":{"position":[[456,7]]},"280":{"position":[[59,7],[203,7],[227,6],[366,5],[484,5],[690,7]]},"285":{"position":[[94,7]]},"406":{"position":[[536,5]]},"412":{"position":[[1940,5]]}}}],["max",{"_index":653,"t":{"56":{"position":[[1133,3]]}}}],["maxpollretri",{"_index":154,"t":{"4":{"position":[[4251,17]]},"56":{"position":[[45,17]]}}}],["maxrequestretri",{"_index":156,"t":{"4":{"position":[[4272,20],[4342,20]]},"56":{"position":[[180,20],[555,20],[1089,20]]}}}],["mayb",{"_index":1721,"t":{"257":{"position":[[462,5]]}}}],["mb_contact",{"_index":1596,"t":{"230":{"position":[[166,10]]}}}],["mb_contact=contact@mydomain.com",{"_index":1597,"t":{"230":{"position":[[211,31],[1595,31]]}}}],["mb_preset",{"_index":1598,"t":{"230":{"position":[[275,10]]}}}],["mb_presets=sensible,n",{"_index":1613,"t":{"230":{"position":[[1629,26]]}}}],["mbid",{"_index":1522,"t":{"211":{"position":[[644,7]]},"217":{"position":[[515,5]]},"228":{"position":[[435,5]]},"248":{"position":[[243,5]]},"257":{"position":[[811,5]]}}}],["mc_password",{"_index":1185,"t":{"155":{"position":[[145,11]]}}}],["mc_url",{"_index":1184,"t":{"155":{"position":[[82,6]]}}}],["mcast_url",{"_index":1355,"t":{"193":{"position":[[82,9]]}}}],["mdn",{"_index":905,"t":{"87":{"position":[[843,5],[849,4],[934,4]]}}}],["mean",{"_index":30,"t":{"4":{"position":[[408,5]]},"40":{"position":[[1112,7]]},"47":{"position":[[1186,7]]},"99":{"position":[[306,5]]},"105":{"position":[[302,5]]},"137":{"position":[[659,5]]},"195":{"position":[[96,5]]},"230":{"position":[[1215,5]]},"234":{"position":[[273,5],[3772,5]]},"261":{"position":[[1201,5]]},"267":{"position":[[470,5]]},"353":{"position":[[38,5],[1299,5]]},"360":{"position":[[281,5]]}}}],["mechan",{"_index":2050,"t":{"336":{"position":[[1241,9]]}}}],["media",{"_index":889,"t":{"87":{"position":[[8,5],[1559,5],[1617,5],[1739,5],[1818,5],[1936,5],[1988,5],[2000,5],[2032,5],[2189,5],[2451,5],[2483,5],[2525,5],[2565,5],[2632,5],[2878,5],[2968,5],[3038,5]]},"95":{"position":[[774,5],[1027,5],[1102,5]]},"97":{"position":[[155,5],[179,5]]},"99":{"position":[[479,5]]},"149":{"position":[[157,5],[297,5]]},"157":{"position":[[1415,5]]},"318":{"position":[[60,5]]},"367":{"position":[[77,5],[138,5],[216,5],[294,5],[363,5],[407,5]]}}}],["meet",{"_index":751,"t":{"65":{"position":[[988,5]]}}}],["memori",{"_index":242,"t":{"12":{"position":[[188,6],[2038,7]]}}}],["memorysourc",{"_index":1919,"t":{"323":{"position":[[266,12],[378,12],[485,12]]},"327":{"position":[[382,12]]},"329":{"position":[[403,12],[1663,12],[2301,12]]},"331":{"position":[[584,12],[949,12],[1025,12],[1730,12]]},"334":{"position":[[485,12]]},"336":{"position":[[928,12],[1584,12]]}}}],["memorysource.j",{"_index":1920,"t":{"323":{"position":[[284,20]]}}}],["mendhak/http",{"_index":1236,"t":{"165":{"position":[[2611,12],[2766,12],[3392,12]]}}}],["mention",{"_index":1053,"t":{"105":{"position":[[477,9]]},"234":{"position":[[1022,9]]}}}],["menu",{"_index":1284,"t":{"179":{"position":[[102,4]]}}}],["messag",{"_index":348,"t":{"20":{"position":[[737,7],[1090,7]]},"22":{"position":[[496,8]]},"329":{"position":[[2607,7]]}}}],["met",{"_index":816,"t":{"75":{"position":[[1815,4]]},"237":{"position":[[179,3]]}}}],["meta",{"_index":1521,"t":{"211":{"position":[[588,7],[639,4]]},"213":{"position":[[1000,4]]},"228":{"position":[[402,7]]},"248":{"position":[[255,4],[606,7]]},"257":{"position":[[257,4],[760,7]]},"327":{"position":[[935,5]]}}}],["metadata",{"_index":270,"t":{"12":{"position":[[1843,10],[2372,11],[3720,11]]},"40":{"position":[[1471,8]]},"87":{"position":[[1652,8]]},"91":{"position":[[6,8],[204,8],[263,8],[1117,8],[1266,8],[1513,8]]},"153":{"position":[[99,8],[343,8]]},"155":{"position":[[129,8]]},"179":{"position":[[2263,8]]},"217":{"position":[[534,9]]},"257":{"position":[[797,8]]},"312":{"position":[[271,8]]},"369":{"position":[[34,8]]}}}],["metdata",{"_index":537,"t":{"40":{"position":[[1394,7]]}}}],["method",{"_index":29,"t":{"4":{"position":[[401,6]]},"65":{"position":[[100,7]]},"79":{"position":[[36,7],[146,7]]},"81":{"position":[[240,7]]},"149":{"position":[[1308,6]]},"165":{"position":[[1245,7],[1869,6]]},"195":{"position":[[523,7],[4896,6]]},"321":{"position":[[2101,7]]},"345":{"position":[[140,6]]},"371":{"position":[[496,6]]},"375":{"position":[[1811,6]]},"397":{"position":[[721,6]]},"403":{"position":[[58,7]]}}}],["metric",{"_index":767,"t":{"71":{"position":[[56,7]]}}}],["million",{"_index":1545,"t":{"217":{"position":[[640,8],[658,8],[678,8]]},"219":{"position":[[37,8],[55,8],[75,8]]}}}],["mind",{"_index":1487,"t":{"205":{"position":[[530,4]]},"412":{"position":[[1550,4]]}}}],["mini",{"_index":961,"t":{"89":{"position":[[339,4]]}}}],["minim",{"_index":1507,"t":{"207":{"position":[[547,9]]},"331":{"position":[[3033,9]]}}}],["minimum",{"_index":1661,"t":{"237":{"position":[[152,7]]},"308":{"position":[[58,7]]}}}],["minut",{"_index":769,"t":{"71":{"position":[[223,7]]},"195":{"position":[[4197,7]]},"371":{"position":[[3308,7]]},"439":{"position":[[128,7]]}}}],["mirror",{"_index":1709,"t":{"244":{"position":[[311,6]]},"397":{"position":[[3098,6]]}}}],["miss",{"_index":1035,"t":{"99":{"position":[[246,7]]},"105":{"position":[[242,7]]},"137":{"position":[[599,7]]},"195":{"position":[[338,6]]},"217":{"position":[[169,7]]},"234":{"position":[[1390,7]]},"334":{"position":[[36,8]]},"403":{"position":[[452,7]]}}}],["mistak",{"_index":1751,"t":{"276":{"position":[[337,8]]}}}],["mit",{"_index":2367,"t":{"432":{"position":[[0,3]]}}}],["mix",{"_index":20,"t":{"4":{"position":[[210,3]]},"95":{"position":[[962,5]]},"165":{"position":[[195,7]]}}}],["mixcloud",{"_index":1127,"t":{"141":{"position":[[388,11]]}}}],["mkdir",{"_index":2283,"t":{"387":{"position":[[70,5]]}}}],["mobil",{"_index":2205,"t":{"371":{"position":[[2751,7]]},"412":{"position":[[1293,6]]}}}],["mode",{"_index":304,"t":{"14":{"position":[[17,4],[285,4],[323,4],[418,4]]},"87":{"position":[[3450,5]]},"234":{"position":[[1748,5],[1797,4],[2117,4],[2700,4],[2984,4]]},"244":{"position":[[668,4]]},"250":{"position":[[176,4]]},"325":{"position":[[927,5]]}}}],["modif",{"_index":1154,"t":{"149":{"position":[[750,13]]},"205":{"position":[[1240,13]]},"250":{"position":[[393,12],[510,12]]},"265":{"position":[[210,12]]},"278":{"position":[[542,12]]},"285":{"position":[[27,12]]}}}],["modifi",{"_index":875,"t":{"85":{"position":[[149,6]]},"149":{"position":[[1081,6]]},"165":{"position":[[298,8]]},"179":{"position":[[858,6]]},"203":{"position":[[234,6]]},"205":{"position":[[26,6],[91,6],[186,6],[264,6],[329,6],[421,6],[540,9],[706,6],[801,6],[902,8],[926,6],[1176,9],[1203,6],[1414,6],[1479,6]]},"207":{"position":[[100,9]]},"234":{"position":[[1115,8]]},"257":{"position":[[44,8]]},"261":{"position":[[490,9]]},"274":{"position":[[418,6]]},"325":{"position":[[191,6]]},"375":{"position":[[297,9]]},"381":{"position":[[445,6],[1324,8]]},"397":{"position":[[2198,6]]}}}],["modify/replac",{"_index":1750,"t":{"276":{"position":[[72,14]]}}}],["modul",{"_index":1283,"t":{"179":{"position":[[56,6],[262,7]]}}}],["monitor",{"_index":334,"t":{"18":{"position":[[85,7]]},"22":{"position":[[16,10]]},"24":{"position":[[14,7]]},"28":{"position":[[15,7]]},"32":{"position":[[15,7]]},"40":{"position":[[14,7]]},"47":{"position":[[14,7]]},"65":{"position":[[284,7],[1244,8]]},"67":{"position":[[156,7]]},"71":{"position":[[14,8]]},"87":{"position":[[102,7]]},"89":{"position":[[203,10]]},"109":{"position":[[12,8]]},"111":{"position":[[177,7]]},"117":{"position":[[12,8]]},"121":{"position":[[192,7]]},"129":{"position":[[12,8]]},"159":{"position":[[158,8]]},"173":{"position":[[237,8]]},"191":{"position":[[0,7]]},"195":{"position":[[248,10],[5474,11]]},"323":{"position":[[978,9]]},"331":{"position":[[27,8],[382,10]]},"393":{"position":[[297,10]]},"397":{"position":[[55,8],[1252,10],[4149,10]]},"401":{"position":[[304,7]]},"412":{"position":[[668,7]]},"414":{"position":[[78,8]]},"441":{"position":[[62,10]]}}}],["monitoring/webhook",{"_index":128,"t":{"4":{"position":[[3424,19]]}}}],["monitorwhenl",{"_index":811,"t":{"75":{"position":[[1639,16]]},"77":{"position":[[503,18],[787,18]]}}}],["monitorwhenlisten",{"_index":814,"t":{"75":{"position":[[1698,21]]},"77":{"position":[[528,23],[812,23]]}}}],["monoloth",{"_index":1734,"t":{"261":{"position":[[426,10]]}}}],["mopidi",{"_index":720,"t":{"62":{"position":[[550,6]]},"137":{"position":[[0,6],[197,6],[279,6],[375,6],[741,6],[828,6],[1031,7]]},"139":{"position":[[82,6],[434,6]]},"141":{"position":[[33,6]]},"143":{"position":[[475,8]]},"412":{"position":[[283,6]]}}}],["mopidy.conf",{"_index":1107,"t":{"137":{"position":[[854,12]]}}}],["mopidy.mydomain.com",{"_index":1109,"t":{"137":{"position":[[1100,19]]}}}],["mopidy.mydomain.com:80/mopw",{"_index":1112,"t":{"137":{"position":[[1215,28]]}}}],["more",{"_index":84,"t":{"4":{"position":[[1596,4],[1741,4],[3279,4]]},"71":{"position":[[163,5],[234,5],[516,4],[575,4]]},"81":{"position":[[407,4]]},"85":{"position":[[666,4]]},"95":{"position":[[945,4]]},"159":{"position":[[270,4]]},"169":{"position":[[515,4],[541,4]]},"173":{"position":[[349,4]]},"195":{"position":[[407,4]]},"203":{"position":[[254,4]]},"207":{"position":[[31,4]]},"213":{"position":[[938,4]]},"217":{"position":[[577,4],[769,4],[1001,4],[1139,4],[1222,4],[1360,4]]},"219":{"position":[[166,4],[398,4]]},"221":{"position":[[43,4],[126,4],[264,4]]},"224":{"position":[[477,4]]},"230":{"position":[[344,4]]},"234":{"position":[[434,4]]},"244":{"position":[[278,4]]},"261":{"position":[[1320,4]]},"295":{"position":[[385,4]]},"312":{"position":[[697,4]]},"331":{"position":[[1426,4]]},"365":{"position":[[329,4]]},"377":{"position":[[888,4]]},"381":{"position":[[685,4]]},"383":{"position":[[119,4]]},"397":{"position":[[3024,4],[3140,4]]},"399":{"position":[[1880,4]]},"403":{"position":[[4,4],[182,4]]},"412":{"position":[[1476,4]]},"414":{"position":[[37,4],[61,4]]}}}],["mount",{"_index":252,"t":{"12":{"position":[[561,5],[597,7],[1318,5],[1354,7]]},"149":{"position":[[916,5]]},"300":{"position":[[135,6]]}}}],["move",{"_index":2097,"t":{"347":{"position":[[342,4],[528,4]]},"371":{"position":[[1837,5],[1927,5],[2027,5],[2110,5]]}}}],["movi",{"_index":2163,"t":{"367":{"position":[[355,7]]}}}],["mozilla/5.0",{"_index":2118,"t":{"353":{"position":[[531,11],[742,11]]}}}],["mpd",{"_index":721,"t":{"62":{"position":[[581,3]]},"145":{"position":[[21,3],[117,3]]},"147":{"position":[[578,5]]},"151":{"position":[[449,5],[677,5]]},"412":{"position":[[290,3]]}}}],["mpd_password",{"_index":1140,"t":{"147":{"position":[[108,12]]}}}],["mpd_url",{"_index":1138,"t":{"147":{"position":[[82,7]]}}}],["mpri",{"_index":1146,"t":{"149":{"position":[[0,5],[211,6],[357,6],[376,5],[575,5],[877,6]]},"151":{"position":[[102,5],[724,7]]},"412":{"position":[[316,5]]}}}],["mpris_blacklist",{"_index":1175,"t":{"151":{"position":[[167,15]]}}}],["mpris_en",{"_index":1174,"t":{"151":{"position":[[82,12]]}}}],["mpris_whitelist",{"_index":1176,"t":{"151":{"position":[[244,15]]}}}],["ms",{"_index":17,"t":{"4":{"position":[[144,2],[314,2],[414,2],[515,2],[569,2],[1133,2],[2780,2],[3597,2]]},"10":{"position":[[277,2]]},"12":{"position":[[2689,2]]},"24":{"position":[[996,2]]},"65":{"position":[[187,2],[270,2],[329,2],[571,2]]},"73":{"position":[[329,2]]},"75":{"position":[[358,2],[424,2],[727,2],[1749,2]]},"85":{"position":[[456,2]]},"87":{"position":[[1570,2],[1917,2],[2499,2],[3262,2]]},"145":{"position":[[0,2]]},"153":{"position":[[222,2],[394,2],[447,2]]},"157":{"position":[[404,2]]},"165":{"position":[[112,2],[436,2],[1353,2]]},"179":{"position":[[0,2],[681,3],[1450,2],[1848,2]]},"183":{"position":[[665,2]]},"187":{"position":[[0,2]]},"195":{"position":[[1212,2],[2375,3],[2429,2],[2810,2],[3094,2],[3240,2],[3379,2],[4241,3],[4563,2],[4686,2],[5348,2]]},"215":{"position":[[0,2]]},"239":{"position":[[147,2]]},"261":{"position":[[311,3]]},"310":{"position":[[148,2],[1461,2],[1557,2],[1952,2],[2171,2]]},"312":{"position":[[46,2]]},"316":{"position":[[87,2]]},"318":{"position":[[841,2],[898,2],[1065,3]]},"321":{"position":[[87,2]]},"323":{"position":[[937,2]]},"325":{"position":[[5,2]]},"331":{"position":[[24,2],[211,2],[2854,2]]},"334":{"position":[[57,2],[558,2]]},"336":{"position":[[610,2],[1001,2],[1289,2],[1328,2]]},"342":{"position":[[40,2]]},"347":{"position":[[268,2]]},"349":{"position":[[77,2]]},"357":{"position":[[591,2],[1148,2],[1249,2]]},"365":{"position":[[480,3]]},"367":{"position":[[102,2]]},"369":{"position":[[58,2]]},"371":{"position":[[4,2],[1682,2],[2482,2]]},"375":{"position":[[976,2],[1072,2],[2146,2],[2591,2]]},"383":{"position":[[82,2]]},"414":{"position":[[75,2],[158,2]]}}}],["ms'",{"_index":1211,"t":{"165":{"position":[[350,4]]},"187":{"position":[[205,4]]},"195":{"position":[[426,4],[3311,4]]},"207":{"position":[[260,4]]},"357":{"position":[[524,4]]},"371":{"position":[[1297,4]]}}}],["msdata",{"_index":2333,"t":{"401":{"position":[[221,8]]}}}],["msdata/config/lastfm.json",{"_index":2322,"t":{"397":{"position":[[3725,27]]}}}],["msdata/dock",{"_index":2301,"t":{"395":{"position":[[107,15]]},"397":{"position":[[299,15],[896,15],[1870,15],[2675,15]]},"399":{"position":[[801,15],[1181,15],[2087,15]]}}}],["mtg8v6xa2nc",{"_index":2187,"t":{"371":{"position":[[1864,13]]}}}],["much",{"_index":1553,"t":{"217":{"position":[[819,4],[996,4],[1355,4]]},"219":{"position":[[216,4],[393,4]]},"221":{"position":[[259,4]]}}}],["multi",{"_index":52,"t":{"4":{"position":[[803,5]]},"8":{"position":[[21,5]]},"12":{"position":[[0,5],[409,5],[3089,5],[3144,5],[3211,5],[3382,5]]},"18":{"position":[[0,5]]},"20":{"position":[[693,5],[1046,5],[1449,5]]},"24":{"position":[[591,5],[821,5],[1526,5],[1597,5]]},"28":{"position":[[152,5],[285,5]]},"32":{"position":[[159,5]]},"40":{"position":[[689,5]]},"45":{"position":[[21,5],[342,5]]},"47":{"position":[[771,5],[1646,5]]},"52":{"position":[[33,5],[480,5]]},"56":{"position":[[1355,5]]},"62":{"position":[[29,5]]},"65":{"position":[[27,5],[389,5],[442,5],[889,5],[1228,5]]},"69":{"position":[[509,5]]},"73":{"position":[[139,5],[238,5]]},"75":{"position":[[181,5],[1503,5]]},"81":{"position":[[78,5]]},"87":{"position":[[82,5],[890,5]]},"91":{"position":[[287,5],[515,5],[815,5],[1562,5]]},"95":{"position":[[61,5],[269,5],[547,5],[739,5],[992,5],[1069,5]]},"97":{"position":[[13,5]]},"99":{"position":[[254,5],[691,5]]},"103":{"position":[[13,5]]},"105":{"position":[[250,5],[683,5]]},"109":{"position":[[486,5]]},"111":{"position":[[20,5]]},"113":{"position":[[48,5]]},"117":{"position":[[217,5]]},"119":{"position":[[101,5]]},"121":{"position":[[20,5]]},"123":{"position":[[48,5],[342,5],[861,5],[995,5]]},"125":{"position":[[186,5]]},"129":{"position":[[258,5]]},"131":{"position":[[106,5]]},"135":{"position":[[100,5]]},"137":{"position":[[145,5],[607,5],[992,5]]},"139":{"position":[[162,5],[398,5]]},"141":{"position":[[146,5],[237,5],[505,5]]},"149":{"position":[[218,5],[405,5],[479,5],[696,5],[831,5],[1702,5]]},"157":{"position":[[121,5],[1380,5]]},"163":{"position":[[290,5]]},"165":{"position":[[485,5],[1016,5],[1326,5],[1539,5],[1694,5],[1797,5],[1923,5],[2132,5],[2234,5],[2304,5],[2520,5],[2826,5],[2930,5],[3205,5],[3471,5],[3996,5],[4240,5]]},"177":{"position":[[290,5]]},"179":{"position":[[1078,5],[2038,5]]},"183":{"position":[[517,5]]},"191":{"position":[[247,5],[329,5]]},"195":{"position":[[4945,5]]},"199":{"position":[[0,5],[183,5],[896,5]]},"201":{"position":[[50,5]]},"205":{"position":[[768,5]]},"217":{"position":[[115,5],[1538,5]]},"224":{"position":[[514,5],[658,5]]},"230":{"position":[[1501,5],[1564,5]]},"234":{"position":[[104,5],[1066,5],[1233,5],[1514,5]]},"241":{"position":[[1050,5]]},"250":{"position":[[40,5]]},"261":{"position":[[156,5]]},"263":{"position":[[415,5]]},"265":{"position":[[80,5]]},"267":{"position":[[756,5],[819,5]]},"278":{"position":[[437,5]]},"295":{"position":[[45,5]]},"300":{"position":[[0,5]]},"302":{"position":[[316,5]]},"331":{"position":[[3078,5]]},"353":{"position":[[49,5],[148,5],[179,5],[212,5],[1216,5],[1271,5],[1470,5],[1745,5],[1858,5],[2041,5],[2197,5]]},"355":{"position":[[166,5],[293,5]]},"357":{"position":[[21,5],[927,5],[1216,5]]},"363":{"position":[[150,5],[275,5]]},"365":{"position":[[277,5]]},"371":{"position":[[40,5],[289,5],[414,5],[552,5]]},"375":{"position":[[366,5],[429,5],[1473,5],[1946,5],[2391,5],[2919,5]]},"377":{"position":[[380,5],[711,5],[947,5],[1010,5]]},"379":{"position":[[47,5]]},"381":{"position":[[137,5]]},"387":{"position":[[30,5],[216,5]]},"389":{"position":[[72,5],[119,5],[190,5]]},"391":{"position":[[51,5]]},"393":{"position":[[44,5],[281,5],[382,5],[453,5]]},"395":{"position":[[24,5],[145,5],[208,5]]},"397":{"position":[[39,5],[1089,5],[1215,5],[1605,5],[1732,5],[1959,5],[2887,5],[3216,5],[3977,5],[4112,5]]},"399":{"position":[[43,5],[776,5],[1156,5],[1758,5],[2062,5],[2234,5],[2305,5]]},"401":{"position":[[28,5],[264,5],[606,5]]},"403":{"position":[[150,5]]},"406":{"position":[[11,5],[457,5]]},"408":{"position":[[92,5],[128,5],[162,5],[247,5]]},"410":{"position":[[132,5]]},"412":{"position":[[1347,5],[2112,5]]},"439":{"position":[[3,5]]},"441":{"position":[[0,5],[223,5]]}}}],["multipl",{"_index":85,"t":{"4":{"position":[[1653,8],[3336,8]]},"20":{"position":[[277,8]]},"113":{"position":[[220,8]]},"123":{"position":[[530,8]]},"169":{"position":[[163,8],[558,9]]},"179":{"position":[[1461,8]]},"185":{"position":[[22,8]]},"209":{"position":[[985,8]]},"224":{"position":[[756,8]]},"234":{"position":[[524,8],[1554,8]]},"244":{"position":[[711,8]]},"250":{"position":[[384,8]]},"397":{"position":[[1495,8]]},"412":{"position":[[846,8]]},"441":{"position":[[699,8]]}}}],["multipli",{"_index":644,"t":{"56":{"position":[[401,10],[429,10],[776,10],[804,10]]}}}],["music",{"_index":388,"t":{"22":{"position":[[678,6]]},"40":{"position":[[97,5]]},"54":{"position":[[247,5],[916,5]]},"60":{"position":[[88,5],[160,6]]},"62":{"position":[[585,6],[951,5]]},"87":{"position":[[134,5],[429,5],[2666,6]]},"95":{"position":[[830,6]]},"137":{"position":[[21,5],[56,5]]},"149":{"position":[[53,5]]},"157":{"position":[[1466,6]]},"159":{"position":[[72,5]]},"191":{"position":[[39,5]]},"195":{"position":[[30,5],[188,5],[4978,5],[5384,5]]},"199":{"position":[[365,5]]},"217":{"position":[[384,5],[839,5],[955,5]]},"219":{"position":[[236,5],[352,5]]},"234":{"position":[[4098,5],[4182,5]]},"244":{"position":[[361,5],[736,5]]},"248":{"position":[[77,5]]},"331":{"position":[[81,5],[115,5],[183,5],[273,5]]},"336":{"position":[[362,5],[512,5],[572,5]]},"367":{"position":[[95,6]]},"371":{"position":[[1060,6],[2887,5]]},"412":{"position":[[29,5],[294,6],[474,5],[2078,5]]},"416":{"position":[[58,5],[128,5],[151,5],[212,6]]},"418":{"position":[[77,5]]}}}],["musicbrainz",{"_index":272,"t":{"12":{"position":[[1904,12]]},"207":{"position":[[336,11],[388,11]]},"217":{"position":[[4,11],[54,11],[449,11],[564,12],[607,11],[1178,11],[1654,11]]},"219":{"position":[[4,11]]},"221":{"position":[[82,11]]},"224":{"position":[[24,11],[254,14],[365,11],[407,11],[609,11],[700,11],[823,14],[926,11]]},"226":{"position":[[45,11],[174,14]]},"228":{"position":[[135,14],[423,11]]},"230":{"position":[[547,11],[1861,11]]},"232":{"position":[[200,11],[249,11]]},"234":{"position":[[47,11],[203,11],[388,11],[806,11],[2091,11],[2458,11],[2845,11],[3197,11],[3539,11],[3783,11]]},"237":{"position":[[23,11]]},"239":{"position":[[1032,11]]},"244":{"position":[[15,11]]},"246":{"position":[[230,11]]},"248":{"position":[[19,11],[293,11],[502,14]]},"250":{"position":[[3,11],[218,11],[699,14]]},"253":{"position":[[74,14],[321,14]]},"255":{"position":[[162,14],[593,14]]},"257":{"position":[[138,11],[351,14],[656,14]]},"403":{"position":[[403,11]]},"412":{"position":[[647,11],[1970,11]]}}}],["musicbrainz'",{"_index":548,"t":{"40":{"position":[[1626,13]]}}}],["musiccast",{"_index":727,"t":{"62":{"position":[[909,9]]},"191":{"position":[[8,9],[99,9],[386,9],[414,9]]},"193":{"position":[[100,9],[439,11]]},"412":{"position":[[456,9]]}}}],["musictrack",{"_index":939,"t":{"87":{"position":[[1962,11]]}}}],["musicvideo",{"_index":1026,"t":{"95":{"position":[[2576,16],[3197,13]]}}}],["musikcub",{"_index":723,"t":{"62":{"position":[[631,9]]},"153":{"position":[[16,9],[166,9]]},"155":{"position":[[212,12],[249,12],[462,12],[499,12]]},"325":{"position":[[684,12],[1274,12]]},"412":{"position":[[338,9]]}}}],["musl",{"_index":917,"t":{"87":{"position":[[1112,4]]}}}],["mutli",{"_index":1304,"t":{"179":{"position":[[1203,5],[2140,5]]}}}],["mvp",{"_index":2054,"t":{"336":{"position":[[2084,3]]}}}],["mx",{"_index":1686,"t":{"239":{"position":[[1021,3]]}}}],["my\",\"optional\",\"tag",{"_index":366,"t":{"20":{"position":[[1841,24]]}}}],["my.domain.local:80",{"_index":221,"t":{"10":{"position":[[854,18]]}}}],["my.domain.local:9000",{"_index":223,"t":{"10":{"position":[[913,20]]}}}],["my.domain.tld/api",{"_index":1417,"t":{"195":{"position":[[3561,20]]}}}],["my_api_key_placedhold",{"_index":2323,"t":{"397":{"position":[[3828,26]]}}}],["my_password",{"_index":1144,"t":{"147":{"position":[[245,13],[511,13]]},"155":{"position":[[314,13],[564,13]]}}}],["my_secret_placehold",{"_index":2324,"t":{"397":{"position":[[3865,24]]}}}],["my_token",{"_index":1877,"t":{"318":{"position":[[399,8]]}}}],["myapprisefriendlynameforlog",{"_index":361,"t":{"20":{"position":[[1583,31]]}}}],["mybasicsourc",{"_index":2059,"t":{"336":{"position":[[2822,13]]}}}],["mybasicsourcesourc",{"_index":2065,"t":{"336":{"position":[[3494,19]]}}}],["mycast",{"_index":942,"t":{"87":{"position":[[2301,9],[2833,9],[3492,9]]},"89":{"position":[[676,9],[919,9]]}}}],["myconfig",{"_index":160,"t":{"4":{"position":[[4453,13],[4716,11]]},"308":{"position":[[166,8]]},"381":{"position":[[964,13],[1163,11]]}}}],["mydeez",{"_index":879,"t":{"85":{"position":[[303,11]]}}}],["mydomain.com",{"_index":572,"t":{"45":{"position":[[235,12]]},"52":{"position":[[326,12]]}}}],["mydomain.com:80/jriverreverse/mcws/v1",{"_index":1043,"t":{"99":{"position":[[917,38],[956,38]]}}}],["mydomain.com:80/kodireverse/jsonrpc",{"_index":1057,"t":{"105":{"position":[[898,35]]}}}],["mygotifyfriendlynameforlog",{"_index":351,"t":{"20":{"position":[[849,30]]}}}],["mygotifytoken",{"_index":171,"t":{"4":{"position":[[4906,16]]}}}],["myici",{"_index":988,"t":{"91":{"position":[[1314,8]]},"93":{"position":[[138,8],[335,8]]}}}],["myjellyfin",{"_index":761,"t":{"69":{"position":[[207,13]]},"95":{"position":[[2160,13],[2798,13]]},"257":{"position":[[562,13]]}}}],["myjellyfinsourc",{"_index":2273,"t":{"381":{"position":[[986,19]]}}}],["myjriv",{"_index":1048,"t":{"101":{"position":[[340,11],[575,11]]}}}],["mykodi",{"_index":1063,"t":{"107":{"position":[[265,9],[522,9]]}}}],["mylastfm",{"_index":1481,"t":{"203":{"position":[[391,11]]},"205":{"position":[[1319,11]]},"282":{"position":[[86,11]]}}}],["mylastfmcli",{"_index":461,"t":{"30":{"position":[[458,17],[808,17]]},"441":{"position":[[1039,17]]}}}],["mylastfmsourc",{"_index":1081,"t":{"119":{"position":[[298,17],[648,17]]},"397":{"position":[[3765,17]]}}}],["mylfm",{"_index":1077,"t":{"115":{"position":[[345,8],[531,8]]}}}],["mylz",{"_index":1098,"t":{"127":{"position":[[423,7],[610,7]]}}}],["mymaloja",{"_index":495,"t":{"38":{"position":[[202,9],[463,9]]},"135":{"position":[[296,9],[557,9]]}}}],["mymaloja\",\"koitoa\",\"listenbrainzfoo",{"_index":762,"t":{"69":{"position":[[232,39]]}}}],["mymalojakey",{"_index":165,"t":{"4":{"position":[[4781,13]]},"38":{"position":[[315,13],[576,13]]},"135":{"position":[[409,13],[670,13]]},"381":{"position":[[1228,13]]}}}],["mymb",{"_index":1581,"t":{"224":{"position":[[277,7],[846,7]]},"226":{"position":[[197,7]]},"228":{"position":[[158,6]]},"248":{"position":[[525,7]]},"250":{"position":[[722,7]]},"253":{"position":[[97,7],[344,6]]},"255":{"position":[[185,7],[616,6]]},"257":{"position":[[374,7],[679,7]]}}}],["mymopidi",{"_index":1131,"t":{"143":{"position":[[92,11],[345,11]]}}}],["mympd",{"_index":1142,"t":{"147":{"position":[[185,8],[451,8]]}}}],["mymultiscrobblertop",{"_index":182,"t":{"4":{"position":[[5074,24]]}}}],["mynativetransform",{"_index":1510,"t":{"209":{"position":[[536,22],[2021,22],[2397,22]]},"270":{"position":[[92,22],[469,21]]},"272":{"position":[[92,22],[368,21]]}}}],["myntfyfriendlynameforlog",{"_index":179,"t":{"4":{"position":[[5004,28]]},"20":{"position":[[1200,28]]}}}],["myoptionalslug",{"_index":1347,"t":{"189":{"position":[[425,17],[646,17]]}}}],["mypassword",{"_index":1065,"t":{"107":{"position":[[375,12],[632,12]]}}}],["myplexapi",{"_index":1201,"t":{"157":{"position":[[2282,12],[2830,12]]}}}],["myrockskycli",{"_index":580,"t":{"45":{"position":[[713,18],[979,18]]}}}],["myrockskysourc",{"_index":1205,"t":{"163":{"position":[[488,18],[754,18]]}}}],["mysite.com",{"_index":1761,"t":{"280":{"position":[[758,14],[800,14],[854,13]]}}}],["myslug",{"_index":1078,"t":{"115":{"position":[[388,8],[574,8]]}}}],["mysourc",{"_index":1839,"t":{"310":{"position":[[1377,8]]}}}],["myspotifi",{"_index":114,"t":{"4":{"position":[[2556,12]]},"167":{"position":[[259,12],[611,12]]}}}],["myspotify1\",\"myjellyfin2",{"_index":2377,"t":{"441":{"position":[[1333,28]]}}}],["myspotifysourc",{"_index":161,"t":{"4":{"position":[[4475,18]]}}}],["mysubson",{"_index":1278,"t":{"171":{"position":[[226,13],[518,13]]},"209":{"position":[[801,13],[1482,13],[2286,13]]},"248":{"position":[[408,13]]},"250":{"position":[[591,13]]},"253":{"position":[[227,13]]},"255":{"position":[[499,13]]},"265":{"position":[[291,13]]},"270":{"position":[[357,13]]},"272":{"position":[[256,13]]},"274":{"position":[[289,13]]},"278":{"position":[[623,13]]}}}],["myteal",{"_index":611,"t":{"52":{"position":[[849,9],[1100,9]]}}}],["mytealsourc",{"_index":1282,"t":{"177":{"position":[[487,15],[744,15]]}}}],["myth",{"_index":1536,"t":{"215":{"position":[[321,10]]}}}],["mytoken",{"_index":691,"t":{"56":{"position":[[3146,9]]},"58":{"position":[[1546,10]]},"127":{"position":[[466,9],[653,9]]}}}],["myurl",{"_index":2328,"t":{"399":{"position":[[1837,5]]}}}],["myuser",{"_index":1064,"t":{"107":{"position":[[353,9],[610,9]]},"381":{"position":[[1106,8]]},"399":{"position":[[1630,7]]}}}],["myuser.bsky.soci",{"_index":577,"t":{"45":{"position":[[579,18]]},"52":{"position":[[727,18]]}}}],["myvlc",{"_index":1308,"t":{"179":{"position":[[1601,8],[2365,8]]},"181":{"position":[[186,8],[403,8]]},"209":{"position":[[1665,8]]}}}],["mywebscrobbl",{"_index":1346,"t":{"189":{"position":[[389,17],[610,17]]}}}],["myyamaha",{"_index":1357,"t":{"193":{"position":[[172,11],[367,11]]}}}],["myytm",{"_index":1377,"t":{"195":{"position":[[1069,8],[2616,8],[3845,8]]},"371":{"position":[[1553,8],[1740,6],[2388,8]]}}}],["myytm.log",{"_index":2204,"t":{"371":{"position":[[2547,9]]}}}],["myytmus",{"_index":1446,"t":{"197":{"position":[[399,12],[756,12]]}}}],["n+1",{"_index":2172,"t":{"371":{"position":[[788,3]]}}}],["naiv",{"_index":1643,"t":{"234":{"position":[[1742,5],[1775,5],[2686,5],[2692,7],[2978,5],[3382,7]]}}}],["name",{"_index":104,"t":{"4":{"position":[[2312,5],[2548,7],[4467,7],[4708,7],[4818,7],[4996,7]]},"12":{"position":[[2684,4]]},"20":{"position":[[418,7],[522,7],[581,7],[841,7],[1192,7],[1575,7]]},"22":{"position":[[356,4]]},"26":{"position":[[251,7],[542,7]]},"30":{"position":[[450,7],[800,7]]},"34":{"position":[[273,7],[584,7]]},"38":{"position":[[194,7],[455,7]]},"45":{"position":[[705,7],[971,7]]},"52":{"position":[[841,7],[1092,7]]},"56":{"position":[[944,7],[1200,7],[1446,7],[1702,7],[1872,7],[2168,7],[2404,7],[2672,7],[2842,7],[3072,7],[3196,7],[3314,7],[3432,7],[3550,7]]},"58":{"position":[[108,7],[243,7],[378,7],[549,7],[703,7],[889,7],[1046,7],[1234,7],[1472,7],[1590,7],[1690,7],[1790,7],[1916,7]]},"62":{"position":[[0,4]]},"69":{"position":[[126,4],[199,7],[493,5],[549,4],[620,4]]},"77":{"position":[[107,4],[139,4],[417,7],[496,6],[701,7],[780,6]]},"81":{"position":[[500,4],[729,5]]},"83":{"position":[[157,7],[460,7]]},"85":{"position":[[295,7]]},"87":{"position":[[2258,6],[2293,7],[2372,4],[2760,5],[2825,7],[3484,7]]},"89":{"position":[[668,7],[911,7]]},"91":{"position":[[1306,7]]},"93":{"position":[[130,7],[327,7]]},"95":{"position":[[264,4],[2152,7],[2790,7]]},"101":{"position":[[332,7],[567,7]]},"107":{"position":[[257,7],[514,7]]},"109":{"position":[[670,7],[961,7]]},"115":{"position":[[337,7],[523,7]]},"119":{"position":[[290,7],[640,7]]},"127":{"position":[[415,7],[602,7]]},"131":{"position":[[311,7],[622,7]]},"135":{"position":[[288,7],[549,7]]},"141":{"position":[[124,5],[218,4]]},"143":{"position":[[84,7],[337,7]]},"147":{"position":[[177,7],[443,7]]},"151":{"position":[[217,5],[295,5],[383,7],[611,7]]},"155":{"position":[[241,7],[491,7]]},"157":{"position":[[2274,7],[2822,7]]},"163":{"position":[[480,7],[746,7]]},"167":{"position":[[251,7],[603,7]]},"171":{"position":[[218,7],[510,7]]},"177":{"position":[[479,7],[736,7]]},"179":{"position":[[1338,5],[1593,7],[2103,4],[2183,4],[2357,7]]},"181":{"position":[[178,7],[395,7]]},"183":{"position":[[218,5]]},"185":{"position":[[183,7],[267,7]]},"187":{"position":[[89,4]]},"189":{"position":[[381,7],[602,7]]},"193":{"position":[[164,7],[359,7]]},"195":{"position":[[1061,7],[2224,4],[2608,7],[3837,7]]},"197":{"position":[[391,7],[748,7]]},"203":{"position":[[383,7]]},"205":{"position":[[1311,7]]},"209":{"position":[[152,4],[166,4],[528,7],[793,7],[912,6],[1178,7],[1298,7],[1474,7],[1585,7],[1657,7],[1763,7],[2013,7],[2278,7],[2389,7]]},"215":{"position":[[313,7]]},"224":{"position":[[269,7],[838,7]]},"226":{"position":[[189,7]]},"228":{"position":[[150,7]]},"239":{"position":[[1290,4]]},"244":{"position":[[265,6]]},"248":{"position":[[400,7],[517,7]]},"250":{"position":[[583,7],[714,7]]},"253":{"position":[[89,7],[219,7],[336,7]]},"255":{"position":[[177,7],[491,7],[608,7]]},"257":{"position":[[366,7],[554,7],[671,7]]},"259":{"position":[[389,5],[449,4]]},"265":{"position":[[197,4],[283,7],[413,5]]},"270":{"position":[[84,7],[349,7],[461,7]]},"272":{"position":[[84,7],[248,7],[360,7]]},"274":{"position":[[281,7]]},"276":{"position":[[368,5]]},"278":{"position":[[235,7],[529,4],[615,7],[743,5]]},"282":{"position":[[78,7]]},"308":{"position":[[177,5]]},"323":{"position":[[733,5]]},"325":{"position":[[895,5]]},"353":{"position":[[1607,4],[1848,4],[1985,4]]},"371":{"position":[[1545,7],[2380,7],[2533,5],[2579,6]]},"375":{"position":[[507,4]]},"377":{"position":[[375,4],[706,4],[1088,4]]},"381":{"position":[[978,7],[1155,7]]},"395":{"position":[[286,4]]},"397":{"position":[[3519,5],[3757,7]]},"408":{"position":[[157,4]]},"416":{"position":[[282,5],[379,5]]},"418":{"position":[[203,5]]},"436":{"position":[[0,4]]},"441":{"position":[[829,5],[862,4],[1031,7],[1199,5]]}}}],["name=[nameofsourc",{"_index":1420,"t":{"195":{"position":[[3660,19]]}}}],["name}.json",{"_index":1840,"t":{"310":{"position":[[1386,13]]}}}],["nash",{"_index":1745,"t":{"272":{"position":[[165,4]]}}}],["nativ",{"_index":1503,"t":{"207":{"position":[[242,6],[665,8]]},"209":{"position":[[518,9],[895,8],[952,8],[1168,9],[1288,9],[1576,8],[1754,8],[2003,9],[2380,8]]},"211":{"position":[[185,9]]},"213":{"position":[[1178,6],[1236,9],[1361,6],[1435,6],[1518,9]]},"226":{"position":[[343,9]]},"230":{"position":[[634,6],[673,6],[1689,6]]},"234":{"position":[[1732,6],[1754,6],[1781,6],[1788,8],[1842,6],[2016,6],[2110,6],[2675,8]]},"244":{"position":[[661,6],[877,8]]},"255":{"position":[[429,8]]},"259":{"position":[[4,6],[670,6]]},"261":{"position":[[1073,6]]},"263":{"position":[[136,9]]},"265":{"position":[[47,6],[385,9],[431,6]]},"267":{"position":[[989,6]]},"270":{"position":[[74,9],[451,9]]},"272":{"position":[[74,9],[350,9]]},"274":{"position":[[383,9]]},"381":{"position":[[424,6]]}}}],["navidrom",{"_index":1085,"t":{"123":{"position":[[386,10]]},"169":{"position":[[139,10],[378,11]]},"393":{"position":[[327,10]]},"397":{"position":[[113,9],[1321,9],[1580,9],[2011,10],[2126,9],[2307,9],[2411,10]]},"412":{"position":[[413,10]]},"416":{"position":[[219,10]]}}}],["navidrome'",{"_index":2309,"t":{"397":{"position":[[1430,11]]}}}],["navig",{"_index":392,"t":{"24":{"position":[[208,8]]},"36":{"position":[[325,8]]},"42":{"position":[[108,8],[182,8]]},"49":{"position":[[65,8]]},"95":{"position":[[108,8]]},"165":{"position":[[691,8],[913,8],[3311,8]]},"179":{"position":[[535,10]]},"195":{"position":[[2117,8]]},"399":{"position":[[509,8],[1379,8]]}}}],["nd_listenbrainz_baseurl",{"_index":1087,"t":{"123":{"position":[[431,24]]},"397":{"position":[[2056,24]]}}}],["nd_listenbrainz_baseurl=http://192.168.0.100:9078/1",{"_index":2312,"t":{"397":{"position":[[2246,52]]}}}],["nearli",{"_index":2160,"t":{"365":{"position":[[599,6]]}}}],["necessari",{"_index":1001,"t":{"95":{"position":[[683,9]]},"165":{"position":[[1002,9]]},"195":{"position":[[1822,10]]},"310":{"position":[[1719,10]]}}}],["necessarili",{"_index":2016,"t":{"331":{"position":[[1327,11]]}}}],["need",{"_index":87,"t":{"4":{"position":[[1727,4],[3410,4]]},"10":{"position":[[414,4]]},"16":{"position":[[14,4]]},"32":{"position":[[244,4]]},"40":{"position":[[1780,4]]},"42":{"position":[[9,4]]},"56":{"position":[[1297,4],[2029,4]]},"75":{"position":[[611,4]]},"89":{"position":[[222,7]]},"97":{"position":[[262,4]]},"103":{"position":[[251,4]]},"113":{"position":[[206,4]]},"123":{"position":[[516,4]]},"129":{"position":[[343,4]]},"151":{"position":[[143,4]]},"157":{"position":[[379,4]]},"189":{"position":[[130,7]]},"195":{"position":[[531,5],[3299,4],[4178,4],[4639,4]]},"199":{"position":[[241,4]]},"205":{"position":[[793,4]]},"230":{"position":[[1299,4]]},"250":{"position":[[355,6],[417,4]]},"267":{"position":[[554,4]]},"310":{"position":[[960,6],[2327,5]]},"316":{"position":[[138,4]]},"325":{"position":[[104,4]]},"331":{"position":[[680,4],[1339,4]]},"336":{"position":[[1391,4]]},"353":{"position":[[1805,4]]},"371":{"position":[[112,5]]},"412":{"position":[[1481,4]]},"416":{"position":[[297,6]]},"418":{"position":[[218,6]]},"426":{"position":[[234,4]]}}}],["network",{"_index":513,"t":{"40":{"position":[[522,8]]},"47":{"position":[[604,8]]},"52":{"position":[[780,7]]},"62":{"position":[[5,10]]},"65":{"position":[[203,7]]},"97":{"position":[[161,7],[185,7]]},"99":{"position":[[485,7]]},"149":{"position":[[1362,7],[1418,7]]},"183":{"position":[[633,7]]},"310":{"position":[[366,7],[901,9],[2779,7]]},"353":{"position":[[1331,8],[2296,7]]},"375":{"position":[[1221,10],[1282,7],[1346,10],[1999,11],[2037,7],[2569,7]]},"412":{"position":[[977,7]]}}}],["network/usb/cd",{"_index":1349,"t":{"191":{"position":[[55,14]]}}}],["network/your",{"_index":584,"t":{"47":{"position":[[196,12]]},"173":{"position":[[168,12]]}}}],["never",{"_index":789,"t":{"73":{"position":[[781,5]]},"75":{"position":[[1446,5]]},"239":{"position":[[1695,5]]},"439":{"position":[[332,5]]}}}],["new",{"_index":396,"t":{"24":{"position":[[269,3]]},"36":{"position":[[448,3]]},"49":{"position":[[176,3]]},"65":{"position":[[1309,3]]},"95":{"position":[[247,3]]},"117":{"position":[[68,3]]},"165":{"position":[[4048,3]]},"195":{"position":[[1333,3],[1842,3],[1952,3]]},"201":{"position":[[192,3],[232,3]]},"205":{"position":[[1425,5],[1520,3]]},"304":{"position":[[418,3]]},"316":{"position":[[73,3]]},"318":{"position":[[34,3]]},"321":{"position":[[17,3],[138,3],[1160,3],[1897,3]]},"323":{"position":[[18,3]]},"325":{"position":[[1066,3],[1338,3]]},"329":{"position":[[581,3],[948,3],[1101,3],[1230,3],[2588,3]]},"331":{"position":[[2840,3]]},"334":{"position":[[1070,3]]},"336":{"position":[[726,3],[1039,4],[1841,3],[2688,3],[2911,5]]},"353":{"position":[[473,3]]},"357":{"position":[[1193,3]]},"371":{"position":[[357,3],[705,3],[815,3],[2985,3]]},"387":{"position":[[9,3]]},"389":{"position":[[162,3]]},"395":{"position":[[9,3]]},"397":{"position":[[1696,3],[2917,3],[3510,3]]},"399":{"position":[[635,3],[1440,3]]},"406":{"position":[[196,3]]},"414":{"position":[[124,3]]}}}],["newli",{"_index":1405,"t":{"195":{"position":[[2452,5]]},"331":{"position":[[763,7]]}}}],["newplay",{"_index":2032,"t":{"331":{"position":[[2760,8],[2775,8],[2971,9]]}}}],["newsourc",{"_index":1951,"t":{"325":{"position":[[1219,10],[1320,9]]}}}],["next",{"_index":784,"t":{"73":{"position":[[438,4]]},"75":{"position":[[1122,4]]},"329":{"position":[[0,4]]},"336":{"position":[[1880,4]]},"377":{"position":[[277,4]]}}}],["nginx/traefik/caddi",{"_index":1226,"t":{"165":{"position":[[1578,21]]}}}],["nice",{"_index":1460,"t":{"199":{"position":[[797,4]]}}}],["nightmar",{"_index":2193,"t":{"371":{"position":[[1968,10]]}}}],["node",{"_index":1792,"t":{"302":{"position":[[21,4],[165,4],[365,4]]},"340":{"position":[[48,4]]},"347":{"position":[[125,4],[305,4],[483,4]]},"381":{"position":[[188,4],[498,4],[572,6],[856,4]]}}}],["node/npm",{"_index":1152,"t":{"149":{"position":[[545,9]]}}}],["node@^4.9.6",{"_index":2270,"t":{"381":{"position":[[649,12]]}}}],["node_modul",{"_index":2092,"t":{"347":{"position":[[178,12]]}}}],["nodej",{"_index":934,"t":{"87":{"position":[[1513,6]]},"412":{"position":[[1214,6]]}}}],["noisi",{"_index":310,"t":{"14":{"position":[[267,5]]}}}],["non",{"_index":573,"t":{"45":{"position":[[252,3]]},"52":{"position":[[343,3]]},"137":{"position":[[85,3]]},"234":{"position":[[358,3]]},"259":{"position":[[217,3]]},"336":{"position":[[1135,3]]},"365":{"position":[[349,3]]}}}],["none",{"_index":802,"t":{"75":{"position":[[531,4]]},"99":{"position":[[758,5]]},"105":{"position":[[748,5]]},"137":{"position":[[1059,5]]},"211":{"position":[[927,4]]},"353":{"position":[[845,8]]}}}],["normal",{"_index":1374,"t":{"195":{"position":[[942,6]]},"234":{"position":[[227,10],[362,6],[987,6]]},"278":{"position":[[243,13]]},"329":{"position":[[487,6],[1341,11]]}}}],["normalizeprotocol",{"_index":1978,"t":{"329":{"position":[[543,18]]}}}],["normalizeurl(v",{"_index":1976,"t":{"329":{"position":[[496,17]]}}}],["note",{"_index":402,"t":{"24":{"position":[[416,4]]},"42":{"position":[[48,4]]},"47":{"position":[[1320,4]]},"69":{"position":[[294,4],[423,4]]},"73":{"position":[[0,4]]},"87":{"position":[[150,4],[388,4]]},"89":{"position":[[13,4]]},"91":{"position":[[73,4]]},"109":{"position":[[416,4]]},"119":{"position":[[29,4]]},"123":{"position":[[697,4]]},"131":{"position":[[29,4]]},"135":{"position":[[29,4]]},"137":{"position":[[260,4]]},"157":{"position":[[30,4]]},"163":{"position":[[218,4]]},"177":{"position":[[218,4]]},"183":{"position":[[291,4]]},"187":{"position":[[182,4]]},"211":{"position":[[1032,4]]},"232":{"position":[[0,4]]},"282":{"position":[[387,4]]},"336":{"position":[[3888,4]]},"393":{"position":[[441,4]]},"397":{"position":[[2528,4],[3450,4]]},"399":{"position":[[1587,4]]},"406":{"position":[[380,6]]}}}],["notic",{"_index":1476,"t":{"203":{"position":[[7,6]]}}}],["notif",{"_index":336,"t":{"20":{"position":[[21,12],[745,12],[1098,12]]},"149":{"position":[[123,12]]},"304":{"position":[[360,12]]},"403":{"position":[[314,12]]}}}],["now",{"_index":794,"t":{"75":{"position":[[272,3]]},"179":{"position":[[657,3]]},"195":{"position":[[2383,3],[2799,4]]},"321":{"position":[[1876,3],[2140,3]]},"327":{"position":[[0,3]]},"331":{"position":[[3063,3]]},"349":{"position":[[69,3]]},"389":{"position":[[286,3]]},"401":{"position":[[283,3],[565,3]]},"412":{"position":[[778,3]]},"436":{"position":[[5,3]]},"441":{"position":[[119,3],[146,3],[260,3],[283,3],[466,3],[936,3],[1238,3],[1305,3]]}}}],["now_playing=fals",{"_index":2374,"t":{"441":{"position":[[372,17]]}}}],["now_playing=tru",{"_index":2373,"t":{"441":{"position":[[352,16]]}}}],["nowplay",{"_index":2376,"t":{"441":{"position":[[1136,15],[1317,15]]}}}],["npm",{"_index":63,"t":{"4":{"position":[[1119,3]]},"302":{"position":[[412,3],[424,3]]},"304":{"position":[[387,3]]},"347":{"position":[[320,3],[498,3]]},"381":{"position":[[201,3],[213,3],[237,3],[251,3],[1251,3]]}}}],["npm:@rollup/wasm",{"_index":2269,"t":{"381":{"position":[[631,17]]}}}],["ntfi",{"_index":178,"t":{"4":{"position":[[4988,7]]},"20":{"position":[[614,7],[998,5],[1184,7]]},"412":{"position":[[730,5]]}}}],["ntfyconfig",{"_index":353,"t":{"20":{"position":[[1035,10]]}}}],["ntfyserveron",{"_index":346,"t":{"20":{"position":[[589,16]]}}}],["null",{"_index":1827,"t":{"310":{"position":[[491,4]]},"329":{"position":[[615,4],[857,4],[1004,4]]}}}],["number",{"_index":1036,"t":{"99":{"position":[[423,6]]},"105":{"position":[[417,6]]},"137":{"position":[[794,6]]},"199":{"position":[[329,6]]},"331":{"position":[[2131,6]]},"439":{"position":[[142,6]]}}}],["numer",{"_index":1658,"t":{"237":{"position":[[46,7]]}}}],["nvm",{"_index":1795,"t":{"302":{"position":[[137,3],[332,3]]},"381":{"position":[[153,3]]}}}],["o",{"_index":2081,"t":{"345":{"position":[[263,1],[302,1]]},"371":{"position":[[2079,1]]}}}],["oauth",{"_index":1364,"t":{"195":{"position":[[557,5],[1369,5],[1549,5],[1893,5],[2170,6],[2893,5],[3174,5],[3786,5]]},"197":{"position":[[159,5],[218,5],[284,5]]},"357":{"position":[[409,6],[427,5]]}}}],["obj",{"_index":1963,"t":{"327":{"position":[[407,5],[750,4]]}}}],["object",{"_index":1494,"t":{"205":{"position":[[1110,6]]},"209":{"position":[[236,6],[321,6]]},"211":{"position":[[167,7],[874,6]]},"213":{"position":[[66,6],[117,6],[539,6],[717,6],[1050,7]]},"215":{"position":[[88,6]]},"280":{"position":[[336,6]]},"308":{"position":[[197,6],[214,6]]},"334":{"position":[[939,6]]}}}],["object.values(cp).every(x",{"_index":1944,"t":{"325":{"position":[[809,27]]}}}],["obscur",{"_index":1562,"t":{"217":{"position":[[1030,8]]},"219":{"position":[[427,8]]}}}],["obtain",{"_index":563,"t":{"42":{"position":[[230,6]]},"45":{"position":[[622,8]]},"195":{"position":[[665,6]]}}}],["occasion",{"_index":2343,"t":{"406":{"position":[[218,12]]}}}],["occur",{"_index":1534,"t":{"215":{"position":[[60,6]]},"310":{"position":[[2815,8]]},"334":{"position":[[1087,8]]},"371":{"position":[[371,6],[914,5],[2682,9],[3259,8]]},"441":{"position":[[631,5]]}}}],["occurr",{"_index":1632,"t":{"234":{"position":[[446,10]]}}}],["off",{"_index":883,"t":{"85":{"position":[[450,5]]}}}],["offici",{"_index":463,"t":{"32":{"position":[[311,8]]},"129":{"position":[[410,8]]},"226":{"position":[[305,13]]},"239":{"position":[[356,8],[683,9],[1410,10],[1443,12]]},"241":{"position":[[830,10],[896,12]]},"244":{"position":[[386,8],[447,13]]},"255":{"position":[[295,13]]},"357":{"position":[[768,8]]},"363":{"position":[[189,8]]}}}],["offlin",{"_index":2078,"t":{"345":{"position":[[64,7]]},"397":{"position":[[1516,7]]}}}],["ogg",{"_index":991,"t":{"91":{"position":[[1405,6],[1619,4]]}}}],["ok",{"_index":371,"t":{"22":{"position":[[128,2]]},"336":{"position":[[2997,2]]},"371":{"position":[[758,4]]}}}],["okay",{"_index":1672,"t":{"239":{"position":[[415,4]]}}}],["old",{"_index":1394,"t":{"195":{"position":[[1922,3]]}}}],["omit",{"_index":675,"t":{"56":{"position":[[2192,8],[2428,8]]},"58":{"position":[[35,4]]},"69":{"position":[[341,7]]},"265":{"position":[[184,8]]},"278":{"position":[[516,8]]},"416":{"position":[[424,7]]}}}],["on",{"_index":16,"t":{"4":{"position":[[123,3],[278,3],[580,3],[604,3],[1606,3],[2804,3],[3289,3]]},"10":{"position":[[211,3]]},"16":{"position":[[330,3]]},"49":{"position":[[61,3]]},"56":{"position":[[1302,3]]},"71":{"position":[[45,3]]},"81":{"position":[[229,3]]},"165":{"position":[[1224,3]]},"169":{"position":[[196,3],[457,4]]},"179":{"position":[[1493,3]]},"195":{"position":[[510,3],[2059,3]]},"205":{"position":[[956,3]]},"207":{"position":[[24,3]]},"224":{"position":[[487,3]]},"230":{"position":[[354,3],[434,3]]},"234":{"position":[[672,3],[1440,3],[2782,3],[4470,3]]},"241":{"position":[[27,3]]},"259":{"position":[[464,3]]},"261":{"position":[[1158,3],[1330,3]]},"265":{"position":[[117,3]]},"278":{"position":[[483,3]]},"295":{"position":[[172,3],[216,3],[559,3],[624,4]]},"321":{"position":[[1069,3]]},"363":{"position":[[71,3]]},"375":{"position":[[2626,3]]},"397":{"position":[[3133,3]]},"412":{"position":[[1696,3]]},"414":{"position":[[30,3],[54,3]]}}}],["onc",{"_index":922,"t":{"87":{"position":[[1200,4]]},"195":{"position":[[4537,4]]},"230":{"position":[[1327,5]]},"267":{"position":[[582,5]]}}}],["one/mi",{"_index":1778,"t":{"295":{"position":[[459,6]]}}}],["onlin",{"_index":822,"t":{"77":{"position":[[224,6]]}}}],["open",{"_index":284,"t":{"12":{"position":[[3035,4]]},"65":{"position":[[509,4]]},"81":{"position":[[331,4],[599,4]]},"87":{"position":[[262,4]]},"179":{"position":[[86,4]]},"183":{"position":[[44,4]]},"304":{"position":[[298,4]]},"310":{"position":[[1880,4]]},"353":{"position":[[2267,5],[2369,4]]},"391":{"position":[[0,4]]},"412":{"position":[[1522,4]]}}}],["oper",{"_index":1147,"t":{"149":{"position":[[76,9],[335,9]]},"306":{"position":[[385,8],[490,8]]},"308":{"position":[[278,7]]},"310":{"position":[[988,8]]},"331":{"position":[[46,7],[160,7]]}}}],["opinion",{"_index":1540,"t":{"217":{"position":[[347,8]]},"244":{"position":[[283,11]]}}}],["oppos",{"_index":1885,"t":{"318":{"position":[[965,7]]},"353":{"position":[[168,7]]}}}],["option",{"_index":130,"t":{"4":{"position":[[3539,7],[3585,7],[5111,11],[5135,11]]},"6":{"position":[[43,7]]},"8":{"position":[[6,7]]},"12":{"position":[[203,9]]},"14":{"position":[[51,8],[72,7]]},"20":{"position":[[709,10],[1062,10],[1306,11],[1330,11]]},"56":{"position":[[69,9],[207,9],[371,9],[582,9],[746,9],[1076,10]]},"71":{"position":[[341,7],[416,10]]},"73":{"position":[[633,7],[701,10]]},"75":{"position":[[1298,7],[1366,10]]},"85":{"position":[[215,6],[360,10],[421,6]]},"87":{"position":[[3543,10]]},"91":{"position":[[1488,7]]},"95":{"position":[[2334,8],[2619,10],[3239,10]]},"97":{"position":[[144,7]]},"99":{"position":[[493,8]]},"115":{"position":[[231,10]]},"127":{"position":[[311,10]]},"147":{"position":[[262,10],[528,10]]},"151":{"position":[[158,8]]},"157":{"position":[[2605,10],[3153,10]]},"169":{"position":[[615,8]]},"179":{"position":[[782,8],[1646,10],[2410,10]]},"195":{"position":[[1146,10],[2736,10],[4039,10]]},"197":{"position":[[593,10],[950,10]]},"203":{"position":[[464,10]]},"205":{"position":[[1338,10]]},"207":{"position":[[677,9]]},"209":{"position":[[837,10],[1518,10],[1696,10],[2322,10]]},"215":{"position":[[351,10]]},"230":{"position":[[520,7]]},"232":{"position":[[46,9]]},"244":{"position":[[64,8]]},"248":{"position":[[444,10]]},"250":{"position":[[627,10]]},"253":{"position":[[263,10]]},"255":{"position":[[535,10]]},"257":{"position":[[598,10]]},"261":{"position":[[657,7]]},"265":{"position":[[327,10]]},"270":{"position":[[393,10]]},"272":{"position":[[292,10]]},"274":{"position":[[325,10]]},"278":{"position":[[659,10]]},"282":{"position":[[143,10]]},"302":{"position":[[342,9]]},"308":{"position":[[204,9],[350,7],[362,8]]},"312":{"position":[[283,8]]},"325":{"position":[[247,7]]},"327":{"position":[[631,8]]},"334":{"position":[[681,9]]},"371":{"position":[[1505,7],[1579,10],[2214,11],[2351,7],[2414,10]]},"375":{"position":[[1236,9],[2286,8],[2445,11],[2994,12]]},"377":{"position":[[893,7]]},"381":{"position":[[163,9]]},"397":{"position":[[1642,7],[2779,9]]},"401":{"position":[[500,7]]},"403":{"position":[[25,7]]},"416":{"position":[[355,8]]},"426":{"position":[[75,7]]},"441":{"position":[[1102,10]]}}}],["order",{"_index":333,"t":{"18":{"position":[[76,5]]},"87":{"position":[[116,5]]},"97":{"position":[[3,5]]},"103":{"position":[[3,5]]},"153":{"position":[[3,5]]},"165":{"position":[[2014,5]]},"195":{"position":[[2067,5]]},"241":{"position":[[98,5]]},"300":{"position":[[339,5]]},"310":{"position":[[306,5],[2401,5]]},"331":{"position":[[289,5]]},"371":{"position":[[30,5]]},"375":{"position":[[2108,5]]},"441":{"position":[[1253,5]]}}}],["organ",{"_index":1652,"t":{"234":{"position":[[4014,9],[4116,9]]},"248":{"position":[[102,9]]}}}],["origin",{"_index":1401,"t":{"195":{"position":[[2282,7]]},"215":{"position":[[152,8],[243,8]]},"217":{"position":[[1254,10]]},"221":{"position":[[158,10]]},"371":{"position":[[1845,10],[1935,10],[2035,10],[2118,10]]}}}],["os",{"_index":909,"t":{"87":{"position":[[965,2]]}}}],["os/contain",{"_index":27,"t":{"4":{"position":[[367,12]]}}}],["other",{"_index":2358,"t":{"412":{"position":[[1771,6]]}}}],["otherwis",{"_index":765,"t":{"69":{"position":[[601,10]]},"75":{"position":[[601,9]]},"327":{"position":[[505,9]]},"375":{"position":[[1711,10]]}}}],["out",{"_index":634,"t":{"54":{"position":[[739,4]]},"123":{"position":[[937,3]]},"195":{"position":[[1988,3]]},"241":{"position":[[589,3]]},"246":{"position":[[139,3]]},"360":{"position":[[405,3]]},"403":{"position":[[342,3]]}}}],["output",{"_index":305,"t":{"14":{"position":[[111,6],[163,6]]},"87":{"position":[[3121,6],[3328,6]]},"179":{"position":[[2292,6]]},"215":{"position":[[15,6],[145,6],[186,6],[236,6],[277,6]]},"310":{"position":[[642,6]]},"353":{"position":[[1557,6]]},"365":{"position":[[516,6]]},"426":{"position":[[121,6]]}}}],["outsid",{"_index":438,"t":{"28":{"position":[[125,7]]},"32":{"position":[[132,7]]},"111":{"position":[[61,7]]},"117":{"position":[[190,7]]},"121":{"position":[[61,7]]},"129":{"position":[[231,7]]},"165":{"position":[[2946,8]]},"183":{"position":[[614,7]]}}}],["outta",{"_index":2195,"t":{"371":{"position":[[2012,5]]}}}],["over",{"_index":1163,"t":{"149":{"position":[[1355,4]]},"217":{"position":[[698,4]]},"219":{"position":[[95,4]]},"241":{"position":[[850,4],[944,4]]},"244":{"position":[[403,4]]},"246":{"position":[[50,4],[349,4]]},"331":{"position":[[1238,4]]},"412":{"position":[[1261,4]]}}}],["overrid",{"_index":211,"t":{"10":{"position":[[312,8]]},"14":{"position":[[27,8]]},"56":{"position":[[1116,8]]},"95":{"position":[[885,8]]},"151":{"position":[[324,9]]},"157":{"position":[[536,10],[1517,8]]},"209":{"position":[[1795,10],[2423,9]]},"381":{"position":[[452,9],[540,12]]}}}],["overridden",{"_index":640,"t":{"56":{"position":[[136,10],[300,10],[488,10],[675,10],[863,10]]},"209":{"position":[[1877,10]]}}}],["overview",{"_index":591,"t":{"47":{"position":[[1497,8]]}}}],["overwrit",{"_index":2085,"t":{"345":{"position":[[318,9]]}}}],["own",{"_index":2244,"t":{"375":{"position":[[3239,4]]}}}],["p",{"_index":1241,"t":{"165":{"position":[[2744,1]]},"375":{"position":[[2311,1]]},"377":{"position":[[631,1],[786,1]]},"387":{"position":[[77,1]]}}}],["packag",{"_index":921,"t":{"87":{"position":[[1159,7]]},"347":{"position":[[324,7]]},"375":{"position":[[114,8]]}}}],["package.json",{"_index":2265,"t":{"381":{"position":[[465,12]]}}}],["page",{"_index":465,"t":{"32":{"position":[[345,4]]},"77":{"position":[[164,4]]},"129":{"position":[[445,4]]},"165":{"position":[[3074,4],[4121,5]]},"336":{"position":[[3192,5]]},"375":{"position":[[134,4],[190,4]]},"406":{"position":[[419,4]]},"426":{"position":[[9,4],[348,6],[372,4]]}}}],["pan",{"_index":1748,"t":{"272":{"position":[[188,4]]}}}],["pandora",{"_index":967,"t":{"89":{"position":[[539,7]]},"137":{"position":[[114,8]]},"365":{"position":[[147,8]]}}}],["pane",{"_index":856,"t":{"81":{"position":[[558,5]]}}}],["panel",{"_index":485,"t":{"36":{"position":[[347,5]]},"399":{"position":[[531,5]]}}}],["param",{"_index":381,"t":{"22":{"position":[[341,6]]}}}],["paramet",{"_index":1660,"t":{"237":{"position":[[104,11]]}}}],["pars",{"_index":18,"t":{"4":{"position":[[152,5],[322,5],[1141,5],[2788,5]]},"87":{"position":[[515,6]]},"91":{"position":[[0,5],[279,7],[323,5],[1161,7]]},"179":{"position":[[993,8],[2061,7]]},"310":{"position":[[849,5],[1079,5]]},"329":{"position":[[235,5],[1251,5],[2553,5]]},"360":{"position":[[124,7],[271,6]]}}}],["parseconnectionurl(v",{"_index":1975,"t":{"329":{"position":[[447,23]]}}}],["parsedconfig",{"_index":1938,"t":{"325":{"position":[[472,14],[1158,13]]}}}],["part",{"_index":1034,"t":{"99":{"position":[[226,4],[324,4]]},"105":{"position":[[222,4],[320,4]]},"137":{"position":[[579,4],[677,4]]},"195":{"position":[[3465,5]]},"211":{"position":[[89,5]]},"213":{"position":[[299,5],[959,5],[1045,4]]},"232":{"position":[[267,5]]},"234":{"position":[[3818,4]]},"276":{"position":[[87,5]]},"306":{"position":[[187,6],[402,5]]},"412":{"position":[[1845,5]]}}}],["parti",{"_index":540,"t":{"40":{"position":[[1416,5]]},"54":{"position":[[693,5]]},"56":{"position":[[2367,9]]},"58":{"position":[[1001,9]]},"85":{"position":[[6,5]]},"371":{"position":[[2763,5]]}}}],["partial",{"_index":1720,"t":{"257":{"position":[[221,7]]}}}],["partyplex",{"_index":674,"t":{"56":{"position":[[2176,12]]},"58":{"position":[[897,12]]}}}],["pass",{"_index":923,"t":{"87":{"position":[[1231,4]]},"213":{"position":[[352,6],[383,4]]},"331":{"position":[[1067,4],[1347,4]]}}}],["password",{"_index":184,"t":{"4":{"position":[[5123,11]]},"20":{"position":[[1318,11]]},"36":{"position":[[261,8]]},"49":{"position":[[107,9],[157,9],[184,8]]},"52":{"position":[[792,8]]},"56":{"position":[[2749,11]]},"95":{"position":[[504,9],[1481,9],[1516,8],[1589,9]]},"97":{"position":[[295,8]]},"101":{"position":[[275,8],[417,11],[652,11]]},"103":{"position":[[228,8]]},"107":{"position":[[206,8],[363,11],[620,11]]},"147":{"position":[[233,11],[499,11]]},"153":{"position":[[121,8]]},"155":{"position":[[302,11],[552,11]]},"169":{"position":[[261,8]]},"171":{"position":[[327,11],[619,11]]},"179":{"position":[[392,8],[410,8],[640,9]]},"181":{"position":[[230,11],[447,11]]},"209":{"position":[[426,9]]},"310":{"position":[[1303,8]]},"399":{"position":[[445,8]]}}}],["past",{"_index":2155,"t":{"360":{"position":[[346,5]]}}}],["path",{"_index":409,"t":{"24":{"position":[[737,4],[885,4]]},"75":{"position":[[454,4],[583,4],[625,4],[655,4]]},"113":{"position":[[163,4]]},"123":{"position":[[194,4],[288,4]]},"191":{"position":[[400,5],[520,4]]},"345":{"position":[[378,4]]}}}],["path/to/flatpak/build/dir",{"_index":2083,"t":{"345":{"position":[[268,26]]}}}],["pattern",{"_index":1459,"t":{"199":{"position":[[752,7]]},"203":{"position":[[25,7]]},"234":{"position":[[1925,8]]},"276":{"position":[[185,9]]},"412":{"position":[[608,9]]}}}],["paus",{"_index":745,"t":{"65":{"position":[[760,8]]},"331":{"position":[[2106,11]]}}}],["payload",{"_index":386,"t":{"22":{"position":[[483,7]]},"87":{"position":[[3296,7]]},"365":{"position":[[431,7]]}}}],["pd",{"_index":507,"t":{"40":{"position":[[344,3],[1097,3]]},"47":{"position":[[225,3],[426,3],[1171,3]]},"52":{"position":[[355,3]]},"159":{"position":[[197,3]]},"161":{"position":[[89,3]]},"173":{"position":[[37,4],[197,3],[276,3]]},"175":{"position":[[89,3]]}}}],["pds/repositori",{"_index":516,"t":{"40":{"position":[[574,14]]},"47":{"position":[[656,14]]}}}],["peac",{"_index":2356,"t":{"412":{"position":[[1541,5]]}}}],["percent",{"_index":152,"t":{"4":{"position":[[4234,10]]},"71":{"position":[[126,7],[521,10]]},"91":{"position":[[879,7]]}}}],["perform",{"_index":793,"t":{"75":{"position":[[260,11]]}}}],["period",{"_index":2175,"t":{"371":{"position":[[1033,7]]}}}],["permiss",{"_index":1158,"t":{"149":{"position":[[1041,11]]},"195":{"position":[[1406,10],[4843,11]]},"375":{"position":[[3211,11],[3305,10]]},"401":{"position":[[117,12]]}}}],["persist",{"_index":231,"t":{"12":{"position":[[42,7],[246,12],[380,9],[539,9],[666,10],[1154,11],[1296,9],[1423,10],[2081,9]]},"20":{"position":[[1488,10],[1802,12]]},"40":{"position":[[1334,10],[1762,10]]},"179":{"position":[[459,7]]},"412":{"position":[[1078,12]]},"439":{"position":[[296,7]]}}}],["person",{"_index":33,"t":{"4":{"position":[[499,6]]},"40":{"position":[[319,8],[348,9]]},"47":{"position":[[229,9],[401,8],[430,9]]},"54":{"position":[[78,6],[118,6]]},"165":{"position":[[3562,8]]},"173":{"position":[[201,9]]},"318":{"position":[[683,8]]},"412":{"position":[[1580,8]]}}}],["pgid",{"_index":1157,"t":{"149":{"position":[[995,4]]},"375":{"position":[[3392,5]]}}}],["pgid=1000",{"_index":2230,"t":{"375":{"position":[[794,9]]},"377":{"position":[[618,11],[745,11],[1383,9]]}}}],["phone",{"_index":2206,"t":{"371":{"position":[[2852,8]]}}}],["phone/comput",{"_index":891,"t":{"87":{"position":[[62,14]]}}}],["phrase",{"_index":943,"t":{"87":{"position":[[2399,7],[2922,7]]},"234":{"position":[[338,7]]},"259":{"position":[[521,7],[598,7]]},"287":{"position":[[12,6]]}}}],["phu7",{"_index":614,"t":{"52":{"position":[[950,4],[1201,4]]},"177":{"position":[[594,4],[851,4]]}}}],["pi",{"_index":2216,"t":{"375":{"position":[[76,3]]}}}],["pickup",{"_index":2299,"t":{"389":{"position":[[179,6]]}}}],["pin",{"_index":2346,"t":{"406":{"position":[[488,6]]}}}],["ping",{"_index":1845,"t":{"310":{"position":[[1924,4]]}}}],["pip/pipx",{"_index":2072,"t":{"340":{"position":[[86,8]]}}}],["place",{"_index":2145,"t":{"355":{"position":[[554,5]]},"439":{"position":[[70,6]]}}}],["placehold",{"_index":2321,"t":{"397":{"position":[[3655,12]]}}}],["plain",{"_index":376,"t":{"22":{"position":[[210,5]]},"280":{"position":[[41,5],[386,5]]}}}],["platform",{"_index":499,"t":{"40":{"position":[[126,8],[1495,9]]},"60":{"position":[[104,9]]},"159":{"position":[[101,8]]},"312":{"position":[[404,8]]},"365":{"position":[[114,8],[303,9]]},"371":{"position":[[2719,8],[2800,8]]},"375":{"position":[[6,8]]},"381":{"position":[[346,8]]},"412":{"position":[[1315,8],[1504,8]]}}}],["platformid",{"_index":2029,"t":{"331":{"position":[[2333,11]]}}}],["play",{"_index":518,"t":{"40":{"position":[[722,5]]},"47":{"position":[[804,5]]},"54":{"position":[[31,5],[542,5],[608,5],[713,4],[753,5],[890,5]]},"56":{"position":[[2079,4]]},"60":{"position":[[73,7]]},"65":{"position":[[608,6],[778,8],[850,7]]},"67":{"position":[[34,7],[91,7]]},"75":{"position":[[276,7]]},"87":{"position":[[144,5],[1727,7]]},"91":{"position":[[887,7]]},"137":{"position":[[48,7],[181,6]]},"139":{"position":[[67,6]]},"149":{"position":[[283,6]]},"165":{"position":[[232,4],[307,4],[451,7]]},"179":{"position":[[1020,6]]},"191":{"position":[[45,6]]},"201":{"position":[[114,4],[202,4],[236,4],[258,5],[292,4],[379,5],[396,5],[442,4],[521,5],[569,4],[613,4],[673,4],[760,4]]},"205":{"position":[[33,4],[98,4],[144,4],[193,4],[271,4],[336,4],[428,4],[1431,4],[1524,4]]},"207":{"position":[[114,4],[369,4],[486,4]]},"211":{"position":[[102,4],[251,4],[326,4],[429,4],[495,4],[556,4],[634,4],[1197,4]]},"213":{"position":[[284,4],[458,4],[534,4],[636,4],[712,4],[809,4],[886,4],[1465,4]]},"215":{"position":[[161,4],[252,4]]},"217":{"position":[[35,4],[197,4],[263,4]]},"228":{"position":[[221,4],[296,4],[391,4]]},"232":{"position":[[171,4]]},"234":{"position":[[3996,4]]},"239":{"position":[[241,4]]},"244":{"position":[[233,4]]},"246":{"position":[[471,4]]},"250":{"position":[[447,4]]},"259":{"position":[[73,4],[574,4],[694,4]]},"263":{"position":[[202,4],[277,4],[372,4]]},"276":{"position":[[96,4]]},"287":{"position":[[55,4]]},"312":{"position":[[246,6],[332,4],[391,4],[464,6]]},"318":{"position":[[455,6],[501,7]]},"321":{"position":[[2144,7]]},"331":{"position":[[108,6],[408,8],[771,7],[834,5],[1464,6],[1854,6],[1899,7],[1985,9],[2080,9],[2212,5],[2370,5],[2680,6],[2844,5]]},"334":{"position":[[166,6],[934,4],[1119,8]]},"336":{"position":[[1845,5],[2041,6],[2258,7],[2321,4],[2441,4],[2473,6],[3218,4],[3296,5],[3361,4],[3638,5],[3751,4],[3996,4]]},"363":{"position":[[113,5]]},"367":{"position":[[21,7]]},"371":{"position":[[2899,7]]},"401":{"position":[[569,7]]},"412":{"position":[[782,7],[1435,4],[1464,4],[1899,5]]},"414":{"position":[[139,6]]},"416":{"position":[[72,7]]},"418":{"position":[[92,6]]},"434":{"position":[[92,6]]},"436":{"position":[[9,7]]},"441":{"position":[[41,7],[123,7],[150,7],[264,7],[287,7],[470,7],[594,8],[940,7],[1242,7],[1309,7]]}}}],["play/scrobbl",{"_index":1499,"t":{"205":{"position":[[1501,14]]}}}],["playdat",{"_index":1972,"t":{"327":{"position":[[906,9]]}}}],["playedat",{"_index":1970,"t":{"327":{"position":[[736,9],[873,8]]}}}],["player",{"_index":706,"t":{"60":{"position":[[94,6]]},"62":{"position":[[592,6]]},"65":{"position":[[747,6],[787,6]]},"87":{"position":[[3265,6]]},"149":{"position":[[59,7],[303,6]]},"151":{"position":[[210,6],[287,7]]},"165":{"position":[[36,6]]},"318":{"position":[[66,6],[85,7],[98,6],[566,6],[593,6],[635,6],[709,6],[924,6]]},"321":{"position":[[47,6],[622,6],[650,6],[791,6],[2120,6]]},"323":{"position":[[775,6]]},"329":{"position":[[1984,6],[2511,6]]},"331":{"position":[[87,6],[279,6],[1085,6],[1194,6],[1356,6],[2200,6],[2277,6],[2437,6],[2456,6],[2580,6],[2642,6]]},"336":{"position":[[578,7]]},"397":{"position":[[31,7]]},"412":{"position":[[301,6]]},"416":{"position":[[116,7],[134,7]]},"441":{"position":[[572,6],[669,6],[730,7]]}}}],["player'",{"_index":1958,"t":{"327":{"position":[[92,8],[587,8]]}}}],["playerdata",{"_index":2028,"t":{"331":{"position":[[2301,11]]}}}],["playerst",{"_index":2025,"t":{"331":{"position":[[2064,12]]}}}],["playerstatedata",{"_index":2018,"t":{"331":{"position":[[1591,16],[2313,15]]}}}],["playlist/queu",{"_index":1208,"t":{"165":{"position":[[92,14]]}}}],["playobject",{"_index":1860,"t":{"312":{"position":[[4,10],[523,10],[648,10],[736,10]]},"321":{"position":[[2043,10]]},"327":{"position":[[127,11],[294,10],[671,10]]},"331":{"position":[[742,11],[2496,10]]},"334":{"position":[[375,11]]},"336":{"position":[[2878,11],[3055,12],[3556,11],[3588,12]]}}}],["plays.push(playerdata",{"_index":2031,"t":{"331":{"position":[[2520,23]]}}}],["playtransform",{"_index":1482,"t":{"203":{"position":[[477,16]]},"205":{"position":[[1351,16]]},"209":{"position":[[850,16],[1531,16],[1709,16],[2335,16]]},"213":{"position":[[1191,16],[1475,16]]},"215":{"position":[[74,13],[364,16]]},"248":{"position":[[457,16]]},"250":{"position":[[640,16]]},"253":{"position":[[276,16]]},"255":{"position":[[548,16]]},"257":{"position":[[611,16]]},"265":{"position":[[340,16]]},"270":{"position":[[406,16]]},"272":{"position":[[305,16]]},"274":{"position":[[338,16]]},"278":{"position":[[672,16]]},"282":{"position":[[156,16]]}}}],["pleas",{"_index":894,"t":{"87":{"position":[[255,6],[3084,6],[3281,6]]},"165":{"position":[[3528,6]]},"179":{"position":[[2248,6]]},"250":{"position":[[285,6]]},"371":{"position":[[1361,6]]}}}],["plex",{"_index":40,"t":{"4":{"position":[[618,4],[1535,4],[3218,4]]},"54":{"position":[[494,4],[565,4],[681,4]]},"56":{"position":[[1694,7],[1864,7],[2160,7]]},"60":{"position":[[146,5]]},"62":{"position":[[665,4]]},"157":{"position":[[10,4],[79,4],[225,4],[295,4],[341,4],[765,4],[921,4],[967,4],[1085,4],[1233,4],[1257,4],[1430,4],[1656,4],[1713,4],[1804,5],[1886,5],[3255,6]]},"336":{"position":[[266,5],[1177,5]]},"393":{"position":[[338,5]]},"397":{"position":[[123,4],[2508,4],[2577,4],[3001,4]]},"412":{"position":[[348,4]]},"416":{"position":[[198,5]]}}}],["plex.json",{"_index":110,"t":{"4":{"position":[[2470,9]]}}}],["plex_devices_allow",{"_index":1197,"t":{"157":{"position":[[1917,18]]}}}],["plex_devices_block",{"_index":1198,"t":{"157":{"position":[[1988,18]]}}}],["plex_libraries_allow",{"_index":1192,"t":{"157":{"position":[[1491,20],[2069,20]]}}}],["plex_libraries_block",{"_index":1199,"t":{"157":{"position":[[2151,20]]}}}],["plex_local_us",{"_index":1187,"t":{"157":{"position":[[270,17],[1145,18]]}}}],["plex_token",{"_index":1195,"t":{"157":{"position":[[1694,10]]}}}],["plex_token=6c0ihz8j7__f5r18oa0zm8",{"_index":2315,"t":{"397":{"position":[[2743,33]]}}}],["plex_url",{"_index":1193,"t":{"157":{"position":[[1628,8]]}}}],["plex_url=http://192.168.0.101:32400",{"_index":2314,"t":{"397":{"position":[[2705,35]]}}}],["plex_users_allow",{"_index":1189,"t":{"157":{"position":[[453,16],[723,16],[885,17],[1179,17],[1744,16]]}}}],["plex_users_allow=myplexusernam",{"_index":2316,"t":{"397":{"position":[[2847,31]]}}}],["plex_users_block",{"_index":1196,"t":{"157":{"position":[[1826,16]]}}}],["plexmediaserver/1.24.5.5173",{"_index":2132,"t":{"353":{"position":[[1054,27]]}}}],["plkex",{"_index":2135,"t":{"353":{"position":[[1111,6]]}}}],["pm195xpv98cdpk0qw47fiior8akatax5dblbf",{"_index":399,"t":{"24":{"position":[[362,37]]},"399":{"position":[[1533,37]]}}}],["podcast",{"_index":630,"t":{"54":{"position":[[623,7]]},"56":{"position":[[2089,10],[2132,12]]},"58":{"position":[[869,12]]}}}],["point",{"_index":1382,"t":{"195":{"position":[[1277,5]]},"203":{"position":[[131,7]]}}}],["poll",{"_index":338,"t":{"20":{"position":[[85,7],[108,7],[129,7]]},"22":{"position":[[660,4],[728,7]]},"56":{"position":[[102,7]]},"195":{"position":[[4601,7]]},"318":{"position":[[877,7]]},"323":{"position":[[418,7]]},"331":{"position":[[645,7]]},"336":{"position":[[31,7],[407,7],[1139,7],[1233,7],[2148,7]]}}}],["pollingopt",{"_index":1888,"t":{"321":{"position":[[236,14],[522,14]]}}}],["polo",{"_index":1747,"t":{"272":{"position":[[180,5]]}}}],["pong",{"_index":1846,"t":{"310":{"position":[[1929,4]]}}}],["pop!_o",{"_index":2280,"t":{"385":{"position":[[107,8]]}}}],["popular",{"_index":1084,"t":{"123":{"position":[[373,7]]},"385":{"position":[[59,7]]}}}],["popup",{"_index":1406,"t":{"195":{"position":[[2473,5]]}}}],["port",{"_index":209,"t":{"10":{"position":[[296,4],[345,4]]},"12":{"position":[[3637,4]]},"65":{"position":[[514,4]]},"87":{"position":[[950,4]]},"99":{"position":[[418,4]]},"105":{"position":[[412,4],[449,4]]},"137":{"position":[[789,4],[895,4]]},"145":{"position":[[183,4]]},"149":{"position":[[1391,4],[1534,5],[1589,4]]},"153":{"position":[[268,4],[374,4]]},"155":{"position":[[116,4]]},"157":{"position":[[50,4]]},"179":{"position":[[711,5],[841,4],[978,5]]},"230":{"position":[[2060,6]]},"267":{"position":[[1183,6]]},"318":{"position":[[668,4]]},"321":{"position":[[775,4]]},"353":{"position":[[2165,4],[2254,4],[2354,4]]},"375":{"position":[[1424,6],[1451,4],[1468,4],[2083,4],[2223,4],[2414,6]]},"377":{"position":[[139,4],[1423,6]]},"381":{"position":[[1301,4],[1343,4]]},"393":{"position":[[156,4]]},"395":{"position":[[487,6]]},"397":{"position":[[2548,4]]}}}],["ports/prefix",{"_index":1974,"t":{"329":{"position":[[269,13]]}}}],["posit",{"_index":746,"t":{"65":{"position":[[794,8]]},"75":{"position":[[72,9]]},"318":{"position":[[600,8]]},"331":{"position":[[2118,9],[2170,8],[2414,8]]}}}],["possibl",{"_index":93,"t":{"4":{"position":[[1876,8]]},"149":{"position":[[629,9]]},"165":{"position":[[3640,8]]},"195":{"position":[[1940,8]]},"234":{"position":[[379,8],[704,11],[902,13],[2150,11],[2498,13],[3017,11],[3237,11]]},"241":{"position":[[441,11]]},"259":{"position":[[753,11],[887,13]]},"310":{"position":[[2866,9]]},"412":{"position":[[2042,9]]}}}],["post",{"_index":2130,"t":{"353":{"position":[[1010,4]]}}}],["postcompar",{"_index":1484,"t":{"203":{"position":[[547,14]]},"205":{"position":[[172,11],[407,11],[1079,12]]}}}],["potenti",{"_index":1509,"t":{"209":{"position":[[192,13]]},"234":{"position":[[82,9]]},"357":{"position":[[1255,11]]}}}],["pr",{"_index":2300,"t":{"391":{"position":[[7,2]]}}}],["practic",{"_index":1624,"t":{"232":{"position":[[127,9]]},"259":{"position":[[640,9]]},"336":{"position":[[3826,8]]}}}],["pre",{"_index":281,"t":{"12":{"position":[[2667,3]]},"213":{"position":[[253,3]]},"261":{"position":[[1180,4]]}}}],["preced",{"_index":1645,"t":{"234":{"position":[[2803,9]]}}}],["precompar",{"_index":1483,"t":{"203":{"position":[[496,13]]},"205":{"position":[[13,10],[251,10],[827,10],[984,10],[1064,10]]},"209":{"position":[[869,13],[1550,13],[1728,13],[2354,13]]},"213":{"position":[[1210,13],[1494,13]]},"215":{"position":[[383,13]]},"248":{"position":[[476,13]]},"250":{"position":[[673,13]]},"253":{"position":[[295,13]]},"255":{"position":[[567,13]]},"257":{"position":[[630,13]]},"265":{"position":[[359,13]]},"270":{"position":[[425,13]]},"272":{"position":[[324,13]]},"274":{"position":[[357,13]]},"278":{"position":[[691,13]]},"282":{"position":[[191,13]]}}}],["prefer",{"_index":1285,"t":{"179":{"position":[[110,11]]},"217":{"position":[[557,6]]},"239":{"position":[[295,6],[520,6]]},"241":{"position":[[823,6],[915,6]]},"244":{"position":[[464,6],[564,6]]},"246":{"position":[[38,6],[334,6]]},"336":{"position":[[309,6]]}}}],["preferences/set",{"_index":1320,"t":{"183":{"position":[[53,20]]}}}],["prefix",{"_index":1607,"t":{"230":{"position":[[1028,6]]},"267":{"position":[[283,6]]}}}],["premium",{"_index":837,"t":{"79":{"position":[[271,7]]}}}],["present",{"_index":26,"t":{"4":{"position":[[352,7]]},"91":{"position":[[110,10]]},"241":{"position":[[1037,7]]},"259":{"position":[[419,7],[481,7]]},"261":{"position":[[706,7],[787,7],[905,7],[992,8]]},"263":{"position":[[402,7]]},"304":{"position":[[376,10]]}}}],["preset",{"_index":1595,"t":{"230":{"position":[[81,7],[317,7],[358,6],[445,7]]}}}],["presid",{"_index":2185,"t":{"371":{"position":[[1810,9]]}}}],["press",{"_index":846,"t":{"81":{"position":[[318,5],[392,5]]}}}],["pretend",{"_index":2149,"t":{"357":{"position":[[676,7]]}}}],["pretransform",{"_index":1605,"t":{"230":{"position":[[965,12],[1184,12],[1882,12]]},"267":{"position":[[220,12],[439,12],[1005,12]]}}}],["prevent",{"_index":886,"t":{"85":{"position":[[586,7]]},"139":{"position":[[390,7]]},"141":{"position":[[138,7]]},"199":{"position":[[866,7]]},"336":{"position":[[2485,8],[4048,7]]}}}],["preview",{"_index":594,"t":{"47":{"position":[[1556,7]]}}}],["previou",{"_index":1506,"t":{"207":{"position":[[505,8]]},"397":{"position":[[448,8]]}}}],["previous",{"_index":2011,"t":{"331":{"position":[[810,10],[2889,10]]}}}],["primari",{"_index":1588,"t":{"224":{"position":[[692,7]]},"239":{"position":[[736,7]]}}}],["primarili",{"_index":2006,"t":{"331":{"position":[[36,9]]}}}],["print",{"_index":2247,"t":{"375":{"position":[[3487,6],[3507,6]]}}}],["priorit",{"_index":1559,"t":{"217":{"position":[[933,10]]},"219":{"position":[[330,10]]}}}],["prioriti",{"_index":172,"t":{"4":{"position":[[4923,13],[5147,13]]},"20":{"position":[[758,8],[944,13],[1111,8],[1342,13]]},"241":{"position":[[143,8]]},"441":{"position":[[1282,8]]}}}],["privaci",{"_index":532,"t":{"40":{"position":[[1237,8]]},"47":{"position":[[1311,8]]},"49":{"position":[[129,7]]}}}],["probabl",{"_index":574,"t":{"45":{"position":[[275,8]]},"52":{"position":[[370,8]]}}}],["problem",{"_index":895,"t":{"87":{"position":[[294,8]]},"357":{"position":[[1279,8]]},"375":{"position":[[3316,9]]},"403":{"position":[[537,8]]}}}],["proce",{"_index":2090,"t":{"345":{"position":[[491,7]]}}}],["process",{"_index":1216,"t":{"165":{"position":[[761,7],[2481,7],[4351,7]]},"203":{"position":[[169,10]]},"205":{"position":[[755,9],[861,9]]},"213":{"position":[[406,10]]},"217":{"position":[[1687,11]]},"331":{"position":[[2572,7]]}}}],["process.env.cool_token",{"_index":1943,"t":{"325":{"position":[[781,22]]}}}],["process.env.cool_url",{"_index":1942,"t":{"325":{"position":[[752,21]]}}}],["processrecentplay",{"_index":2013,"t":{"331":{"position":[[1001,18],[1134,21],[1272,18]]},"336":{"position":[[1815,19]]}}}],["profil",{"_index":464,"t":{"32":{"position":[[337,7]]},"34":{"position":[[119,7]]},"47":{"position":[[62,7]]},"129":{"position":[[437,7]]},"412":{"position":[[2232,7]]}}}],["project",{"_index":95,"t":{"4":{"position":[[2021,8],[3660,7]]},"123":{"position":[[962,7]]},"195":{"position":[[1846,7]]},"312":{"position":[[772,7]]},"336":{"position":[[1498,7]]},"345":{"position":[[170,7]]},"347":{"position":[[224,7],[271,7]]}}}],["project_dir",{"_index":2095,"t":{"347":{"position":[[285,11],[463,11]]}}}],["project_dir/config",{"_index":71,"t":{"4":{"position":[[1293,18]]}}}],["project_dir/config/config.json",{"_index":126,"t":{"4":{"position":[[2953,30]]}}}],["project_dir/flatpak",{"_index":2099,"t":{"347":{"position":[[375,19],[561,19],[761,19]]}}}],["promise<playobject",{"_index":2022,"t":{"331":{"position":[[1824,21]]},"334":{"position":[[715,21]]}}}],["promise<tru",{"_index":1983,"t":{"329":{"position":[[766,12],[1722,12]]}}}],["promot",{"_index":1678,"t":{"239":{"position":[[693,12]]}}}],["proper",{"_index":1739,"t":{"261":{"position":[[1265,6]]},"401":{"position":[[105,6]]}}}],["properli",{"_index":1363,"t":{"195":{"position":[[463,8]]},"318":{"position":[[298,8]]},"331":{"position":[[668,8]]}}}],["propert",{"_index":1525,"t":{"213":{"position":[[133,9]]}}}],["properti",{"_index":280,"t":{"12":{"position":[[2539,11]]},"16":{"position":[[357,8]]},"20":{"position":[[267,9]]},"56":{"position":[[150,8],[314,8],[502,8],[689,8],[877,8]]},"58":{"position":[[47,8]]},"69":{"position":[[65,8],[131,8],[625,8]]},"87":{"position":[[1661,8]]},"169":{"position":[[635,8]]},"209":{"position":[[2433,8]]},"211":{"position":[[702,8],[841,8],[939,10]]},"213":{"position":[[158,8],[223,8]]},"226":{"position":[[11,10]]},"232":{"position":[[9,10]]},"239":{"position":[[1281,8]]},"241":{"position":[[42,8],[152,9]]},"261":{"position":[[10,10],[531,10]]},"280":{"position":[[903,8]]},"310":{"position":[[1287,10],[2021,11],[2054,10],[3154,10]]},"321":{"position":[[570,11]]},"329":{"position":[[170,10]]},"441":{"position":[[867,8]]}}}],["properties/behavior",{"_index":1813,"t":{"306":{"position":[[441,19]]}}}],["protect",{"_index":1982,"t":{"329":{"position":[[731,9],[1685,9]]},"331":{"position":[[1752,9]]},"334":{"position":[[644,9]]}}}],["protocol",{"_index":206,"t":{"10":{"position":[[232,8],[255,8]]},"40":{"position":[[151,8],[198,8]]},"47":{"position":[[280,8]]},"159":{"position":[[126,8]]}}}],["protocol]://[hostname]:[port]/[path",{"_index":1032,"t":{"99":{"position":[[138,37]]},"105":{"position":[[136,37]]},"137":{"position":[[493,37]]}}}],["provid",{"_index":101,"t":{"4":{"position":[[2224,8],[3849,8]]},"12":{"position":[[1018,11],[1763,11],[2386,11],[2964,11],[3734,11]]},"30":{"position":[[400,9]]},"54":{"position":[[391,8]]},"75":{"position":[[539,9],[686,7]]},"87":{"position":[[440,8]]},"95":{"position":[[1456,7],[1564,7]]},"97":{"position":[[270,7]]},"103":{"position":[[259,7]]},"113":{"position":[[17,8]]},"115":{"position":[[202,8]]},"123":{"position":[[17,8]]},"125":{"position":[[71,8]]},"127":{"position":[[200,8],[260,8]]},"153":{"position":[[382,8],[435,8]]},"169":{"position":[[533,7]]},"191":{"position":[[317,8],[503,7]]},"195":{"position":[[3336,7],[5272,8]]},"261":{"position":[[645,8],[1257,7]]},"276":{"position":[[52,8]]},"316":{"position":[[19,7]]},"329":{"position":[[191,8]]},"334":{"position":[[107,8]]},"345":{"position":[[29,8]]},"371":{"position":[[1320,9],[1388,7],[2586,7],[2614,7],[3213,7]]},"397":{"position":[[1485,9]]},"426":{"position":[[136,8]]}}}],["proxi",{"_index":737,"t":{"65":{"position":[[530,6]]},"75":{"position":[[570,5]]},"123":{"position":[[894,5]]},"165":{"position":[[1572,5]]},"183":{"position":[[703,5]]},"191":{"position":[[474,6]]}}}],["psuedo",{"_index":1654,"t":{"234":{"position":[[4216,6]]}}}],["public",{"_index":529,"t":{"40":{"position":[[1065,6],[1104,7],[1144,6]]},"47":{"position":[[1178,7],[1218,6],[1378,6]]},"77":{"position":[[157,6]]}}}],["publicli",{"_index":1328,"t":{"183":{"position":[[555,8]]}}}],["publish",{"_index":2240,"t":{"375":{"position":[[2278,7]]}}}],["puid",{"_index":1156,"t":{"149":{"position":[[986,4]]},"375":{"position":[[3383,4]]}}}],["puid=1000",{"_index":2228,"t":{"375":{"position":[[695,9]]},"377":{"position":[[603,11],[730,11],[1371,9]]}}}],["pull",{"_index":511,"t":{"40":{"position":[[467,5],[1020,6]]},"47":{"position":[[549,5],[1098,6]]},"408":{"position":[[35,4],[279,4]]},"410":{"position":[[84,7],[115,4]]}}}],["punk",{"_index":1638,"t":{"234":{"position":[[766,4],[948,5],[2212,4],[2274,4],[2544,5],[3078,4]]},"259":{"position":[[815,4],[933,5]]}}}],["push",{"_index":335,"t":{"20":{"position":[[14,4]]},"331":{"position":[[2481,4]]}}}],["pwd)/config:/config",{"_index":2238,"t":{"375":{"position":[[1848,23]]},"377":{"position":[[801,23]]}}}],["python",{"_index":2070,"t":{"340":{"position":[[73,6]]}}}],["qualiti",{"_index":980,"t":{"91":{"position":[[383,7]]}}}],["queri",{"_index":380,"t":{"22":{"position":[[335,5]]},"195":{"position":[[3687,5]]},"232":{"position":[[293,7]]},"234":{"position":[[32,7],[184,5],[1124,8]]}}}],["querystrings/data",{"_index":1253,"t":{"165":{"position":[[3583,17]]}}}],["queu",{"_index":247,"t":{"12":{"position":[[299,6]]},"412":{"position":[[1013,7]]}}}],["queue",{"_index":1210,"t":{"165":{"position":[[211,5]]},"371":{"position":[[3048,8]]},"439":{"position":[[97,5]]}}}],["quick",{"_index":1574,"t":{"217":{"position":[[1570,5]]},"377":{"position":[[12,5]]},"412":{"position":[[1221,5]]},"420":{"position":[[8,5]]}}}],["quicker",{"_index":266,"t":{"12":{"position":[[1129,7]]}}}],["quickstart",{"_index":1611,"t":{"230":{"position":[[1479,11]]},"267":{"position":[[734,11]]},"412":{"position":[[2420,10]]}}}],["rang",{"_index":1555,"t":{"217":{"position":[[830,5]]},"219":{"position":[[227,5]]}}}],["rank",{"_index":1698,"t":{"241":{"position":[[71,4]]}}}],["raspberri",{"_index":2215,"t":{"375":{"position":[[66,9]]}}}],["rate",{"_index":1577,"t":{"224":{"position":[[9,4]]}}}],["raw",{"_index":596,"t":{"47":{"position":[[1602,3]]},"87":{"position":[[3117,3]]},"179":{"position":[[1163,3]]},"365":{"position":[[550,3]]}}}],["re",{"_index":390,"t":{"24":{"position":[[26,2]]},"28":{"position":[[27,2]]},"32":{"position":[[27,2]]},"40":{"position":[[26,2]]},"47":{"position":[[26,2]]},"109":{"position":[[65,2]]},"111":{"position":[[189,2]]},"117":{"position":[[55,2]]},"121":{"position":[[204,2]]},"129":{"position":[[72,2]]},"159":{"position":[[210,2]]},"173":{"position":[[289,2]]},"195":{"position":[[4647,2]]},"310":{"position":[[2846,2]]},"357":{"position":[[1132,2]]},"371":{"position":[[1162,3]]}}}],["re)authent",{"_index":1265,"t":{"165":{"position":[[4296,16]]},"195":{"position":[[4270,16]]},"357":{"position":[[497,16]]},"397":{"position":[[1165,16],[4053,16]]}}}],["re)start",{"_index":2311,"t":{"397":{"position":[[1949,9]]}}}],["reach",{"_index":1415,"t":{"195":{"position":[[3084,5]]},"355":{"position":[[474,5]]}}}],["reachabl",{"_index":2137,"t":{"353":{"position":[[1877,9]]}}}],["read",{"_index":527,"t":{"40":{"position":[[998,4],[1151,5]]},"47":{"position":[[1076,4],[1225,5]]},"310":{"position":[[386,7],[1317,4],[3230,4]]},"318":{"position":[[857,4]]},"325":{"position":[[18,5]]},"329":{"position":[[1889,4]]}}}],["readi",{"_index":1292,"t":{"179":{"position":[[661,5]]}}}],["readm",{"_index":2229,"t":{"375":{"position":[[758,6],[857,6]]}}}],["real",{"_index":743,"t":{"65":{"position":[[705,4],[924,4]]},"123":{"position":[[778,4]]},"327":{"position":[[433,4]]},"401":{"position":[[586,4]]}}}],["realiz",{"_index":1714,"t":{"246":{"position":[[170,9]]}}}],["reason",{"_index":1453,"t":{"199":{"position":[[339,8]]},"234":{"position":[[4423,7]]},"310":{"position":[[711,6]]},"336":{"position":[[3873,6]]}}}],["reauthent",{"_index":1859,"t":{"310":{"position":[[3313,14]]},"357":{"position":[[370,14]]}}}],["recap",{"_index":1465,"t":{"201":{"position":[[13,5]]}}}],["receiv",{"_index":945,"t":{"87":{"position":[[2457,10],[3044,10]]},"201":{"position":[[558,8]]},"205":{"position":[[60,8],[298,8],[876,7]]},"207":{"position":[[477,8]]},"230":{"position":[[1963,8]]},"267":{"position":[[1086,8]]},"312":{"position":[[562,8]]},"336":{"position":[[215,8],[1627,8],[1787,8]]},"353":{"position":[[449,8],[814,8],[1001,8]]},"365":{"position":[[73,8]]}}}],["recent",{"_index":1879,"t":{"318":{"position":[[446,8]]},"334":{"position":[[1110,8]]},"336":{"position":[[762,8],[4019,9]]},"426":{"position":[[31,6]]}}}],["recentlyplayedopt",{"_index":2021,"t":{"331":{"position":[[1795,21]]},"334":{"position":[[691,23]]}}}],["reciev",{"_index":1239,"t":{"165":{"position":[[2717,9]]},"230":{"position":[[1243,7]]},"267":{"position":[[498,7]]}}}],["recogn",{"_index":2125,"t":{"353":{"position":[[942,10]]},"363":{"position":[[103,9]]}}}],["recommend",{"_index":901,"t":{"87":{"position":[[590,11]]},"95":{"position":[[353,11]]},"183":{"position":[[768,13]]},"195":{"position":[[826,11]]},"234":{"position":[[1761,13]]},"345":{"position":[[130,9]]},"375":{"position":[[1538,11]]},"406":{"position":[[393,11]]}}}],["record",{"_index":1642,"t":{"234":{"position":[[818,9],[3828,9],[3859,9]]},"239":{"position":[[59,9],[200,9],[1560,9],[1670,9],[1817,9]]}}}],["recov",{"_index":1852,"t":{"310":{"position":[[2938,7]]}}}],["redi",{"_index":286,"t":{"12":{"position":[[3055,6]]}}}],["redirect",{"_index":198,"t":{"10":{"position":[[49,8],[430,8],[486,8],[607,8],[841,8]]},"165":{"position":[[791,8],[843,8],[871,8],[1272,8],[1485,8],[1655,8],[2115,8],[2809,8],[2961,8],[3052,8],[3979,8],[4158,8]]},"195":{"position":[[2307,8],[2941,8],[3033,8],[3210,8],[3362,8],[3442,8],[3750,8],[4132,8]]},"197":{"position":[[267,8]]},"375":{"position":[[926,8],[2498,9]]},"397":{"position":[[617,8],[737,8]]}}}],["redirecturi",{"_index":122,"t":{"4":{"position":[[2710,14],[4604,14]]},"10":{"position":[[547,11]]},"30":{"position":[[619,14],[969,14]]},"56":{"position":[[3627,14]]},"58":{"position":[[1993,14]]},"119":{"position":[[459,14],[809,14]]},"167":{"position":[[413,14],[765,14]]},"195":{"position":[[3963,14]]},"397":{"position":[[3890,14]]}}}],["redis://192.168.0.120:6379",{"_index":301,"t":{"12":{"position":[[3660,26],[3770,28]]}}}],["redis://host_ip:host_port",{"_index":298,"t":{"12":{"position":[[3454,25]]}}}],["reduc",{"_index":234,"t":{"12":{"position":[[82,6]]},"75":{"position":[[113,6]]},"191":{"position":[[179,6]]}}}],["refer",{"_index":189,"t":{"6":{"position":[[98,9],[156,9]]},"20":{"position":[[649,5],[1004,5],[1404,5]]},"230":{"position":[[1075,5]]},"232":{"position":[[109,5]]},"267":{"position":[[330,5]]},"306":{"position":[[28,9],[128,8]]},"312":{"position":[[702,5]]},"336":{"position":[[1509,10]]},"367":{"position":[[271,5],[392,5]]},"397":{"position":[[631,5],[2945,5]]}}}],["refin",{"_index":1626,"t":{"232":{"position":[[301,8]]}}}],["refresh",{"_index":625,"t":{"54":{"position":[[429,7]]},"195":{"position":[[5432,11]]},"357":{"position":[[456,7]]}}}],["refreshtoken",{"_index":661,"t":{"56":{"position":[[1532,15]]},"58":{"position":[[464,15]]}}}],["regardless",{"_index":947,"t":{"87":{"position":[[2551,10],[2954,10]]},"137":{"position":[[220,10]]},"217":{"position":[[274,10]]},"234":{"position":[[3877,10]]},"336":{"position":[[744,10]]},"412":{"position":[[1440,10],[1632,10]]}}}],["regex",{"_index":1766,"t":{"285":{"position":[[129,5],[196,5]]},"295":{"position":[[281,5]]}}}],["regist",{"_index":440,"t":{"28":{"position":[[209,8]]},"397":{"position":[[3304,8]]},"399":{"position":[[895,8]]}}}],["registr",{"_index":1080,"t":{"117":{"position":[[312,12]]}}}],["regular",{"_index":568,"t":{"45":{"position":[[92,7]]},"52":{"position":[[184,7]]},"91":{"position":[[1182,7]]},"179":{"position":[[1182,7]]},"213":{"position":[[186,7],[831,7]]},"261":{"position":[[401,7]]},"280":{"position":[[179,7],[402,7]]},"331":{"position":[[2488,7]]}}}],["relat",{"_index":1862,"t":{"312":{"position":[[308,7]]},"395":{"position":[[40,7]]}}}],["relay",{"_index":1167,"t":{"149":{"position":[[1467,5]]}}}],["releas",{"_index":1601,"t":{"230":{"position":[[625,8]]},"234":{"position":[[3847,8],[4223,9],[4287,9],[4344,8],[4447,7]]},"239":{"position":[[49,7],[371,8],[536,7],[556,7],[625,7],[722,7],[785,7],[822,7],[889,7],[938,7],[1000,8],[1096,7],[1108,7],[1395,7],[1538,9],[1598,9],[1723,8],[1787,8],[1839,8],[2043,8]]},"241":{"position":[[5,7],[76,8],[234,8],[251,7],[345,8],[841,8]]},"244":{"position":[[395,7],[581,7]]},"246":{"position":[[61,8],[208,7]]},"406":{"position":[[172,8],[372,7],[542,7]]}}}],["release/album/ep",{"_index":1677,"t":{"239":{"position":[[666,16]]}}}],["releaseallowempti",{"_index":1593,"t":{"226":{"position":[[353,20]]},"239":{"position":[[1881,17],[1953,20]]}}}],["releasecountri",{"_index":1683,"t":{"239":{"position":[[954,16]]}}}],["releasecountryprior",{"_index":1710,"t":{"244":{"position":[[589,25]]},"255":{"position":[[371,25]]}}}],["releasegroupprimarytyp",{"_index":1679,"t":{"239":{"position":[[749,25]]}}}],["releasegroupprimarytypeprior",{"_index":1706,"t":{"241":{"position":[[965,34]]},"244":{"position":[[499,34]]},"255":{"position":[[309,34]]}}}],["releasegroupsecondarytyp",{"_index":1680,"t":{"239":{"position":[[851,27]]}}}],["releasegroupsecondarytypedeni",{"_index":1696,"t":{"239":{"position":[[1483,32]]}}}],["releasestatu",{"_index":1676,"t":{"239":{"position":[[640,15]]}}}],["releasestatusallow",{"_index":1695,"t":{"239":{"position":[[1421,21]]}}}],["releasestatusprior",{"_index":1591,"t":{"226":{"position":[[280,24]]},"241":{"position":[[871,24]]},"244":{"position":[[422,24]]},"255":{"position":[[270,24]]}}}],["reli",{"_index":899,"t":{"87":{"position":[[405,6],[672,7]]},"357":{"position":[[599,6]]},"365":{"position":[[28,6]]}}}],["reload",{"_index":1323,"t":{"183":{"position":[[244,6]]},"389":{"position":[[41,6]]}}}],["remain",{"_index":1699,"t":{"241":{"position":[[200,9]]}}}],["remast",{"_index":1531,"t":{"213":{"position":[[787,18]]}}}],["rememb",{"_index":1421,"t":{"195":{"position":[[3700,8]]},"321":{"position":[[542,8]]}}}],["remix",{"_index":1682,"t":{"239":{"position":[[924,6]]}}}],["remot",{"_index":1051,"t":{"103":{"position":[[173,6]]},"149":{"position":[[608,6],[647,6],[1275,6]]},"353":{"position":[[477,6]]}}}],["remov",{"_index":833,"t":{"79":{"position":[[133,6]]},"234":{"position":[[2359,7]]},"239":{"position":[[1988,6]]},"241":{"position":[[305,8]]},"276":{"position":[[234,8],[275,8]]},"278":{"position":[[799,7]]},"280":{"position":[[83,7],[215,7]]},"282":{"position":[[223,7],[268,7],[500,8]]},"285":{"position":[[202,6]]},"287":{"position":[[0,7]]},"371":{"position":[[1086,8]]},"393":{"position":[[564,6]]}}}],["removetrailingslash",{"_index":1977,"t":{"329":{"position":[[514,21]]}}}],["renam",{"_index":96,"t":{"4":{"position":[[2057,8]]},"347":{"position":[[399,6],[585,6]]}}}],["render",{"_index":512,"t":{"40":{"position":[[502,6],[1050,6]]},"47":{"position":[[584,6],[1128,6]]},"300":{"position":[[348,6]]}}}],["repeat",{"_index":884,"t":{"85":{"position":[[484,8],[608,8]]},"199":{"position":[[400,9],[742,9]]}}}],["replac",{"_index":447,"t":{"28":{"position":[[387,7]]},"165":{"position":[[3153,7]]},"199":{"position":[[109,9]]},"207":{"position":[[201,7]]},"211":{"position":[[1174,9]]},"261":{"position":[[287,8]]},"276":{"position":[[31,7]]},"278":{"position":[[49,7]]},"280":{"position":[[13,7],[434,7],[524,10],[549,7],[747,10],[776,7],[895,7],[930,9]]},"282":{"position":[[41,7],[301,8],[349,10]]},"285":{"position":[[61,7],[142,7],[285,10]]},"291":{"position":[[49,10]]},"293":{"position":[[52,10]]},"295":{"position":[[93,7],[106,7],[294,7],[726,10]]},"347":{"position":[[653,7]]},"381":{"position":[[516,11]]},"393":{"position":[[618,7]]},"397":{"position":[[3645,9]]},"399":{"position":[[1829,7]]}}}],["repo",{"_index":2221,"t":{"375":{"position":[[285,5]]}}}],["repo=/home/youruser/multi",{"_index":2104,"t":{"347":{"position":[[799,25]]}}}],["report",{"_index":308,"t":{"14":{"position":[[217,10]]},"67":{"position":[[13,6]]},"75":{"position":[[49,6]]},"85":{"position":[[65,6]]},"87":{"position":[[1597,6],[1681,8],[1758,6],[1855,6],[1950,8],[2622,7],[2979,8]]},"91":{"position":[[791,6]]},"165":{"position":[[286,6],[439,7]]},"169":{"position":[[184,8]]},"179":{"position":[[1270,8],[1940,10],[1987,9],[2129,10],[2229,9]]},"191":{"position":[[127,6]]},"195":{"position":[[472,6],[1447,8]]},"259":{"position":[[140,6],[180,7]]},"331":{"position":[[423,8]]},"367":{"position":[[63,9],[147,8]]},"369":{"position":[[7,9]]},"371":{"position":[[1201,9],[1412,7]]},"441":{"position":[[20,6],[272,10],[494,8],[618,9],[779,9],[1231,6],[1295,9]]}}}],["repositori",{"_index":506,"t":{"40":{"position":[[328,10],[488,10],[736,10],[1036,10]]},"47":{"position":[[209,10],[410,10],[570,10],[818,10],[1114,10]]},"161":{"position":[[93,10]]},"173":{"position":[[181,10]]},"175":{"position":[[93,10]]},"302":{"position":[[190,10]]},"304":{"position":[[5,10],[307,10]]},"375":{"position":[[123,10],[179,10]]},"381":{"position":[[11,10]]},"410":{"position":[[13,10]]}}}],["repres",{"_index":1659,"t":{"237":{"position":[[60,12]]},"239":{"position":[[1072,9]]},"327":{"position":[[556,9]]}}}],["request",{"_index":267,"t":{"12":{"position":[[1137,8]]},"24":{"position":[[1512,8]]},"56":{"position":[[235,7],[610,7]]},"65":{"position":[[211,8]]},"81":{"position":[[132,8]]},"165":{"position":[[2706,7],[3609,8]]},"310":{"position":[[374,8],[1821,7],[2496,7],[3172,7]]},"318":{"position":[[907,8]]},"329":{"position":[[1516,7],[2154,7],[2381,7]]},"331":{"position":[[1543,7],[1951,7]]},"334":{"position":[[339,7],[767,7]]},"353":{"position":[[458,7],[1015,7],[2522,9]]},"357":{"position":[[110,7]]},"399":{"position":[[2220,8]]}}}],["request.get(`${this.baseurl}/health",{"_index":1999,"t":{"329":{"position":[[1784,38]]}}}],["requir",{"_index":31,"t":{"4":{"position":[[426,7]]},"12":{"position":[[873,9],[1630,9],[2254,9],[2750,9],[3519,9]]},"22":{"position":[[566,7]]},"24":{"position":[[788,9]]},"26":{"position":[[52,9]]},"30":{"position":[[52,9]]},"34":{"position":[[52,9]]},"38":{"position":[[52,9]]},"45":{"position":[[471,9]]},"52":{"position":[[609,9]]},"65":{"position":[[429,7]]},"73":{"position":[[272,7]]},"75":{"position":[[459,8]]},"77":{"position":[[36,9]]},"83":{"position":[[36,9]]},"87":{"position":[[1470,9],[1544,9]]},"89":{"position":[[131,9]]},"93":{"position":[[36,9]]},"95":{"position":[[1234,9]]},"101":{"position":[[52,8]]},"107":{"position":[[52,8]]},"115":{"position":[[52,9],[171,8]]},"123":{"position":[[737,7]]},"125":{"position":[[26,7]]},"127":{"position":[[52,9],[169,8]]},"147":{"position":[[52,9]]},"149":{"position":[[396,8],[598,9],[768,11]]},"151":{"position":[[52,9]]},"155":{"position":[[52,9]]},"157":{"position":[[1598,9]]},"167":{"position":[[52,9]]},"171":{"position":[[52,9]]},"181":{"position":[[52,9]]},"183":{"position":[[399,9]]},"185":{"position":[[117,8]]},"189":{"position":[[52,9]]},"193":{"position":[[52,9]]},"197":{"position":[[52,9]]},"209":{"position":[[348,8]]},"224":{"position":[[36,8]]},"274":{"position":[[194,8]]},"302":{"position":[[12,8]]},"308":{"position":[[250,8],[449,8]]},"310":{"position":[[516,8],[1278,8],[1977,8],[2293,8],[2374,8],[2446,8],[2708,8]]},"312":{"position":[[99,8]]},"318":{"position":[[340,7]]},"321":{"position":[[355,8],[2065,8],[2092,8]]},"323":{"position":[[782,8],[848,7]]},"325":{"position":[[1048,10]]},"329":{"position":[[34,8]]},"340":{"position":[[64,8]]},"375":{"position":[[707,8],[806,8]]},"406":{"position":[[76,7]]}}}],["requiresauth",{"_index":1848,"t":{"310":{"position":[[2125,12]]}}}],["requiresauthinteract",{"_index":1850,"t":{"310":{"position":[[2216,23]]}}}],["reset",{"_index":2170,"t":{"371":{"position":[[568,6]]}}}],["resolut",{"_index":915,"t":{"87":{"position":[[1094,10]]}}}],["resolv",{"_index":1851,"t":{"310":{"position":[[2737,7]]},"357":{"position":[[1267,7]]},"365":{"position":[[620,7]]},"375":{"position":[[1366,7]]}}}],["resp",{"_index":1998,"t":{"329":{"position":[[1771,4],[2368,4]]},"331":{"position":[[1938,4],[2244,5]]},"334":{"position":[[754,4],[987,5]]}}}],["resp.body.vers",{"_index":2001,"t":{"329":{"position":[[2000,22]]}}}],["respect",{"_index":1262,"t":{"165":{"position":[[4178,10]]},"308":{"position":[[82,12]]}}}],["respons",{"_index":385,"t":{"22":{"position":[[459,8]]},"65":{"position":[[251,8]]},"329":{"position":[[1894,8]]}}}],["restart",{"_index":233,"t":{"12":{"position":[[72,9],[397,8],[1173,9],[2098,8]]},"56":{"position":[[110,8]]},"179":{"position":[[480,7]]},"195":{"position":[[4233,7],[4675,10]]},"230":{"position":[[2081,8]]},"267":{"position":[[1204,8]]},"310":{"position":[[180,10],[1611,7]]},"357":{"position":[[1241,7]]},"375":{"position":[[1514,8]]},"377":{"position":[[1444,8]]},"395":{"position":[[508,8]]},"397":{"position":[[2299,7],[2879,7]]},"410":{"position":[[124,7]]},"439":{"position":[[312,7]]}}}],["restart=no",{"_index":2295,"t":{"387":{"position":[[395,10]]}}}],["restrict",{"_index":382,"t":{"22":{"position":[[364,8]]},"149":{"position":[[1399,10]]},"169":{"position":[[678,8]]},"195":{"position":[[4826,11]]},"217":{"position":[[890,10]]},"219":{"position":[[287,10]]},"397":{"position":[[2789,8]]}}}],["result",{"_index":1518,"t":{"211":{"position":[[51,9],[1130,6]]},"213":{"position":[[1425,6]]},"217":{"position":[[1494,7]]},"221":{"position":[[398,7]]},"232":{"position":[[188,6],[318,7]]},"234":{"position":[[1360,7],[2434,9],[3173,9],[3468,7],[3927,7]]},"244":{"position":[[117,7]]},"250":{"position":[[88,9]]},"310":{"position":[[624,6]]}}}],["retri",{"_index":339,"t":{"20":{"position":[[116,5]]},"56":{"position":[[243,7],[389,5],[412,6],[470,10],[618,7],[764,5],[787,6],[845,10],[1137,7]]},"234":{"position":[[1268,5]]},"412":{"position":[[1041,6]]},"439":{"position":[[112,7],[207,8],[253,7]]}}}],["retriev",{"_index":842,"t":{"81":{"position":[[170,8],[257,8]]},"83":{"position":[[102,9]]},"357":{"position":[[1182,8]]}}}],["retrymultipli",{"_index":157,"t":{"4":{"position":[[4296,18],[4366,18]]},"56":{"position":[[344,18],[719,18]]}}}],["return",{"_index":369,"t":{"22":{"position":[[116,7],[320,6],[468,7],[602,6]]},"65":{"position":[[241,7]]},"234":{"position":[[611,7],[1047,6],[1349,7],[3461,6]]},"237":{"position":[[11,8]]},"250":{"position":[[22,9]]},"310":{"position":[[459,6],[484,6],[525,6],[560,6],[2586,7],[2903,6],[3274,7]]},"318":{"position":[[260,7],[523,7]]},"327":{"position":[[73,8],[109,6],[755,6]]},"329":{"position":[[717,6],[1381,6],[1823,6],[1850,8],[1907,6],[1971,6],[2473,6],[2518,8]]},"331":{"position":[[521,8],[734,7],[1098,8],[2449,6],[2750,6],[2833,6],[2964,6]]},"334":{"position":[[908,8],[993,6]]},"336":{"position":[[429,8],[702,6],[2182,8],[2943,8]]},"365":{"position":[[322,6]]}}}],["revers",{"_index":736,"t":{"65":{"position":[[522,7]]},"75":{"position":[[562,7]]},"123":{"position":[[886,7]]},"165":{"position":[[1564,7]]},"183":{"position":[[695,7]]},"191":{"position":[[466,7]]}}}],["review",{"_index":1870,"t":{"316":{"position":[[229,6]]},"403":{"position":[[91,6]]}}}],["rich",{"_index":543,"t":{"40":{"position":[[1480,4]]},"412":{"position":[[2034,4]]}}}],["right",{"_index":398,"t":{"24":{"position":[[342,5]]},"36":{"position":[[367,5]]},"81":{"position":[[774,5]]},"217":{"position":[[1383,6]]},"221":{"position":[[287,6]]},"234":{"position":[[4376,5]]},"336":{"position":[[71,5]]},"399":{"position":[[551,5],[1513,5]]}}}],["risk",{"_index":836,"t":{"79":{"position":[[219,5]]},"165":{"position":[[3767,4],[3838,4]]}}}],["rm",{"_index":1240,"t":{"165":{"position":[[2740,2]]},"408":{"position":[[125,2]]}}}],["robin",{"_index":1586,"t":{"224":{"position":[[541,5]]}}}],["rock",{"_index":1639,"t":{"234":{"position":[[771,4],[954,4],[2217,4],[2279,4],[2550,4],[3083,4]]},"259":{"position":[[820,4],[939,4]]}}}],["rockski",{"_index":496,"t":{"40":{"position":[[52,7],[69,7],[86,7],[948,8],[1270,7]]},"42":{"position":[[39,8],[75,7],[198,7]]},"45":{"position":[[636,7],[1122,9]]},"62":{"position":[[694,7]]},"159":{"position":[[26,8],[44,7],[61,7],[171,7],[285,7],[315,7]]},"161":{"position":[[37,7]]},"163":{"position":[[8,7],[265,7],[314,7],[418,7],[897,9]]},"248":{"position":[[340,8]]},"257":{"position":[[191,8]]},"412":{"position":[[353,7],[550,7]]},"436":{"position":[[59,7]]}}}],["rocksky'",{"_index":519,"t":{"40":{"position":[[787,9],[845,9],[1345,9]]}}}],["rocksky.app",{"_index":559,"t":{"42":{"position":[[120,11]]}}}],["rocksky_handl",{"_index":576,"t":{"45":{"position":[[501,14]]}}}],["rocksky_key",{"_index":578,"t":{"45":{"position":[[598,11]]}}}],["rollup",{"_index":2262,"t":{"381":{"position":[[265,6],[431,6],[532,7],[621,9]]}}}],["rollup/wasm",{"_index":2266,"t":{"381":{"position":[[485,12]]}}}],["romanian",{"_index":2189,"t":{"371":{"position":[[1889,8]]}}}],["root",{"_index":2094,"t":{"347":{"position":[[279,5]]}}}],["round",{"_index":1585,"t":{"224":{"position":[[535,5]]}}}],["rout",{"_index":2134,"t":{"353":{"position":[[1104,6]]}}}],["router",{"_index":2140,"t":{"353":{"position":[[2328,6]]}}}],["row",{"_index":862,"t":{"81":{"position":[[709,3]]},"371":{"position":[[2961,4]]}}}],["rule",{"_index":1524,"t":{"211":{"position":[[1054,5],[1102,5]]},"213":{"position":[[26,5],[147,5],[1320,4]]},"228":{"position":[[5,4]]},"230":{"position":[[992,5]]},"241":{"position":[[1025,4]]},"248":{"position":[[4,5]]},"257":{"position":[[235,5]]},"263":{"position":[[5,4],[390,4]]},"267":{"position":[[247,5]]},"278":{"position":[[87,6],[124,5]]},"282":{"position":[[5,4]]},"285":{"position":[[165,4]]}}}],["run",{"_index":28,"t":{"4":{"position":[[391,4],[443,4],[679,3],[1050,10],[1123,3]]},"10":{"position":[[375,7]]},"32":{"position":[[252,3]]},"87":{"position":[[882,7],[1051,7],[1214,7],[1304,3],[3349,7]]},"129":{"position":[[351,3]]},"149":{"position":[[102,3],[498,7],[715,7],[825,3]]},"165":{"position":[[1349,3],[1531,7],[1919,3],[2328,4],[2660,4],[2734,3],[3384,3]]},"213":{"position":[[103,4],[1174,3],[1357,3]]},"234":{"position":[[1379,3],[2069,7]]},"285":{"position":[[125,3],[176,3]]},"302":{"position":[[83,7],[383,7],[428,3]]},"304":{"position":[[253,7],[407,3]]},"318":{"position":[[290,7]]},"329":{"position":[[67,8]]},"345":{"position":[[199,3]]},"349":{"position":[[73,3],[106,3]]},"353":{"position":[[1689,7],[2216,7]]},"355":{"position":[[316,7]]},"365":{"position":[[476,3],[533,4]]},"375":{"position":[[719,7],[818,7],[986,7],[1837,3],[2274,3],[2302,3],[2808,3],[3132,7],[3442,3]]},"377":{"position":[[369,3],[700,3]]},"379":{"position":[[66,3]]},"381":{"position":[[217,3],[241,3],[255,3],[1255,3]]},"385":{"position":[[177,4]]},"387":{"position":[[385,3]]},"389":{"position":[[19,4],[241,3]]},"393":{"position":[[31,7]]},"401":{"position":[[15,7],[287,8]]},"408":{"position":[[151,3],[243,3]]}}}],["run/debug",{"_index":1804,"t":{"304":{"position":[[88,9]]}}}],["run/start",{"_index":1829,"t":{"310":{"position":[[759,9]]}}}],["run/user/uid/bus:/run/user/uid/bus:ro",{"_index":1161,"t":{"149":{"position":[[1236,38]]}}}],["runtim",{"_index":2365,"t":{"426":{"position":[[53,7]]}}}],["rv:139.0",{"_index":2121,"t":{"353":{"position":[[563,9],[774,9]]}}}],["rvowkj1xtivmxglr",{"_index":355,"t":{"20":{"position":[[1274,19]]}}}],["rxbcaiyysxm",{"_index":2192,"t":{"371":{"position":[[1954,13]]}}}],["s",{"_index":1768,"t":{"285":{"position":[[243,7],[346,8]]},"289":{"position":[[49,16],[96,16]]}}}],["s)et",{"_index":1180,"t":{"153":{"position":[[179,10]]}}}],["s*(?<artist",{"_index":1311,"t":{"179":{"position":[[1774,21]]}}}],["safeti",{"_index":1425,"t":{"195":{"position":[[4410,7]]}}}],["salt",{"_index":1837,"t":{"310":{"position":[[1312,4]]}}}],["same",{"_index":873,"t":{"85":{"position":[[76,4]]},"91":{"position":[[1237,4],[1473,4]]},"99":{"position":[[533,4]]},"105":{"position":[[525,4]]},"117":{"position":[[307,4]]},"125":{"position":[[157,4]]},"149":{"position":[[562,4],[864,4]]},"153":{"position":[[280,4]]},"165":{"position":[[1982,4],[2363,4],[2572,4]]},"179":{"position":[[921,4]]},"195":{"position":[[1308,4],[2346,4],[3283,4],[3499,5]]},"205":{"position":[[735,4]]},"209":{"position":[[1008,4]]},"211":{"position":[[1071,4]]},"230":{"position":[[503,4]]},"353":{"position":[[1730,4],[1783,4],[1975,4]]},"355":{"position":[[125,4],[331,4]]},"363":{"position":[[176,4]]},"365":{"position":[[192,4]]},"375":{"position":[[1001,4],[1270,4]]},"393":{"position":[[235,4],[489,4]]},"401":{"position":[[139,4]]},"408":{"position":[[206,4]]},"441":{"position":[[510,4]]}}}],["sampl",{"_index":2257,"t":{"377":{"position":[[871,6]]}}}],["satisfi",{"_index":1519,"t":{"211":{"position":[[352,9]]},"228":{"position":[[322,9]]},"263":{"position":[[303,9]]}}}],["save",{"_index":600,"t":{"49":{"position":[[197,4]]},"165":{"position":[[4038,4]]},"179":{"position":[[437,4]]},"195":{"position":[[2076,5],[2479,4],[4695,5]]},"389":{"position":[[0,4]]},"393":{"position":[[222,5]]}}}],["scagg",{"_index":1773,"t":{"291":{"position":[[65,7]]}}}],["scan",{"_index":2298,"t":{"389":{"position":[[153,4]]}}}],["scenario",{"_index":618,"t":{"54":{"position":[[0,9]]},"149":{"position":[[892,8]]},"165":{"position":[[2048,8]]},"199":{"position":[[725,8]]},"274":{"position":[[7,8]]},"276":{"position":[[223,10]]},"295":{"position":[[397,10]]},"336":{"position":[[15,9]]},"377":{"position":[[84,9]]},"403":{"position":[[213,9]]}}}],["schema",{"_index":136,"t":{"4":{"position":[[3936,6]]},"20":{"position":[[669,6],[1024,6],[1424,6]]},"26":{"position":[[437,6],[747,6]]},"30":{"position":[[695,6],[1065,6]]},"34":{"position":[[479,6],[816,6]]},"38":{"position":[[350,6],[631,6]]},"45":{"position":[[866,6],[1153,6]]},"52":{"position":[[987,6],[1258,6]]},"77":{"position":[[575,6],[861,6]]},"83":{"position":[[371,6],[693,6]]},"89":{"position":[[814,6],[1081,6]]},"93":{"position":[[230,6],[448,6]]},"95":{"position":[[2701,6],[3343,6]]},"101":{"position":[[462,6],[717,6]]},"107":{"position":[[409,6],[684,6]]},"109":{"position":[[856,6],[1166,6]]},"115":{"position":[[418,6],[629,6]]},"119":{"position":[[535,6],[905,6]]},"127":{"position":[[497,6],[708,6]]},"131":{"position":[[517,6],[854,6]]},"135":{"position":[[444,6],[725,6]]},"143":{"position":[[232,6],[505,6]]},"147":{"position":[[322,6],[605,6]]},"151":{"position":[[506,6],[753,6]]},"155":{"position":[[349,6],[601,6]]},"157":{"position":[[2717,6],[3283,6]]},"163":{"position":[[641,6],[928,6]]},"167":{"position":[[498,6],[871,6]]},"171":{"position":[[405,6],[719,6]]},"177":{"position":[[631,6],[908,6]]},"181":{"position":[[274,6],[508,6]]},"189":{"position":[[497,6],[744,6]]},"193":{"position":[[254,6],[472,6]]},"197":{"position":[[643,6],[1021,6]]}}}],["schvitz",{"_index":2191,"t":{"371":{"position":[[1916,7]]}}}],["scope",{"_index":1092,"t":{"123":{"position":[[948,5]]}}}],["scopes/permissions/gr",{"_index":1426,"t":{"195":{"position":[[4442,25]]}}}],["score",{"_index":1537,"t":{"217":{"position":[[89,5]]},"234":{"position":[[4320,5]]},"237":{"position":[[54,5],[120,5],[160,5],[219,8],[247,5]]},"244":{"position":[[147,6]]},"246":{"position":[[260,6]]}}}],["scrape",{"_index":2148,"t":{"357":{"position":[[609,8]]},"371":{"position":[[170,7],[517,11]]}}}],["screen",{"_index":1393,"t":{"195":{"position":[[1907,6],[4347,6]]}}}],["screenshot",{"_index":1181,"t":{"153":{"position":[[314,10]]}}}],["script",{"_index":2077,"t":{"345":{"position":[[19,6]]}}}],["scrobbabl",{"_index":740,"t":{"65":{"position":[[622,11]]},"71":{"position":[[90,10],[472,10],[538,10]]}}}],["scrobbl",{"_index":34,"t":{"4":{"position":[[521,10],[584,8],[1515,8],[1610,8],[1638,8],[1694,8],[3198,8],[3293,8],[3321,8],[3377,8]]},"6":{"position":[[108,8],[166,8]]},"12":{"position":[[259,9],[317,9],[353,9],[1004,11],[1879,10],[1969,8],[2950,11]]},"20":{"position":[[154,8],[170,8]]},"24":{"position":[[29,8],[1025,8]]},"28":{"position":[[30,8],[110,9]]},"32":{"position":[[30,8],[117,9]]},"40":{"position":[[29,8],[705,11],[924,8],[1125,9],[1249,10],[1308,8],[1379,9],[1531,8],[1604,8],[1677,8],[1713,8],[1790,9],[1836,8],[1862,8]]},"47":{"position":[[29,8],[154,9],[787,11],[1002,8],[1199,9],[1420,9],[1514,9]]},"54":{"position":[[22,8],[207,8],[273,8],[338,8],[519,8],[595,8],[783,9],[867,8],[935,8]]},"56":{"position":[[2104,9],[2252,8],[2488,8]]},"62":{"position":[[16,8],[47,8],[86,8]]},"65":{"position":[[314,10],[961,9],[1002,8],[1085,11],[1138,8],[1192,9],[1284,9]]},"69":{"position":[[37,8],[170,8],[387,8]]},"71":{"position":[[284,8]]},"73":{"position":[[196,8],[361,9],[453,8],[556,10],[739,8],[787,8]]},"75":{"position":[[0,10],[153,8],[197,9],[970,8],[1024,10],[1137,8],[1221,10],[1404,8],[1452,8],[1540,10],[1771,8],[1855,8]]},"77":{"position":[[192,8],[264,8]]},"85":{"position":[[635,10]]},"87":{"position":[[125,8],[706,11],[1573,10]]},"89":{"position":[[280,8],[391,8],[472,8],[575,8]]},"91":{"position":[[61,11],[495,10],[618,10],[679,8],[709,10],[743,9],[753,10],[861,8],[957,8]]},"95":{"position":[[573,8],[708,8],[765,8],[1018,8],[1088,8],[1676,8],[1775,8],[1849,8],[1933,9],[2019,9],[2108,9]]},"109":{"position":[[39,8],[68,9],[133,8]]},"111":{"position":[[46,9],[127,8],[192,8]]},"113":{"position":[[84,9],[172,10]]},"115":{"position":[[282,9]]},"117":{"position":[[34,8],[58,9],[118,8],[175,9]]},"121":{"position":[[46,9],[132,8],[207,8]]},"123":{"position":[[89,9],[203,11],[330,8]]},"127":{"position":[[276,10],[361,9]]},"129":{"position":[[46,8],[75,9],[140,8],[216,9]]},"133":{"position":[[14,8]]},"137":{"position":[[165,8]]},"139":{"position":[[38,10],[419,10]]},"141":{"position":[[264,8],[422,9],[534,8]]},"149":{"position":[[267,8]]},"151":{"position":[[230,8],[309,8]]},"157":{"position":[[156,8],[410,8],[676,9],[818,9],[948,9],[1028,9],[1323,9],[1406,8],[1813,8],[1904,8],[1974,8],[2054,9],[2136,9],[2221,9]]},"159":{"position":[[14,8],[179,9],[213,9],[293,9]]},"161":{"position":[[108,8]]},"165":{"position":[[366,8]]},"169":{"position":[[342,10],[479,8],[687,10]]},"173":{"position":[[14,8],[126,9],[258,9],[292,9],[372,9]]},"175":{"position":[[108,8]]},"187":{"position":[[29,9],[46,9]]},"189":{"position":[[180,8],[269,8]]},"191":{"position":[[78,10],[219,8],[263,9]]},"195":{"position":[[216,8],[345,10]]},"199":{"position":[[55,8],[302,8],[708,9],[884,11]]},"201":{"position":[[38,8],[457,9],[482,8],[635,9],[746,9],[783,8],[817,8]]},"203":{"position":[[211,8]]},"205":{"position":[[221,8],[397,9],[445,10],[508,9],[935,8]]},"217":{"position":[[524,9]]},"228":{"position":[[444,8]]},"230":{"position":[[1166,8],[1255,8],[1981,8]]},"232":{"position":[[281,8]]},"234":{"position":[[167,8],[292,8],[478,8],[602,8],[1153,8],[1412,8],[1975,8],[3572,8]]},"250":{"position":[[107,8],[238,8]]},"257":{"position":[[24,8],[122,8],[161,8],[788,8]]},"259":{"position":[[710,8]]},"261":{"position":[[1135,8]]},"267":{"position":[[421,8],[510,8],[1104,8]]},"312":{"position":[[112,11]]},"318":{"position":[[938,8]]},"331":{"position":[[355,10],[914,9],[1486,9],[2732,9],[2954,9]]},"334":{"position":[[27,8]]},"336":{"position":[[131,10],[169,8],[241,9],[330,8],[455,9],[1026,8],[1644,10],[1904,11],[2032,8],[2302,11],[2504,10],[2561,10],[3026,10],[3198,11],[3264,8],[3656,9],[3759,9],[3899,10],[3949,10],[3964,8],[4029,10]]},"363":{"position":[[243,9]]},"371":{"position":[[99,9],[361,9],[709,9],[895,9],[1215,8],[1250,8],[3103,9],[3164,9]]},"393":{"position":[[398,10]]},"397":{"position":[[1340,10],[1451,10],[1524,10],[1593,8],[2397,10],[2798,10],[3064,10],[3110,10],[3202,8]]},"399":{"position":[[32,10],[64,8]]},"401":{"position":[[343,8]]},"403":{"position":[[376,8],[487,9]]},"412":{"position":[[20,8],[106,10],[489,10],[582,8],[794,8],[861,11],[1021,9],[1411,8],[1666,8],[1756,10],[1781,8],[1951,9],[2001,9],[2066,8],[2212,9],[2296,8]]},"414":{"position":[[202,10]]},"416":{"position":[[408,8],[448,9]]},"418":{"position":[[99,12]]},"434":{"position":[[99,12]]},"439":{"position":[[41,8],[81,8],[220,8],[286,9],[345,8]]},"441":{"position":[[81,8],[549,8],[747,8]]}}}],["scrobblabl",{"_index":1470,"t":{"201":{"position":[[162,12]]}}}],["scrobble'",{"_index":1538,"t":{"217":{"position":[[252,10]]},"232":{"position":[[160,10]]}}}],["scrobble/play",{"_index":1488,"t":{"205":{"position":[[550,13]]}}}],["scrobblecli",{"_index":2063,"t":{"336":{"position":[[3309,15]]}}}],["scrobbler",{"_index":53,"t":{"4":{"position":[[809,10],[840,9]]},"12":{"position":[[6,9],[415,10],[3095,9],[3150,9],[3217,10],[3388,9]]},"18":{"position":[[6,9]]},"20":{"position":[[699,9],[1052,9],[1455,9]]},"24":{"position":[[597,9],[827,9],[1532,10],[1603,9]]},"28":{"position":[[158,9],[291,9]]},"32":{"position":[[165,9]]},"40":{"position":[[695,9]]},"45":{"position":[[27,9],[348,9]]},"47":{"position":[[777,9],[1652,9]]},"52":{"position":[[39,9],[486,9]]},"56":{"position":[[1361,9]]},"65":{"position":[[33,9],[395,10],[448,9],[895,9],[1234,9]]},"69":{"position":[[515,9]]},"73":{"position":[[145,9],[244,9]]},"75":{"position":[[187,9],[1509,9]]},"81":{"position":[[84,9]]},"87":{"position":[[88,9],[896,9],[1421,9]]},"91":{"position":[[293,9],[521,9],[821,9],[1568,9]]},"95":{"position":[[67,9],[275,9],[553,9],[745,9],[998,9],[1075,9]]},"97":{"position":[[19,9]]},"99":{"position":[[260,9],[697,9]]},"103":{"position":[[19,9]]},"105":{"position":[[256,9],[689,9]]},"109":{"position":[[492,9]]},"111":{"position":[[26,9]]},"113":{"position":[[54,9]]},"117":{"position":[[223,9]]},"119":{"position":[[107,9]]},"121":{"position":[[26,9]]},"123":{"position":[[54,9],[348,10],[867,9],[1001,10]]},"125":{"position":[[192,9]]},"129":{"position":[[264,9]]},"131":{"position":[[112,9]]},"135":{"position":[[106,9]]},"137":{"position":[[151,9],[613,9],[998,9]]},"139":{"position":[[168,9],[404,9]]},"141":{"position":[[152,9],[243,9],[511,9]]},"149":{"position":[[224,9],[411,9],[485,9],[702,9],[837,9]]},"157":{"position":[[127,9],[1386,9]]},"163":{"position":[[296,9]]},"165":{"position":[[491,10],[1022,9],[1332,10],[1545,9],[1700,9],[1803,9],[1929,10],[2138,9],[2310,9],[2526,9],[2832,9],[2936,9],[3211,9],[3477,9],[4002,9],[4246,10]]},"177":{"position":[[296,9]]},"179":{"position":[[1084,9],[1209,9],[2044,9],[2146,9]]},"183":{"position":[[523,9]]},"191":{"position":[[253,9],[335,9]]},"195":{"position":[[4951,9]]},"199":{"position":[[6,9],[902,9]]},"201":{"position":[[56,10]]},"205":{"position":[[774,9]]},"217":{"position":[[121,9],[1544,9]]},"224":{"position":[[520,9],[664,9]]},"230":{"position":[[1507,10],[1538,9],[1570,9]]},"234":{"position":[[110,9],[1072,9],[1239,9],[1520,9]]},"241":{"position":[[1056,9]]},"250":{"position":[[46,9]]},"263":{"position":[[421,9]]},"265":{"position":[[86,9]]},"267":{"position":[[762,10],[793,9],[825,9]]},"278":{"position":[[443,9]]},"300":{"position":[[6,9]]},"302":{"position":[[322,9]]},"331":{"position":[[3084,10]]},"347":{"position":[[682,9],[825,9],[881,9],[926,9]]},"353":{"position":[[55,9],[154,10],[185,9],[218,9],[1222,9],[1277,9],[1476,9],[1751,10],[1864,9],[2047,10],[2203,9]]},"355":{"position":[[172,9],[299,9]]},"357":{"position":[[27,9],[933,9],[1222,9]]},"363":{"position":[[156,9]]},"365":{"position":[[283,10]]},"371":{"position":[[46,9],[295,9],[420,9],[558,9]]},"375":{"position":[[372,10],[403,9],[435,9],[1479,9],[1885,9],[1952,10],[2336,9],[2397,10],[2864,9],[2925,10]]},"377":{"position":[[386,9],[683,9],[717,9],[838,9],[953,10],[984,9],[1016,9]]},"379":{"position":[[53,9]]},"381":{"position":[[143,9]]},"387":{"position":[[36,9],[266,9]]},"389":{"position":[[196,9]]},"391":{"position":[[57,9]]},"393":{"position":[[50,9],[287,9],[388,9],[459,9]]},"395":{"position":[[30,9],[151,10],[182,9],[214,9]]},"397":{"position":[[45,9],[1095,10],[1221,9],[1611,9],[1738,9],[1965,9],[2893,9],[3222,9],[3983,10],[4118,9]]},"399":{"position":[[49,9],[782,9],[1162,9],[1764,9],[2068,9],[2240,10],[2311,9]]},"401":{"position":[[34,9],[270,9]]},"403":{"position":[[156,9]]},"406":{"position":[[17,9],[463,9]]},"408":{"position":[[98,9],[134,9],[168,9],[253,10]]},"410":{"position":[[138,10]]},"412":{"position":[[1304,10],[1353,9],[2118,9]]},"439":{"position":[[9,9]]},"441":{"position":[[6,9],[229,9]]}}}],["scrobbler'",{"_index":195,"t":{"8":{"position":[[27,11]]},"149":{"position":[[1708,11]]},"165":{"position":[[2240,11]]},"199":{"position":[[189,11]]},"261":{"position":[[162,11]]},"401":{"position":[[612,11]]}}}],["scrobbler.app",{"_index":1224,"t":{"165":{"position":[[1390,13]]}}}],["scrobbler.app/callback",{"_index":1260,"t":{"165":{"position":[[3945,22]]}}}],["scrobbler.git",{"_index":1800,"t":{"302":{"position":[[297,13]]},"381":{"position":[[118,13]]}}}],["scrobbler.mydomain.com/callback",{"_index":2307,"t":{"397":{"position":[[1035,31]]}}}],["scrobbler.servic",{"_index":2287,"t":{"387":{"position":[[137,17],[222,18]]},"389":{"position":[[78,17],[125,17]]}}}],["scrobbler/directori",{"_index":2293,"t":{"387":{"position":[[351,19]]}}}],["scrobbler:0.9.7",{"_index":2347,"t":{"406":{"position":[[575,15]]}}}],["scrobbler:latest",{"_index":2219,"t":{"375":{"position":[[162,16],[216,16]]},"408":{"position":[[53,16]]}}}],["scrobblesourc",{"_index":1935,"t":{"325":{"position":[[396,15]]}}}],["scrobblesources.t",{"_index":1931,"t":{"325":{"position":[[198,18]]}}}],["scrobblethreshold",{"_index":149,"t":{"4":{"position":[[4194,21]]},"71":{"position":[[429,21]]}}}],["search",{"_index":1501,"t":{"207":{"position":[[190,6]]},"230":{"position":[[715,6],[775,6],[824,8],[1705,9]]},"232":{"position":[[239,9]]},"234":{"position":[[25,6],[994,6],[1101,8],[1278,6],[1689,7],[2470,7],[2857,7],[3209,7],[3444,8],[3514,7],[3532,6],[3716,7],[3742,6],[4062,6]]},"237":{"position":[[97,6]]},"276":{"position":[[20,6]]},"278":{"position":[[38,6]]},"280":{"position":[[2,6],[453,9],[659,9]]},"282":{"position":[[30,6],[328,9]]},"285":{"position":[[54,6],[135,6],[233,9]]},"291":{"position":[[25,9]]},"293":{"position":[[23,9]]},"295":{"position":[[82,6],[681,9]]},"412":{"position":[[601,6]]}}}],["second",{"_index":646,"t":{"56":{"position":[[447,7],[822,7]]},"71":{"position":[[505,7]]},"327":{"position":[[843,7]]},"329":{"position":[[1416,6]]},"331":{"position":[[2141,7]]}}}],["secondari",{"_index":243,"t":{"12":{"position":[[226,9],[458,9],[774,9],[1215,9],[1531,9],[2155,9],[2463,9]]},"239":{"position":[[836,9]]}}}],["secondgotifyserv",{"_index":345,"t":{"20":{"position":[[530,21]]}}}],["secret",{"_index":452,"t":{"30":{"position":[[156,6],[573,9],[923,9]]},"56":{"position":[[3603,9]]},"58":{"position":[[1969,9]]},"119":{"position":[[413,9],[763,9]]},"165":{"position":[[4146,7]]},"195":{"position":[[2509,7],[2929,7]]},"197":{"position":[[207,6]]},"355":{"position":[[24,7]]},"397":{"position":[[3474,6],[3855,9]]}}}],["section",{"_index":107,"t":{"4":{"position":[[2366,9]]},"6":{"position":[[270,7]]},"99":{"position":[[464,7]]},"105":{"position":[[469,7]]},"149":{"position":[[666,7]]},"165":{"position":[[4220,7]]},"179":{"position":[[270,7]]},"195":{"position":[[3187,7],[3764,7]]},"226":{"position":[[57,7]]},"230":{"position":[[1127,8]]},"232":{"position":[[34,7],[137,8]]},"267":{"position":[[382,8]]},"334":{"position":[[957,7]]},"336":{"position":[[1885,7]]},"342":{"position":[[57,7]]},"367":{"position":[[305,7],[422,7]]},"397":{"position":[[252,7],[849,7],[1823,7],[2628,7],[3289,7]]},"399":{"position":[[726,7],[1106,7],[2012,7]]}}}],["secur",{"_index":318,"t":{"16":{"position":[[65,8]]},"49":{"position":[[141,8]]},"149":{"position":[[808,6]]}}}],["see",{"_index":72,"t":{"4":{"position":[[1352,3],[3036,3]]},"6":{"position":[[0,3]]},"24":{"position":[[934,3]]},"65":{"position":[[1302,4]]},"73":{"position":[[101,3]]},"85":{"position":[[646,3]]},"87":{"position":[[1647,4]]},"109":{"position":[[185,3]]},"133":{"position":[[68,3]]},"139":{"position":[[201,3]]},"149":{"position":[[639,3]]},"163":{"position":[[0,3]]},"177":{"position":[[0,3]]},"195":{"position":[[356,3],[403,3]]},"205":{"position":[[137,3],[375,3]]},"211":{"position":[[792,3]]},"244":{"position":[[108,3]]},"250":{"position":[[425,3]]},"310":{"position":[[3255,3]]},"331":{"position":[[2867,3]]},"336":{"position":[[1466,3],[1872,3],[2352,3]]},"353":{"position":[[1136,3],[2439,3]]},"357":{"position":[[7,3]]},"360":{"position":[[7,3]]},"369":{"position":[[80,3]]},"373":{"position":[[70,3]]},"375":{"position":[[749,3],[848,3]]},"377":{"position":[[4,3],[848,3]]},"379":{"position":[[19,3]]},"381":{"position":[[666,3]]},"383":{"position":[[115,3]]},"397":{"position":[[3248,3]]},"401":{"position":[[70,3],[410,3]]},"403":{"position":[[0,3],[223,3]]},"420":{"position":[[0,3]]},"422":{"position":[[0,3]]},"424":{"position":[[0,3]]}}}],["seem",{"_index":1386,"t":{"195":{"position":[[1393,4]]}}}],["seen",{"_index":1471,"t":{"201":{"position":[[279,5],[409,4],[660,5],[833,4]]},"205":{"position":[[503,4]]},"331":{"position":[[2900,4]]},"336":{"position":[[480,4],[738,5],[778,5],[2072,4],[2925,4]]},"371":{"position":[[1765,4]]}}}],["select",{"_index":861,"t":{"81":{"position":[[682,6]]},"179":{"position":[[203,6],[334,6]]},"195":{"position":[[4431,6],[4486,6],[4526,6]]},"230":{"position":[[68,9]]},"232":{"position":[[329,6]]},"239":{"position":[[210,8]]},"248":{"position":[[42,12]]}}}],["self",{"_index":1251,"t":{"165":{"position":[[3517,4]]},"207":{"position":[[57,4]]},"318":{"position":[[38,4]]},"412":{"position":[[2371,4]]}}}],["send",{"_index":534,"t":{"40":{"position":[[1321,4]]},"65":{"position":[[376,4]]},"199":{"position":[[289,7]]},"205":{"position":[[210,7]]},"318":{"position":[[901,5],[1052,4]]},"357":{"position":[[91,4]]},"414":{"position":[[193,5]]}}}],["sensibl",{"_index":1599,"t":{"230":{"position":[[559,8],[582,8],[1666,8]]},"232":{"position":[[75,8]]},"244":{"position":[[804,8]]},"255":{"position":[[26,8]]},"257":{"position":[[483,8]]}}}],["sent",{"_index":1254,"t":{"165":{"position":[[3601,4],[3672,4]]},"248":{"position":[[173,4]]},"336":{"position":[[3006,4]]}}}],["separ",{"_index":1012,"t":{"95":{"position":[[1629,9],[1719,9],[1820,9],[1895,9],[1982,9],[2068,9]]},"157":{"position":[[1770,9],[1852,9],[1945,9],[2016,9],[2099,9],[2181,9]]},"169":{"position":[[220,9]]},"232":{"position":[[378,8]]},"234":{"position":[[844,9]]},"371":{"position":[[1041,9]]},"412":{"position":[[1905,9]]}}}],["sept",{"_index":1384,"t":{"195":{"position":[[1360,4]]}}}],["serivc",{"_index":1271,"t":{"169":{"position":[[325,7]]}}}],["serv",{"_index":1789,"t":{"300":{"position":[[234,6]]},"375":{"position":[[1494,5]]},"377":{"position":[[124,7]]},"381":{"position":[[1291,6]]},"393":{"position":[[146,6]]}}}],["server",{"_index":86,"t":{"4":{"position":[[1669,7],[3352,7]]},"16":{"position":[[150,6]]},"20":{"position":[[53,7]]},"22":{"position":[[174,6]]},"24":{"position":[[106,6],[191,6]]},"26":{"position":[[205,6]]},"32":{"position":[[194,7],[278,6]]},"34":{"position":[[220,6]]},"36":{"position":[[15,6],[518,6]]},"40":{"position":[[363,8]]},"47":{"position":[[244,8],[445,8]]},"54":{"position":[[106,6],[193,6],[499,6],[570,6],[807,8],[847,6],[969,6]]},"75":{"position":[[232,6]]},"95":{"position":[[1305,6]]},"97":{"position":[[74,6]]},"101":{"position":[[150,6]]},"107":{"position":[[144,6]]},"109":{"position":[[153,7]]},"111":{"position":[[105,7]]},"113":{"position":[[156,6]]},"121":{"position":[[110,7]]},"123":{"position":[[187,6]]},"129":{"position":[[167,7],[293,7],[377,6]]},"133":{"position":[[35,7]]},"137":{"position":[[27,6],[382,7]]},"153":{"position":[[74,6],[108,6],[193,6],[301,6],[352,6]]},"155":{"position":[[138,6]]},"157":{"position":[[1661,6]]},"165":{"position":[[2679,6]]},"171":{"position":[[169,6]]},"173":{"position":[[216,8]]},"224":{"position":[[377,7],[491,6],[621,6],[712,7],[765,8],[938,6],[986,6]]},"300":{"position":[[146,6]]},"310":{"position":[[1846,6]]},"353":{"position":[[259,6],[892,6],[994,6],[1735,6]]},"399":{"position":[[199,6],[1277,6],[1362,6]]},"412":{"position":[[907,6]]}}}],["servers/mirror",{"_index":1584,"t":{"224":{"position":[[419,15]]}}}],["servic",{"_index":51,"t":{"4":{"position":[[793,9]]},"12":{"position":[[1854,8],[3201,9]]},"47":{"position":[[142,7]]},"65":{"position":[[227,7],[479,8],[1147,8]]},"103":{"position":[[141,8]]},"165":{"position":[[3797,7]]},"169":{"position":[[462,7]]},"173":{"position":[[114,7]]},"195":{"position":[[1435,8],[1869,9]]},"199":{"position":[[475,7]]},"201":{"position":[[792,7]]},"205":{"position":[[473,7]]},"217":{"position":[[866,8],[1113,8]]},"219":{"position":[[263,8]]},"221":{"position":[[17,8]]},"230":{"position":[[1491,9]]},"244":{"position":[[367,9]]},"267":{"position":[[746,9]]},"310":{"position":[[1489,7],[2429,7],[2516,7]]},"312":{"position":[[605,7]]},"316":{"position":[[174,7]]},"318":{"position":[[279,7],[1041,7]]},"331":{"position":[[446,8],[539,8],[1123,7],[1310,7]]},"334":{"position":[[83,7]]},"336":{"position":[[153,7],[499,7],[1076,7],[1272,7],[1355,8],[3325,7],[3716,7]]},"353":{"position":[[296,9],[2411,7]]},"355":{"position":[[103,8]]},"357":{"position":[[795,7]]},"375":{"position":[[356,9],[1936,9],[2381,9],[2909,9]]},"377":{"position":[[937,9]]},"385":{"position":[[22,7],[164,7]]},"387":{"position":[[13,7],[297,9]]},"389":{"position":[[166,8],[211,7],[230,7],[278,7]]},"391":{"position":[[77,7]]},"395":{"position":[[135,9]]},"399":{"position":[[12,8]]},"412":{"position":[[1390,7]]},"416":{"position":[[157,8]]}}}],["service'",{"_index":1844,"t":{"310":{"position":[[1836,9]]}}}],["service.md",{"_index":2259,"t":{"379":{"position":[[23,10]]}}}],["service/appl",{"_index":734,"t":{"65":{"position":[[147,20],[353,19]]}}}],["services/mus",{"_index":2302,"t":{"397":{"position":[[16,14]]}}}],["session",{"_index":457,"t":{"30":{"position":[[340,7]]},"149":{"position":[[931,7]]},"195":{"position":[[882,7],[914,7],[1247,8]]},"357":{"position":[[855,7],[994,7],[1068,7]]}}}],["sessions/tokens/etc",{"_index":265,"t":{"12":{"position":[[1091,22]]}}}],["set",{"_index":129,"t":{"4":{"position":[[3523,7]]},"10":{"position":[[171,3],[337,3]]},"12":{"position":[[717,7],[1474,7]]},"14":{"position":[[103,3],[408,3],[519,3]]},"20":{"position":[[729,7],[1082,7]]},"24":{"position":[[220,8],[675,3],[1559,3]]},"36":{"position":[[248,3]]},"49":{"position":[[117,8]]},"73":{"position":[[585,3],[717,3],[765,3]]},"75":{"position":[[328,8],[1250,3],[1382,3],[1430,3],[1524,3],[1588,8],[1937,3]]},"87":{"position":[[2072,7],[2673,3]]},"89":{"position":[[174,3]]},"91":{"position":[[914,3],[1443,3]]},"99":{"position":[[35,3],[395,8],[764,4]]},"101":{"position":[[219,3],[284,3]]},"103":{"position":[[129,8],[237,4]]},"105":{"position":[[33,3],[389,8],[754,4]]},"107":{"position":[[181,3],[215,3]]},"123":{"position":[[397,3]]},"137":{"position":[[390,3],[1065,4]]},"145":{"position":[[100,8]]},"153":{"position":[[115,3],[144,8]]},"155":{"position":[[121,3]]},"157":{"position":[[559,8]]},"165":{"position":[[815,3],[834,8],[1639,3],[2793,3]]},"179":{"position":[[153,8],[404,3],[685,7],[730,3]]},"185":{"position":[[372,3],[454,3]]},"189":{"position":[[95,3]]},"195":{"position":[[1648,7],[3307,3],[3392,7]]},"209":{"position":[[1068,4],[1851,3]]},"217":{"position":[[1623,3]]},"224":{"position":[[135,3]]},"234":{"position":[[1482,3],[1638,3],[1725,3],[3658,3]]},"237":{"position":[[116,3],[146,3]]},"239":{"position":[[1877,3]]},"302":{"position":[[352,4]]},"304":{"position":[[35,8]]},"308":{"position":[[371,8]]},"310":{"position":[[2044,3],[2156,3],[2258,3]]},"321":{"position":[[660,8]]},"334":{"position":[[221,3],[225,7]]},"336":{"position":[[641,7]]},"342":{"position":[[0,3]]},"345":{"position":[[518,8]]},"353":{"position":[[1489,7]]},"357":{"position":[[1197,3]]},"371":{"position":[[1615,3]]},"375":{"position":[[892,3],[968,3],[1119,3],[2657,3],[3007,3]]},"381":{"position":[[176,3]]},"391":{"position":[[40,7]]},"397":{"position":[[187,7],[605,3],[2022,3]]},"399":{"position":[[432,3],[1391,8],[2267,3]]},"401":{"position":[[97,7],[367,3]]},"403":{"position":[[307,3]]},"414":{"position":[[4,3]]},"441":{"position":[[441,3],[876,3]]}}}],["set('author",{"_index":2003,"t":{"329":{"position":[[2420,21]]},"331":{"position":[[1995,21]]},"334":{"position":[[806,21]]}}}],["setup",{"_index":37,"t":{"4":{"position":[[559,5],[1735,5],[3418,5],[3456,5]]},"12":{"position":[[2112,5]]},"24":{"position":[[92,5]]},"36":{"position":[[0,5],[64,5]]},"109":{"position":[[234,6],[297,5],[606,5]]},"113":{"position":[[214,5]]},"119":{"position":[[223,5]]},"123":{"position":[[363,5],[524,5],[855,5]]},"125":{"position":[[87,6]]},"131":{"position":[[233,5]]},"133":{"position":[[118,6],[181,5]]},"135":{"position":[[222,5]]},"149":{"position":[[369,6],[589,5],[615,5]]},"153":{"position":[[81,6],[200,5],[308,5]]},"161":{"position":[[11,5]]},"163":{"position":[[51,6],[114,5],[412,5]]},"175":{"position":[[11,5]]},"177":{"position":[[51,6],[114,5],[412,5]]},"195":{"position":[[5337,5]]},"217":{"position":[[1585,6]]},"323":{"position":[[57,5]]},"375":{"position":[[772,5],[871,5],[2061,6]]},"385":{"position":[[139,5]]},"397":{"position":[[1574,5],[3038,6],[3275,5]]},"399":{"position":[[184,5],[248,5],[1263,5]]},"403":{"position":[[370,5]]},"412":{"position":[[1830,5],[2305,5]]}}}],["setup.sh",{"_index":2080,"t":{"345":{"position":[[251,10]]},"347":{"position":[[18,8]]},"349":{"position":[[51,9]]}}}],["sevenhtml",{"_index":992,"t":{"91":{"position":[[1412,12]]}}}],["sever",{"_index":1388,"t":{"195":{"position":[[1498,7]]},"209":{"position":[[1060,7]]},"239":{"position":[[10,7]]}}}],["shape",{"_index":1815,"t":{"308":{"position":[[66,6]]},"310":{"position":[[928,5]]}}}],["share",{"_index":451,"t":{"30":{"position":[[149,6]]},"40":{"position":[[256,5]]},"47":{"position":[[338,5]]},"54":{"position":[[663,6]]},"97":{"position":[[196,5]]},"306":{"position":[[81,6],[423,5]]}}}],["shortcut",{"_index":306,"t":{"14":{"position":[[141,8]]}}}],["shorter",{"_index":984,"t":{"91":{"position":[[920,7]]},"165":{"position":[[224,7]]}}}],["show",{"_index":258,"t":{"12":{"position":[[817,4],[1574,4],[2198,4]]},"149":{"position":[[146,5]]},"179":{"position":[[148,4]]},"401":{"position":[[461,4],[600,5]]}}}],["shown",{"_index":601,"t":{"49":{"position":[[231,5]]},"77":{"position":[[144,5]]},"81":{"position":[[532,5]]},"91":{"position":[[1249,5]]},"109":{"position":[[450,5]]},"117":{"position":[[361,5]]},"119":{"position":[[63,5]]},"131":{"position":[[63,5]]},"135":{"position":[[63,5]]},"153":{"position":[[288,5]]},"163":{"position":[[252,5]]},"177":{"position":[[252,5]]},"179":{"position":[[313,5]]},"230":{"position":[[26,5]]},"255":{"position":[[17,5]]},"265":{"position":[[140,5]]},"267":{"position":[[26,5]]}}}],["side",{"_index":2167,"t":{"371":{"position":[[453,4]]}}}],["side(",{"_index":1495,"t":{"205":{"position":[[1140,7]]}}}],["sidebar",{"_index":860,"t":{"81":{"position":[[670,7]]}}}],["sign",{"_index":560,"t":{"42":{"position":[[136,4]]},"195":{"position":[[5098,4]]}}}],["signal",{"_index":2034,"t":{"331":{"position":[[2915,10]]}}}],["silo",{"_index":2360,"t":{"412":{"position":[[1858,4]]}}}],["similar",{"_index":1248,"t":{"165":{"position":[[3244,7]]},"371":{"position":[[1712,7]]}}}],["simpl",{"_index":36,"t":{"4":{"position":[[552,6]]},"47":{"position":[[1484,6]]},"165":{"position":[[2667,6]]},"179":{"position":[[167,6]]},"304":{"position":[[291,6]]}}}],["simpli",{"_index":1155,"t":{"149":{"position":[[909,6]]},"336":{"position":[[591,6]]}}}],["simplifi",{"_index":2055,"t":{"336":{"position":[[2550,10]]}}}],["singl",{"_index":976,"t":{"91":{"position":[[224,6]]},"207":{"position":[[311,6]]},"239":{"position":[[310,8],[803,7]]},"241":{"position":[[935,8],[1010,9]]},"244":{"position":[[483,7],[544,9]]},"255":{"position":[[354,9]]},"259":{"position":[[201,6]]},"325":{"position":[[933,9]]},"412":{"position":[[836,6]]}}}],["single_user_platform_id",{"_index":2019,"t":{"331":{"position":[[1608,23],[2345,24]]}}}],["site",{"_index":1255,"t":{"165":{"position":[[3626,4],[3857,4]]},"357":{"position":[[626,4]]},"360":{"position":[[378,4]]}}}],["skagg",{"_index":1772,"t":{"291":{"position":[[40,8]]}}}],["skip",{"_index":1576,"t":{"217":{"position":[[1592,4]]},"285":{"position":[[155,4]]},"336":{"position":[[3789,4]]}}}],["slash",{"_index":1776,"t":{"295":{"position":[[264,5],[440,5],[540,5]]}}}],["slice.wisp.plac",{"_index":593,"t":{"47":{"position":[[1533,16]]}}}],["slick",{"_index":1872,"t":{"318":{"position":[[111,5]]}}}],["slight",{"_index":2157,"t":{"365":{"position":[[211,6]]}}}],["slightli",{"_index":1493,"t":{"205":{"position":[[1040,8]]}}}],["slower",{"_index":664,"t":{"56":{"position":[[1605,6]]}}}],["slug",{"_index":1068,"t":{"113":{"position":[[5,4],[189,4],[292,4]]},"115":{"position":[[380,7],[566,7]]},"123":{"position":[[5,4],[499,4],[607,4]]},"185":{"position":[[80,4],[244,7],[328,7],[616,4]]},"189":{"position":[[417,7],[638,7]]},"353":{"position":[[840,4]]}}}],["slug/token",{"_index":1073,"t":{"115":{"position":[[183,10]]},"127":{"position":[[181,10]]}}}],["smart",{"_index":2354,"t":{"412":{"position":[[1048,5]]}}}],["smarttub",{"_index":944,"t":{"87":{"position":[[2428,13],[3015,13]]}}}],["socat",{"_index":1165,"t":{"149":{"position":[[1442,5],[1600,5]]}}}],["social",{"_index":505,"t":{"40":{"position":[[281,6]]},"47":{"position":[[109,6],[363,6]]},"173":{"position":[[81,6]]}}}],["socket",{"_index":925,"t":{"87":{"position":[[1263,6]]},"149":{"position":[[659,6],[791,7],[949,6],[1067,7],[1287,7],[1508,6]]}}}],["sole",{"_index":903,"t":{"87":{"position":[[680,6]]},"91":{"position":[[419,6]]},"123":{"position":[[981,6]]}}}],["solut",{"_index":2339,"t":{"403":{"position":[[517,9]]}}}],["some_ip",{"_index":1836,"t":{"310":{"position":[[1193,9]]}}}],["someguy",{"_index":1730,"t":{"259":{"position":[[629,8]]}}}],["someotherus",{"_index":1027,"t":{"95":{"position":[[2975,15]]},"157":{"position":[[2416,15],[2964,15]]}}}],["someth",{"_index":1412,"t":{"195":{"position":[[2856,9]]},"257":{"position":[[468,9]]},"353":{"position":[[327,9],[1261,9]]},"357":{"position":[[917,9]]},"360":{"position":[[11,9]]},"371":{"position":[[404,9]]}}}],["sometim",{"_index":1697,"t":{"239":{"position":[[1548,9]]},"371":{"position":[[1076,9]]}}}],["someus",{"_index":1190,"t":{"157":{"position":[[869,12],[903,8],[931,8],[1164,11],[1243,9]]}}}],["somewher",{"_index":455,"t":{"30":{"position":[[306,9]]},"49":{"position":[[205,10]]},"302":{"position":[[201,9]]},"381":{"position":[[22,9]]}}}],["song",{"_index":739,"t":{"65":{"position":[[594,4]]},"71":{"position":[[82,4]]},"201":{"position":[[119,5]]},"259":{"position":[[351,4],[617,4]]},"331":{"position":[[319,4]]},"371":{"position":[[85,4],[1907,4],[2950,5],[2989,4],[3036,4],[3113,5],[3174,5]]},"434":{"position":[[77,5]]}}}],["sono",{"_index":871,"t":{"85":{"position":[[37,7]]}}}],["sort",{"_index":1600,"t":{"230":{"position":[[617,7]]},"241":{"position":[[243,7],[327,6],[369,7],[549,7],[676,7]]},"246":{"position":[[341,7],[364,7]]}}}],["sot",{"_index":707,"t":{"62":{"position":[[25,3]]}}}],["sound",{"_index":2196,"t":{"371":{"position":[[2018,5]]}}}],["soundcloud",{"_index":1120,"t":{"139":{"position":[[368,14]]},"141":{"position":[[20,12],[98,12],[373,14],[444,11]]}}}],["soundcloud:song:mysong",{"_index":1121,"t":{"139":{"position":[[474,22]]}}}],["soundtrack",{"_index":1681,"t":{"239":{"position":[[912,11]]}}}],["soup",{"_index":1637,"t":{"234":{"position":[[759,4],[941,6],[2205,4],[2269,4],[2537,6],[3072,5],[3167,5],[3292,6]]},"259":{"position":[[808,4],[926,6]]}}}],["sourc",{"_index":5,"t":{"4":{"position":[[0,7],[608,6],[1458,7],[1496,6],[3141,7],[3179,6],[4392,10]]},"6":{"position":[[64,6],[117,7],[134,7]]},"12":{"position":[[3040,6]]},"14":{"position":[[489,10]]},"16":{"position":[[48,8],[208,7]]},"18":{"position":[[93,7]]},"20":{"position":[[78,6],[101,6],[122,6],[358,10]]},"22":{"position":[[647,7]]},"24":{"position":[[83,8]]},"28":{"position":[[91,8]]},"32":{"position":[[98,8]]},"40":{"position":[[77,8],[1545,6]]},"47":{"position":[[87,8]]},"56":{"position":[[253,6],[910,10],[2245,6],[2481,6]]},"60":{"position":[[2,6],[19,6]]},"65":{"position":[[4,7],[122,6],[190,6],[332,6],[421,7],[545,6],[677,7],[881,7],[1028,7],[1220,7]]},"67":{"position":[[5,7],[105,7]]},"69":{"position":[[25,6],[377,6]]},"71":{"position":[[2,6],[654,7]]},"73":{"position":[[55,8],[131,7],[224,7],[522,8]]},"75":{"position":[[999,6]]},"77":{"position":[[649,10]]},"79":{"position":[[13,6],[200,6],[235,6]]},"83":{"position":[[445,10]]},"85":{"position":[[168,6]]},"87":{"position":[[247,7],[398,6],[532,6],[577,6],[3342,6]]},"89":{"position":[[896,10]]},"91":{"position":[[641,7],[986,8],[1063,7],[1204,7],[1386,10],[1453,7],[1535,7]]},"93":{"position":[[312,10]]},"95":{"position":[[2775,10]]},"101":{"position":[[552,10]]},"107":{"position":[[499,10]]},"109":{"position":[[5,6],[265,6],[363,8],[623,7],[685,8],[709,9],[946,10],[976,8],[1000,9]]},"111":{"position":[[5,6],[254,8]]},"113":{"position":[[246,7]]},"115":{"position":[[126,6],[508,10]]},"117":{"position":[[5,6],[292,6],[428,8]]},"119":{"position":[[242,7],[347,9],[625,10],[697,9]]},"121":{"position":[[5,6],[279,8]]},"123":{"position":[[561,7]]},"127":{"position":[[124,6],[587,10]]},"129":{"position":[[5,6]]},"131":{"position":[[257,7],[366,9],[607,10],[677,9]]},"133":{"position":[[149,6],[247,8]]},"135":{"position":[[240,7],[306,8],[346,9],[534,10],[567,8],[607,9]]},"137":{"position":[[98,7],[212,7]]},"139":{"position":[[59,7]]},"141":{"position":[[12,7]]},"143":{"position":[[322,10]]},"147":{"position":[[412,10]]},"151":{"position":[[113,6],[596,10]]},"155":{"position":[[439,10]]},"157":{"position":[[2807,10]]},"159":{"position":[[151,6]]},"163":{"position":[[82,6],[180,8],[431,7],[522,9],[731,10],[788,9]]},"165":{"position":[[1965,7]]},"167":{"position":[[588,10]]},"169":{"position":[[5,6],[434,6]]},"171":{"position":[[495,10]]},"173":{"position":[[230,6]]},"177":{"position":[[82,6],[180,8],[431,7],[518,9],[721,10],[775,9]]},"181":{"position":[[364,10]]},"185":{"position":[[44,7],[365,6],[447,6],[583,6]]},"189":{"position":[[587,10]]},"193":{"position":[[344,10]]},"195":{"position":[[1667,6],[4302,6]]},"197":{"position":[[733,10]]},"199":{"position":[[272,6],[665,6]]},"201":{"position":[[67,7],[177,6],[211,6],[358,6],[532,8],[581,6]]},"203":{"position":[[151,6],[348,6],[434,9]]},"205":{"position":[[4,8],[968,7]]},"217":{"position":[[292,6],[475,8]]},"230":{"position":[[1208,6],[1339,7],[1907,6]]},"234":{"position":[[497,7]]},"244":{"position":[[688,7]]},"259":{"position":[[127,7]]},"261":{"position":[[1217,7]]},"267":{"position":[[463,6],[594,7],[1030,6]]},"282":{"position":[[113,9]]},"300":{"position":[[198,6]]},"306":{"position":[[52,7]]},"310":{"position":[[886,7]]},"312":{"position":[[495,7]]},"314":{"position":[[0,6]]},"316":{"position":[[77,6],[131,6]]},"318":{"position":[[885,6],[987,6]]},"321":{"position":[[1124,6],[1210,8],[1641,6],[1901,6]]},"323":{"position":[[22,6],[431,7],[950,6]]},"325":{"position":[[57,6],[912,7],[1090,6]]},"327":{"position":[[943,7]]},"331":{"position":[[16,7],[59,6],[173,6],[653,6],[1116,6],[1187,6],[1303,6]]},"334":{"position":[[13,6],[181,6]]},"336":{"position":[[146,6],[376,7],[391,6],[492,6],[526,6],[617,6],[1147,7],[1163,7],[1374,7],[1483,7],[1753,6],[1922,7],[1947,6],[2228,6],[2576,7]]},"342":{"position":[[50,6]]},"345":{"position":[[72,7],[351,7]]},"347":{"position":[[65,7],[152,8],[454,8]]},"353":{"position":[[6,7],[1178,6],[1947,8],[2404,6]]},"365":{"position":[[468,7]]},"371":{"position":[[120,6],[607,7],[768,6],[2266,8],[2572,6]]},"375":{"position":[[2159,7],[2470,6]]},"377":{"position":[[103,6]]},"381":{"position":[[918,10]]},"383":{"position":[[107,7]]},"397":{"position":[[0,7],[1415,6],[1554,6],[1679,7],[1722,6],[2921,7],[3006,6],[3169,7],[3798,9],[4085,8]]},"399":{"position":[[105,7]]},"401":{"position":[[316,7]]},"403":{"position":[[241,7]]},"412":{"position":[[127,7],[686,7],[1527,6],[1685,7],[1863,7],[2166,6],[2194,6],[2431,7]]},"414":{"position":[[42,7],[110,8],[151,6],[237,6]]},"416":{"position":[[2,6],[19,6],[237,6],[344,7],[394,6],[436,6]]},"441":{"position":[[525,6],[708,7],[808,6],[895,6],[988,6],[1183,6]]}}}],["source'",{"_index":759,"t":{"69":{"position":[[79,8]]},"71":{"position":[[352,8]]},"73":{"position":[[75,8],[476,8],[624,8]]},"75":{"position":[[1160,8],[1289,8]]},"199":{"position":[[466,8]]},"205":{"position":[[818,8]]},"234":{"position":[[3987,8]]},"331":{"position":[[437,8]]},"334":{"position":[[74,8]]},"336":{"position":[[2528,8],[3419,8]]},"441":{"position":[[563,8]]}}}],["source/cli",{"_index":89,"t":{"4":{"position":[[1775,13],[1794,14],[1945,13]]},"6":{"position":[[231,13]]},"8":{"position":[[76,14]]},"215":{"position":[[100,13]]},"230":{"position":[[888,13],[1099,13]]},"267":{"position":[[143,13],[354,13]]},"300":{"position":[[114,13]]},"306":{"position":[[106,13],[408,14]]},"312":{"position":[[360,13]]},"375":{"position":[[907,13]]},"403":{"position":[[199,13]]}}}],["source/client'",{"_index":1608,"t":{"230":{"position":[[1049,15]]},"267":{"position":[[304,15]]}}}],["source_scrobble_duration=40",{"_index":776,"t":{"71":{"position":[[674,27]]}}}],["source_scrobble_percent=20",{"_index":777,"t":{"71":{"position":[[702,26]]}}}],["source_sot",{"_index":2046,"t":{"336":{"position":[[833,10]]}}}],["source_sot.histori",{"_index":2049,"t":{"336":{"position":[[1111,19]]}}}],["sourceaioconfig",{"_index":1910,"t":{"321":{"position":[[1547,15]]}}}],["sourceconfig",{"_index":1908,"t":{"321":{"position":[[1467,12]]}}}],["sourcedata",{"_index":2017,"t":{"331":{"position":[[1579,11],[1861,12]]}}}],["sourcedefault",{"_index":144,"t":{"4":{"position":[[4100,17]]},"56":{"position":[[25,17]]},"325":{"position":[[1182,14]]}}}],["sources.0.json",{"_index":2100,"t":{"347":{"position":[[416,14]]}}}],["sources.1.json",{"_index":2102,"t":{"347":{"position":[[602,14]]}}}],["sources.json",{"_index":2098,"t":{"347":{"position":[[357,12],[543,12]]}}}],["sources/cli",{"_index":102,"t":{"4":{"position":[[2255,15],[3479,15],[3551,15],[3880,15]]},"22":{"position":[[41,15]]},"230":{"position":[[121,16]]},"267":{"position":[[90,16]]},"401":{"position":[[445,15]]},"430":{"position":[[49,15]]}}}],["sourcetyp",{"_index":1913,"t":{"321":{"position":[[1753,10],[1812,12],[1825,12]]},"325":{"position":[[621,10],[635,12],[657,12]]}}}],["space",{"_index":1774,"t":{"295":{"position":[[249,6],[425,6]]},"371":{"position":[[2006,5]]}}}],["special",{"_index":1687,"t":{"239":{"position":[[1053,7]]},"280":{"position":[[968,7]]}}}],["specif",{"_index":12,"t":{"4":{"position":[[86,8],[1706,8],[3389,8]]},"8":{"position":[[60,8]]},"67":{"position":[[177,8]]},"87":{"position":[[968,8],[2205,8]]},"145":{"position":[[158,8]]},"157":{"position":[[840,8],[1045,8]]},"169":{"position":[[470,8]]},"179":{"position":[[773,8]]},"207":{"position":[[631,8],[693,8]]},"239":{"position":[[1125,12]]},"312":{"position":[[323,8],[340,9],[413,8]]},"365":{"position":[[294,8]]},"412":{"position":[[1874,8]]}}}],["specifi",{"_index":67,"t":{"4":{"position":[[1192,9],[2852,9]]},"10":{"position":[[267,9],[422,7],[562,9]]},"28":{"position":[[272,9]]},"56":{"position":[[2037,7]]},"69":{"position":[[114,7]]},"139":{"position":[[97,7]]},"165":{"position":[[1256,7]]},"211":{"position":[[15,7],[115,10],[954,9],[1037,10]]},"228":{"position":[[38,10]]},"257":{"position":[[244,7]]},"263":{"position":[[38,10]]},"280":{"position":[[348,9]]},"323":{"position":[[104,7]]},"357":{"position":[[100,9]]},"375":{"position":[[473,7],[3192,7],[3339,9]]},"377":{"position":[[1054,7]]},"395":{"position":[[252,7]]},"426":{"position":[[181,9]]}}}],["speed",{"_index":275,"t":{"12":{"position":[[1960,5]]}}}],["spell",{"_index":1457,"t":{"199":{"position":[[637,7]]},"276":{"position":[[328,8]]}}}],["split",{"_index":1723,"t":{"259":{"position":[[252,6],[365,5],[436,5],[489,6]]}}}],["spotifi",{"_index":81,"t":{"4":{"position":[[1553,7],[3236,7],[4415,10]]},"10":{"position":[[85,7]]},"22":{"position":[[665,9]]},"54":{"position":[[139,7],[367,7]]},"56":{"position":[[933,10],[1153,7],[1189,10],[1435,10]]},"58":{"position":[[92,7]]},"60":{"position":[[127,8]]},"62":{"position":[[725,7]]},"89":{"position":[[530,8]]},"151":{"position":[[473,9],[701,9]]},"165":{"position":[[0,7],[28,7],[67,7],[269,7],[380,7],[472,7],[517,7],[551,7],[648,7],[708,7],[900,7],[1041,7],[1063,7],[1298,7],[1647,7],[1677,7],[1957,7],[2107,7],[2432,7],[2801,7],[2917,7],[3039,7],[3680,7],[3971,7],[4320,7]]},"167":{"position":[[840,9]]},"211":{"position":[[652,7]]},"217":{"position":[[1122,9]]},"221":{"position":[[26,9]]},"321":{"position":[[1766,9],[1842,10]]},"363":{"position":[[198,7]]},"365":{"position":[[137,9]]},"381":{"position":[[555,8]]},"393":{"position":[[308,8]]},"397":{"position":[[105,7],[528,7],[563,7],[644,7],[1189,7]]},"412":{"position":[[361,7]]},"416":{"position":[[179,8]]},"426":{"position":[[252,7]]}}}],["spotify'",{"_index":549,"t":{"40":{"position":[[1647,9]]}}}],["spotify.json",{"_index":111,"t":{"4":{"position":[[2480,12]]},"71":{"position":[[381,12]]}}}],["spotify/jellyfin/etc",{"_index":1738,"t":{"261":{"position":[[1230,21]]}}}],["spotify_client_id",{"_index":1266,"t":{"167":{"position":[[82,17]]}}}],["spotify_client_id=yourclientid",{"_index":2304,"t":{"397":{"position":[[926,30]]}}}],["spotify_client_id=yourid",{"_index":47,"t":{"4":{"position":[[686,26],[865,24],[1061,24]]}}}],["spotify_client_secret",{"_index":1267,"t":{"167":{"position":[[104,21]]}}}],["spotify_client_secret=yourclientsecret",{"_index":2305,"t":{"397":{"position":[[959,38]]}}}],["spotify_client_secret=yoursecret",{"_index":48,"t":{"4":{"position":[[716,34],[892,32],[1086,32]]}}}],["spotify_redirect_uri",{"_index":1228,"t":{"165":{"position":[[1710,20],[2148,20],[2842,20],[4012,20]]},"167":{"position":[[130,20]]}}}],["spotify_redirect_uri=https://multi",{"_index":2306,"t":{"397":{"position":[[1000,34]]}}}],["spotifysourceaioconfig",{"_index":1911,"t":{"321":{"position":[[1565,22]]}}}],["spotifysourceconfig",{"_index":1909,"t":{"321":{"position":[[1482,19]]}}}],["src/backend/common/infrastructure/atomic.t",{"_index":1912,"t":{"321":{"position":[[1697,43]]}}}],["src/backend/common/infrastructure/config/source/coolplayer.t",{"_index":1887,"t":{"321":{"position":[[164,62]]}}}],["src/backend/common/infrastructure/config/source/sources.t",{"_index":1903,"t":{"321":{"position":[[1219,58]]}}}],["src/backend/sources/coolplayersource.t",{"_index":1959,"t":{"327":{"position":[[139,39]]},"329":{"position":[[283,39],[1469,39],[2107,39]]},"331":{"position":[[1496,39]]},"334":{"position":[[292,39]]},"336":{"position":[[784,39]]}}}],["src/backend/sources/mybasicsource.t",{"_index":2058,"t":{"336":{"position":[[2764,36],[3436,36]]}}}],["src/backend/sources/scrobblesources.t",{"_index":1932,"t":{"325":{"position":[[255,38]]}}}],["src/backend/sources/spotifysource.t",{"_index":1917,"t":{"323":{"position":[[127,36]]}}}],["src/index.j",{"_index":2272,"t":{"381":{"position":[[861,12]]}}}],["src/service/api.t",{"_index":2051,"t":{"336":{"position":[[1422,18]]}}}],["ssl",{"_index":1090,"t":{"123":{"position":[[815,3]]},"165":{"position":[[1435,3]]}}}],["stack",{"_index":288,"t":{"12":{"position":[[3175,6]]},"149":{"position":[[1101,5]]},"397":{"position":[[3610,5]]}}}],["stage",{"_index":1500,"t":{"207":{"position":[[36,7],[46,5],[144,6],[160,5],[249,5],[348,5],[461,5],[514,6],[541,5],[593,5],[648,6],[687,5]]},"209":{"position":[[0,6],[110,5],[146,5],[179,6],[283,6],[384,5],[605,5],[684,5],[994,6],[1864,5],[1908,5],[2090,5],[2169,5]]},"211":{"position":[[5,5],[161,5],[737,6],[767,5],[971,5],[1095,6]]},"213":{"position":[[0,6],[44,6],[1105,5],[1185,5],[1368,5],[1442,5]]},"215":{"position":[[25,5],[201,5],[292,5]]},"217":{"position":[[16,5],[213,5],[461,5]]},"224":{"position":[[165,5]]},"226":{"position":[[83,5]]},"230":{"position":[[256,5],[925,5],[952,5],[1873,5]]},"234":{"position":[[1489,5],[1849,5],[2023,5],[2103,6],[2594,5],[3301,5],[4531,5]]},"244":{"position":[[27,5]]},"250":{"position":[[406,6],[465,6],[523,6]]},"259":{"position":[[11,5],[102,5],[677,5]]},"261":{"position":[[25,5]]},"265":{"position":[[54,5],[223,6],[438,5]]},"267":{"position":[[180,5],[207,5],[996,5]]},"270":{"position":[[161,5],[240,5]]},"274":{"position":[[171,5],[229,6]]},"276":{"position":[[9,5],[112,5],[383,5]]},"278":{"position":[[4,5],[154,5],[352,6],[411,5],[555,6],[766,5]]},"310":{"position":[[90,8],[266,7],[274,6],[324,6],[405,5],[439,5],[503,5],[544,5],[583,5],[658,5],[690,5],[772,6],[796,5],[1063,6],[1400,6],[1430,5],[1537,5],[1706,5],[1798,6],[1934,6],[2484,5],[2573,5],[3045,6]]},"321":{"position":[[402,6],[2074,6]]},"329":{"position":[[27,6],[122,6],[1462,6],[2100,6]]}}}],["stage/rul",{"_index":1527,"t":{"213":{"position":[[392,10]]}}}],["stand",{"_index":1606,"t":{"230":{"position":[[1013,6]]},"267":{"position":[[268,6]]}}}],["standalon",{"_index":1790,"t":{"300":{"position":[[273,10]]}}}],["standard",{"_index":502,"t":{"40":{"position":[[212,8]]},"47":{"position":[[294,8]]},"91":{"position":[[90,8]]},"99":{"position":[[348,8]]},"105":{"position":[[344,8]]},"113":{"position":[[137,10]]},"123":{"position":[[163,10]]},"137":{"position":[[72,8],[89,8],[701,8]]},"149":{"position":[[11,8]]},"207":{"position":[[416,11]]},"217":{"position":[[233,13]]},"312":{"position":[[22,8],[156,8]]},"327":{"position":[[118,8]]},"331":{"position":[[2268,8]]},"412":{"position":[[1915,11]]}}}],["start",{"_index":64,"t":{"4":{"position":[[1127,5]]},"20":{"position":[[93,7]]},"36":{"position":[[270,5]]},"52":{"position":[[80,8]]},"139":{"position":[[231,5],[452,5]]},"165":{"position":[[740,5],[1102,6],[3899,8],[4234,5],[4336,5]]},"179":{"position":[[737,8]]},"195":{"position":[[2804,5],[3513,5],[4595,5],[4939,5],[5454,5]]},"280":{"position":[[714,6]]},"302":{"position":[[432,5]]},"310":{"position":[[157,6]]},"325":{"position":[[8,6]]},"334":{"position":[[60,6]]},"371":{"position":[[2916,5]]},"377":{"position":[[18,5]]},"381":{"position":[[259,5],[1259,5]]},"387":{"position":[[389,5]]},"389":{"position":[[113,5],[268,5]]},"397":{"position":[[1080,8],[3968,8]]},"399":{"position":[[454,5]]},"401":{"position":[[200,5]]},"412":{"position":[[1227,5],[2446,8]]},"420":{"position":[[14,5]]}}}],["startup",{"_index":1411,"t":{"195":{"position":[[2836,7]]},"306":{"position":[[315,9]]},"310":{"position":[[1560,7]]},"334":{"position":[[603,7]]},"426":{"position":[[218,7]]}}}],["stat",{"_index":590,"t":{"47":{"position":[[1491,5]]},"91":{"position":[[1126,6],[1275,6],[1522,6]]},"412":{"position":[[928,6]]}}}],["state",{"_index":744,"t":{"65":{"position":[[754,5],[934,5]]},"318":{"position":[[553,5]]},"321":{"position":[[2127,5]]},"331":{"position":[[227,5],[552,5],[962,5],[1092,5],[1201,5],[1921,5],[2284,5],[2463,5],[2587,5],[2601,5],[2649,5]]},"336":{"position":[[46,5],[676,5],[1570,5]]},"347":{"position":[[850,5]]}}}],["stateless",{"_index":358,"t":{"20":{"position":[[1474,9],[1704,9]]}}}],["statement",{"_index":1939,"t":{"325":{"position":[[595,9]]}}}],["static",{"_index":1957,"t":{"327":{"position":[[21,6],[600,6]]},"329":{"position":[[440,6]]}}}],["station",{"_index":820,"t":{"77":{"position":[[99,7],[131,7],[206,7],[276,7],[473,10],[488,7],[757,10],[772,7]]},"91":{"position":[[32,7],[588,8]]}}}],["statist",{"_index":2335,"t":{"401":{"position":[[516,10]]},"426":{"position":[[19,11]]}}}],["statu",{"_index":378,"t":{"22":{"position":[[241,6],[313,6]]},"73":{"position":[[485,6]]},"75":{"position":[[1169,6],[1617,6]]},"77":{"position":[[214,6]]},"239":{"position":[[633,6],[1403,6]]},"357":{"position":[[129,6]]},"401":{"position":[[474,6],[577,6]]},"412":{"position":[[676,6]]},"426":{"position":[[2,6],[341,6],[365,6]]},"441":{"position":[[579,6],[642,6]]}}}],["stdout/stderr",{"_index":2366,"t":{"426":{"position":[[148,13]]}}}],["step",{"_index":932,"t":{"87":{"position":[[1460,5],[1534,5]]},"165":{"position":[[2990,4],[3913,4]]},"232":{"position":[[232,6],[367,5]]},"234":{"position":[[10,4]]},"316":{"position":[[29,4],[37,4]]},"353":{"position":[[1380,5]]},"375":{"position":[[1564,5]]},"397":{"position":[[457,4]]}}}],["stick",{"_index":24,"t":{"4":{"position":[[269,5]]}}}],["still",{"_index":587,"t":{"47":{"position":[[1336,5]]},"56":{"position":[[2023,5]]},"141":{"position":[[258,5]]},"183":{"position":[[758,5]]},"244":{"position":[[102,5]]},"248":{"position":[[199,5],[353,5]]},"257":{"position":[[79,5]]},"272":{"position":[[157,7]]},"278":{"position":[[134,5]]},"336":{"position":[[401,5],[1548,5]]},"383":{"position":[[70,5]]},"412":{"position":[[2321,5]]},"439":{"position":[[229,5]]}}}],["stop",{"_index":340,"t":{"20":{"position":[[137,7]]},"65":{"position":[[769,8]]},"195":{"position":[[128,4]]},"230":{"position":[[2097,7]]},"267":{"position":[[1220,7]]},"310":{"position":[[221,5]]},"331":{"position":[[2093,9]]},"357":{"position":[[342,7]]},"375":{"position":[[1530,7]]},"377":{"position":[[1460,7]]},"395":{"position":[[524,7]]},"408":{"position":[[87,4]]},"439":{"position":[[187,5]]}}}],["storag",{"_index":359,"t":{"20":{"position":[[1499,7],[1815,7]]},"81":{"position":[[630,7]]},"375":{"position":[[1606,8]]}}}],["store",{"_index":244,"t":{"12":{"position":[[236,5],[473,6],[1230,6],[2622,6],[2896,5]]},"40":{"position":[[307,6],[1373,5]]},"47":{"position":[[389,6]]},"81":{"position":[[48,5]]},"310":{"position":[[1212,5],[1322,6],[3139,5]]},"312":{"position":[[57,5],[176,7]]},"347":{"position":[[728,7]]},"375":{"position":[[1671,7]]},"399":{"position":[[26,5]]},"418":{"position":[[32,6]]},"434":{"position":[[32,6]]}}}],["stored/avail",{"_index":583,"t":{"47":{"position":[[164,16]]},"173":{"position":[[136,16]]}}}],["strang",{"_index":956,"t":{"87":{"position":[[3254,7]]}}}],["stream",{"_index":974,"t":{"91":{"position":[[40,9],[153,6],[180,7],[1038,6]]}}}],["streamtitl",{"_index":977,"t":{"91":{"position":[[238,13]]}}}],["string",{"_index":295,"t":{"12":{"position":[[3367,6]]},"91":{"position":[[231,6]]},"139":{"position":[[212,6],[312,7]]},"141":{"position":[[315,7]]},"195":{"position":[[3693,6]]},"199":{"position":[[119,7]]},"207":{"position":[[325,6]]},"209":{"position":[[1384,6]]},"213":{"position":[[176,6]]},"234":{"position":[[676,7],[1451,6],[1598,7],[1960,6],[2317,6],[2352,6],[2394,6],[2762,7],[2927,7],[2970,7]]},"259":{"position":[[208,6],[277,6]]},"261":{"position":[[74,6],[219,6],[386,7],[444,6],[765,7],[1162,6],[1334,7],[1388,7]]},"280":{"position":[[47,6],[139,7],[166,7],[285,7],[312,7],[392,6],[566,6],[615,7],[649,7],[702,6],[793,6],[843,7],[883,7],[976,6]]},"282":{"position":[[456,6]]},"295":{"position":[[24,6],[69,7],[118,6]]},"308":{"position":[[183,6]]},"310":{"position":[[569,6]]},"321":{"position":[[749,6],[861,6]]},"329":{"position":[[471,7],[781,6],[906,8],[1057,8],[1737,6],[1916,6]]},"363":{"position":[[75,6]]}}}],["strong",{"_index":1539,"t":{"217":{"position":[[340,6]]}}}],["structur",{"_index":109,"t":{"4":{"position":[[2447,10]]},"40":{"position":[[762,9],[811,9]]},"47":{"position":[[844,9],[893,9]]},"203":{"position":[[286,9]]},"217":{"position":[[1163,10]]},"221":{"position":[[67,10]]},"306":{"position":[[227,9]]},"312":{"position":[[36,9]]}}}],["subdirectori",{"_index":1416,"t":{"195":{"position":[[3545,12]]}}}],["subhead",{"_index":764,"t":{"69":{"position":[[559,9]]}}}],["submit",{"_index":551,"t":{"40":{"position":[[1695,10]]},"353":{"position":[[1393,10]]},"439":{"position":[[32,6],[384,9]]}}}],["subson",{"_index":389,"t":{"22":{"position":[[685,9]]},"54":{"position":[[182,10]]},"56":{"position":[[2660,11]]},"62":{"position":[[757,8]]},"169":{"position":[[64,8],[593,8]]},"171":{"position":[[156,8],[687,10]]},"209":{"position":[[753,8],[1434,8],[2238,8]]},"234":{"position":[[551,8]]},"250":{"position":[[543,8]]},"253":{"position":[[179,8]]},"255":{"position":[[451,8]]},"259":{"position":[[169,8],[724,8]]},"265":{"position":[[243,8]]},"270":{"position":[[309,8]]},"272":{"position":[[208,8]]},"274":{"position":[[241,8]]},"278":{"position":[[575,8]]},"397":{"position":[[1406,8],[1545,8]]},"412":{"position":[[369,8]]}}}],["subsonic.json",{"_index":1512,"t":{"209":{"position":[[775,13],[1456,13],[2260,13]]},"248":{"position":[[382,13]]},"250":{"position":[[565,13]]},"253":{"position":[[201,13]]},"255":{"position":[[473,13]]},"257":{"position":[[536,13]]},"265":{"position":[[265,13]]},"270":{"position":[[331,13]]},"272":{"position":[[230,13]]},"274":{"position":[[263,13]]},"278":{"position":[[597,13]]}}}],["subsonic_password",{"_index":1275,"t":{"171":{"position":[[100,17]]}}}],["subsonic_url",{"_index":1276,"t":{"171":{"position":[[122,12]]}}}],["subsonic_us",{"_index":1274,"t":{"171":{"position":[[82,13]]}}}],["succe",{"_index":1856,"t":{"310":{"position":[[3262,8]]}}}],["succeed",{"_index":1828,"t":{"310":{"position":[[550,9],[589,9],[2607,9]]}}}],["success",{"_index":1437,"t":{"195":{"position":[[5365,7]]}}}],["successfulli",{"_index":2372,"t":{"439":{"position":[[371,12]]}}}],["succinctli",{"_index":1533,"t":{"213":{"position":[[943,11]]}}}],["such",{"_index":38,"t":{"4":{"position":[[572,4]]},"137":{"position":[[106,4]]},"169":{"position":[[117,5],[369,5]]},"234":{"position":[[4202,5]]},"259":{"position":[[160,4]]},"308":{"position":[[286,4]]},"312":{"position":[[396,4]]},"355":{"position":[[501,5]]}}}],["suffix",{"_index":1075,"t":{"115":{"position":[[250,6]]},"127":{"position":[[330,6]]}}}],["super",{"_index":2039,"t":{"334":{"position":[[525,8]]},"336":{"position":[[968,8]]}}}],["super('coolplay",{"_index":1927,"t":{"323":{"position":[[713,19]]}}}],["superag",{"_index":1995,"t":{"329":{"position":[[1529,13],[2167,13]]},"331":{"position":[[1556,13]]},"334":{"position":[[352,13]]},"381":{"position":[[581,13],[595,13]]}}}],["support",{"_index":90,"t":{"4":{"position":[[1814,7]]},"18":{"position":[[16,8]]},"20":{"position":[[720,8],[1073,8],[1465,8]]},"73":{"position":[[111,10]]},"75":{"position":[[1006,8]]},"87":{"position":[[167,7]]},"91":{"position":[[1075,9]]},"123":{"position":[[903,7]]},"137":{"position":[[39,8]]},"143":{"position":[[36,7]]},"169":{"position":[[81,8],[333,8]]},"183":{"position":[[362,9]]},"187":{"position":[[118,9]]},"195":{"position":[[58,9]]},"199":{"position":[[24,7]]},"213":{"position":[[51,7]]},"234":{"position":[[516,7]]},"244":{"position":[[703,7]]},"248":{"position":[[284,8]]},"381":{"position":[[407,9]]},"383":{"position":[[51,10]]},"397":{"position":[[1331,8],[1476,8]]},"412":{"position":[[97,8],[480,8],[769,8],[811,8]]},"441":{"position":[[198,7]]}}}],["sure",{"_index":949,"t":{"87":{"position":[[2651,4]]},"99":{"position":[[409,4]]},"105":{"position":[[403,4]]},"125":{"position":[[141,4]]},"137":{"position":[[767,4]]},"149":{"position":[[981,4]]},"195":{"position":[[4375,4],[4423,4]]},"347":{"position":[[173,4]]},"353":{"position":[[2318,4]]}}}],["surfac",{"_index":1708,"t":{"244":{"position":[[219,7]]},"331":{"position":[[891,8]]},"336":{"position":[[3127,8]]}}}],["switch",{"_index":1940,"t":{"325":{"position":[[650,6],[1246,6]]},"371":{"position":[[2811,8]]}}}],["syntax",{"_index":798,"t":{"75":{"position":[[393,7]]},"99":{"position":[[128,6]]},"105":{"position":[[126,6]]},"137":{"position":[[483,6]]},"153":{"position":[[233,7]]},"345":{"position":[[243,7]]}}}],["system",{"_index":797,"t":{"75":{"position":[[321,6]]},"149":{"position":[[86,8],[345,6]]},"302":{"position":[[66,7]]},"385":{"position":[[11,6]]}}}],["systemctl",{"_index":2297,"t":{"389":{"position":[[24,9],[48,9],[96,9]]}}}],["systemd",{"_index":2277,"t":{"385":{"position":[[0,7]]}}}],["systemscrobbl",{"_index":790,"t":{"73":{"position":[[810,17]]},"75":{"position":[[1475,17]]}}}],["s|\\\\s)(feat\\\\.(.+)|live|remastered(.+))$/i",{"_index":1770,"t":{"285":{"position":[[355,45]]}}}],["s滾石40\\\\s滾石撞樂隊\\\\s40團拚經典(.+)$/i",{"_index":1769,"t":{"285":{"position":[[251,33]]}}}],["tab",{"_index":851,"t":{"81":{"position":[[387,4],[412,4],[638,4]]},"149":{"position":[[688,4]]},"187":{"position":[[160,3]]},"397":{"position":[[3264,3]]},"412":{"position":[[2409,3]]}}}],["tabl",{"_index":412,"t":{"24":{"position":[[942,5]]}}}],["tag",{"_index":360,"t":{"20":{"position":[[1528,5],[1833,7]]},"199":{"position":[[352,4]]},"244":{"position":[[760,6]]},"342":{"position":[[15,3]]},"406":{"position":[[505,4],[526,4]]}}}],["tagged/organ",{"_index":1541,"t":{"217":{"position":[[401,16]]}}}],["tags/metadata",{"_index":1300,"t":{"179":{"position":[[1052,13]]}}}],["take",{"_index":401,"t":{"24":{"position":[[411,4]]},"195":{"position":[[4215,4]]},"327":{"position":[[53,4]]},"331":{"position":[[927,4],[1164,5]]},"336":{"position":[[2737,4]]},"399":{"position":[[1582,4]]}}}],["taken",{"_index":781,"t":{"73":{"position":[[390,5]]},"75":{"position":[[1074,5]]}}}],["tautulli",{"_index":2045,"t":{"336":{"position":[[272,9],[1183,9]]}}}],["tcp",{"_index":1132,"t":{"145":{"position":[[35,3]]},"149":{"position":[[1530,3],[1606,3]]}}}],["teal",{"_index":592,"t":{"47":{"position":[[1528,4]]}}}],["teal.fm",{"_index":582,"t":{"47":{"position":[[79,7],[96,7],[1026,8],[1325,7],[1412,7],[1567,7]]},"62":{"position":[[806,7]]},"173":{"position":[[51,7],[68,7],[250,7],[364,7],[394,7]]},"175":{"position":[[37,7]]},"177":{"position":[[8,7],[265,7],[314,7],[418,7]]},"412":{"position":[[424,7],[558,7]]},"436":{"position":[[69,7]]}}}],["teal.fm'",{"_index":585,"t":{"47":{"position":[[869,9],[927,9]]}}}],["tealfm",{"_index":617,"t":{"52":{"position":[[1228,8]]},"177":{"position":[[878,8]]},"248":{"position":[[318,7]]},"257":{"position":[[183,7]]}}}],["tealfm_app_pw",{"_index":608,"t":{"52":{"position":[[746,13]]}}}],["tealfm_identifi",{"_index":607,"t":{"52":{"position":[[639,17]]}}}],["technic",{"_index":2067,"t":{"336":{"position":[[3777,11]]},"371":{"position":[[956,11]]}}}],["tell",{"_index":1886,"t":{"321":{"position":[[82,4]]},"323":{"position":[[931,5]]},"325":{"position":[[112,4]]},"334":{"position":[[553,4]]},"336":{"position":[[996,4]]},"367":{"position":[[115,4]]}}}],["templat",{"_index":897,"t":{"87":{"position":[[353,8]]}}}],["temporarili",{"_index":1486,"t":{"205":{"position":[[79,11],[317,11]]}}}],["tend",{"_index":1272,"t":{"169":{"position":[[504,4]]}}}],["term",{"_index":531,"t":{"40":{"position":[[1228,5]]},"47":{"position":[[1302,5]]},"165":{"position":[[685,5]]},"203":{"position":[[268,5]]},"207":{"position":[[209,5]]},"239":{"position":[[1262,6]]}}}],["termin",{"_index":2246,"t":{"375":{"position":[[3468,9]]}}}],["test",{"_index":1424,"t":{"195":{"position":[[4360,9]]},"213":{"position":[[77,7],[339,4]]},"304":{"position":[[144,5],[261,5]]},"310":{"position":[[1941,4]]},"321":{"position":[[392,4]]},"329":{"position":[[2052,4],[2095,4]]}}}],["text",{"_index":853,"t":{"81":{"position":[[491,4]]},"230":{"position":[[770,4]]},"234":{"position":[[3397,5],[3509,4],[3559,4],[3737,4],[3806,4],[4057,4]]},"387":{"position":[[160,4]]}}}],["textbox",{"_index":1288,"t":{"179":{"position":[[326,7]]}}}],["themself",{"_index":1578,"t":{"224":{"position":[[67,8]]}}}],["therefor",{"_index":982,"t":{"91":{"position":[[597,10]]},"371":{"position":[[800,10]]}}}],["these",{"_index":750,"t":{"65":{"position":[[874,6]]}}}],["thing",{"_index":444,"t":{"28":{"position":[[313,6]]},"371":{"position":[[2702,6]]}}}],["think",{"_index":1668,"t":{"239":{"position":[[270,5]]}}}],["third",{"_index":869,"t":{"85":{"position":[[0,5]]}}}],["this.baseurl",{"_index":1990,"t":{"329":{"position":[[1149,12]]}}}],["this.canbacklog",{"_index":2040,"t":{"334":{"position":[[611,15]]}}}],["this.canpol",{"_index":1930,"t":{"323":{"position":[[1000,12]]}}}],["this.config",{"_index":1984,"t":{"329":{"position":[[830,12]]}}}],["this.config.token",{"_index":2004,"t":{"329":{"position":[[2449,23]]},"331":{"position":[[2024,23]]},"334":{"position":[[835,23]]}}}],["this.configdir}/currentcr",{"_index":1838,"t":{"310":{"position":[[1346,30]]}}}],["this.discover([someplay",{"_index":2061,"t":{"336":{"position":[[3070,26],[3603,26]]}}}],["this.emitt",{"_index":1956,"t":{"325":{"position":[[1418,14]]}}}],["this.logger.verbose(`config",{"_index":1993,"t":{"329":{"position":[[1294,27]]}}}],["this.playersourceoftruth",{"_index":2048,"t":{"336":{"position":[[1084,24]]}}}],["this.processrecentplays(play",{"_index":2033,"t":{"331":{"position":[[2786,31]]}}}],["this.requiresauth",{"_index":1928,"t":{"323":{"position":[[806,17]]}}}],["this.requiresauthinteract",{"_index":1929,"t":{"323":{"position":[[890,28]]}}}],["this.scrobble(discov",{"_index":2066,"t":{"336":{"position":[[3677,26]]}}}],["this.url.tostr",{"_index":1994,"t":{"329":{"position":[[1353,27]]}}}],["thorough",{"_index":2179,"t":{"371":{"position":[[1330,8]]}}}],["those",{"_index":986,"t":{"91":{"position":[[1094,5]]},"241":{"position":[[596,5]]},"261":{"position":[[971,5]]}}}],["though",{"_index":515,"t":{"40":{"position":[[543,6]]},"47":{"position":[[625,6]]},"183":{"position":[[742,7]]},"211":{"position":[[828,7]]}}}],["thread",{"_index":888,"t":{"85":{"position":[[655,6]]}}}],["three",{"_index":632,"t":{"54":{"position":[[643,5]]},"195":{"position":[[3459,5]]},"234":{"position":[[1214,5]]}}}],["threshold",{"_index":710,"t":{"62":{"position":[[68,10]]},"65":{"position":[[1011,11]]},"75":{"position":[[11,9],[162,10]]},"91":{"position":[[764,9],[966,11]]},"191":{"position":[[89,9],[228,10]]},"336":{"position":[[178,9]]}}}],["through",{"_index":92,"t":{"4":{"position":[[1842,7]]},"12":{"position":[[2569,7]]},"65":{"position":[[498,7]]},"89":{"position":[[81,7]]},"139":{"position":[[74,7]]},"183":{"position":[[668,7],[685,7]]},"323":{"position":[[988,7]]},"331":{"position":[[2593,7]]},"412":{"position":[[1105,7],[1137,7]]}}}],["throw",{"_index":1826,"t":{"310":{"position":[[477,6],[664,5],[2757,5],[2881,5]]},"329":{"position":[[942,5],[1095,5],[1224,5],[2037,5],[2582,5],[2615,5]]},"331":{"position":[[2558,5]]},"334":{"position":[[1064,5]]}}}],["thrown",{"_index":642,"t":{"56":{"position":[[285,7],[660,7]]}}}],["time",{"_index":99,"t":{"4":{"position":[[2173,4],[3798,4]]},"65":{"position":[[710,4],[929,4]]},"71":{"position":[[182,4]]},"79":{"position":[[161,5]]},"85":{"position":[[92,5],[519,4]]},"87":{"position":[[1507,5]]},"165":{"position":[[237,4],[312,4]]},"195":{"position":[[148,4],[1688,4]]},"199":{"position":[[174,5]]},"205":{"position":[[623,5]]},"310":{"position":[[1583,4]]},"331":{"position":[[1243,5]]},"353":{"position":[[868,5]]},"357":{"position":[[870,5]]},"371":{"position":[[1122,4],[3239,4]]},"401":{"position":[[591,4]]},"439":{"position":[[152,5]]}}}],["timestamp",{"_index":1880,"t":{"318":{"position":[[476,9]]},"327":{"position":[[896,9]]},"331":{"position":[[850,9]]},"334":{"position":[[134,9]]},"336":{"position":[[2424,9]]}}}],["timezon",{"_index":2224,"t":{"375":{"position":[[481,8],[3015,8]]},"377":{"position":[[1062,8]]},"395":{"position":[[260,8]]}}}],["tip",{"_index":0,"t":{"2":{"position":[[0,3]]},"4":{"position":[[1900,3],[3608,3]]},"12":{"position":[[426,3],[1183,3]]},"24":{"position":[[1467,3]]},"169":{"position":[[313,3]]},"185":{"position":[[514,3]]},"205":{"position":[[518,3]]},"217":{"position":[[1502,3],[1619,3]]},"230":{"position":[[1150,3]]},"234":{"position":[[1990,3]]},"267":{"position":[[405,3]]},"302":{"position":[[74,3]]},"373":{"position":[[0,3]]},"377":{"position":[[0,3]]},"381":{"position":[[1265,3]]},"399":{"position":[[2175,3]]},"401":{"position":[[0,3]]}}}],["titl",{"_index":1302,"t":{"179":{"position":[[1125,6],[1430,5],[1704,5]]},"199":{"position":[[130,6],[458,5],[543,5],[574,5],[598,5]]},"209":{"position":[[1378,5],[1411,9],[2490,8]]},"211":{"position":[[126,6],[202,8],[256,5]]},"213":{"position":[[778,8],[814,5],[1005,6]]},"228":{"position":[[172,8],[226,5]]},"234":{"position":[[129,6],[636,5],[686,8],[875,6],[884,8],[1178,6],[1296,5],[1954,5],[2132,8],[2346,5],[2388,5],[2480,8],[2964,5],[2999,8],[3219,8]]},"244":{"position":[[248,5]]},"248":{"position":[[533,8]]},"257":{"position":[[687,8]]},"259":{"position":[[579,5],[735,8],[869,8]]},"261":{"position":[[604,5],[679,8],[778,5],[868,5],[982,6],[1548,8],[1660,9]]},"263":{"position":[[153,8],[207,5]]},"274":{"position":[[61,6],[136,5],[393,8],[425,5]]},"276":{"position":[[268,6]]},"278":{"position":[[271,8],[785,8],[826,5]]},"282":{"position":[[209,8],[246,5],[291,5],[418,7]]},"285":{"position":[[72,8],[212,5],[220,8]]},"287":{"position":[[44,5],[70,8]]},"289":{"position":[[38,8],[85,8]]}}}],["title.mp4",{"_index":1310,"t":{"179":{"position":[[1764,9]]}}}],["title/artist/album/listen",{"_index":1473,"t":{"201":{"position":[[307,28],[688,28]]}}}],["title>.+?)\\\\.\\\\w+$/i",{"_index":1312,"t":{"179":{"position":[[1798,24]]}}}],["titleonli",{"_index":1514,"t":{"209":{"position":[[1306,12],[1771,11]]}}}],["titles/artist",{"_index":1653,"t":{"234":{"position":[[4159,14]]}}}],["tld",{"_index":567,"t":{"45":{"position":[[83,4],[333,3]]},"52":{"position":[[157,3],[471,3]]}}}],["tldr",{"_index":1478,"t":{"203":{"position":[[245,5]]},"205":{"position":[[918,4]]}}}],["tmt_yxr90am",{"_index":2197,"t":{"371":{"position":[[2054,13]]}}}],["to",{"_index":831,"t":{"79":{"position":[[107,4]]}}}],["to/great",{"_index":824,"t":{"77":{"position":[[332,10]]}}}],["toggl",{"_index":808,"t":{"75":{"position":[[1015,8]]},"308":{"position":[[515,7]]}}}],["token",{"_index":170,"t":{"4":{"position":[[4897,8]]},"20":{"position":[[501,8],[916,8]]},"26":{"position":[[310,8],[601,8]]},"32":{"position":[[365,5]]},"34":{"position":[[100,5],[348,8],[659,8]]},"54":{"position":[[437,5]]},"56":{"position":[[1759,8],[1929,8],[2286,8],[3137,8]]},"58":{"position":[[606,8],[760,8],[920,8],[1537,8]]},"109":{"position":[[729,8],[1020,8]]},"113":{"position":[[279,7]]},"123":{"position":[[594,7]]},"125":{"position":[[36,5],[58,6],[172,5]]},"127":{"position":[[249,6],[457,8],[644,8]]},"129":{"position":[[465,5]]},"131":{"position":[[386,8],[697,8]]},"157":{"position":[[15,5],[230,5],[770,5],[972,5],[1262,5],[1718,5],[2336,8],[2884,8]]},"165":{"position":[[1056,6]]},"310":{"position":[[3079,5],[3219,5]]},"318":{"position":[[365,5]]},"321":{"position":[[607,5],[680,6],[742,6]]},"325":{"position":[[774,6]]},"329":{"position":[[152,5],[811,6],[846,6],[865,5],[896,5],[2442,6]]},"331":{"position":[[2017,6]]},"334":{"position":[[828,6]]},"397":{"position":[[1762,5],[1926,5],[2444,5],[2457,5],[2513,5]]}}}],["token.trim",{"_index":1986,"t":{"329":{"position":[[918,12]]}}}],["toler",{"_index":1655,"t":{"234":{"position":[[4241,8]]}}}],["tool",{"_index":848,"t":{"81":{"position":[[350,5],[614,5]]},"97":{"position":[[135,5]]},"179":{"position":[[96,5]]},"336":{"position":[[77,4]]}}}],["top",{"_index":328,"t":{"16":{"position":[[347,3]]},"20":{"position":[[257,3]]},"209":{"position":[[75,3]]},"244":{"position":[[143,3]]},"371":{"position":[[1181,3]]}}}],["topic",{"_index":181,"t":{"4":{"position":[[5065,8]]},"20":{"position":[[1265,8]]}}}],["touch",{"_index":2285,"t":{"387":{"position":[[102,5]]}}}],["track",{"_index":497,"t":{"40":{"position":[[103,8],[1433,5]]},"60":{"position":[[58,6]]},"65":{"position":[[841,6],[911,5],[973,5],[1070,5],[1202,7]]},"67":{"position":[[44,5],[76,5]]},"71":{"position":[[137,5],[198,5]]},"75":{"position":[[56,5]]},"85":{"position":[[81,5],[493,6],[617,6]]},"87":{"position":[[1930,5],[2489,9],[2519,5],[2788,8],[2945,8],[3233,5]]},"91":{"position":[[121,5],[487,7],[798,5]]},"109":{"position":[[89,6]]},"129":{"position":[[96,6]]},"137":{"position":[[174,6]]},"139":{"position":[[253,6],[441,5]]},"141":{"position":[[58,5],[277,6],[407,5],[456,6],[471,6],[543,6],[558,6]]},"149":{"position":[[276,6]]},"159":{"position":[[78,8],[234,6]]},"165":{"position":[[150,5],[186,5]]},"173":{"position":[[313,6]]},"179":{"position":[[1997,5]]},"191":{"position":[[134,5]]},"195":{"position":[[444,7]]},"205":{"position":[[717,5],[911,6]]},"211":{"position":[[581,6]]},"217":{"position":[[649,6]]},"219":{"position":[[46,6]]},"234":{"position":[[1592,5]]},"239":{"position":[[437,5]]},"261":{"position":[[862,5],[1470,5]]},"274":{"position":[[55,5],[94,5]]},"278":{"position":[[820,5]]},"312":{"position":[[70,7],[140,5],[184,6],[207,5],[236,5],[437,6],[476,6],[571,5]]},"318":{"position":[[462,6],[586,6],[616,6]]},"321":{"position":[[2025,5],[2152,5]]},"327":{"position":[[62,5],[566,5],[813,6]]},"331":{"position":[[303,5],[417,5],[1072,5],[1393,5],[2158,5],[2223,5],[2625,5],[2687,5]]},"334":{"position":[[45,6],[116,5],[156,5],[593,6],[897,5]]},"336":{"position":[[423,5],[711,5],[1051,6],[2241,5],[2409,5],[2635,5],[2902,5],[3172,7],[3931,5]]},"363":{"position":[[288,6]]},"367":{"position":[[196,5],[265,5],[345,5],[386,5],[413,8]]},"371":{"position":[[819,6],[1013,5],[1099,5]]},"401":{"position":[[554,6]]},"403":{"position":[[460,5]]},"412":{"position":[[1612,5],[1741,7]]},"414":{"position":[[128,6]]},"441":{"position":[[49,6],[793,5]]}}}],["track'",{"_index":774,"t":{"71":{"position":[[587,7]]}}}],["track/song",{"_index":1666,"t":{"239":{"position":[[81,11]]}}}],["tracknam",{"_index":1967,"t":{"327":{"position":[[692,10],[820,10]]}}}],["tracks/play",{"_index":2023,"t":{"331":{"position":[[1907,13]]}}}],["trade",{"_index":882,"t":{"85":{"position":[[444,5]]}}}],["traffic",{"_index":907,"t":{"87":{"position":[[939,7]]}}}],["tranform",{"_index":1737,"t":{"261":{"position":[[1080,10]]}}}],["transform",{"_index":246,"t":{"12":{"position":[[279,9],[1978,16]]},"99":{"position":[[610,9],[742,11]]},"105":{"position":[[602,9],[732,11]]},"137":{"position":[[911,9],[1043,11]]},"191":{"position":[[540,11]]},"209":{"position":[[85,12],[490,15],[961,11],[1140,15],[1975,15]]},"211":{"position":[[61,14],[999,11],[1144,14]]},"213":{"position":[[257,14]]},"215":{"position":[[31,15],[174,11],[265,11]]},"224":{"position":[[226,15],[795,15]]},"226":{"position":[[146,15]]},"228":{"position":[[56,11]]},"230":{"position":[[1317,9]]},"253":{"position":[[46,15]]},"255":{"position":[[134,15]]},"257":{"position":[[323,15]]},"259":{"position":[[845,11]]},"261":{"position":[[1185,10]]},"263":{"position":[[56,11]]},"267":{"position":[[572,9]]},"270":{"position":[[46,15]]},"272":{"position":[[46,15]]},"278":{"position":[[199,15]]},"282":{"position":[[469,12]]},"312":{"position":[[621,9]]},"321":{"position":[[2002,9]]},"331":{"position":[[2253,9]]},"334":{"position":[[946,10]]}}}],["tray",{"_index":1148,"t":{"149":{"position":[[136,4]]}}}],["tri",{"_index":208,"t":{"10":{"position":[[285,3]]},"91":{"position":[[1600,3]]},"99":{"position":[[585,3]]},"105":{"position":[[577,3]]},"153":{"position":[[458,3]]},"179":{"position":[[1851,5]]},"195":{"position":[[1710,3]]},"207":{"position":[[354,5]]},"217":{"position":[[1440,6]]},"221":{"position":[[344,6]]},"234":{"position":[[71,3],[462,6],[1086,3],[2877,3]]},"259":{"position":[[45,3]]},"261":{"position":[[565,3],[717,5],[798,5],[1354,3]]},"310":{"position":[[1602,5]]},"329":{"position":[[1143,3],[1759,3],[2356,3]]},"331":{"position":[[1880,3]]},"334":{"position":[[20,3],[571,3],[742,3]]},"353":{"position":[[899,5],[1366,3]]}}}],["trigger",{"_index":2150,"t":{"357":{"position":[[888,9]]},"426":{"position":[[414,7]]}}}],["trivial",{"_index":1868,"t":{"316":{"position":[[63,9]]}}}],["troubleshoot",{"_index":307,"t":{"14":{"position":[[191,15],[356,15]]},"87":{"position":[[3067,16]]},"195":{"position":[[225,15]]},"353":{"position":[[1340,16]]},"371":{"position":[[2161,15]]}}}],["true",{"_index":116,"t":{"4":{"position":[[2579,5],[4436,5],[4702,5]]},"14":{"position":[[483,5]]},"16":{"position":[[380,4]]},"30":{"position":[[486,5],[836,5]]},"34":{"position":[[307,5],[618,5]]},"38":{"position":[[231,5],[492,5]]},"73":{"position":[[724,4],[828,4]]},"75":{"position":[[1389,4],[1493,4]]},"77":{"position":[[254,4],[302,6],[411,5],[522,5],[695,5],[806,5]]},"83":{"position":[[188,5],[491,5]]},"87":{"position":[[2101,4],[3570,4]]},"89":{"position":[[181,6]]},"91":{"position":[[1333,5]]},"93":{"position":[[157,5],[354,5]]},"95":{"position":[[1151,4],[2184,5],[2646,5],[2822,5],[3266,5]]},"101":{"position":[[362,5],[597,5]]},"107":{"position":[[285,5],[542,5]]},"115":{"position":[[364,5],[550,5]]},"119":{"position":[[326,5],[676,5]]},"127":{"position":[[441,5],[628,5]]},"131":{"position":[[345,5],[656,5]]},"135":{"position":[[325,5],[586,5]]},"143":{"position":[[114,5],[367,5]]},"147":{"position":[[171,5],[437,5]]},"151":{"position":[[411,5],[639,5]]},"155":{"position":[[235,5],[485,5]]},"157":{"position":[[2305,5],[2632,5],[2853,5],[3180,5]]},"167":{"position":[[282,5],[634,5]]},"171":{"position":[[250,5],[542,5]]},"179":{"position":[[1620,5],[1912,5],[2384,5],[2442,4]]},"181":{"position":[[172,5],[389,5]]},"189":{"position":[[102,6]]},"193":{"position":[[194,5],[389,5]]},"195":{"position":[[1055,5],[1183,5],[1200,4],[2602,5],[2773,5],[2790,4],[3831,5],[4076,5],[4093,4]]},"197":{"position":[[422,5],[617,4],[779,5],[974,4]]},"203":{"position":[[413,5]]},"211":{"position":[[391,5],[457,5],[518,5],[596,5]]},"213":{"position":[[344,4]]},"215":{"position":[[137,4],[415,4]]},"217":{"position":[[1227,4]]},"221":{"position":[[131,4]]},"226":{"position":[[374,4]]},"228":{"position":[[354,4],[410,4]]},"230":{"position":[[806,4]]},"234":{"position":[[3685,4],[4614,4]]},"239":{"position":[[1902,4],[1974,4]]},"241":{"position":[[1081,5]]},"248":{"position":[[614,4]]},"257":{"position":[[768,4]]},"261":{"position":[[1057,5],[1068,4]]},"263":{"position":[[335,4],[446,5]]},"310":{"position":[[532,4],[2163,4],[2265,4],[2594,4]]},"323":{"position":[[826,5],[1015,5]]},"329":{"position":[[562,6],[1388,5],[1830,5],[2480,5]]},"334":{"position":[[629,5]]},"371":{"position":[[1603,4],[2438,5],[2457,4]]},"441":{"position":[[1152,4]]}}}],["trust",{"_index":627,"t":{"54":{"position":[[462,5]]},"149":{"position":[[1429,8]]},"165":{"position":[[3786,8]]},"371":{"position":[[308,7]]}}}],["truth",{"_index":545,"t":{"40":{"position":[[1555,6]]},"65":{"position":[[555,6]]},"331":{"position":[[69,5]]},"336":{"position":[[627,5]]},"371":{"position":[[130,6],[618,6],[778,5]]}}}],["ts",{"_index":1864,"t":{"312":{"position":[[715,2]]},"323":{"position":[[518,2]]},"327":{"position":[[438,2]]}}}],["ts/j",{"_index":1965,"t":{"327":{"position":[[474,5]]}}}],["tuhe1cphrxi",{"_index":2182,"t":{"371":{"position":[[1779,13]]}}}],["tune",{"_index":1819,"t":{"308":{"position":[[405,4]]}}}],["tunein",{"_index":1102,"t":{"137":{"position":[[137,7]]}}}],["turn",{"_index":302,"t":{"14":{"position":[[0,7],[381,4]]},"87":{"position":[[3288,4]]},"179":{"position":[[2255,4],[2326,6]]},"250":{"position":[[159,7]]},"353":{"position":[[1414,4],[1444,4]]},"369":{"position":[[26,4]]},"371":{"position":[[1420,4],[2192,4],[2312,4]]}}}],["tutori",{"_index":1866,"t":{"314":{"position":[[23,8],[55,8]]}}}],["tv",{"_index":964,"t":{"89":{"position":[[357,2]]},"195":{"position":[[4855,2]]}}}],["twice",{"_index":2174,"t":{"371":{"position":[[1019,5]]}}}],["two",{"_index":731,"t":{"65":{"position":[[67,3]]},"71":{"position":[[52,3]]},"232":{"position":[[228,3]]},"234":{"position":[[655,3]]},"295":{"position":[[188,3],[575,3],[639,4]]},"306":{"position":[[183,3]]},"310":{"position":[[2011,3]]},"371":{"position":[[942,3],[2946,3]]}}}],["two/anoth",{"_index":1779,"t":{"295":{"position":[[473,11]]}}}],["twog",{"_index":613,"t":{"52":{"position":[[944,5],[1195,5]]},"177":{"position":[[588,5],[845,5]]}}}],["type",{"_index":19,"t":{"4":{"position":[[195,6],[1488,4],[1959,5],[2325,4],[2406,4],[3171,4],[4407,7],[4674,7],[4847,7],[4980,7]]},"6":{"position":[[22,5],[335,5]]},"12":{"position":[[936,4],[1689,4],[2312,4],[2500,4],[2813,4],[3585,4]]},"20":{"position":[[330,5],[447,7],[552,7],[606,7],[823,7],[1176,7],[1556,7]]},"22":{"position":[[348,4]]},"26":{"position":[[24,4],[224,4],[497,4],[710,7]]},"30":{"position":[[24,4],[422,4],[755,4],[1027,7]]},"34":{"position":[[24,4],[239,4],[539,4],[772,7]]},"36":{"position":[[562,4]]},"38":{"position":[[24,4],[166,4],[410,4],[593,7]]},"40":{"position":[[386,4],[802,4]]},"45":{"position":[[443,4],[676,4],[926,4],[1114,7]]},"47":{"position":[[468,4],[884,4]]},"52":{"position":[[581,4],[813,4],[1047,4],[1220,7]]},"56":{"position":[[925,7],[1181,7],[1427,7],[1686,7],[1856,7],[2152,7],[2384,7],[2652,7],[2823,7],[3050,7],[3178,7],[3296,7],[3414,7],[3532,7]]},"58":{"position":[[40,6]]},"65":{"position":[[412,5]]},"69":{"position":[[586,5]]},"77":{"position":[[380,7],[664,7]]},"83":{"position":[[655,7]]},"87":{"position":[[1609,4],[1690,4],[1864,4],[1994,5],[2038,4],[2195,5],[2311,7],[2571,5],[2638,4],[2843,7],[2974,4],[3502,7]]},"89":{"position":[[1039,7]]},"93":{"position":[[409,7]]},"95":{"position":[[950,5],[3303,7]]},"101":{"position":[[24,4],[300,4],[522,4],[679,7]]},"107":{"position":[[24,4],[231,4],[469,4],[648,7]]},"109":{"position":[[411,4],[643,4],[916,4],[1129,7]]},"115":{"position":[[24,4],[304,4],[478,4],[586,7]]},"119":{"position":[[24,4],[262,4],[595,4],[867,7]]},"127":{"position":[[24,4],[383,4],[557,4],[666,7]]},"131":{"position":[[24,4],[277,4],[577,4],[810,7]]},"135":{"position":[[24,4],[260,4],[504,4],[687,7]]},"143":{"position":[[24,4],[56,4],[292,4],[467,7]]},"147":{"position":[[24,4],[136,4],[382,4],[570,7]]},"151":{"position":[[24,4],[356,4],[566,4],[716,7]]},"155":{"position":[[24,4],[173,4],[204,7],[409,4],[454,7]]},"157":{"position":[[1570,4],[2248,4],[2777,4],[3247,7]]},"163":{"position":[[213,4],[451,4],[701,4],[889,7]]},"167":{"position":[[24,4],[222,4],[558,4],[832,7]]},"171":{"position":[[24,4],[188,4],[465,4],[679,7]]},"177":{"position":[[213,4],[451,4],[691,4],[870,7]]},"179":{"position":[[625,6]]},"181":{"position":[[24,4],[137,4],[334,4],[473,7]]},"189":{"position":[[24,4],[347,4],[557,4],[700,7]]},"193":{"position":[[24,4],[133,4],[314,4],[431,7]]},"195":{"position":[[1026,7],[2200,4],[2573,7],[3802,7]]},"197":{"position":[[24,4],[362,4],[703,4],[982,7]]},"207":{"position":[[571,4],[657,7]]},"209":{"position":[[129,4],[138,4],[510,7],[887,7],[1013,4],[1160,7],[1280,7],[1568,7],[1746,7],[1995,7],[2372,7]]},"211":{"position":[[177,7]]},"213":{"position":[[1228,7],[1510,7]]},"224":{"position":[[246,7],[815,7]]},"226":{"position":[[166,7]]},"228":{"position":[[127,7]]},"239":{"position":[[744,4],[846,4]]},"246":{"position":[[216,6]]},"248":{"position":[[494,7]]},"250":{"position":[[691,7]]},"253":{"position":[[66,7],[313,7]]},"255":{"position":[[154,7],[585,7]]},"257":{"position":[[343,7],[648,7]]},"263":{"position":[[128,7]]},"265":{"position":[[377,7]]},"270":{"position":[[66,7],[443,7]]},"272":{"position":[[66,7],[342,7]]},"274":{"position":[[375,7]]},"276":{"position":[[389,4]]},"278":{"position":[[219,7],[709,7]]},"282":{"position":[[175,7]]},"321":{"position":[[1131,5],[1462,4],[1542,4],[1648,4],[1748,4]]},"323":{"position":[[426,4],[503,4]]},"325":{"position":[[173,4],[875,5],[1104,4],[1253,6]]},"336":{"position":[[633,4]]},"367":{"position":[[83,4],[129,4],[222,4],[300,4],[369,4]]},"371":{"position":[[1526,7],[2361,7]]},"373":{"position":[[88,6]]},"381":{"position":[[933,7],[1137,7]]}}}],["type=simpl",{"_index":2291,"t":{"387":{"position":[[307,11]]}}}],["typeof",{"_index":1985,"t":{"329":{"position":[[888,7],[1037,7]]}}}],["typescript",{"_index":1785,"t":{"300":{"position":[[39,11]]},"306":{"position":[[194,10]]}}}],["tz",{"_index":2225,"t":{"375":{"position":[[495,2],[3075,2]]},"377":{"position":[[1076,2]]},"395":{"position":[[274,2]]}}}],["tz=etc/gmt",{"_index":2223,"t":{"375":{"position":[[460,10]]},"377":{"position":[[1041,10]]},"395":{"position":[[239,10]]}}}],["u",{"_index":2109,"t":{"349":{"position":[[111,1]]},"375":{"position":[[3482,1]]}}}],["ua",{"_index":2117,"t":{"353":{"position":[[526,4],[737,4],[1049,4]]}}}],["ubuntu",{"_index":1178,"t":{"151":{"position":[[391,9],[619,9]]},"385":{"position":[[91,7]]}}}],["ui",{"_index":998,"t":{"95":{"position":[[105,2]]},"157":{"position":[[346,2]]},"331":{"position":[[2207,2]]},"375":{"position":[[1500,2]]},"381":{"position":[[1277,2]]},"397":{"position":[[379,2]]},"441":{"position":[[676,2]]}}}],["uid",{"_index":1168,"t":{"149":{"position":[[1567,3]]},"375":{"position":[[3409,3],[3494,3]]}}}],["uid/gid",{"_index":2250,"t":{"377":{"position":[[310,7]]}}}],["ultim",{"_index":1031,"t":{"99":{"position":[[91,10]]},"105":{"position":[[89,10]]},"137":{"position":[[446,10]]}}}],["un",{"_index":249,"t":{"12":{"position":[[350,2]]}}}],["unabl",{"_index":2368,"t":{"439":{"position":[[22,6]]}}}],["unauthent",{"_index":1875,"t":{"318":{"position":[[208,15]]}}}],["unavoid",{"_index":1395,"t":{"195":{"position":[[1959,11]]}}}],["uncaught",{"_index":2154,"t":{"360":{"position":[[184,8]]}}}],["uncom",{"_index":481,"t":{"36":{"position":[[183,9]]},"399":{"position":[[367,9]]}}}],["uncomment/cr",{"_index":1133,"t":{"145":{"position":[[69,16]]}}}],["unconstrain",{"_index":1648,"t":{"234":{"position":[[3752,13]]}}}],["uncorrect",{"_index":1715,"t":{"246":{"position":[[492,11]]}}}],["undefin",{"_index":1945,"t":{"325":{"position":[[846,11]]},"329":{"position":[[790,10],[875,9],[1024,9],[1746,10]]},"371":{"position":[[1824,9],[2097,9]]}}}],["under",{"_index":342,"t":{"20":{"position":[[239,5]]},"69":{"position":[[569,5]]},"81":{"position":[[438,5]]},"153":{"position":[[337,5]]},"169":{"position":[[275,6]]},"183":{"position":[[82,5]]},"195":{"position":[[2009,5]]},"371":{"position":[[1499,5]]},"387":{"position":[[46,5]]}}}],["undesir",{"_index":1651,"t":{"234":{"position":[[3959,10]]}}}],["undocu",{"_index":2159,"t":{"365":{"position":[[376,13]]}}}],["unexpect",{"_index":1650,"t":{"234":{"position":[[3944,10]]},"310":{"position":[[2646,10],[2798,10]]}}}],["unfortun",{"_index":2164,"t":{"371":{"position":[[200,14]]}}}],["uniqu",{"_index":1472,"t":{"201":{"position":[[300,6],[681,6]]},"207":{"position":[[73,6]]},"209":{"position":[[159,6]]}}}],["unit",{"_index":2288,"t":{"387":{"position":[[241,6]]}}}],["unix",{"_index":1153,"t":{"149":{"position":[[654,4],[786,4],[944,4],[1282,4],[1637,4]]}}}],["unknown",{"_index":938,"t":{"87":{"position":[[1896,8],[1980,7],[2014,7],[2181,7],[2357,7]]},"95":{"position":[[1123,7]]},"353":{"position":[[1096,7]]},"357":{"position":[[901,7]]},"367":{"position":[[206,9],[286,7]]}}}],["unless",{"_index":1164,"t":{"149":{"position":[[1370,6]]},"165":{"position":[[1123,6]]},"230":{"position":[[2090,6]]},"267":{"position":[[1213,6]]},"336":{"position":[[3845,6]]},"375":{"position":[[1523,6]]},"377":{"position":[[1453,6]]},"395":{"position":[[517,6]]}}}],["unlik",{"_index":1429,"t":{"195":{"position":[[4795,8]]}}}],["unnam",{"_index":1947,"t":{"325":{"position":[[901,10]]}}}],["unoffici",{"_index":828,"t":{"79":{"position":[[25,10]]},"195":{"position":[[39,10],[265,11]]},"371":{"position":[[485,10]]}}}],["unseen",{"_index":2047,"t":{"336":{"position":[[1044,6]]}}}],["unsupport",{"_index":933,"t":{"87":{"position":[[1487,11]]},"383":{"position":[[0,11]]}}}],["untest",{"_index":1327,"t":{"183":{"position":[[500,8]]}}}],["unus",{"_index":324,"t":{"16":{"position":[[224,8]]}}}],["uosrpjt3u5dhaaup3x",{"_index":880,"t":{"85":{"position":[[332,24]]}}}],["uosrpjt3u5dhaaup3xq30dwfosgqugdsyzl3qe743waavy2eur2ckyjcz4rv123q3psbkxklwa6ahc9xmefev6btfsp8luje3jswwrqogzcduowvzwo5saig",{"_index":868,"t":{"83":{"position":[[226,123],[529,122]]}}}],["up",{"_index":256,"t":{"12":{"position":[[725,2],[1482,2],[1966,2]]},"36":{"position":[[319,2]]},"40":{"position":[[1735,2]]},"195":{"position":[[1656,2]]},"199":{"position":[[256,3]]},"207":{"position":[[18,2]]},"217":{"position":[[1627,2]]},"241":{"position":[[657,2]]},"310":{"position":[[769,2]]},"334":{"position":[[67,2]]},"357":{"position":[[732,2]]},"391":{"position":[[48,2]]},"393":{"position":[[24,2]]},"397":{"position":[[195,2]]},"399":{"position":[[503,2]]},"401":{"position":[[245,2],[371,3]]},"403":{"position":[[311,2]]},"408":{"position":[[299,2]]},"414":{"position":[[8,2]]},"439":{"position":[[174,3]]}}}],["up/logn",{"_index":561,"t":{"42":{"position":[[141,7]]}}}],["updat",{"_index":795,"t":{"75":{"position":[[284,7]]},"179":{"position":[[188,7]]},"257":{"position":[[268,8],[781,6]]},"375":{"position":[[1763,8]]},"406":{"position":[[126,9],[321,6]]},"410":{"position":[[74,6]]}}}],["upgrad",{"_index":2345,"t":{"406":{"position":[[431,10]]}}}],["upper",{"_index":487,"t":{"36":{"position":[[361,5]]},"399":{"position":[[545,5]]}}}],["upstream",{"_index":1387,"t":{"195":{"position":[[1463,8]]},"336":{"position":[[1067,8],[1263,8],[1346,8]]}}}],["upstreamerror",{"_index":1996,"t":{"329":{"position":[[1552,13],[2190,13]]}}}],["uri",{"_index":1116,"t":{"139":{"position":[[244,3],[465,3]]},"165":{"position":[[800,3],[852,3],[880,3],[1097,4],[1281,3],[1494,4],[1664,3],[2124,3],[2818,3],[3988,3],[4167,3]]},"167":{"position":[[185,3]]},"195":{"position":[[2316,4],[2950,4],[3042,3],[3219,4],[3371,3],[3451,3],[3759,4],[4141,4]]},"197":{"position":[[276,3]]},"375":{"position":[[935,3],[2508,4]]},"397":{"position":[[626,4],[746,3]]}}}],["uriblacklist",{"_index":1114,"t":{"139":{"position":[[117,12],[352,15]]},"143":{"position":[[150,15],[403,15]]}}}],["uriwhitelist",{"_index":1115,"t":{"139":{"position":[[133,12]]},"143":{"position":[[170,15],[423,15]]}}}],["url",{"_index":162,"t":{"4":{"position":[[4738,6],[4865,6],[5033,6]]},"10":{"position":[[12,3],[58,4],[439,4],[495,3],[616,3],[850,3]]},"20":{"position":[[465,6],[880,6],[1229,6],[1652,7]]},"22":{"position":[[216,3]]},"24":{"position":[[492,3],[508,3],[563,3],[719,3],[733,3],[808,3],[861,4],[881,3],[909,3],[973,3],[1013,3],[1038,3]]},"26":{"position":[[187,3],[381,6],[672,6]]},"28":{"position":[[256,3],[429,4]]},"30":{"position":[[246,3]]},"34":{"position":[[205,3],[420,6],[731,6]]},"36":{"position":[[525,3]]},"38":{"position":[[102,3],[272,6],[533,6]]},"47":{"position":[[1624,4]]},"56":{"position":[[1792,6],[1962,6],[2319,6],[2522,6],[2777,6],[3228,6],[3346,6],[3464,6]]},"58":{"position":[[639,6],[793,6],[953,6],[1077,6],[1622,6],[1722,6],[1822,6]]},"75":{"position":[[337,4],[346,3],[524,3],[594,3],[708,3]]},"77":{"position":[[87,3],[444,6],[728,6]]},"91":{"position":[[978,3],[999,3],[1017,3],[1190,3],[1349,6]]},"93":{"position":[[90,3],[173,6],[370,6]]},"95":{"position":[[1285,3],[2215,6],[2853,6]]},"99":{"position":[[4,3],[62,4],[71,3],[239,3],[337,3],[606,3],[649,3],[687,3],[738,3],[754,3]]},"101":{"position":[[132,3],[378,6],[613,6]]},"105":{"position":[[4,3],[60,4],[69,3],[235,3],[333,3],[598,3],[641,3],[679,3],[728,3],[744,3]]},"107":{"position":[[128,3],[301,6],[558,6]]},"109":{"position":[[800,6],[1091,6]]},"113":{"position":[[314,3]]},"115":{"position":[[246,3]]},"123":{"position":[[359,3],[629,3],[765,4]]},"127":{"position":[[326,3]]},"131":{"position":[[458,6],[769,6]]},"135":{"position":[[366,6],[627,6]]},"137":{"position":[[339,4],[348,3],[417,4],[426,3],[592,3],[690,3],[907,3],[950,3],[988,3],[1039,3],[1055,3]]},"143":{"position":[[130,6],[383,6]]},"147":{"position":[[204,6],[470,6]]},"153":{"position":[[210,3],[428,3]]},"155":{"position":[[272,6],[522,6]]},"157":{"position":[[42,3],[1645,3],[2353,6],[2901,6]]},"165":{"position":[[891,3],[976,3],[2423,3],[3086,3],[3148,4],[3237,3],[3328,3],[3696,3]]},"171":{"position":[[144,3],[266,6],[558,6]]},"181":{"position":[[205,6],[422,6]]},"183":{"position":[[113,4],[380,3],[473,3]]},"185":{"position":[[107,4],[380,3],[462,3]]},"191":{"position":[[284,4],[458,3],[536,3],[552,3]]},"193":{"position":[[117,3],[210,6],[405,6]]},"195":{"position":[[3236,3],[3321,3],[3478,3],[3728,3],[5240,3]]},"209":{"position":[[411,4]]},"224":{"position":[[121,4],[575,3],[598,3],[639,3],[1030,6]]},"308":{"position":[[316,5]]},"310":{"position":[[1092,3],[1170,3],[2353,3]]},"312":{"position":[[430,3]]},"329":{"position":[[332,3],[343,6],[428,4],[575,3],[724,4],[1322,4]]},"353":{"position":[[836,3],[921,3],[1616,4],[1625,4]]},"355":{"position":[[89,3],[589,5]]},"375":{"position":[[1396,3],[2440,4],[2670,3]]},"377":{"position":[[220,3]]},"381":{"position":[[1062,6],[1185,6]]},"397":{"position":[[363,3],[2540,3],[3375,4]]},"399":{"position":[[966,4],[1659,3],[1675,3],[1730,3],[1897,3]]},"426":{"position":[[300,3]]}}}],["url(norm",{"_index":1979,"t":{"329":{"position":[[585,12]]}}}],["url.pathnam",{"_index":1981,"t":{"329":{"position":[[666,13],[691,12]]}}}],["url.port",{"_index":1980,"t":{"329":{"position":[[601,9],[623,8],[642,8]]}}}],["url/cod",{"_index":1430,"t":{"195":{"position":[[5017,8]]}}}],["us",{"_index":7,"t":{"4":{"position":[[35,6],[448,3],[1409,3],[1885,5],[2043,4],[2178,4],[2245,5],[3093,3],[3803,4],[3870,5]]},"6":{"position":[[313,5]]},"10":{"position":[[24,4],[292,3],[353,3],[363,6]]},"12":{"position":[[452,3],[766,3],[944,3],[1209,3],[1523,3],[1697,3],[1863,4],[2147,3],[2320,3],[2514,5],[2657,5],[2821,3],[3374,4],[3593,3]]},"14":{"position":[[127,3],[182,4]]},"16":{"position":[[285,5],[339,3]]},"22":{"position":[[331,3]]},"24":{"position":[[6,4],[281,3],[315,5],[444,5],[516,3],[723,5],[812,4]]},"28":{"position":[[342,3]]},"30":{"position":[[253,3]]},"32":{"position":[[374,3]]},"36":{"position":[[82,5],[581,4]]},"40":{"position":[[6,4],[1194,5]]},"42":{"position":[[35,3],[149,5]]},"45":{"position":[[11,4],[179,3]]},"47":{"position":[[6,4],[1268,5],[1439,3],[1524,3],[1575,3]]},"52":{"position":[[23,4],[164,5],[271,3]]},"54":{"position":[[553,4]]},"56":{"position":[[1329,4]]},"65":{"position":[[277,3]]},"69":{"position":[[49,3],[454,5],[612,3]]},"71":{"position":[[40,4],[662,5]]},"75":{"position":[[147,5],[251,3],[350,4],[556,3],[730,4]]},"79":{"position":[[20,4],[191,3]]},"81":{"position":[[40,4],[94,4],[225,3]]},"87":{"position":[[36,5],[236,5],[778,5],[837,5],[2230,5],[2585,6],[3410,5]]},"91":{"position":[[53,3],[218,3],[668,3],[951,5],[1031,3],[1136,3],[1607,3]]},"95":{"position":[[8,5],[320,3],[368,3],[902,3],[1131,3],[1427,3]]},"97":{"position":[[175,3]]},"99":{"position":[[8,4],[75,4],[275,3],[569,5],[712,3]]},"105":{"position":[[8,4],[73,4],[271,3],[561,5],[704,3]]},"109":{"position":[[125,4],[432,3],[532,4],[576,3]]},"111":{"position":[[119,4]]},"113":{"position":[[183,3],[265,3],[300,4]]},"115":{"position":[[104,3],[260,3]]},"117":{"position":[[110,4],[299,3]]},"119":{"position":[[45,3],[149,4],[193,3]]},"121":{"position":[[124,4]]},"123":{"position":[[238,3],[493,3],[580,3],[615,4],[811,3]]},"125":{"position":[[149,3]]},"127":{"position":[[103,3],[340,3]]},"129":{"position":[[132,4],[474,3]]},"131":{"position":[[45,3],[159,4],[203,3]]},"133":{"position":[[6,4]]},"135":{"position":[[45,3],[147,4],[191,3]]},"137":{"position":[[352,4],[430,4],[628,3],[1013,3]]},"139":{"position":[[111,5],[276,4]]},"141":{"position":[[94,3],[167,5]]},"145":{"position":[[25,5]]},"149":{"position":[[1438,3]]},"151":{"position":[[98,3],[120,7]]},"153":{"position":[[12,3],[214,4],[465,3]]},"155":{"position":[[112,3]]},"157":{"position":[[55,4],[435,3],[1727,3]]},"159":{"position":[[6,4]]},"163":{"position":[[234,3],[338,4],[382,3]]},"165":{"position":[[75,4],[807,3],[1220,3],[1404,3],[1856,3],[2065,3],[2333,3],[2601,5],[3659,3],[3846,5],[3876,3]]},"169":{"position":[[19,4],[233,5],[270,4],[402,5],[607,3]]},"173":{"position":[[6,4]]},"177":{"position":[[234,3],[338,4],[382,3]]},"179":{"position":[[25,5],[673,4],[1176,5],[1334,3],[1529,5],[2156,4],[2211,3]]},"183":{"position":[[597,3]]},"185":{"position":[[18,3],[72,5],[126,5],[353,3],[435,3]]},"187":{"position":[[81,3]]},"191":{"position":[[213,5],[528,4]]},"195":{"position":[[543,5],[580,3],[1572,5],[1717,3],[1914,3],[2882,3],[3385,3],[3427,5],[4748,5],[4917,5],[5135,5]]},"203":{"position":[[336,4]]},"205":{"position":[[665,5],[976,3],[1001,5],[1272,3]]},"207":{"position":[[255,4]]},"209":{"position":[[34,5],[206,4],[295,4],[614,4],[693,4],[935,4],[1349,4],[2099,4],[2178,4]]},"211":{"position":[[785,3],[1026,5],[1169,4]]},"213":{"position":[[235,4],[1421,3]]},"215":{"position":[[121,3]]},"217":{"position":[[131,4],[222,6],[1517,5]]},"224":{"position":[[76,5],[571,3],[631,4],[913,4]]},"228":{"position":[[83,4]]},"230":{"position":[[89,5],[271,3],[511,5],[847,3],[1035,4],[1350,3],[1442,5]]},"232":{"position":[[261,5]]},"234":{"position":[[120,4],[1001,5],[1285,5],[1802,4],[1874,5],[2051,3],[2449,4],[2794,4],[3188,4],[4084,4]]},"239":{"position":[[154,3],[349,3],[423,4],[1044,4],[1188,4],[1211,5]]},"241":{"position":[[63,4],[539,4],[623,5],[691,4]]},"244":{"position":[[40,4],[382,3]]},"246":{"position":[[5,5]]},"248":{"position":[[0,3],[249,5]]},"250":{"position":[[59,5]]},"255":{"position":[[0,5]]},"257":{"position":[[217,3]]},"259":{"position":[[17,4],[116,6],[284,5],[585,5]]},"261":{"position":[[319,3],[557,4],[953,4]]},"263":{"position":[[83,4]]},"265":{"position":[[121,5],[176,4],[452,4]]},"267":{"position":[[58,5],[107,3],[290,4],[605,3],[697,5]]},"270":{"position":[[170,4],[249,4]]},"274":{"position":[[213,3]]},"276":{"position":[[15,4],[126,6]]},"278":{"position":[[32,5],[148,5],[508,4],[780,4]]},"280":{"position":[[372,6],[912,4],[960,3]]},"285":{"position":[[0,5]]},"295":{"position":[[370,3]]},"300":{"position":[[213,5]]},"302":{"position":[[133,3],[336,3]]},"304":{"position":[[219,6],[270,3],[332,4]]},"308":{"position":[[392,4]]},"310":{"position":[[812,4],[1439,4]]},"312":{"position":[[49,4],[296,6],[515,3]]},"316":{"position":[[186,4],[198,5]]},"318":{"position":[[1018,4]]},"321":{"position":[[54,5],[123,5],[1052,5]]},"323":{"position":[[409,4]]},"327":{"position":[[45,4],[496,3]]},"331":{"position":[[997,3],[1266,5],[3070,4]]},"336":{"position":[[1562,3],[1810,4],[2518,5],[3794,5],[3838,3],[3893,5]]},"342":{"position":[[32,3]]},"345":{"position":[[150,4],[415,4],[469,3]]},"347":{"position":[[14,3],[113,3],[720,3]]},"349":{"position":[[45,5],[80,5]]},"353":{"position":[[109,5],[1894,3],[2005,3]]},"355":{"position":[[148,3],[542,3]]},"357":{"position":[[218,5],[316,5],[385,5],[421,5],[487,5],[549,5],[594,4],[634,5]]},"365":{"position":[[171,3]]},"371":{"position":[[478,3],[1405,6],[2657,5]]},"375":{"position":[[236,3],[899,5],[1326,3],[1802,5],[1895,5],[2022,5],[2142,3],[2462,5],[2554,5],[2630,4],[2731,3],[3042,5],[3349,5]]},"377":{"position":[[211,3]]},"381":{"position":[[157,3],[481,3],[1333,5]]},"385":{"position":[[46,4]]},"393":{"position":[[60,5]]},"397":{"position":[[706,4],[1234,3],[1351,5],[1382,3],[1771,3],[2167,5],[2553,4],[3160,3],[3344,3],[3576,4],[4131,3]]},"399":{"position":[[266,5],[935,3],[1036,3],[1452,3],[1486,5],[1615,5],[1683,3],[1904,3]]},"403":{"position":[[166,5]]},"406":{"position":[[495,5]]},"408":{"position":[[226,4]]},"410":{"position":[[28,4]]},"412":{"position":[[706,5],[1166,5],[1252,3],[1517,4],[2149,3],[2393,3]]},"441":{"position":[[239,4],[342,5],[970,5]]}}}],["usag",{"_index":556,"t":{"42":{"position":[[53,5]]},"56":{"position":[[1673,5]]},"179":{"position":[[1543,5]]},"209":{"position":[[1895,5]]},"211":{"position":[[800,5]]},"308":{"position":[[414,5]]},"375":{"position":[[1599,6]]},"381":{"position":[[698,5]]},"393":{"position":[[591,5],[626,5]]}}}],["user",{"_index":435,"t":{"28":{"position":[[6,5]]},"32":{"position":[[6,5],[360,4]]},"34":{"position":[[95,4]]},"45":{"position":[[264,6]]},"52":{"position":[[359,6]]},"56":{"position":[[1341,5],[2053,4],[2069,5],[2554,7],[2733,7]]},"58":{"position":[[1109,7]]},"65":{"position":[[734,6]]},"67":{"position":[[26,4],[197,6]]},"73":{"position":[[174,4],[308,4]]},"95":{"position":[[590,4],[631,5],[732,6],[1359,4],[1532,4],[2247,7],[2885,7]]},"129":{"position":[[460,4]]},"149":{"position":[[926,4],[1557,4]]},"157":{"position":[[102,5],[175,5],[197,4],[250,4],[265,4],[429,5],[616,4],[635,4],[790,4],[805,4],[849,5],[926,4],[992,4],[1011,4],[1054,4],[1104,4],[1238,4],[1282,4],[1310,4]]},"169":{"position":[[719,6]]},"171":{"position":[[307,7],[599,7]]},"195":{"position":[[1512,6],[2112,4]]},"207":{"position":[[155,4],[175,4]]},"217":{"position":[[774,5]]},"219":{"position":[[171,5]]},"224":{"position":[[49,5],[84,4]]},"276":{"position":[[4,4],[378,4],[397,5]]},"278":{"position":[[227,7],[406,4],[717,7],[761,4]]},"282":{"position":[[183,7]]},"310":{"position":[[829,4],[1140,4],[1298,4],[2273,4],[2322,4],[2717,4]]},"318":{"position":[[350,4]]},"321":{"position":[[592,4],[672,4],[1099,5]]},"323":{"position":[[856,4]]},"329":{"position":[[207,5],[1963,4]]},"336":{"position":[[3143,4]]},"347":{"position":[[1024,4]]},"349":{"position":[[26,4]]},"357":{"position":[[296,5]]},"375":{"position":[[3230,4],[3437,4]]},"381":{"position":[[1098,7]]},"385":{"position":[[159,4]]},"389":{"position":[[60,4],[108,4],[206,4]]},"397":{"position":[[2439,4],[2838,5],[2958,4]]},"412":{"position":[[855,5]]}}}],["user/password",{"_index":1855,"t":{"310":{"position":[[3105,13],[3353,13]]}}}],["user:group",{"_index":2243,"t":{"375":{"position":[[3200,10]]}}}],["usera",{"_index":1334,"t":{"185":{"position":[[252,7]]}}}],["userb",{"_index":1337,"t":{"185":{"position":[[336,7]]}}}],["usernam",{"_index":183,"t":{"4":{"position":[[5099,11]]},"20":{"position":[[1294,11]]},"24":{"position":[[435,8]]},"26":{"position":[[156,8],[360,11],[651,11]]},"34":{"position":[[147,8],[398,11],[709,11]]},"95":{"position":[[382,8],[491,8],[1647,9],[1737,9]]},"97":{"position":[[282,8]]},"101":{"position":[[210,8],[396,11],[631,11]]},"103":{"position":[[215,8]]},"107":{"position":[[172,8],[341,11],[598,11]]},"109":{"position":[[779,11],[1070,11]]},"131":{"position":[[436,11],[747,11]]},"157":{"position":[[1788,9],[1870,9]]},"209":{"position":[[416,9]]},"397":{"position":[[492,8]]},"399":{"position":[[1606,8]]}}}],["usersallow",{"_index":669,"t":{"56":{"position":[[1822,13],[1992,13],[2618,13]]},"58":{"position":[[669,13],[823,13],[1173,13]]},"95":{"position":[[637,11],[2343,13],[2949,13]]},"157":{"position":[[439,10],[708,10],[855,13],[1120,13],[2390,13],[2938,13]]},"169":{"position":[[624,10]]},"171":{"position":[[355,13],[647,13]]}}}],["usersblock",{"_index":1019,"t":{"95":{"position":[[2385,13],[2994,13]]},"157":{"position":[[2435,13],[2983,13]]}}}],["v",{"_index":926,"t":{"87":{"position":[[1313,1],[1344,1]]},"375":{"position":[[1809,1],[1846,1]]},"377":{"position":[[644,1],[799,1]]}}}],["v18.19.1",{"_index":1793,"t":{"302":{"position":[[26,8]]}}}],["valid",{"_index":138,"t":{"4":{"position":[[4003,10]]},"52":{"position":[[69,5]]},"165":{"position":[[1266,5],[1479,5]]},"201":{"position":[[196,5]]},"310":{"position":[[820,8],[1243,8],[1447,8],[2561,6],[2698,5]]},"321":{"position":[[98,5],[1189,5],[1679,5]]},"336":{"position":[[2292,5],[2329,5]]},"360":{"position":[[330,6]]},"397":{"position":[[611,5]]}}}],["valkey",{"_index":257,"t":{"12":{"position":[[728,6],[1485,6],[2118,6],[2398,9],[2601,6],[3022,6],[3069,6],[3107,6],[3260,7],[3417,6],[3568,6],[3746,9]]},"217":{"position":[[1630,6]]}}}],["valkey/valkey",{"_index":290,"t":{"12":{"position":[[3275,13]]}}}],["valkeydata",{"_index":293,"t":{"12":{"position":[[3326,11]]}}}],["valkeydata:/data",{"_index":292,"t":{"12":{"position":[[3300,16]]}}}],["valu",{"_index":259,"t":{"12":{"position":[[834,7],[1591,7],[2215,7]]},"36":{"position":[[488,5]]},"45":{"position":[[412,6]]},"52":{"position":[[550,6]]},"71":{"position":[[254,6],[309,6]]},"73":{"position":[[613,5]]},"75":{"position":[[1278,5]]},"81":{"position":[[107,5],[281,6],[552,5],[757,5],[798,5]]},"83":{"position":[[96,5]]},"95":{"position":[[310,5]]},"99":{"position":[[289,6]]},"105":{"position":[[285,6]]},"125":{"position":[[99,5],[162,5]]},"137":{"position":[[642,6]]},"149":{"position":[[1129,7],[1693,5]]},"169":{"position":[[200,5]]},"179":{"position":[[926,6]]},"195":{"position":[[791,5]]},"197":{"position":[[96,5]]},"211":{"position":[[688,5],[862,5],[917,6]]},"213":{"position":[[210,5],[272,6]]},"234":{"position":[[2813,5]]},"241":{"position":[[111,6]]},"261":{"position":[[1038,6]]},"282":{"position":[[399,5]]},"310":{"position":[[468,5]]},"397":{"position":[[226,6],[823,6],[2602,6]]},"399":{"position":[[675,5],[700,6],[1080,6],[1940,6],[1973,6]]}}}],["var/run/avahi",{"_index":928,"t":{"87":{"position":[[1346,14]]}}}],["var/run/dbus:/var/run/dbu",{"_index":927,"t":{"87":{"position":[[1315,27]]}}}],["vari",{"_index":2008,"t":{"331":{"position":[[460,7]]}}}],["variabl",{"_index":10,"t":{"4":{"position":[[62,9],[342,9],[1033,9],[1234,9],[1249,8],[2894,9],[2909,8]]},"12":{"position":[[864,8],[1621,8],[2245,8],[2741,8],[3510,8]]},"26":{"position":[[43,8]]},"30":{"position":[[43,8]]},"34":{"position":[[43,8]]},"38":{"position":[[43,8]]},"45":{"position":[[462,8]]},"52":{"position":[[600,8]]},"77":{"position":[[27,8]]},"83":{"position":[[27,8]]},"89":{"position":[[122,8]]},"93":{"position":[[27,8]]},"95":{"position":[[1225,8]]},"101":{"position":[[43,8]]},"107":{"position":[[43,8]]},"109":{"position":[[440,9]]},"115":{"position":[[43,8]]},"119":{"position":[[53,9]]},"127":{"position":[[43,8]]},"131":{"position":[[53,9]]},"135":{"position":[[53,9]]},"147":{"position":[[43,8]]},"151":{"position":[[43,8]]},"155":{"position":[[43,8]]},"157":{"position":[[1589,8]]},"163":{"position":[[242,9]]},"167":{"position":[[43,8]]},"171":{"position":[[43,8]]},"177":{"position":[[242,9]]},"181":{"position":[[43,8]]},"189":{"position":[[43,8]]},"193":{"position":[[43,8]]},"197":{"position":[[43,8]]},"353":{"position":[[1515,8]]},"375":{"position":[[3066,8],[3373,9]]},"381":{"position":[[1362,9]]},"395":{"position":[[420,9]]}}}],["variou",{"_index":1532,"t":{"213":{"position":[[865,8],[908,8]]},"276":{"position":[[284,7]]},"278":{"position":[[316,8]]},"293":{"position":[[33,8]]}}}],["veri",{"_index":35,"t":{"4":{"position":[[547,4]]},"14":{"position":[[262,4]]},"336":{"position":[[3863,4]]}}}],["verifi",{"_index":541,"t":{"40":{"position":[[1422,10]]},"179":{"position":[[293,6],[492,6]]},"336":{"position":[[3226,8]]},"441":{"position":[[656,8]]}}}],["version",{"_index":753,"t":{"65":{"position":[[1053,7]]},"199":{"position":[[556,8]]},"230":{"position":[[1281,8]]},"267":{"position":[[536,8]]},"276":{"position":[[250,8]]},"278":{"position":[[290,9]]},"287":{"position":[[26,8],[89,9]]},"302":{"position":[[170,8],[370,7]]},"329":{"position":[[1859,7],[1928,7],[1991,8]]},"381":{"position":[[193,7]]},"406":{"position":[[164,7],[473,7],[550,8]]}}}],["via",{"_index":349,"t":{"20":{"position":[[767,3],[1120,3]]},"103":{"position":[[188,3]]},"300":{"position":[[313,3]]},"375":{"position":[[1400,3]]},"397":{"position":[[1621,3],[1793,3]]},"441":{"position":[[98,3],[445,3],[665,3]]}}}],["view",{"_index":479,"t":{"36":{"position":[[168,4]]},"47":{"position":[[134,7],[1402,4],[1593,4]]},"173":{"position":[[106,7]]},"375":{"position":[[1028,4],[1067,4],[2638,4],[2738,4]]},"393":{"position":[[514,7]]},"399":{"position":[[352,4]]}}}],["violat",{"_index":829,"t":{"79":{"position":[[85,9]]}}}],["visibl",{"_index":2000,"t":{"329":{"position":[[1945,10]]}}}],["visit",{"_index":1264,"t":{"165":{"position":[[4262,5]]},"195":{"position":[[5215,5]]},"310":{"position":[[2336,5]]},"397":{"position":[[1106,5],[3994,5]]},"401":{"position":[[375,5]]},"426":{"position":[[278,8],[355,5]]}}}],["vite",{"_index":2268,"t":{"381":{"position":[[611,7]]}}}],["vitej",{"_index":1791,"t":{"300":{"position":[[284,6]]}}}],["vlc",{"_index":725,"t":{"62":{"position":[[874,3]]},"151":{"position":[[442,6],[670,6]]},"179":{"position":[[21,3],[91,4],[488,3],[650,3],[693,3],[746,3],[791,3],[830,3],[892,3],[1030,3],[1282,3],[1924,3],[1968,3],[2122,3]]},"181":{"position":[[481,5]]},"209":{"position":[[1627,3]]},"369":{"position":[[61,3],[88,3]]},"412":{"position":[[445,3]]}}}],["vlc.json",{"_index":1515,"t":{"209":{"position":[[1644,8]]}}}],["vlc_password",{"_index":1318,"t":{"181":{"position":[[108,12]]}}}],["vlc_url",{"_index":1316,"t":{"181":{"position":[[82,7]]}}}],["volum",{"_index":291,"t":{"12":{"position":[[3289,8],[3317,8]]},"149":{"position":[[1225,8]]},"230":{"position":[[2030,8]]},"267":{"position":[[1153,8]]},"375":{"position":[[1191,8],[1969,8]]},"377":{"position":[[1393,8]]},"395":{"position":[[457,8]]}}}],["volume/bind",{"_index":251,"t":{"12":{"position":[[549,11],[1306,11]]}}}],["vote",{"_index":1552,"t":{"217":{"position":[[780,6]]},"219":{"position":[[177,6]]}}}],["vpn",{"_index":1330,"t":{"183":{"position":[[678,3]]}}}],["vs",{"_index":1729,"t":{"259":{"position":[[540,3]]},"261":{"position":[[838,3]]}}}],["vscode",{"_index":1803,"t":{"304":{"position":[[65,7],[321,6]]}}}],["vulfpeck",{"_index":2188,"t":{"371":{"position":[[1878,8]]}}}],["w+.com)/i",{"_index":1759,"t":{"280":{"position":[[669,17]]}}}],["wait",{"_index":647,"t":{"56":{"position":[[458,4],[833,4]]},"65":{"position":[[339,5]]},"195":{"position":[[4186,4]]},"353":{"position":[[65,5]]}}}],["want",{"_index":77,"t":{"4":{"position":[[1507,4],[1630,4],[1681,4],[3190,4],[3313,4],[3364,4],[3448,4]]},"54":{"position":[[14,4],[265,4],[748,4]]},"95":{"position":[[700,4]]},"125":{"position":[[125,5]]},"157":{"position":[[647,4]]},"183":{"position":[[238,5]]},"195":{"position":[[2245,5]]},"211":{"position":[[777,4]]},"217":{"position":[[1563,4]]},"232":{"position":[[68,4]]},"239":{"position":[[341,4],[1740,4]]},"241":{"position":[[500,4]]},"248":{"position":[[127,4]]},"257":{"position":[[14,4],[85,4]]},"274":{"position":[[26,4],[119,4]]},"397":{"position":[[3194,4]]}}}],["wantedby=default.target",{"_index":2296,"t":{"387":{"position":[[416,23]]}}}],["warn",{"_index":147,"t":{"4":{"position":[[4161,7],[4950,7],[5174,7]]},"16":{"position":[[182,7]]},"20":{"position":[[776,4],[971,7],[1129,4],[1369,7]]},"47":{"position":[[1143,7]]},"79":{"position":[[0,7]]},"149":{"position":[[1295,7]]},"183":{"position":[[509,7]]},"195":{"position":[[0,7],[1346,7],[4740,7]]},"234":{"position":[[3724,7]]},"360":{"position":[[71,4]]}}}],["wax",{"_index":2194,"t":{"371":{"position":[[1982,3]]}}}],["way",{"_index":987,"t":{"91":{"position":[[1242,3]]},"149":{"position":[[815,3]]},"207":{"position":[[80,3]]},"217":{"position":[[366,3],[1239,3]]},"221":{"position":[[143,3]]},"234":{"position":[[369,4]]},"239":{"position":[[263,3]]},"310":{"position":[[2931,3]]},"357":{"position":[[777,3]]},"371":{"position":[[673,3]]},"412":{"position":[[2266,3]]}}}],["web",{"_index":322,"t":{"16":{"position":[[146,3]]},"47":{"position":[[130,3]]},"73":{"position":[[403,3]]},"75":{"position":[[1087,3]]},"95":{"position":[[101,3]]},"97":{"position":[[70,3]]},"103":{"position":[[72,3]]},"165":{"position":[[3070,3],[4272,3]]},"173":{"position":[[102,3]]},"179":{"position":[[35,3],[285,3]]},"195":{"position":[[2208,3]]},"300":{"position":[[142,3]]},"312":{"position":[[426,3]]},"318":{"position":[[50,3]]},"353":{"position":[[2023,3]]},"355":{"position":[[182,3],[200,3],[484,3]]},"357":{"position":[[529,3]]},"381":{"position":[[564,3],[1273,3]]},"412":{"position":[[903,3]]},"416":{"position":[[124,3]]}}}],["webhook",{"_index":166,"t":{"4":{"position":[[4802,11]]},"18":{"position":[[37,8]]},"20":{"position":[[0,8],[187,8],[249,7],[286,8],[322,7],[402,11]]},"183":{"position":[[101,7],[282,8]]},"310":{"position":[[1692,8]]},"318":{"position":[[1023,8]]},"403":{"position":[[327,8]]},"412":{"position":[[712,8]]}}}],["webscrobbl",{"_index":325,"t":{"16":{"position":[[233,14]]},"62":{"position":[[837,12]]},"183":{"position":[[21,12],[601,12]]},"185":{"position":[[31,12]]},"187":{"position":[[301,12]]},"189":{"position":[[200,12],[289,12],[708,14]]},"336":{"position":[[251,14],[1193,13]]},"353":{"position":[[79,12],[409,14],[434,14],[664,14],[689,14],[2425,13]]},"375":{"position":[[2167,14]]},"412":{"position":[[432,12]]}}}],["webscrobbler.json",{"_index":1331,"t":{"185":{"position":[[161,17]]}}}],["webscrobbler/lfm",{"_index":2136,"t":{"353":{"position":[[1697,16]]}}}],["websit",{"_index":570,"t":{"45":{"position":[[189,7]]},"47":{"position":[[1385,8]]},"187":{"position":[[101,7],[128,8]]},"371":{"position":[[191,8]]}}}],["websocket",{"_index":800,"t":{"75":{"position":[[472,11],[644,10]]},"153":{"position":[[49,9]]},"310":{"position":[[1887,9]]}}}],["well",{"_index":131,"t":{"4":{"position":[[3570,4]]},"10":{"position":[[110,4]]},"20":{"position":[[1520,4]]},"234":{"position":[[4009,4],[4111,4]]},"244":{"position":[[767,5]]},"248":{"position":[[97,4]]},"310":{"position":[[167,4],[1571,4]]},"363":{"position":[[119,5]]},"403":{"position":[[36,4]]},"426":{"position":[[165,4]]}}}],["went",{"_index":2207,"t":{"371":{"position":[[3021,4]]}}}],["wgxl6bsuq343",{"_index":1410,"t":{"195":{"position":[[2716,16],[3945,17]]}}}],["whatev",{"_index":406,"t":{"24":{"position":[[554,8]]},"183":{"position":[[224,9]]},"195":{"position":[[2232,8]]},"399":{"position":[[1721,8]]}}}],["whatever.tld/subdir/api",{"_index":1418,"t":{"195":{"position":[[3585,26]]}}}],["wheatu",{"_index":1635,"t":{"234":{"position":[[723,10],[969,10],[2169,10],[2333,7],[2374,8],[2581,10],[3036,10],[3098,9],[3256,10]]},"259":{"position":[[772,10],[954,10]]}}}],["when/if",{"_index":2166,"t":{"371":{"position":[[349,7]]}}}],["whether",{"_index":1516,"t":{"211":{"position":[[23,7]]},"336":{"position":[[2676,7]]}}}],["whistl",{"_index":1874,"t":{"318":{"position":[[146,9]]}}}],["whitelist",{"_index":1117,"t":{"139":{"position":[[263,9]]},"151":{"position":[[427,12],[655,12]]},"189":{"position":[[443,12],[664,12]]}}}],["whitelistedapp",{"_index":973,"t":{"89":{"position":[[771,18],[1014,18]]}}}],["whitelisteddevic",{"_index":971,"t":{"89":{"position":[[722,21],[965,21]]}}}],["wider",{"_index":1554,"t":{"217":{"position":[[824,5]]},"219":{"position":[[221,5]]}}}],["window",{"_index":849,"t":{"81":{"position":[[356,7]]},"85":{"position":[[509,6]]},"87":{"position":[[996,7]]},"179":{"position":[[196,6]]}}}],["wish",{"_index":276,"t":{"12":{"position":[[2053,4]]},"139":{"position":[[7,4]]},"230":{"position":[[329,4],[906,4]]},"267":{"position":[[161,4]]},"310":{"position":[[607,4]]},"336":{"position":[[1554,4]]},"371":{"position":[[1992,4]]},"397":{"position":[[2937,4],[3090,4]]}}}],["within",{"_index":283,"t":{"12":{"position":[[2871,6]]},"85":{"position":[[500,6]]},"123":{"position":[[988,6]]},"187":{"position":[[290,6]]},"203":{"position":[[305,6]]},"207":{"position":[[521,6]]},"209":{"position":[[1914,6]]},"213":{"position":[[7,6],[32,6]]},"234":{"position":[[4414,6]]}}}],["without",{"_index":819,"t":{"77":{"position":[[91,7]]},"89":{"position":[[214,7]]},"115":{"position":[[133,7]]},"127":{"position":[[131,7]]},"141":{"position":[[289,7]]},"165":{"position":[[3700,7]]},"189":{"position":[[122,7]]},"234":{"position":[[3606,7]]},"241":{"position":[[629,7]]},"244":{"position":[[45,7]]},"246":{"position":[[162,7]]},"302":{"position":[[391,7]]},"310":{"position":[[2638,7]]},"336":{"position":[[2646,7]]},"345":{"position":[[499,7]]},"365":{"position":[[538,7]]},"412":{"position":[[1721,7],[1818,7]]}}}],["won't",{"_index":1631,"t":{"234":{"position":[[400,5]]}}}],["work",{"_index":372,"t":{"22":{"position":[[150,7]]},"40":{"position":[[185,5]]},"47":{"position":[[267,5]]},"79":{"position":[[247,4]]},"85":{"position":[[695,6]]},"137":{"position":[[333,5]]},"159":{"position":[[303,4]]},"165":{"position":[[1214,5]]},"173":{"position":[[382,4]]},"183":{"position":[[460,4]]},"195":{"position":[[133,7],[194,5],[1541,7],[1631,5],[4807,4]]},"217":{"position":[[1473,4]]},"221":{"position":[[377,4]]},"302":{"position":[[237,7]]},"323":{"position":[[885,4]]},"331":{"position":[[663,4]]},"355":{"position":[[429,5]]},"357":{"position":[[350,8]]},"363":{"position":[[166,5],[226,5]]},"381":{"position":[[58,7]]}}}],["workingdirectory=/path/to/multi",{"_index":2292,"t":{"387":{"position":[[319,31]]}}}],["workspac",{"_index":1802,"t":{"304":{"position":[[25,9]]}}}],["world",{"_index":2200,"t":{"371":{"position":[[2087,5]]}}}],["worldwid",{"_index":1689,"t":{"239":{"position":[[1084,11]]},"244":{"position":[[571,9]]}}}],["worri",{"_index":2057,"t":{"336":{"position":[[2664,5]]}}}],["wrapped.baileytownsend.dev",{"_index":588,"t":{"47":{"position":[[1443,26]]}}}],["write",{"_index":2203,"t":{"371":{"position":[[2488,5]]}}}],["written",{"_index":1783,"t":{"300":{"position":[[19,7]]}}}],["wrong",{"_index":1717,"t":{"250":{"position":[[69,5]]}}}],["ws",{"_index":1340,"t":{"187":{"position":[[66,2]]},"189":{"position":[[119,2]]}}}],["ws://192.168.0.101",{"_index":803,"t":{"75":{"position":[[735,20]]},"77":{"position":[[451,21],[735,21]]}}}],["ws://192.168.0.101/api/live/nowplaying/websocket",{"_index":804,"t":{"75":{"position":[[759,48]]}}}],["ws://192.168.0.101:3456/mopidy/w",{"_index":1111,"t":{"137":{"position":[[1180,34]]}}}],["ws://azura.mydomain.com",{"_index":805,"t":{"75":{"position":[[808,25]]}}}],["ws://azura.mydomain.com.com/api/live/nowplaying/websocket",{"_index":806,"t":{"75":{"position":[[837,57]]}}}],["ws://localhost:6680/mopidy/w",{"_index":1105,"t":{"137":{"position":[[542,29],[1070,29]]}}}],["ws://localhost:7905",{"_index":1183,"t":{"153":{"position":[[469,19]]},"155":{"position":[[92,19],[279,22],[529,22]]}}}],["ws://mopidy.mydomain.com:6680/mopidy/w",{"_index":1110,"t":{"137":{"position":[[1120,40]]}}}],["ws://mopidy.mydomain.com:80/mopw",{"_index":1113,"t":{"137":{"position":[[1244,33]]}}}],["ws_blacklist",{"_index":1344,"t":{"189":{"position":[[246,12]]}}}],["ws_enabl",{"_index":1342,"t":{"189":{"position":[[82,9]]}}}],["ws_whitelist",{"_index":1343,"t":{"189":{"position":[[159,12]]}}}],["wss://mydomain.com/custom/azura/w",{"_index":807,"t":{"75":{"position":[[895,36],[935,34]]}}}],["ws|wss]://host:[port",{"_index":799,"t":{"75":{"position":[[401,22]]},"153":{"position":[[241,22]]}}}],["wtf",{"_index":628,"t":{"54":{"position":[[472,4]]}}}],["x",{"_index":825,"t":{"77":{"position":[[348,1]]},"325":{"position":[[840,1]]},"371":{"position":[[3119,2],[3180,2],[3196,1]]}}}],["x11",{"_index":2119,"t":{"353":{"position":[[543,5],[754,5]]}}}],["x86",{"_index":2212,"t":{"375":{"position":[[36,3]]}}}],["x86/arm",{"_index":2355,"t":{"412":{"position":[[1190,7]]}}}],["x86_64",{"_index":2120,"t":{"353":{"position":[[555,7],[766,7]]}}}],["xw",{"_index":1688,"t":{"239":{"position":[[1066,2]]},"244":{"position":[[615,6]]},"255":{"position":[[397,7]]}}}],["xxx",{"_index":2263,"t":{"381":{"position":[[355,5],[378,5]]}}}],["y",{"_index":2089,"t":{"345":{"position":[[486,1]]},"371":{"position":[[3122,2],[3188,2]]}}}],["y4j3",{"_index":616,"t":{"52":{"position":[[960,5],[1211,5]]},"177":{"position":[[604,5],[861,5]]}}}],["yamaha",{"_index":726,"t":{"62":{"position":[[902,6]]},"412":{"position":[[449,6]]}}}],["ye",{"_index":299,"t":{"12":{"position":[[3564,3],[3617,3]]},"26":{"position":[[94,3],[141,3]]},"30":{"position":[[97,3],[145,3]]},"34":{"position":[[91,3],[135,3]]},"38":{"position":[[93,3],[142,3]]},"45":{"position":[[516,3],[610,3]]},"52":{"position":[[657,3],[760,3]]},"77":{"position":[[73,3],[123,3],[183,3]]},"83":{"position":[[77,3]]},"93":{"position":[[78,3]]},"95":{"position":[[1277,3],[1351,3]]},"101":{"position":[[92,3]]},"107":{"position":[[90,3]]},"155":{"position":[[157,3]]},"157":{"position":[[1637,3],[1705,3]]},"167":{"position":[[100,3],[126,3]]},"171":{"position":[[96,3],[118,3],[135,3]]},"181":{"position":[[121,3]]},"193":{"position":[[92,3]]},"412":{"position":[[2136,4]]}}}],["year",{"_index":1551,"t":{"217":{"position":[[754,4]]},"219":{"position":[[151,4]]}}}],["you'll",{"_index":1475,"t":{"203":{"position":[[0,6]]}}}],["you'r",{"_index":2334,"t":{"401":{"position":[[251,6]]}}}],["you'v",{"_index":1467,"t":{"201":{"position":[[125,6]]}}}],["young",{"_index":1746,"t":{"272":{"position":[[172,7]]}}}],["yourappnam",{"_index":1428,"t":{"195":{"position":[[4498,13]]}}}],["yourconnectionstringher",{"_index":279,"t":{"12":{"position":[[2422,26]]}}}],["yourhostip:yourport",{"_index":1295,"t":{"179":{"position":[[807,19]]}}}],["yourmultiscrobblerinstance]/api/webscrobbl",{"_index":1321,"t":{"183":{"position":[[118,45]]}}}],["yourmusic.com",{"_index":1760,"t":{"280":{"position":[[729,17]]}}}],["yourmusicsource.com",{"_index":1456,"t":{"199":{"position":[[421,21]]}}}],["yourpassword",{"_index":1281,"t":{"171":{"position":[[339,15],[631,15]]}}}],["yourport",{"_index":1296,"t":{"179":{"position":[[846,8]]}}}],["yourself",{"_index":619,"t":{"54":{"position":[[41,8]]},"165":{"position":[[3866,9]]},"195":{"position":[[2086,8]]},"336":{"position":[[353,8]]}}}],["yourus",{"_index":1280,"t":{"171":{"position":[[315,11],[371,10],[607,11],[663,10]]}}}],["youtub",{"_index":624,"t":{"54":{"position":[[239,7]]},"60":{"position":[[152,7]]},"62":{"position":[[943,7]]},"412":{"position":[[466,7]]},"416":{"position":[[204,7]]}}}],["youtube.js/wiki/how",{"_index":1367,"t":{"195":{"position":[[642,19]]}}}],["youtubetv",{"_index":1365,"t":{"195":{"position":[[570,9],[4767,9]]},"357":{"position":[[224,9],[322,9]]}}}],["yt",{"_index":387,"t":{"22":{"position":[[675,2]]},"195":{"position":[[27,2],[185,2],[4975,2],[5381,2]]}}}],["ytm",{"_index":1360,"t":{"195":{"position":[[300,3],[1431,3],[1472,3],[1663,3]]},"197":{"position":[[330,3]]},"357":{"position":[[41,3],[151,3],[622,3],[803,3],[1162,3]]},"371":{"position":[[15,3],[141,3],[187,3],[513,3],[1067,3],[1211,3],[1302,3],[1454,3],[1692,3],[2292,3],[2494,3],[2663,3]]}}}],["ytm_client_id",{"_index":1440,"t":{"197":{"position":[[128,13]]}}}],["ytm_client_secret",{"_index":1442,"t":{"197":{"position":[[179,17]]}}}],["ytm_cooki",{"_index":1439,"t":{"197":{"position":[[82,10]]}}}],["ytm_log_diff",{"_index":1444,"t":{"197":{"position":[[304,12]]}}}],["ytm_log_diff=tru",{"_index":2181,"t":{"371":{"position":[[1632,17]]}}}],["ytm_redirect_uri",{"_index":1443,"t":{"197":{"position":[[238,16]]}}}],["ytmusic",{"_index":683,"t":{"56":{"position":[[2831,10]]},"195":{"position":[[1034,10],[2581,10],[2828,7],[3810,10],[4294,7]]},"197":{"position":[[990,9]]},"371":{"position":[[1534,10],[1729,8],[2369,10],[2539,7]]}}}],["ytmusic.json",{"_index":1376,"t":{"195":{"position":[[982,12],[2537,12],[3406,12]]},"371":{"position":[[1472,14]]}}}],["ytmusic/callback",{"_index":1419,"t":{"195":{"position":[[3627,16]]}}}],["z",{"_index":2209,"t":{"371":{"position":[[3130,2],[3210,2]]}}}]],"pipeline":["stemmer"]}}]
···11-{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"$ref":"#/definitions/SpotifySourceConfig"},{"$ref":"#/definitions/PlexSourceConfig"},{"$ref":"#/definitions/PlexApiSourceConfig"},{"$ref":"#/definitions/TautulliSourceConfig"},{"$ref":"#/definitions/DeezerSourceConfig"},{"$ref":"#/definitions/DeezerInternalSourceConfig"},{"$ref":"#/definitions/ListenbrainzEndpointSourceConfig"},{"$ref":"#/definitions/LastFMEndpointSourceConfig"},{"$ref":"#/definitions/SubSonicSourceConfig"},{"$ref":"#/definitions/JellySourceConfig"},{"$ref":"#/definitions/JellyApiSourceConfig"},{"$ref":"#/definitions/LastfmSourceConfig"},{"$ref":"#/definitions/YTMusicSourceConfig"},{"$ref":"#/definitions/MPRISSourceConfig"},{"$ref":"#/definitions/MopidySourceConfig"},{"$ref":"#/definitions/ListenBrainzSourceConfig"},{"$ref":"#/definitions/JRiverSourceConfig"},{"$ref":"#/definitions/KodiSourceConfig"},{"$ref":"#/definitions/WebScrobblerSourceConfig"},{"$ref":"#/definitions/ChromecastSourceConfig"},{"$ref":"#/definitions/MalojaSourceConfig"},{"$ref":"#/definitions/MusikcubeSourceConfig"},{"$ref":"#/definitions/MusicCastSourceConfig"},{"$ref":"#/definitions/MPDSourceConfig"},{"$ref":"#/definitions/VLCSourceConfig"},{"$ref":"#/definitions/IcecastSourceConfig"},{"$ref":"#/definitions/AzuracastSourceConfig"},{"$ref":"#/definitions/KoitoSourceConfig"},{"$ref":"#/definitions/TealSourceConfig"},{"$ref":"#/definitions/RockskySourceConfig"}],"definitions":{"SpotifySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SpotifySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"SpotifySourceConfig"},"SpotifySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)\n\nIt is unlikely you should need to change this unless you scrobble many very short tracks often\n\nReading:\n* https://developer.spotify.com/documentation/web-api/guides/rate-limits/\n* https://medium.com/mendix/limiting-your-amount-of-calls-in-mendix-most-of-the-time-rest-835dde55b10e\n * Rate limit may ~180 req/min\n* https://community.spotify.com/t5/Spotify-for-Developers/Web-API-ratelimit/m-p/5503150/highlight/true#M7930\n * Informally indicated as 20 req/sec? Probably for burstiness","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"spotify client id","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"clientSecret":{"type":"string","description":"spotify client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"spotify redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/callback","examples":["http://localhost:9078/callback"]}},"required":["clientId","clientSecret"],"title":"SpotifySourceData"},"CommonSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonSourceOptions"},"LogLevel":{"type":"string","enum":["silent","fatal","error","warn","info","log","verbose","debug"],"description":"Names of log levels that can be invoked on the logger\n\nFrom lowest to highest:\n\n* `debug`\n* `verbose`\n* `log`\n* `info`\n* `warn`\n* `error`\n* `fatal`\n* `silent` (will never output anything)\n\nWhen used in `LogOptions` specifies the **minimum** level the output should log at.","title":"LogLevel"},"FileLogOptions":{"type":"object","properties":{"timestamp":{"type":"string","enum":["unix","iso","auto"],"description":"For rolling log files\n\nWhen\n* value passed to rolling destination is a string (`path` from LogOptions is a string) and\n* `frequency` is defined\n\nThis determines the format of the datetime inserted into the log file name:\n\n* `unix` - unix epoch timestamp in milliseconds\n* `iso` - Full [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) datetime IE '2024-03-07T20:11:34Z'\n* `auto`\n * When frequency is `daily` only inserts date IE YYYY-MM-DD\n * Otherwise inserts full ISO8601 datetime","default":"auto"},"size":{"type":["number","string"],"description":"The maximum size of a given rolling log file.\n\nCan be combined with frequency. Use k, m and g to express values in KB, MB or GB.\n\nNumerical values will be considered as MB.","default":"10MB"},"frequency":{"anyOf":[{"type":"string","enum":["daily"]},{"type":"string","enum":["hourly"]},{"type":"number"}],"description":"The amount of time a given rolling log file is used. Can be combined with size.\n\nUse `daily` or `hourly` to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used.\n\nNumerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.","default":"daily"},"path":{"anyOf":[{"type":"string"},{"$comment":"() => string"}],"description":"The path and filename to use for log files.\n\nIf using rolling files the filename will be appended with `.N` (a number) BEFORE the extension based on rolling status.\n\nMay also be specified using env LOG_PATH or a function that returns a string.\n\nIf path is relative the absolute path will be derived from `logBaseDir` (in `LoggerAppExtras`) which defaults to CWD","default":"./logs/app.log"},"level":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false}],"description":"Specify the minimum log level to output to rotating files. If `false` no log files will be created."}},"title":"FileLogOptions"},"ScrobbleThresholds":{"type":"object","properties":{"duration":{"type":["number","null"],"description":"The number of seconds a track has been listened to before it should be considered scrobbled.\n\nSet to null to disable.","default":240,"examples":[240]},"percent":{"type":["number","null"],"description":"The percentage (as an integer) of a track that should have been seen played before it should be scrobbled. Only used if the Source provides information about how long the track is.\n\nSet to null to disable.\n\nNOTE: This should be used with care when the Source is a \"polling\" type (has an 'interval' property). If the track is short and the interval is too high MS may ignore the track if percentage is high because it had not \"seen\" the track for long enough from first discovery, even if you have been playing the track for longer.","default":50,"examples":[50]}},"title":"ScrobbleThresholds"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3CSearchAndReplaceTerm%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<SearchAndReplaceTerm>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<SearchAndReplaceTerm>"},"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3CSearchAndReplaceTerm%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<SearchAndReplaceTerm,MaybeStageTyped>"},"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"artists":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"album":{"anyOf":[{"type":"boolean"},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"required":["when"]}]},"type":{"$ref":"#/definitions/StageTypeMetadata"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"artists":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"album":{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},"type":{"$ref":"#/definitions/StageTypeUser"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"album":{}},"required":["album","artists","title"]}],"title":"PlayTransformParts<SearchAndReplaceTerm,MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"album":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"StageTypeMetadata":{"type":"string","enum":["spotify","listenbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"search":{},"replace":{}},"required":["search","replace"],"title":"ConditionalSearchAndReplaceTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"PlexSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"PlexSourceConfig"},"PlexSourceData":{"type":"object","properties":{"user":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"libraries":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of libraries to scrobble tracks from\n\nIf none are provided tracks from all libraries will be scrobbled","examples":[["Audio","Music"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName"]]}},"title":"PlexSourceData"},"PlexApiSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/PlexApiOptions"}},"required":["data","options"],"title":"PlexApiSourceConfig"},"PlexApiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"token":{"type":"string"},"url":{"type":"string","description":"http(s)://HOST:PORT of the Plex server to connect to"},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"}},"required":["url"],"title":"PlexApiData"},"PlexApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"ignoreInvalidCert":{"type":"boolean","description":"Ignore invalid cert errors when connecting to Plex\n\nUseful for Plex servers using \"Required\" Secure Connections with self-signed certificates\n\nDo not enable unless you know you need this.","default":false}},"title":"PlexApiOptions"},"TautulliSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"TautulliSourceConfig"},"DeezerSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"DeezerSourceConfig"},"DeezerData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"deezer client id","examples":["a89cba1569901a0671d5a9875fed4be1"]},"clientSecret":{"type":"string","description":"deezer client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"deezer redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/deezer/callback","examples":["http://localhost:9078/deezer/callback"]}},"required":["clientId","clientSecret"],"title":"DeezerData"},"DeezerInternalSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerInternalData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/DeezerInternalSourceOptions"}},"required":["data"],"title":"DeezerInternalSourceConfig"},"DeezerInternalData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"arl":{"type":"string","description":"ARL retrieved from Deezer response header"},"userAgent":{"type":"string","description":"User agent","default":"Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"}},"required":["arl"],"title":"DeezerInternalData"},"DeezerInternalSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"fuzzyDiscoveryIgnore":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["aggressive"]}]}},"title":"DeezerInternalSourceOptions"},"ListenbrainzEndpointSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenbrainzEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"title":"ListenbrainzEndpointSourceConfig"},"ListenbrainzEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Listenbrainz endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/listenbrainz/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/listenbrainz/originb\n\nIf no slug is found from an extension's incoming webhook event the first Listenbrainz source without a slug will be used"},"token":{"type":["string","null"],"description":"If an LZ submission request contains this token in the Authorization Header it will be used to match the submission with this Source\n\nSee: https://listenbrainz.readthedocs.io/en/latest/users/api/index.html#add-the-user-token-to-your-requests"}},"title":"ListenbrainzEndpointData"},"LastFMEndpointSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFMEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"title":"LastFMEndpointSourceConfig"},"LastFMEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Last.fm endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/lastfm/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/lastfm/originb\n\nIf no slug is found from an extension's incoming webhook event the first Last.fm source without a slug will be used"}},"title":"LastFMEndpointData"},"SubSonicSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SubsonicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"SubSonicSourceConfig"},"SubsonicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the subsonic media server to query","examples":["http://airsonic.local"]},"user":{"type":"string","description":"Username to login to the server with","examples":[["MyUser"]]},"password":{"type":"string","description":"Password for the user to login to the server with","examples":["MyPassword"]},"ignoreTlsErrors":{"type":"boolean","description":"If your subsonic server is using self-signed certs you may need to disable TLS errors in order to get a connection\n\nWARNING: This should be used with caution as your traffic may not be encrypted.","default":false},"legacyAuthentication":{"type":"boolean","description":"Older Subsonic versions, and some badly implemented servers (Nextcloud), use legacy authentication which sends your password in CLEAR TEXT. This is less secure than the newer, recommended hashing authentication method but in some cases it is needed. See \"Authentication\" section here => https://www.subsonic.org/pages/api.jsp\n\nIf this option is not specified it will be turned on if the subsonic server responds with error code 41 \"Token authentication not supported for LDAP users.\" -- See Error Handling section => https://www.subsonic.org/pages/api.jsp","default":false},"usersAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf undefined or an empty string/list MS will scrobble activity from all users"}},"required":["url","user","password"],"title":"SubsonicData"},"JellySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"JellySourceConfig"},"JellyData":{"type":"object","properties":{"users":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName1"]]}},"title":"JellyData"},"JellyApiSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/JellyApiOptions"}},"required":["data","options"],"title":"JellyApiSourceConfig"},"JellyApiData":{"type":"object","properties":{"url":{"type":"string","description":"HOST:PORT of the Jellyfin server to connect to"},"user":{"type":"string","description":"The username of the user to authenticate for or track scrobbles for"},"password":{"type":"string","description":"Password of the username to authenticate for\n\nRequired if `apiKey` is not provided."},"apiKey":{"type":"string","description":"API Key to authenticate with.\n\nRequired if `password` is not provided."},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"},"additionalAllowedLibraryTypes":{"type":"array","items":{},"description":"Allow MS to scrobble audio media in libraries classified other than 'music'\n\n`librariesAllow` will achieve the same result as this but this is more convenient if you do not want to explicitly list every library name or are only using `librariesBlock`"},"allowUnknown":{"type":"boolean","description":"Force media with a type of \"Unknown\" to be counted as Audio","default":false},"frontendUrlOverride":{"type":"string","description":"HOST:PORT of the Jellyfin server that your browser will be able to access from the frontend (and thus load images and links from)\nIf unspecified it will use the normal server HOST and PORT from the `url`\nNecessary if you are using a reverse proxy or other network configuration that prevents the frontend from accessing the server directly\n\nENV: JELLYFIN_FRONTEND_URL_OVERRIDE"}},"required":["url","user"],"title":"JellyApiData"},"JellyApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"JellyApiOptions"},"LastfmSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFmSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `lastfm.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"LastfmSourceConfig"},"LastFmSourceData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]},"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"}},"required":["apiKey","secret"],"title":"LastFmSourceData"},"YTMusicSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/YTMusicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"type":"object","properties":{"logAuth":{"type":"boolean","description":"When true MS will log to DEBUG all of the credentials data it receives from YTM"},"logDiff":{"type":"boolean","description":"Always log history diff\n\nBy default MS will log to `WARN` if history diff is inconsistent but does not log if diff is expected (on new tracks found)\nSet this to `true` to ALWAYS log diff on new tracks. Expected diffs will log to `DEBUG` and inconsistent diffs will continue to log to `WARN`","default":false},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}}}},"title":"YTMusicSourceConfig"},"YTMusicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"cookie":{"type":"string","description":"The cookie retrieved from the Request Headers of music.youtube.com after logging in.\n\nSee https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers for how to retrieve this value.","examples":["VISITOR_INFO1_LIVE=jMp2xA1Xz2_PbVc; __Secure-3PAPISID=3AxsXpy0M/AkISpjek; ..."]},"clientId":{"type":"string","description":"Google Cloud Console project OAuth Client ID\n\nGenerated from a custom OAuth Client, see docs"},"clientSecret":{"type":"string","description":"Google Cloud Console project OAuth Client Secret\n\nGenerated from a custom OAuth Client, see docs"},"redirectUri":{"type":"string","description":"Google Cloud Console project OAuth Client Authorized redirect URI\n\nGenerated from a custom OAuth Client, see docs. multi-scrobbler will generate a default based on BASE_URL.\nOnly specify this if the default does not work for you."},"innertubeOptions":{"$ref":"#/definitions/InnertubeOptions","description":"Additional options for authorization and tailoring YTM client"}},"title":"YTMusicData"},"InnertubeOptions":{"type":"object","properties":{"po_token":{"type":"string","description":"Proof of Origin token\n\nMay be required if YTM starts returning 403"},"visitor_data":{"type":"string","description":"Visitor ID value found in VISITOR_INFO1_LIVE or visitorData cookie\n\nMay be required if YTM starts returning 403"},"account_index":{"type":"number","description":"If account login results in being able to choose multiple account, use a zero-based index to choose which one to monitor","examples":[0,1]},"location":{"type":"string"},"lang":{"type":"string"},"generate_session_locally":{"type":"boolean"},"device_category":{"type":"string"},"client_type":{"type":"string"},"timezone":{"type":"string"}},"title":"InnertubeOptions"},"MPRISSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPRISData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MPRISSourceConfig"},"MPRISData":{"type":"object","properties":{"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any players that START WITH these values, case-insensitive","examples":[["spotify","vlc"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY from any players that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","vlc"]]}},"title":"MPRISData"},"MopidySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MopidyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MopidySourceConfig"},"MopidyData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Mopidy HTTP server to connect to\n\nYou MUST have Mopidy-HTTP extension enabled: https://mopidy.com/ext/http\n\nmulti-scrobbler connects to the WebSocket endpoint that ultimately looks like this => `ws://localhost:6680/mopidy/ws/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `6680`\n* Path => `/mopidy/ws/`","examples":["ws://localhost:6680/mopidy/ws/"],"default":"ws://localhost:6680/mopidy/ws/"},"uriBlacklist":{"type":"array","items":{"type":"string"},"description":"Do not scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Don't scrobble tracks from soundcloud by adding 'soundcloud' to this list.\n\nList is ignored if uriWhitelist is used."},"uriWhitelist":{"type":"array","items":{"type":"string"},"description":"Only scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Only scrobble tracks from soundcloud by adding 'soundcloud' to this list."},"albumBlacklist":{"type":"array","items":{"type":"string"},"description":"Remove album data that matches any case-insensitive string from this list when scrobbling,\n\nFor certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \"Soundcloud\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake name to this list. Multi-scrobbler will still scrobble the track, just without the bad data.","examples":[["Soundcloud","Mixcloud"]],"default":["Soundcloud"]}},"title":"MopidyData"},"ListenBrainzSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenBrainzSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `listenbrainz.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"ListenBrainzSourceConfig"},"ListenBrainzSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzSourceData"},"JRiverSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JRiverData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"JRiverSourceConfig"},"JRiverData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the JRiver HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:52199/MCWS/v1/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `52199`\n* Path => `/MCWS/v1/`","examples":["http://localhost:52199/MCWS/v1/"],"default":"http://localhost:52199/MCWS/v1/"},"username":{"type":"string","description":"If you have enabled authentication, the username you set"},"password":{"type":"string","description":"If you have enabled authentication, the password you set"}},"required":["url"],"title":"JRiverData"},"KodiSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KodiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"KodiSourceConfig"},"KodiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Kodi HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:8080/jsonrpc`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `8080`\n* Path => `/jsonrpc`","examples":["http://localhost:8080/jsonrpc"],"default":"http://localhost:8080/jsonrpc"},"username":{"type":"string","description":"The username set for Remote Control via Web Sever"},"password":{"type":"string","description":"The password set for Remote Control via Web Sever"}},"required":["url","username","password"],"title":"KodiData"},"WebScrobblerSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/WebScrobblerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"title":"WebScrobblerSourceConfig"},"WebScrobblerData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIn WebScrobbler's Webhook you must set an 'API URL'. All MS WebScrobbler sources must start like:\n\nhttp://localhost:9078/api/webscrobbler\n\nIf you are using multiple WebScrobbler sources (scrobbles for many users) you must use a slug to match Sources with each users extension.\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/webscrobbler/usera\n* slug: 'userb' => API URL: http://localhost:9078/api/webscrobbler/userb\n\nIf no slug is found from an extension's incoming webhook event the first WebScrobbler source without a slug will be used"},"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Block scrobbling from specific WebScrobbler Connectors","examples":[["youtube"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only allow scrobbling from specific WebScrobbler Connectors","examples":[["mixcloud","soundcloud","bandcamp"]]}},"title":"WebScrobblerData"},"ChromecastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ChromecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"ChromecastSourceConfig"},"ChromecastData":{"type":"object","properties":{"blacklistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any cast devices that START WITH these values, case-insensitive\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"whitelistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any cast device that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"blacklistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any application that START WITH these values, case-insensitive","examples":[["spotify","pandora"]]},"whitelistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any application that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","pandora"]]},"useAvahi":{"type":"boolean","description":"Try to use Avahi and avahi-browse to resolve mDNS devices instead of native mDNS querying\n\nUseful for docker (alpine) container where mDNS resolution is not yet supported. Avahi socket must be exposed to the container and avahi-tools must be installed.","default":false},"useAutoDiscovery":{"type":"boolean","description":"Use mDNS to discovery Google Cast devices on your next automatically?\n\nIf not explicitly set then it is TRUE if `devices` is not set"},"devices":{"type":"array","items":{"$ref":"#/definitions/ChromecastDeviceInfo"},"description":"A list of Google Cast devices to monitor\n\nIf this is used then `useAutoDiscovery` is set to FALSE, if not explicitly set"},"allowUnknownMedia":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Chromecast Apps report a \"media type\" in the status info returned for whatever is currently playing\n\n* If set to TRUE then Music AND Generic/Unknown media will be tracked for ALL APPS\n* If set to FALSE then only media explicitly typed as Music will be tracked for ALL APPS\n* If set to a list then only Apps whose name contain one of these values, case-insensitive, will have Music AND Generic/Unknown tracked\n\nSee https://developers.google.com/cast/docs/media/messages#MediaInformation \"metadata\" property","default":false},"forceMediaRecognitionOn":{"type":"array","items":{"type":"string"},"description":"Media provided by any App whose name is listed here will ALWAYS be tracked, regardless of the \"media type\" reported\n\nApps will be recognized if they CONTAIN any of these values, case-insensitive"}},"title":"ChromecastData"},"ChromecastDeviceInfo":{"type":"object","properties":{"name":{"type":"string","description":"A friendly name to identify this device","examples":["MySmartTV"]},"address":{"type":"string","description":"The IP address of the device","examples":["192.168.0.115"]}},"required":["name","address"],"title":"ChromecastDeviceInfo"},"MalojaSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MalojaSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `maloja.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"MalojaSourceConfig"},"MalojaSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaSourceData"},"MusikcubeSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusikcubeData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MusikcubeSourceConfig"},"MusikcubeData":{"type":"object","properties":{"url":{"type":"string","description":"URL of the Musikcube Websocket (Metadata) server to connect to\n\nYou MUST have enabled 'metadata' server and set a password: https://github.com/clangen/musikcube/wiki/remote-api-documentation\n * musikcube -> settings -> server setup\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `7905`","examples":["ws://localhost:7905"],"default":"ws://localhost:7905"},"password":{"type":"string","description":"Password set in Musikcube https://github.com/clangen/musikcube/wiki/remote-api-documentation\n\n* musikcube -> settings -> server setup -> password"},"device_id":{"type":"string"}},"required":["password"],"title":"MusikcubeData"},"MusicCastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusicCastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MusicCastSourceConfig"},"MusicCastData":{"type":"object","properties":{"url":{"type":"string","description":"The host or URL of the YamahaExtendedControl endpoint to use","examples":[["192.168.0.101","http://192.168.0.101/YamahaExtendedControl"]]}},"required":["url"],"title":"MusicCastData"},"MPDSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPDData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/MPDSourceOptions"}},"required":["data","options"],"title":"MPDSourceConfig"},"MPDData":{"type":"object","properties":{"url":{"type":"string","description":"URL:PORT of the MPD server to connect to\n\nTo use this you must have TCP connections enabled for your MPD server https://mpd.readthedocs.io/en/stable/user.html#client-connections","examples":["localhost:6600"],"default":"localhost:6600"},"path":{"type":"string","description":"If using socket specify the path instead of url.\n\ntrailing `~` is replaced by your home directory"},"password":{"type":"string","description":"Password for the server, if set https://mpd.readthedocs.io/en/stable/user.html#permissions-and-passwords"}},"title":"MPDData"},"MPDSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"MPDSourceOptions"},"VLCSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/VLCData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/VLCSourceOptions"}},"required":["data"],"title":"VLCSourceConfig"},"VLCData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL:PORT of the VLC server to connect to\n\nTo use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc","examples":["localhost:8080"],"default":"localhost:8080"},"password":{"type":"string","description":"Password for the server"}},"required":["password"],"title":"VLCData"},"VLCSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"filenamePatterns":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"A list of regular expressions to use to extract metadata (title, album, artist) from a filename\n\nUsed when VLC reports only the filename for the current audio track"},"logFilenamePatterns":{"type":"boolean","description":"Log to DEBUG when a filename-only track is matched or not matched by filenamePatterns","default":false},"dumpVlcMetadata":{"type":"boolean","description":"Dump all the metadata VLC reports for an audio track to DEBUG.\n\nUse this if reporting an issue with VLC not correctly capturing metadata for a track.","default":false}},"title":"VLCSourceOptions"},"IcecastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/IcecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/IcecastSourceOptions"}},"required":["data"],"title":"IcecastSourceConfig"},"IcecastData":{"type":"object","properties":{"sources":{"type":"array","items":{"$ref":"#/definitions/IcecastSource"}},"icestatsEndpoint":{"type":"string"},"statsEndpoint":{"type":"string"},"nextsongsEndpoint":{"type":"string"},"sevenhtmlEndpoint":{"type":"string"},"icyMetaInt":{"type":"number"},"url":{"type":"string","description":"The Icecast stream URL"}},"required":["url"],"title":"IcecastData"},"IcecastSource":{"type":"string","enum":["icy","ogg","icestats","stats","sevenhtml","nextsongs"],"title":"IcecastSource"},"IcecastSourceOptions":{"type":"object","properties":{"systemScrobble":{"type":"boolean","description":"For Sources that support manual listening, should MS default to scrobbling when no user interaction has occurred?\n\nIf not specified MS will use a Source's specific behavior, see Source's documentation."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"IcecastSourceOptions"},"AzuracastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/AzuracastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"AzuracastSourceConfig"},"AzuracastData":{"type":"object","properties":{"url":{"type":"string","description":"Base URL of the Azuracast instance\n\nThis does NOT include the station. If a station is included it will be ignored. Use `station` field to specify station, if necessary","examples":["https://radio.mydomain.tld","http://localhost:80"]},"station":{"type":"string","description":"The specific station to monitor\n\nScrobbling will only occur if any of the monitor conditions are met AND the station is ONLINE.\n\nTo monitor multiple stations create a Source for each station.","examples":["my-station-1"]},"monitorWhenListeners":{"type":["boolean","number"],"description":"Only activate scrobble monitoring if station\n\n* `true` => has any current listeners\n* `number` => has EQUAL TO or MORE THAN X number of listeners"},"monitorWhenLive":{"type":"boolean","description":"Only activate scrobble monitoring if station has a live DJ/Streamer","default":true},"apiKey":{"type":"string","description":"API Key used to access data about private streams\n\nhttps://www.azuracast.com/docs/developers/apis/#api-authentication"}},"required":["url","station"],"title":"AzuracastData"},"KoitoSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KoitoSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `koito.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"KoitoSourceConfig"},"KoitoSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoSourceData"},"TealSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/TealSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/TealSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"Should always be `souce` when using Tealfm as a Source","default":"source","examples":["source"]}},"required":["data"],"title":"TealSourceConfig"},"TealSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealSourceData"},"TealSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealSourceOptions"},"RockskySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/RockskySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/RockskySourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `rocksky.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"RockskySourceConfig"},"RockskySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockskySourceData"},"RockskySourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockskySourceOptions"}}}11+{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"$ref":"#/definitions/SpotifySourceConfig"},{"$ref":"#/definitions/PlexSourceConfig"},{"$ref":"#/definitions/PlexApiSourceConfig"},{"$ref":"#/definitions/TautulliSourceConfig"},{"$ref":"#/definitions/DeezerSourceConfig"},{"$ref":"#/definitions/DeezerInternalSourceConfig"},{"$ref":"#/definitions/ListenbrainzEndpointSourceConfig"},{"$ref":"#/definitions/LastFMEndpointSourceConfig"},{"$ref":"#/definitions/SubSonicSourceConfig"},{"$ref":"#/definitions/JellySourceConfig"},{"$ref":"#/definitions/JellyApiSourceConfig"},{"$ref":"#/definitions/LastfmSourceConfig"},{"$ref":"#/definitions/YTMusicSourceConfig"},{"$ref":"#/definitions/MPRISSourceConfig"},{"$ref":"#/definitions/MopidySourceConfig"},{"$ref":"#/definitions/ListenBrainzSourceConfig"},{"$ref":"#/definitions/JRiverSourceConfig"},{"$ref":"#/definitions/KodiSourceConfig"},{"$ref":"#/definitions/WebScrobblerSourceConfig"},{"$ref":"#/definitions/ChromecastSourceConfig"},{"$ref":"#/definitions/MalojaSourceConfig"},{"$ref":"#/definitions/MusikcubeSourceConfig"},{"$ref":"#/definitions/MusicCastSourceConfig"},{"$ref":"#/definitions/MPDSourceConfig"},{"$ref":"#/definitions/VLCSourceConfig"},{"$ref":"#/definitions/IcecastSourceConfig"},{"$ref":"#/definitions/AzuracastSourceConfig"},{"$ref":"#/definitions/KoitoSourceConfig"},{"$ref":"#/definitions/TealSourceConfig"},{"$ref":"#/definitions/RockskySourceConfig"}],"definitions":{"SpotifySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SpotifySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"SpotifySourceConfig"},"SpotifySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)\n\nIt is unlikely you should need to change this unless you scrobble many very short tracks often\n\nReading:\n* https://developer.spotify.com/documentation/web-api/guides/rate-limits/\n* https://medium.com/mendix/limiting-your-amount-of-calls-in-mendix-most-of-the-time-rest-835dde55b10e\n * Rate limit may ~180 req/min\n* https://community.spotify.com/t5/Spotify-for-Developers/Web-API-ratelimit/m-p/5503150/highlight/true#M7930\n * Informally indicated as 20 req/sec? Probably for burstiness","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"spotify client id","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"clientSecret":{"type":"string","description":"spotify client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"spotify redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/callback","examples":["http://localhost:9078/callback"]}},"required":["clientId","clientSecret"],"title":"SpotifySourceData"},"CommonSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"CommonSourceOptions"},"LogLevel":{"type":"string","enum":["silent","fatal","error","warn","info","log","verbose","debug"],"description":"Names of log levels that can be invoked on the logger\n\nFrom lowest to highest:\n\n* `debug`\n* `verbose`\n* `log`\n* `info`\n* `warn`\n* `error`\n* `fatal`\n* `silent` (will never output anything)\n\nWhen used in `LogOptions` specifies the **minimum** level the output should log at.","title":"LogLevel"},"FileLogOptions":{"type":"object","properties":{"timestamp":{"type":"string","enum":["unix","iso","auto"],"description":"For rolling log files\n\nWhen\n* value passed to rolling destination is a string (`path` from LogOptions is a string) and\n* `frequency` is defined\n\nThis determines the format of the datetime inserted into the log file name:\n\n* `unix` - unix epoch timestamp in milliseconds\n* `iso` - Full [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) datetime IE '2024-03-07T20:11:34Z'\n* `auto`\n * When frequency is `daily` only inserts date IE YYYY-MM-DD\n * Otherwise inserts full ISO8601 datetime","default":"auto"},"size":{"type":["number","string"],"description":"The maximum size of a given rolling log file.\n\nCan be combined with frequency. Use k, m and g to express values in KB, MB or GB.\n\nNumerical values will be considered as MB.","default":"10MB"},"frequency":{"anyOf":[{"type":"string","enum":["daily"]},{"type":"string","enum":["hourly"]},{"type":"number"}],"description":"The amount of time a given rolling log file is used. Can be combined with size.\n\nUse `daily` or `hourly` to rotate file every day (or every hour). Existing file within the current day (or hour) will be re-used.\n\nNumerical values will be considered as a number of milliseconds. Using a numerical value will always create a new file upon startup.","default":"daily"},"path":{"anyOf":[{"type":"string"},{"$comment":"() => string"}],"description":"The path and filename to use for log files.\n\nIf using rolling files the filename will be appended with `.N` (a number) BEFORE the extension based on rolling status.\n\nMay also be specified using env LOG_PATH or a function that returns a string.\n\nIf path is relative the absolute path will be derived from `logBaseDir` (in `LoggerAppExtras`) which defaults to CWD","default":"./logs/app.log"},"level":{"anyOf":[{"$ref":"#/definitions/LogLevel"},{"type":"boolean","const":false}],"description":"Specify the minimum log level to output to rotating files. If `false` no log files will be created."}},"title":"FileLogOptions"},"ScrobbleThresholds":{"type":"object","properties":{"duration":{"type":["number","null"],"description":"The number of seconds a track has been listened to before it should be considered scrobbled.\n\nSet to null to disable.","default":240,"examples":[240]},"percent":{"type":["number","null"],"description":"The percentage (as an integer) of a track that should have been seen played before it should be scrobbled. Only used if the Source provides information about how long the track is.\n\nSet to null to disable.\n\nNOTE: This should be used with care when the Source is a \"polling\" type (has an 'interval' property). If the track is short and the interval is too high MS may ignore the track if percentage is high because it had not \"seen\" the track for long enough from first discovery, even if you have been playing the track for longer.","default":50,"examples":[50]}},"title":"ScrobbleThresholds"},"PlayTransformOptions":{"type":"object","properties":{"log":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["all"]}]},"preCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"compare":{"type":"object","properties":{"candidate":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"},"existing":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}}},"postCompare":{"$ref":"#/definitions/PlayTransformPartsConfig%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%3E"}},"title":"PlayTransformOptions"},"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>":{"anyOf":[{"$ref":"#/definitions/PlayTransformPartsArray%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"}],"description":"Represents the weakly-defined user config. May be an array of parts or one parts object","title":"PlayTransformPartsConfig<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm)>"},"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"type":"array","items":{"$ref":"#/definitions/PlayTransformParts%3C(def-alias-617285649-259-336-617285649-0-4775%5B%5D%7CExternalMetadataTerm)%2CMaybeStageTyped%3E"},"title":"PlayTransformPartsArray<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>":{"anyOf":[{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeMetadata"},"name":{"type":"string"},"score":{"type":"number"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"artists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"albumArtists":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"album":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"duration":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"meta":{"anyOf":[{"type":"array","items":{"$ref":"#/definitions/SearchAndReplaceTerm"}},{"$ref":"#/definitions/ExternalMetadataTerm"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"$ref":"#/definitions/StageTypeUser"},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"artists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"albumArtists":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"album":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"duration":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"meta":{"anyOf":[{"type":"boolean"},{"$ref":"#/definitions/Whennable"}]},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string","enum":["native"]},"name":{"type":"string"}},"required":["type"]},{"type":"object","properties":{"when":{},"name":{},"onSuccess":{},"onFailure":{},"failureReturnPartial":{},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{}},"required":["album","albumArtists","artists","duration","failureReturnPartial","meta","name","onFailure","onSuccess","title","when"]},{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"},"title":{},"artists":{},"albumArtists":{},"album":{},"duration":{},"meta":{},"onSuccess":{"$ref":"#/definitions/FlowControlTerm"},"onFailure":{"$ref":"#/definitions/FlowControlTerm"},"failureReturnPartial":{"type":"boolean"},"type":{"type":"string"},"name":{"type":"string"}},"required":["type"]}],"title":"PlayTransformParts<(def-alias-617285649-259-336-617285649-0-4775[]|ExternalMetadataTerm),MaybeStageTyped>"},"WhenConditionsConfig":{"$ref":"#/definitions/WhenConditions%3Cstring%3E","title":"WhenConditionsConfig"},"WhenConditions<string>":{"type":"array","items":{"$ref":"#/definitions/WhenParts%3Cstring%3E"},"title":"WhenConditions<string>"},"WhenParts<string>":{"$ref":"#/definitions/PlayTransformPartsAtomic%3Cstring%3E","title":"WhenParts<string>"},"PlayTransformPartsAtomic<string>":{"type":"object","properties":{"title":{"type":"string"},"artists":{"type":"string"},"albumArtists":{"type":"string"},"album":{"type":"string"},"duration":{"type":"string"},"meta":{"type":"string"}},"title":"PlayTransformPartsAtomic<string>"},"Whennable":{"type":"object","properties":{"when":{"$ref":"#/definitions/WhenConditionsConfig"}},"title":"Whennable"},"FlowControlTerm":{"type":"string","enum":["continue","stop"],"title":"FlowControlTerm"},"StageTypeMetadata":{"type":"string","enum":["spotify","musicbrainz","native"],"title":"StageTypeMetadata"},"SearchAndReplaceTerm":{"anyOf":[{"type":"string"},{"$ref":"#/definitions/ConditionalSearchAndReplaceTerm"}],"title":"SearchAndReplaceTerm"},"ConditionalSearchAndReplaceTerm":{"type":"object","properties":{"search":{},"replace":{},"when":{}},"required":["search","replace","when"],"title":"ConditionalSearchAndReplaceTerm"},"ExternalMetadataTerm":{"anyOf":[{"type":"boolean"},{"not":{}},{"$ref":"#/definitions/Whennable"}],"title":"ExternalMetadataTerm"},"StageTypeUser":{"type":"string","enum":["user"],"title":"StageTypeUser"},"PlexSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"PlexSourceConfig"},"PlexSourceData":{"type":"object","properties":{"user":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"libraries":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of libraries to scrobble tracks from\n\nIf none are provided tracks from all libraries will be scrobbled","examples":[["Audio","Music"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName"]]}},"title":"PlexSourceData"},"PlexApiSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/PlexApiOptions"}},"required":["data","options"],"title":"PlexApiSourceConfig"},"PlexApiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"token":{"type":"string"},"url":{"type":"string","description":"http(s)://HOST:PORT of the Plex server to connect to"},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"}},"required":["url"],"title":"PlexApiData"},"PlexApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"ignoreInvalidCert":{"type":"boolean","description":"Ignore invalid cert errors when connecting to Plex\n\nUseful for Plex servers using \"Required\" Secure Connections with self-signed certificates\n\nDo not enable unless you know you need this.","default":false}},"title":"PlexApiOptions"},"TautulliSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/PlexSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"TautulliSourceConfig"},"DeezerSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"DeezerSourceConfig"},"DeezerData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"clientId":{"type":"string","description":"deezer client id","examples":["a89cba1569901a0671d5a9875fed4be1"]},"clientSecret":{"type":"string","description":"deezer client secret","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"redirectUri":{"type":"string","description":"deezer redirect URI -- required only if not the default shown here. URI must end in \"callback\"","default":"http://localhost:9078/deezer/callback","examples":["http://localhost:9078/deezer/callback"]}},"required":["clientId","clientSecret"],"title":"DeezerData"},"DeezerInternalSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/DeezerInternalData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/DeezerInternalSourceOptions"}},"required":["data"],"title":"DeezerInternalSourceConfig"},"DeezerInternalData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"arl":{"type":"string","description":"ARL retrieved from Deezer response header"},"userAgent":{"type":"string","description":"User agent","default":"Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"}},"required":["arl"],"title":"DeezerInternalData"},"DeezerInternalSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"fuzzyDiscoveryIgnore":{"anyOf":[{"type":"boolean"},{"type":"string","enum":["aggressive"]}]}},"title":"DeezerInternalSourceOptions"},"ListenbrainzEndpointSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenbrainzEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"title":"ListenbrainzEndpointSourceConfig"},"ListenbrainzEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Listenbrainz endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/listenbrainz/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/listenbrainz/originb\n\nIf no slug is found from an extension's incoming webhook event the first Listenbrainz source without a slug will be used"},"token":{"type":["string","null"],"description":"If an LZ submission request contains this token in the Authorization Header it will be used to match the submission with this Source\n\nSee: https://listenbrainz.readthedocs.io/en/latest/users/api/index.html#add-the-user-token-to-your-requests"}},"title":"ListenbrainzEndpointData"},"LastFMEndpointSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFMEndpointData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"title":"LastFMEndpointSourceConfig"},"LastFMEndpointData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIf you are using multiple Last.fm endpoint sources (scrobbles for many users) you can use a slug to match Sources with individual users/origins\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/lastfm/usera\n* slug: 'originb' => API URL: http://localhost:9078/api/lastfm/originb\n\nIf no slug is found from an extension's incoming webhook event the first Last.fm source without a slug will be used"}},"title":"LastFMEndpointData"},"SubSonicSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/SubsonicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"SubSonicSourceConfig"},"SubsonicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the subsonic media server to query","examples":["http://airsonic.local"]},"user":{"type":"string","description":"Username to login to the server with","examples":[["MyUser"]]},"password":{"type":"string","description":"Password for the user to login to the server with","examples":["MyPassword"]},"ignoreTlsErrors":{"type":"boolean","description":"If your subsonic server is using self-signed certs you may need to disable TLS errors in order to get a connection\n\nWARNING: This should be used with caution as your traffic may not be encrypted.","default":false},"legacyAuthentication":{"type":"boolean","description":"Older Subsonic versions, and some badly implemented servers (Nextcloud), use legacy authentication which sends your password in CLEAR TEXT. This is less secure than the newer, recommended hashing authentication method but in some cases it is needed. See \"Authentication\" section here => https://www.subsonic.org/pages/api.jsp\n\nIf this option is not specified it will be turned on if the subsonic server responds with error code 41 \"Token authentication not supported for LDAP users.\" -- See Error Handling section => https://www.subsonic.org/pages/api.jsp","default":false},"usersAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf undefined or an empty string/list MS will scrobble activity from all users"}},"required":["url","user","password"],"title":"SubsonicData"},"JellySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"JellySourceConfig"},"JellyData":{"type":"object","properties":{"users":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of users to scrobble tracks from\n\nIf none are provided tracks from all users will be scrobbled","examples":[["MyUser1","MyUser2"]]},"servers":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"optional list of servers to scrobble tracks from\n\nIf none are provided tracks from all servers will be scrobbled","examples":[["MyServerName1"]]}},"title":"JellyData"},"JellyApiSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JellyApiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/JellyApiOptions"}},"required":["data","options"],"title":"JellyApiSourceConfig"},"JellyApiData":{"type":"object","properties":{"url":{"type":"string","description":"HOST:PORT of the Jellyfin server to connect to"},"user":{"type":"string","description":"The username of the user to authenticate for or track scrobbles for"},"password":{"type":"string","description":"Password of the username to authenticate for\n\nRequired if `apiKey` is not provided."},"apiKey":{"type":"string","description":"API Key to authenticate with.\n\nRequired if `password` is not provided."},"usersAllow":{"anyOf":[{"type":"string"},{"type":"boolean","enum":[true]},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble for specific users (case-insensitive)\n\nIf `true` MS will scrobble activity from all users"},"usersBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble for these users (case-insensitive)"},"devicesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if device or application name contains strings from this list (case-insensitive)"},"devicesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if device or application name contains strings from this list (case-insensitive)"},"librariesAllow":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only scrobble if library name contains string from this list (case-insensitive)"},"librariesBlock":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Do not scrobble if library name contains strings from this list (case-insensitive)"},"additionalAllowedLibraryTypes":{"type":"array","items":{},"description":"Allow MS to scrobble audio media in libraries classified other than 'music'\n\n`librariesAllow` will achieve the same result as this but this is more convenient if you do not want to explicitly list every library name or are only using `librariesBlock`"},"allowUnknown":{"type":"boolean","description":"Force media with a type of \"Unknown\" to be counted as Audio","default":false},"frontendUrlOverride":{"type":"string","description":"HOST:PORT of the Jellyfin server that your browser will be able to access from the frontend (and thus load images and links from)\nIf unspecified it will use the normal server HOST and PORT from the `url`\nNecessary if you are using a reverse proxy or other network configuration that prevents the frontend from accessing the server directly\n\nENV: JELLYFIN_FRONTEND_URL_OVERRIDE"}},"required":["url","user"],"title":"JellyApiData"},"JellyApiOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"JellyApiOptions"},"LastfmSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/LastFmSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `lastfm.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"LastfmSourceConfig"},"LastFmSourceData":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"apiKey":{"type":"string","description":"API Key generated from Last.fm account","examples":["787c921a2a2ab42320831aba0c8f2fc2"]},"secret":{"type":"string","description":"Secret generated from Last.fm account","examples":["ec42e09d5ae0ee0f0816ca151008412a"]},"session":{"type":"string","description":"Optional session id returned from a completed auth flow"},"redirectUri":{"type":"string","description":"Optional URI to use for callback. Specify this if callback should be different than the default. MUST have \"lastfm/callback\" in the URL somewhere.","default":"http://localhost:9078/lastfm/callback","examples":["http://localhost:9078/lastfm/callback"]},"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"}},"required":["apiKey","secret"],"title":"LastFmSourceData"},"YTMusicSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/YTMusicData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"type":"object","properties":{"logAuth":{"type":"boolean","description":"When true MS will log to DEBUG all of the credentials data it receives from YTM"},"logDiff":{"type":"boolean","description":"Always log history diff\n\nBy default MS will log to `WARN` if history diff is inconsistent but does not log if diff is expected (on new tracks found)\nSet this to `true` to ALWAYS log diff on new tracks. Expected diffs will log to `DEBUG` and inconsistent diffs will continue to log to `WARN`","default":false},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}}}},"title":"YTMusicSourceConfig"},"YTMusicData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"cookie":{"type":"string","description":"The cookie retrieved from the Request Headers of music.youtube.com after logging in.\n\nSee https://ytmusicapi.readthedocs.io/en/stable/setup/browser.html#copy-authentication-headers for how to retrieve this value.","examples":["VISITOR_INFO1_LIVE=jMp2xA1Xz2_PbVc; __Secure-3PAPISID=3AxsXpy0M/AkISpjek; ..."]},"clientId":{"type":"string","description":"Google Cloud Console project OAuth Client ID\n\nGenerated from a custom OAuth Client, see docs"},"clientSecret":{"type":"string","description":"Google Cloud Console project OAuth Client Secret\n\nGenerated from a custom OAuth Client, see docs"},"redirectUri":{"type":"string","description":"Google Cloud Console project OAuth Client Authorized redirect URI\n\nGenerated from a custom OAuth Client, see docs. multi-scrobbler will generate a default based on BASE_URL.\nOnly specify this if the default does not work for you."},"innertubeOptions":{"$ref":"#/definitions/InnertubeOptions","description":"Additional options for authorization and tailoring YTM client"}},"title":"YTMusicData"},"InnertubeOptions":{"type":"object","properties":{"po_token":{"type":"string","description":"Proof of Origin token\n\nMay be required if YTM starts returning 403"},"visitor_data":{"type":"string","description":"Visitor ID value found in VISITOR_INFO1_LIVE or visitorData cookie\n\nMay be required if YTM starts returning 403"},"account_index":{"type":"number","description":"If account login results in being able to choose multiple account, use a zero-based index to choose which one to monitor","examples":[0,1]},"location":{"type":"string"},"lang":{"type":"string"},"generate_session_locally":{"type":"boolean"},"device_category":{"type":"string"},"client_type":{"type":"string"},"timezone":{"type":"string"}},"title":"InnertubeOptions"},"MPRISSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPRISData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MPRISSourceConfig"},"MPRISData":{"type":"object","properties":{"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any players that START WITH these values, case-insensitive","examples":[["spotify","vlc"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY from any players that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","vlc"]]}},"title":"MPRISData"},"MopidySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MopidyData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MopidySourceConfig"},"MopidyData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Mopidy HTTP server to connect to\n\nYou MUST have Mopidy-HTTP extension enabled: https://mopidy.com/ext/http\n\nmulti-scrobbler connects to the WebSocket endpoint that ultimately looks like this => `ws://localhost:6680/mopidy/ws/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `6680`\n* Path => `/mopidy/ws/`","examples":["ws://localhost:6680/mopidy/ws/"],"default":"ws://localhost:6680/mopidy/ws/"},"uriBlacklist":{"type":"array","items":{"type":"string"},"description":"Do not scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Don't scrobble tracks from soundcloud by adding 'soundcloud' to this list.\n\nList is ignored if uriWhitelist is used."},"uriWhitelist":{"type":"array","items":{"type":"string"},"description":"Only scrobble tracks whose URI STARTS WITH any of these strings, case-insensitive\n\nEX: Only scrobble tracks from soundcloud by adding 'soundcloud' to this list."},"albumBlacklist":{"type":"array","items":{"type":"string"},"description":"Remove album data that matches any case-insensitive string from this list when scrobbling,\n\nFor certain sources (Soundcloud) Mopidy does not have all track info (Album) and will instead use \"Soundcloud\" as the Album name. You can prevent multi-scrobbler from using this bad Album data by adding the fake name to this list. Multi-scrobbler will still scrobble the track, just without the bad data.","examples":[["Soundcloud","Mixcloud"]],"default":["Soundcloud"]}},"title":"MopidyData"},"ListenBrainzSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ListenBrainzSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `listenbrainz.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"ListenBrainzSourceConfig"},"ListenBrainzSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the ListenBrainz server, if not using the default","examples":["https://api.listenbrainz.org/"],"default":"https://api.listenbrainz.org/"},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","username"],"title":"ListenBrainzSourceData"},"JRiverSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/JRiverData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"JRiverSourceConfig"},"JRiverData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the JRiver HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:52199/MCWS/v1/`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `52199`\n* Path => `/MCWS/v1/`","examples":["http://localhost:52199/MCWS/v1/"],"default":"http://localhost:52199/MCWS/v1/"},"username":{"type":"string","description":"If you have enabled authentication, the username you set"},"password":{"type":"string","description":"If you have enabled authentication, the password you set"}},"required":["url"],"title":"JRiverData"},"KodiSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KodiData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"KodiSourceConfig"},"KodiData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL of the Kodi HTTP server to connect to\n\nmulti-scrobbler connects to the Web Service Interface endpoint that ultimately looks like this => `http://yourDomain:8080/jsonrpc`\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `http://`\n* Hostname => `localhost`\n* Port => `8080`\n* Path => `/jsonrpc`","examples":["http://localhost:8080/jsonrpc"],"default":"http://localhost:8080/jsonrpc"},"username":{"type":"string","description":"The username set for Remote Control via Web Sever"},"password":{"type":"string","description":"The password set for Remote Control via Web Sever"}},"required":["url","username","password"],"title":"KodiData"},"WebScrobblerSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/WebScrobblerData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"title":"WebScrobblerSourceConfig"},"WebScrobblerData":{"type":"object","properties":{"slug":{"type":["string","null"],"description":"The URL ending that should be used to identify scrobbles for this source\n\nIn WebScrobbler's Webhook you must set an 'API URL'. All MS WebScrobbler sources must start like:\n\nhttp://localhost:9078/api/webscrobbler\n\nIf you are using multiple WebScrobbler sources (scrobbles for many users) you must use a slug to match Sources with each users extension.\n\nExample:\n\n* slug: 'usera' => API URL: http://localhost:9078/api/webscrobbler/usera\n* slug: 'userb' => API URL: http://localhost:9078/api/webscrobbler/userb\n\nIf no slug is found from an extension's incoming webhook event the first WebScrobbler source without a slug will be used"},"blacklist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Block scrobbling from specific WebScrobbler Connectors","examples":[["youtube"]]},"whitelist":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"Only allow scrobbling from specific WebScrobbler Connectors","examples":[["mixcloud","soundcloud","bandcamp"]]}},"title":"WebScrobblerData"},"ChromecastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/ChromecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"ChromecastSourceConfig"},"ChromecastData":{"type":"object","properties":{"blacklistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any cast devices that START WITH these values, case-insensitive\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"whitelistDevices":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any cast device that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored\n\nUseful when used with auto discovery","examples":[["home-mini","family-tv"]]},"blacklistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"DO NOT scrobble from any application that START WITH these values, case-insensitive","examples":[["spotify","pandora"]]},"whitelistApps":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"ONLY scrobble from any application that START WITH these values, case-insensitive\n\nIf whitelist is present then blacklist is ignored","examples":[["spotify","pandora"]]},"useAvahi":{"type":"boolean","description":"Try to use Avahi and avahi-browse to resolve mDNS devices instead of native mDNS querying\n\nUseful for docker (alpine) container where mDNS resolution is not yet supported. Avahi socket must be exposed to the container and avahi-tools must be installed.","default":false},"useAutoDiscovery":{"type":"boolean","description":"Use mDNS to discovery Google Cast devices on your next automatically?\n\nIf not explicitly set then it is TRUE if `devices` is not set"},"devices":{"type":"array","items":{"$ref":"#/definitions/ChromecastDeviceInfo"},"description":"A list of Google Cast devices to monitor\n\nIf this is used then `useAutoDiscovery` is set to FALSE, if not explicitly set"},"allowUnknownMedia":{"anyOf":[{"type":"boolean"},{"type":"array","items":{"type":"string"}}],"description":"Chromecast Apps report a \"media type\" in the status info returned for whatever is currently playing\n\n* If set to TRUE then Music AND Generic/Unknown media will be tracked for ALL APPS\n* If set to FALSE then only media explicitly typed as Music will be tracked for ALL APPS\n* If set to a list then only Apps whose name contain one of these values, case-insensitive, will have Music AND Generic/Unknown tracked\n\nSee https://developers.google.com/cast/docs/media/messages#MediaInformation \"metadata\" property","default":false},"forceMediaRecognitionOn":{"type":"array","items":{"type":"string"},"description":"Media provided by any App whose name is listed here will ALWAYS be tracked, regardless of the \"media type\" reported\n\nApps will be recognized if they CONTAIN any of these values, case-insensitive"}},"title":"ChromecastData"},"ChromecastDeviceInfo":{"type":"object","properties":{"name":{"type":"string","description":"A friendly name to identify this device","examples":["MySmartTV"]},"address":{"type":"string","description":"The IP address of the device","examples":["192.168.0.115"]}},"required":["name","address"],"title":"ChromecastDeviceInfo"},"MalojaSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MalojaSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `maloja.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"MalojaSourceConfig"},"MalojaSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for maloja server","examples":["http://localhost:42010"]},"apiKey":{"type":"string","description":"API Key for Maloja server","examples":["myApiKey"]}},"required":["apiKey","url"],"title":"MalojaSourceData"},"MusikcubeSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusikcubeData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MusikcubeSourceConfig"},"MusikcubeData":{"type":"object","properties":{"url":{"type":"string","description":"URL of the Musikcube Websocket (Metadata) server to connect to\n\nYou MUST have enabled 'metadata' server and set a password: https://github.com/clangen/musikcube/wiki/remote-api-documentation\n * musikcube -> settings -> server setup\n\nThe URL you provide here will have all parts not explicitly defined filled in for you so if these are not the default you must define them.\n\nParts => [default value]\n\n* Protocol => `ws://`\n* Hostname => `localhost`\n* Port => `7905`","examples":["ws://localhost:7905"],"default":"ws://localhost:7905"},"password":{"type":"string","description":"Password set in Musikcube https://github.com/clangen/musikcube/wiki/remote-api-documentation\n\n* musikcube -> settings -> server setup -> password"},"device_id":{"type":"string"}},"required":["password"],"title":"MusikcubeData"},"MusicCastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MusicCastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"MusicCastSourceConfig"},"MusicCastData":{"type":"object","properties":{"url":{"type":"string","description":"The host or URL of the YamahaExtendedControl endpoint to use","examples":[["192.168.0.101","http://192.168.0.101/YamahaExtendedControl"]]}},"required":["url"],"title":"MusicCastData"},"MPDSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/MPDData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/MPDSourceOptions"}},"required":["data","options"],"title":"MPDSourceConfig"},"MPDData":{"type":"object","properties":{"url":{"type":"string","description":"URL:PORT of the MPD server to connect to\n\nTo use this you must have TCP connections enabled for your MPD server https://mpd.readthedocs.io/en/stable/user.html#client-connections","examples":["localhost:6600"],"default":"localhost:6600"},"path":{"type":"string","description":"If using socket specify the path instead of url.\n\ntrailing `~` is replaced by your home directory"},"password":{"type":"string","description":"Password for the server, if set https://mpd.readthedocs.io/en/stable/user.html#permissions-and-passwords"}},"title":"MPDData"},"MPDSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"MPDSourceOptions"},"VLCSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/VLCData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/VLCSourceOptions"}},"required":["data"],"title":"VLCSourceConfig"},"VLCData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"url":{"type":"string","description":"URL:PORT of the VLC server to connect to\n\nTo use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc","examples":["localhost:8080"],"default":"localhost:8080"},"password":{"type":"string","description":"Password for the server"}},"required":["password"],"title":"VLCData"},"VLCSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"filenamePatterns":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}],"description":"A list of regular expressions to use to extract metadata (title, album, artist) from a filename\n\nUsed when VLC reports only the filename for the current audio track"},"logFilenamePatterns":{"type":"boolean","description":"Log to DEBUG when a filename-only track is matched or not matched by filenamePatterns","default":false},"dumpVlcMetadata":{"type":"boolean","description":"Dump all the metadata VLC reports for an audio track to DEBUG.\n\nUse this if reporting an issue with VLC not correctly capturing metadata for a track.","default":false}},"title":"VLCSourceOptions"},"IcecastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/IcecastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/IcecastSourceOptions"}},"required":["data"],"title":"IcecastSourceConfig"},"IcecastData":{"type":"object","properties":{"sources":{"type":"array","items":{"$ref":"#/definitions/IcecastSource"}},"icestatsEndpoint":{"type":"string"},"statsEndpoint":{"type":"string"},"nextsongsEndpoint":{"type":"string"},"sevenhtmlEndpoint":{"type":"string"},"icyMetaInt":{"type":"number"},"url":{"type":"string","description":"The Icecast stream URL"}},"required":["url"],"title":"IcecastData"},"IcecastSource":{"type":"string","enum":["icy","ogg","icestats","stats","sevenhtml","nextsongs"],"title":"IcecastSource"},"IcecastSourceOptions":{"type":"object","properties":{"systemScrobble":{"type":"boolean","description":"For Sources that support manual listening, should MS default to scrobbling when no user interaction has occurred?\n\nIf not specified MS will use a Source's specific behavior, see Source's documentation."},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"IcecastSourceOptions"},"AzuracastSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/AzuracastData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"}},"required":["data"],"title":"AzuracastSourceConfig"},"AzuracastData":{"type":"object","properties":{"url":{"type":"string","description":"Base URL of the Azuracast instance\n\nThis does NOT include the station. If a station is included it will be ignored. Use `station` field to specify station, if necessary","examples":["https://radio.mydomain.tld","http://localhost:80"]},"station":{"type":"string","description":"The specific station to monitor\n\nScrobbling will only occur if any of the monitor conditions are met AND the station is ONLINE.\n\nTo monitor multiple stations create a Source for each station.","examples":["my-station-1"]},"monitorWhenListeners":{"type":["boolean","number"],"description":"Only activate scrobble monitoring if station\n\n* `true` => has any current listeners\n* `number` => has EQUAL TO or MORE THAN X number of listeners"},"monitorWhenLive":{"type":"boolean","description":"Only activate scrobble monitoring if station has a live DJ/Streamer","default":true},"apiKey":{"type":"string","description":"API Key used to access data about private streams\n\nhttps://www.azuracast.com/docs/developers/apis/#api-authentication"}},"required":["url","station"],"title":"AzuracastData"},"KoitoSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/KoitoSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/CommonSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `koito.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"KoitoSourceConfig"},"KoitoSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"url":{"type":"string","description":"URL for the Koito server","examples":["http://192.168.0.100:4110"]},"token":{"type":"string","description":"User token for the user to scrobble for","examples":["pM195xPV98CDpk0QW47FIIOR8AKATAX5DblBF-Jq0t1MbbKL"]},"username":{"type":"string","description":"Username of the user to scrobble for"}},"required":["token","url","username"],"title":"KoitoSourceData"},"TealSourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/TealSourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/TealSourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"Should always be `souce` when using Tealfm as a Source","default":"source","examples":["source"]}},"required":["data"],"title":"TealSourceConfig"},"TealSourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"baseUri":{"type":"string","description":"The base URI of the Multi-Scrobbler to use for ATProto OAuth\n\nOnly include this if you want to use OAuth. The URI must be a non-IP/non-local domain using https: protocol."},"identifier":{"type":"string","description":"Identify the account to login as\n\n* For **App Password** Auth - your email\n* For **Oauth** - your handle minus the @"},"appPassword":{"type":"string","description":"The [App Password](https://atproto.com/specs/xrpc#app-passwords) you created for your account\n\nThis is created under https://bsky.app/settings/app-passwords\n\n**Use this if you are self-hosting Multi-Scrobbler on localhost or accessed like http://IP:PORT**"}},"required":["identifier"],"title":"TealSourceData"},"TealSourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"}},"title":"TealSourceOptions"},"RockskySourceConfig":{"type":"object","properties":{"name":{"type":"string","description":"Unique identifier for this source."},"data":{"$ref":"#/definitions/RockskySourceData"},"enable":{"type":"boolean","description":"Should MS use this client/source? Defaults to true","default":true,"examples":[true]},"clients":{"type":"array","items":{"type":"string"},"description":"Restrict scrobbling tracks played from this source to Clients with names from this list. If list is empty is not present Source scrobbles to all configured Clients.","examples":[["MyMalojaConfigName","MyLastFMConfigName"]]},"options":{"$ref":"#/definitions/RockskySourceOptions"},"configureAs":{"type":"string","enum":["source"],"description":"When used in `rocksky.config` this tells multi-scrobbler whether to use this data to configure a source or client.","default":"source","examples":["source"]}},"required":["data"],"title":"RockskySourceConfig"},"RockskySourceData":{"type":"object","properties":{"interval":{"type":"number","description":"How long to wait before polling the source API for new tracks (in seconds)","default":10,"examples":[10]},"maxInterval":{"type":"number","description":"When there has been no new activity from the Source API multi-scrobbler will gradually increase the wait time between polling up to this value (in seconds)","default":30,"examples":[30]},"staleAfter":{"type":"number","description":"Number of seconds after which A Player is considered Stale\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Stale. When the Player becomes Stale:\n\n* The current listening session is ended. If the Player becomes active again a new listening session is started (Player will miss `interval` seconds of listening)\n* If the player has an existing session w/ track then MS attempts to scrobble it\n\nThis option DOES NOT need to be set. It is automatically calculated as (`interval` * 3) when not defined."},"orphanedAfter":{"type":"number","description":"Number of seconds after which A Player is considered Orphaned\n\nWhen Polling the source does not recieve data about a specific Player after X seconds it becomes Orphaned. When the Player becomes Orphaned:\n\n* The current Player session is ended and the Player is removed from MS\n* MS attempts to scrobble, if the Player has an existing session w/ track\n\nA Player should become Orphaned EQUAL TO OR AFTER it becomes Stale.\n\n* This option DOES NOT need to be set. It is automatically calculated as (`interval` * 5) when not defined.\n* If it is set it must be equal to or larger than `staleAfter` or (`interval * 3`)"},"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"key":{"type":"string","description":"API Key generated from [API Applications](https://docs.rocksky.app/migrating-from-listenbrainz-to-rocksky-1040189m0) in Rocksky for your account","examples":["6794186bf-1157-4de6-80e5-uvb411f3ea2b"]},"handle":{"type":"string","description":"The **fully-qualified** handle for your ATPRoto/Bluesky account, like:\n\n* alice.bsky.social\n* foxxmd.com\n* mysuer.blacksky.app"}},"required":["handle","key"],"title":"RockskySourceData"},"RockskySourceOptions":{"type":"object","properties":{"maxRequestRetries":{"type":"number","description":"default # of http request retries a source/client can make before error is thrown","default":1,"examples":[1]},"retryMultiplier":{"type":"number","description":"default retry delay multiplier (retry attempt * multiplier = # of seconds to wait before retrying)","default":1.5,"examples":[1.5]},"maxPollRetries":{"type":"number","description":"default # of automatic polling restarts on error","default":5,"examples":[5]},"logPayload":{"type":"boolean","description":"* If this source has INGRESS to MS (sends a payload, rather than MS GETTING requesting a payload) then setting this option to true will make MS log the payload JSON to DEBUG output\n* If this source is POLLING then it will log the raw data for each unique track/response the first time it is seen","default":false,"examples":[false]},"logFilterFailure":{"type":["boolean","string"],"enum":[false,"debug","warn"],"description":"If this source has INGRESS to MS and has filters this determines how MS logs when a payload (event) fails a defined filter (IE users/servers/library filters)\n\n* `false` => do not log\n* `debug` => log to DEBUG level\n* `warn` => log to WARN level (default)\n\nHint: This is useful if you are sure this source is setup correctly and you have multiple other sources. Set to `debug` or `false` to reduce log noise.","default":"warn","examples":["warn"]},"logPlayerState":{"type":"boolean","description":"For Sources that track Player State (currently playing) this logs a simple player state/summary to DEBUG output","default":false,"examples":[false]},"logToFile":{"anyOf":[{"type":"boolean","enum":[true]},{"$ref":"#/definitions/LogLevel"},{"$ref":"#/definitions/FileLogOptions"}],"description":"**Exprimental:** Log to a separate file for this Source.\n\nUseful for debugging long-running Sources"},"scrobbleBacklog":{"type":"boolean","description":"If this source\n\n* supports fetching a listen history\n* and this option is enabled\n\nthen on startup MS will attempt to scrobble the recent listens from that history","default":true,"examples":[true,false]},"scrobbleThresholds":{"$ref":"#/definitions/ScrobbleThresholds","description":"Set thresholds for when multi-scrobbler should consider a tracked play to be \"scrobbable\". If both duration and percent are defined then if either condition is met the track is scrobbled."},"scrobbleBacklogCount":{"type":"number","description":"The number of listens to fetch when scrobbling from backlog\n\n* Only applies if this source supports fetching a listen history\n* If not specified it defaults to the maximum number of listens the source API supports"},"playTransform":{"$ref":"#/definitions/PlayTransformOptions"},"audioScrobblerUrl":{"type":"string","description":"URL for the Rocksky *Listenbrainz* endpoint, if not using the default","examples":["https://audioscrobbler.rocksky.app"],"default":"https://audioscrobbler.rocksky.app"},"apiUrl":{"type":"string","description":"URL for the Rocksky *API* endpoint, if not using the default","examples":["https://api.rocksky.app"],"default":"https://api.rocksky.app"}},"title":"RockskySourceOptions"}}}