@promptbook/templates 0.81.0-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +422 -0
- package/esm/index.es.js +2295 -0
- package/esm/index.es.js.map +1 -0
- package/esm/typings/books/index.d.ts +93 -0
- package/esm/typings/src/_packages/anthropic-claude.index.d.ts +16 -0
- package/esm/typings/src/_packages/azure-openai.index.d.ts +10 -0
- package/esm/typings/src/_packages/browser.index.d.ts +10 -0
- package/esm/typings/src/_packages/cli.index.d.ts +44 -0
- package/esm/typings/src/_packages/core.index.d.ts +238 -0
- package/esm/typings/src/_packages/documents.index.d.ts +8 -0
- package/esm/typings/src/_packages/editable.index.d.ts +10 -0
- package/esm/typings/src/_packages/execute-javascript.index.d.ts +8 -0
- package/esm/typings/src/_packages/fake-llm.index.d.ts +6 -0
- package/esm/typings/src/_packages/google.index.d.ts +10 -0
- package/esm/typings/src/_packages/legacy-documents.index.d.ts +8 -0
- package/esm/typings/src/_packages/markdown-utils.index.d.ts +48 -0
- package/esm/typings/src/_packages/node.index.d.ts +22 -0
- package/esm/typings/src/_packages/openai.index.d.ts +20 -0
- package/esm/typings/src/_packages/pdf.index.d.ts +8 -0
- package/esm/typings/src/_packages/remote-client.index.d.ts +8 -0
- package/esm/typings/src/_packages/remote-server.index.d.ts +6 -0
- package/esm/typings/src/_packages/templates.index.d.ts +4 -0
- package/esm/typings/src/_packages/types.index.d.ts +530 -0
- package/esm/typings/src/_packages/utils.index.d.ts +158 -0
- package/esm/typings/src/_packages/vercel.index.d.ts +6 -0
- package/esm/typings/src/_packages/website-crawler.index.d.ts +8 -0
- package/esm/typings/src/_packages/wizzard.index.d.ts +44 -0
- package/esm/typings/src/cli/cli-commands/about.d.ts +12 -0
- package/esm/typings/src/cli/cli-commands/hello.d.ts +12 -0
- package/esm/typings/src/cli/cli-commands/list-models.d.ts +11 -0
- package/esm/typings/src/cli/cli-commands/make.d.ts +14 -0
- package/esm/typings/src/cli/cli-commands/prettify.d.ts +13 -0
- package/esm/typings/src/cli/cli-commands/run.d.ts +15 -0
- package/esm/typings/src/cli/cli-commands/runInteractiveChatbot.d.ts +32 -0
- package/esm/typings/src/cli/cli-commands/test-command.d.ts +14 -0
- package/esm/typings/src/cli/main.d.ts +16 -0
- package/esm/typings/src/cli/promptbookCli.d.ts +13 -0
- package/esm/typings/src/cli/test/ptbk.d.ts +5 -0
- package/esm/typings/src/cli/test/ptbk.test.d.ts +1 -0
- package/esm/typings/src/collection/PipelineCollection.d.ts +25 -0
- package/esm/typings/src/collection/SimplePipelineCollection.d.ts +37 -0
- package/esm/typings/src/collection/collectionToJson.d.ts +13 -0
- package/esm/typings/src/collection/collectionToJson.test.d.ts +7 -0
- package/esm/typings/src/collection/constructors/createCollectionFromDirectory.d.ts +54 -0
- package/esm/typings/src/collection/constructors/createCollectionFromDirectory.test.d.ts +1 -0
- package/esm/typings/src/collection/constructors/createCollectionFromJson.d.ts +13 -0
- package/esm/typings/src/collection/constructors/createCollectionFromJson.test.d.ts +1 -0
- package/esm/typings/src/collection/constructors/createCollectionFromPromise.d.ts +23 -0
- package/esm/typings/src/collection/constructors/createCollectionFromPromise.test.d.ts +1 -0
- package/esm/typings/src/collection/constructors/createCollectionFromUrl.d.ts +29 -0
- package/esm/typings/src/collection/constructors/createSubcollection.d.ts +13 -0
- package/esm/typings/src/commands/BOOK_VERSION/BookVersionCommand.d.ts +11 -0
- package/esm/typings/src/commands/BOOK_VERSION/bookVersionCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/BOOK_VERSION/bookVersionCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/EXPECT/ExpectCommand.d.ts +17 -0
- package/esm/typings/src/commands/EXPECT/expectCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/EXPECT/expectCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/FOREACH/ForeachCommand.d.ts +10 -0
- package/esm/typings/src/commands/FOREACH/ForeachJson.d.ts +27 -0
- package/esm/typings/src/commands/FOREACH/foreachCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/FOREACH/foreachCommandParser.d.ts +14 -0
- package/esm/typings/src/commands/FORMAT/FormatCommand.d.ts +9 -0
- package/esm/typings/src/commands/FORMAT/formatCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/FORMAT/formatCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/FORMFACTOR/FormfactorCommand.d.ts +11 -0
- package/esm/typings/src/commands/FORMFACTOR/formfactorCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/FORMFACTOR/formfactorCommandParser.d.ts +11 -0
- package/esm/typings/src/commands/JOKER/JokerCommand.d.ts +11 -0
- package/esm/typings/src/commands/JOKER/jokerCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/JOKER/jokerCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/KNOWLEDGE/KnowledgeCommand.d.ts +11 -0
- package/esm/typings/src/commands/KNOWLEDGE/knowledgeCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/KNOWLEDGE/knowledgeCommandParser.d.ts +12 -0
- package/esm/typings/src/commands/KNOWLEDGE/utils/sourceContentToName.d.ts +11 -0
- package/esm/typings/src/commands/KNOWLEDGE/utils/sourceContentToName.test.d.ts +4 -0
- package/esm/typings/src/commands/MODEL/ModelCommand.d.ts +13 -0
- package/esm/typings/src/commands/MODEL/modelCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/MODEL/modelCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/PARAMETER/ParameterCommand.d.ts +15 -0
- package/esm/typings/src/commands/PARAMETER/parameterCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/PARAMETER/parameterCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/PERSONA/PersonaCommand.d.ts +13 -0
- package/esm/typings/src/commands/PERSONA/personaCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/PERSONA/personaCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/POSTPROCESS/PostprocessCommand.d.ts +11 -0
- package/esm/typings/src/commands/POSTPROCESS/postprocessCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/POSTPROCESS/postprocessCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/SECTION/SectionCommand.d.ts +11 -0
- package/esm/typings/src/commands/SECTION/sectionCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/SECTION/sectionCommandParser.d.ts +20 -0
- package/esm/typings/src/commands/URL/UrlCommand.d.ts +10 -0
- package/esm/typings/src/commands/URL/urlCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/URL/urlCommandParser.d.ts +9 -0
- package/esm/typings/src/commands/X_ACTION/ActionCommand.d.ts +9 -0
- package/esm/typings/src/commands/X_ACTION/actionCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/X_ACTION/actionCommandParser.d.ts +12 -0
- package/esm/typings/src/commands/X_INSTRUMENT/InstrumentCommand.d.ts +9 -0
- package/esm/typings/src/commands/X_INSTRUMENT/instrumentCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/X_INSTRUMENT/instrumentCommandParser.d.ts +12 -0
- package/esm/typings/src/commands/_BOILERPLATE/BoilerplateCommand.d.ts +10 -0
- package/esm/typings/src/commands/_BOILERPLATE/boilerplateCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/_BOILERPLATE/boilerplateCommandParser.d.ts +11 -0
- package/esm/typings/src/commands/_common/getParserForCommand.d.ts +11 -0
- package/esm/typings/src/commands/_common/getParserForCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/_common/parseCommand.d.ts +12 -0
- package/esm/typings/src/commands/_common/parseCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/_common/stringifyCommand.d.ts +11 -0
- package/esm/typings/src/commands/_common/stringifyCommand.test.d.ts +1 -0
- package/esm/typings/src/commands/_common/types/Command.d.ts +6 -0
- package/esm/typings/src/commands/_common/types/CommandParser.d.ts +189 -0
- package/esm/typings/src/commands/_common/types/CommandType.d.ts +17 -0
- package/esm/typings/src/commands/_common/types/CommandUsagePlaces.d.ts +11 -0
- package/esm/typings/src/commands/index.d.ts +9 -0
- package/esm/typings/src/config.d.ts +253 -0
- package/esm/typings/src/config.test.d.ts +4 -0
- package/esm/typings/src/constants.d.ts +35 -0
- package/esm/typings/src/conversion/compilePipeline.d.ts +28 -0
- package/esm/typings/src/conversion/compilePipeline.test.d.ts +1 -0
- package/esm/typings/src/conversion/pipelineJsonToString.d.ts +18 -0
- package/esm/typings/src/conversion/precompilePipeline.d.ts +30 -0
- package/esm/typings/src/conversion/precompilePipeline.test.d.ts +1 -0
- package/esm/typings/src/conversion/prettify/PrettifyOptions.d.ts +13 -0
- package/esm/typings/src/conversion/prettify/prettifyPipelineString.d.ts +12 -0
- package/esm/typings/src/conversion/prettify/renderPipelineMermaidOptions.d.ts +30 -0
- package/esm/typings/src/conversion/utils/extractParameterNamesFromTask.d.ts +15 -0
- package/esm/typings/src/conversion/utils/extractParameterNamesFromTask.test.d.ts +1 -0
- package/esm/typings/src/conversion/utils/extractVariablesFromScript.d.ts +14 -0
- package/esm/typings/src/conversion/utils/extractVariablesFromScript.test.d.ts +1 -0
- package/esm/typings/src/conversion/validation/_importPipeline.d.ts +30 -0
- package/esm/typings/src/conversion/validation/pipelineStringToJson-parseErrors.test.d.ts +4 -0
- package/esm/typings/src/conversion/validation/validatePipeline-logicErrors.test.d.ts +4 -0
- package/esm/typings/src/conversion/validation/validatePipeline.d.ts +42 -0
- package/esm/typings/src/conversion/validation/validatePipeline.test.d.ts +4 -0
- package/esm/typings/src/dialogs/callback/CallbackInterfaceTools.d.ts +17 -0
- package/esm/typings/src/dialogs/callback/CallbackInterfaceToolsOptions.d.ts +14 -0
- package/esm/typings/src/dialogs/simple-prompt/SimplePromptInterfaceTools.d.ts +22 -0
- package/esm/typings/src/dialogs/user-interface-execution-tools.test.d.ts +1 -0
- package/esm/typings/src/errors/0-BoilerplateError.d.ts +12 -0
- package/esm/typings/src/errors/0-index.d.ts +85 -0
- package/esm/typings/src/errors/AbstractFormatError.d.ts +11 -0
- package/esm/typings/src/errors/CollectionError.d.ts +9 -0
- package/esm/typings/src/errors/EnvironmentMismatchError.d.ts +9 -0
- package/esm/typings/src/errors/ExpectError.d.ts +12 -0
- package/esm/typings/src/errors/KnowledgeScrapeError.d.ts +9 -0
- package/esm/typings/src/errors/LimitReachedError.d.ts +9 -0
- package/esm/typings/src/errors/MissingToolsError.d.ts +9 -0
- package/esm/typings/src/errors/NotFoundError.d.ts +9 -0
- package/esm/typings/src/errors/NotYetImplementedError.d.ts +9 -0
- package/esm/typings/src/errors/ParseError.d.ts +12 -0
- package/esm/typings/src/errors/PipelineExecutionError.d.ts +9 -0
- package/esm/typings/src/errors/PipelineLogicError.d.ts +9 -0
- package/esm/typings/src/errors/PipelineUrlError.d.ts +9 -0
- package/esm/typings/src/errors/UnexpectedError.d.ts +9 -0
- package/esm/typings/src/errors/utils/ErrorJson.d.ts +20 -0
- package/esm/typings/src/errors/utils/deserializeError.d.ts +7 -0
- package/esm/typings/src/errors/utils/deserializeError.test.d.ts +1 -0
- package/esm/typings/src/errors/utils/getErrorReportUrl.d.ts +6 -0
- package/esm/typings/src/errors/utils/serializeError.d.ts +7 -0
- package/esm/typings/src/errors/utils/serializeError.test.d.ts +1 -0
- package/esm/typings/src/executables/$provideExecutablesForNode.d.ts +12 -0
- package/esm/typings/src/executables/apps/locateLibreoffice.d.ts +11 -0
- package/esm/typings/src/executables/apps/locateLibreoffice.test.d.ts +1 -0
- package/esm/typings/src/executables/apps/locatePandoc.d.ts +11 -0
- package/esm/typings/src/executables/apps/locatePandoc.test.d.ts +1 -0
- package/esm/typings/src/executables/locateApp.d.ts +33 -0
- package/esm/typings/src/executables/locateApp.test.d.ts +1 -0
- package/esm/typings/src/executables/platforms/locateAppOnLinux.d.ts +12 -0
- package/esm/typings/src/executables/platforms/locateAppOnMacOs.d.ts +12 -0
- package/esm/typings/src/executables/platforms/locateAppOnWindows.d.ts +12 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +38 -0
- package/esm/typings/src/execution/CommonToolsOptions.d.ts +24 -0
- package/esm/typings/src/execution/EmbeddingVector.d.ts +8 -0
- package/esm/typings/src/execution/Executables.d.ts +18 -0
- package/esm/typings/src/execution/ExecutionTools.d.ts +69 -0
- package/esm/typings/src/execution/FilesystemTools.d.ts +9 -0
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +61 -0
- package/esm/typings/src/execution/LlmExecutionToolsConstructor.d.ts +10 -0
- package/esm/typings/src/execution/PipelineExecutor.d.ts +19 -0
- package/esm/typings/src/execution/PipelineExecutorResult.d.ts +50 -0
- package/esm/typings/src/execution/PromptResult.d.ts +101 -0
- package/esm/typings/src/execution/PromptResultUsage.d.ts +33 -0
- package/esm/typings/src/execution/PromptbookFetch.d.ts +5 -0
- package/esm/typings/src/execution/PromptbookFetch.test-type.d.ts +5 -0
- package/esm/typings/src/execution/ScriptExecutionTools.d.ts +39 -0
- package/esm/typings/src/execution/UncertainNumber.d.ts +19 -0
- package/esm/typings/src/execution/UserInterfaceTools.d.ts +46 -0
- package/esm/typings/src/execution/assertsExecutionSuccessful.d.ts +13 -0
- package/esm/typings/src/execution/createPipelineExecutor/$OngoingTaskResult.d.ts +45 -0
- package/esm/typings/src/execution/createPipelineExecutor/00-CreatePipelineExecutorOptions.d.ts +46 -0
- package/esm/typings/src/execution/createPipelineExecutor/00-createPipelineExecutor.d.ts +13 -0
- package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +49 -0
- package/esm/typings/src/execution/createPipelineExecutor/20-executeTask.d.ts +51 -0
- package/esm/typings/src/execution/createPipelineExecutor/30-executeFormatSubvalues.d.ts +15 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +64 -0
- package/esm/typings/src/execution/createPipelineExecutor/filterJustOutputParameters.d.ts +34 -0
- package/esm/typings/src/execution/createPipelineExecutor/getContextForTask.d.ts +10 -0
- package/esm/typings/src/execution/createPipelineExecutor/getExamplesForTask.d.ts +10 -0
- package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +27 -0
- package/esm/typings/src/execution/createPipelineExecutor/getReservedParametersForTask.d.ts +30 -0
- package/esm/typings/src/execution/embeddingVectorToString.d.ts +7 -0
- package/esm/typings/src/execution/execution-report/ExecutionPromptReportJson.d.ts +24 -0
- package/esm/typings/src/execution/execution-report/ExecutionReportJson.d.ts +41 -0
- package/esm/typings/src/execution/execution-report/ExecutionReportString.d.ts +16 -0
- package/esm/typings/src/execution/execution-report/ExecutionReportStringOptions.d.ts +25 -0
- package/esm/typings/src/execution/execution-report/countWorkingDuration.d.ts +7 -0
- package/esm/typings/src/execution/execution-report/countWorkingDuration.test.d.ts +1 -0
- package/esm/typings/src/execution/execution-report/executionReportJsonToString.d.ts +15 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/AutomaticTranslator.d.ts +7 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/DebugAutomaticTranslator.d.ts +11 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/FakeAutomaticTranslator.d.ts +8 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/LindatAutomaticTranslator.d.ts +22 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/TranslatorOptions.d.ts +7 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/utils/extractMultiplicatedOccurrence.d.ts +8 -0
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/utils/extractMultiplicatedOccurrence.test.d.ts +1 -0
- package/esm/typings/src/execution/translation/automatic-translate/translateMessages.d.ts +12 -0
- package/esm/typings/src/execution/utils/$provideExecutionToolsForNode.d.ts +13 -0
- package/esm/typings/src/execution/utils/addUsage.d.ts +9 -0
- package/esm/typings/src/execution/utils/addUsage.test.d.ts +1 -0
- package/esm/typings/src/execution/utils/checkExpectations.d.ts +29 -0
- package/esm/typings/src/execution/utils/checkExpectations.test.d.ts +1 -0
- package/esm/typings/src/execution/utils/computeUsageCounts.d.ts +10 -0
- package/esm/typings/src/execution/utils/forEachAsync.d.ts +20 -0
- package/esm/typings/src/execution/utils/uncertainNumber.d.ts +9 -0
- package/esm/typings/src/execution/utils/usage-constants.d.ts +130 -0
- package/esm/typings/src/execution/utils/usageToHuman.d.ts +16 -0
- package/esm/typings/src/execution/utils/usageToWorktime.d.ts +12 -0
- package/esm/typings/src/execution/utils/usageToWorktime.test.d.ts +1 -0
- package/esm/typings/src/expectations/drafts/isDomainNameFree.d.ts +10 -0
- package/esm/typings/src/expectations/drafts/isGithubNameFree.d.ts +10 -0
- package/esm/typings/src/formats/_common/FormatDefinition.d.ts +70 -0
- package/esm/typings/src/formats/_common/FormatSubvalueDefinition.d.ts +31 -0
- package/esm/typings/src/formats/csv/CsvFormatDefinition.d.ts +17 -0
- package/esm/typings/src/formats/csv/CsvFormatError.d.ts +10 -0
- package/esm/typings/src/formats/csv/CsvSettings.d.ts +13 -0
- package/esm/typings/src/formats/index.d.ts +9 -0
- package/esm/typings/src/formats/json/JsonFormatDefinition.d.ts +19 -0
- package/esm/typings/src/formats/json/utils/isValidJsonString.d.ts +6 -0
- package/esm/typings/src/formats/json/utils/isValidJsonString.test.d.ts +1 -0
- package/esm/typings/src/formats/text/TextFormatDefinition.d.ts +19 -0
- package/esm/typings/src/formats/xml/XmlFormatDefinition.d.ts +19 -0
- package/esm/typings/src/formfactors/_boilerplate/BoilerplateFormfactorDefinition.d.ts +14 -0
- package/esm/typings/src/formfactors/_common/AbstractFormfactorDefinition.d.ts +40 -0
- package/esm/typings/src/formfactors/_common/FormfactorDefinition.d.ts +8 -0
- package/esm/typings/src/formfactors/_common/string_formfactor_name.d.ts +5 -0
- package/esm/typings/src/formfactors/chatbot/ChatbotFormfactorDefinition.d.ts +45 -0
- package/esm/typings/src/formfactors/generator/GeneratorFormfactorDefinition.d.ts +19 -0
- package/esm/typings/src/formfactors/generic/GenericFormfactorDefinition.d.ts +14 -0
- package/esm/typings/src/formfactors/index.d.ts +123 -0
- package/esm/typings/src/formfactors/matcher/MatcherFormfactorDefinition.d.ts +19 -0
- package/esm/typings/src/formfactors/sheets/SheetsFormfactorDefinition.d.ts +25 -0
- package/esm/typings/src/formfactors/translator/TranslatorFormfactorDefinition.d.ts +24 -0
- package/esm/typings/src/high-level-abstractions/_common/HighLevelAbstraction.d.ts +20 -0
- package/esm/typings/src/high-level-abstractions/implicit-formfactor/ImplicitFormfactorHla.d.ts +10 -0
- package/esm/typings/src/high-level-abstractions/index.d.ts +54 -0
- package/esm/typings/src/high-level-abstractions/quick-chatbot/QuickChatbotHla.d.ts +10 -0
- package/esm/typings/src/llm-providers/_common/register/$llmToolsMetadataRegister.d.ts +13 -0
- package/esm/typings/src/llm-providers/_common/register/$llmToolsRegister.d.ts +13 -0
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +25 -0
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +24 -0
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizzardOrCli.d.ts +15 -0
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsFromEnv.d.ts +27 -0
- package/esm/typings/src/llm-providers/_common/register/$registeredLlmToolsMessage.d.ts +13 -0
- package/esm/typings/src/llm-providers/_common/register/LlmToolsConfiguration.d.ts +23 -0
- package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +36 -0
- package/esm/typings/src/llm-providers/_common/register/LlmToolsOptions.d.ts +10 -0
- package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.d.ts +40 -0
- package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.test.d.ts +1 -0
- package/esm/typings/src/llm-providers/_common/utils/cache/CacheItem.d.ts +28 -0
- package/esm/typings/src/llm-providers/_common/utils/cache/CacheLlmToolsOptions.d.ts +19 -0
- package/esm/typings/src/llm-providers/_common/utils/cache/cacheLlmTools.d.ts +19 -0
- package/esm/typings/src/llm-providers/_common/utils/count-total-usage/LlmExecutionToolsWithTotalUsage.d.ts +15 -0
- package/esm/typings/src/llm-providers/_common/utils/count-total-usage/countTotalUsage.d.ts +17 -0
- package/esm/typings/src/llm-providers/_common/utils/count-total-usage/limitTotalUsage.d.ts +36 -0
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +60 -0
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts +31 -0
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +24 -0
- package/esm/typings/src/llm-providers/anthropic-claude/computeAnthropicClaudeUsage.d.ts +18 -0
- package/esm/typings/src/llm-providers/anthropic-claude/computeAnthropicClaudeUsage.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/anthropic-claude/createAnthropicClaudeExecutionTools.d.ts +19 -0
- package/esm/typings/src/llm-providers/anthropic-claude/playground/playground.d.ts +7 -0
- package/esm/typings/src/llm-providers/anthropic-claude/register-configuration.d.ts +14 -0
- package/esm/typings/src/llm-providers/anthropic-claude/register-constructor.d.ts +16 -0
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +63 -0
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionToolsOptions.d.ts +37 -0
- package/esm/typings/src/llm-providers/azure-openai/createAzureOpenAiExecutionTools.d.ts +15 -0
- package/esm/typings/src/llm-providers/azure-openai/playground/playground.d.ts +6 -0
- package/esm/typings/src/llm-providers/azure-openai/register-configuration.d.ts +14 -0
- package/esm/typings/src/llm-providers/azure-openai/register-constructor.d.ts +15 -0
- package/esm/typings/src/llm-providers/google/GoogleExecutionToolsOptions.d.ts +9 -0
- package/esm/typings/src/llm-providers/google/createGoogleExecutionTools.d.ts +14 -0
- package/esm/typings/src/llm-providers/google/register-configuration.d.ts +14 -0
- package/esm/typings/src/llm-providers/google/register-constructor.d.ts +15 -0
- package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +15 -0
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +40 -0
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +44 -0
- package/esm/typings/src/llm-providers/mocked/test/fakeTextToExpectations.test.d.ts +1 -0
- package/esm/typings/src/llm-providers/mocked/test/faked-completion.test.d.ts +1 -0
- package/esm/typings/src/llm-providers/mocked/test/joker.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/mocked/test/mocked-chat.test.d.ts +5 -0
- package/esm/typings/src/llm-providers/mocked/test/mocked-completion.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/multiple/MultipleLlmExecutionTools.d.ts +63 -0
- package/esm/typings/src/llm-providers/multiple/joinLlmExecutionTools.d.ts +21 -0
- package/esm/typings/src/llm-providers/multiple/playground/playground.d.ts +5 -0
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionTools.d.ts +36 -0
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionToolsOptions.d.ts +14 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +84 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionToolsOptions.d.ts +11 -0
- package/esm/typings/src/llm-providers/openai/computeOpenAiUsage.d.ts +18 -0
- package/esm/typings/src/llm-providers/openai/computeOpenAiUsage.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/openai/computeUsage.d.ts +16 -0
- package/esm/typings/src/llm-providers/openai/computeUsage.test.d.ts +1 -0
- package/esm/typings/src/llm-providers/openai/createOpenAiAssistantExecutionTools.d.ts +15 -0
- package/esm/typings/src/llm-providers/openai/createOpenAiExecutionTools.d.ts +15 -0
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +31 -0
- package/esm/typings/src/llm-providers/openai/playground/playground.d.ts +6 -0
- package/esm/typings/src/llm-providers/openai/register-configuration.d.ts +24 -0
- package/esm/typings/src/llm-providers/openai/register-constructor.d.ts +25 -0
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +63 -0
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_Error.d.ts +7 -0
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_ListModels_Request.d.ts +38 -0
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_ListModels_Response.d.ts +15 -0
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_Prompt_Progress.d.ts +12 -0
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_Prompt_Request.d.ts +45 -0
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_Prompt_Response.d.ts +12 -0
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteLlmExecutionToolsOptions.d.ts +54 -0
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteServerOptions.d.ts +73 -0
- package/esm/typings/src/llm-providers/remote/playground/playground.d.ts +5 -0
- package/esm/typings/src/llm-providers/remote/startRemoteServer.d.ts +23 -0
- package/esm/typings/src/llm-providers/vercel/VercelExecutionToolsOptions.d.ts +23 -0
- package/esm/typings/src/llm-providers/vercel/VercelProvider.d.ts +13 -0
- package/esm/typings/src/llm-providers/vercel/createExecutionToolsFromVercelProvider.d.ts +8 -0
- package/esm/typings/src/llm-providers/vercel/playground/playground.d.ts +6 -0
- package/esm/typings/src/other/templates/getBookTemplate.d.ts +21 -0
- package/esm/typings/src/other/templates/getTemplatesPipelineCollection.d.ts +10 -0
- package/esm/typings/src/personas/preparePersona.d.ts +17 -0
- package/esm/typings/src/pipeline/PipelineInterface/PipelineInterface.d.ts +22 -0
- package/esm/typings/src/pipeline/PipelineInterface/constants.d.ts +14 -0
- package/esm/typings/src/pipeline/PipelineInterface/getPipelineInterface.d.ts +11 -0
- package/esm/typings/src/pipeline/PipelineInterface/isPipelineImplementingInterface.d.ts +26 -0
- package/esm/typings/src/pipeline/PipelineInterface/isPipelineInterfacesEqual.d.ts +10 -0
- package/esm/typings/src/pipeline/PipelineJson/CommonTaskJson.d.ts +100 -0
- package/esm/typings/src/pipeline/PipelineJson/DialogTaskJson.d.ts +13 -0
- package/esm/typings/src/pipeline/PipelineJson/Expectations.d.ts +40 -0
- package/esm/typings/src/pipeline/PipelineJson/KnowledgePieceJson.d.ts +73 -0
- package/esm/typings/src/pipeline/PipelineJson/KnowledgeSourceJson.d.ts +44 -0
- package/esm/typings/src/pipeline/PipelineJson/ParameterJson.d.ts +98 -0
- package/esm/typings/src/pipeline/PipelineJson/PersonaJson.d.ts +45 -0
- package/esm/typings/src/pipeline/PipelineJson/PipelineJson.d.ts +112 -0
- package/esm/typings/src/pipeline/PipelineJson/PreparationJson.d.ts +22 -0
- package/esm/typings/src/pipeline/PipelineJson/PromptTaskJson.d.ts +26 -0
- package/esm/typings/src/pipeline/PipelineJson/ScriptTaskJson.d.ts +20 -0
- package/esm/typings/src/pipeline/PipelineJson/SimpleTaskJson.d.ts +13 -0
- package/esm/typings/src/pipeline/PipelineJson/TaskJson.d.ts +11 -0
- package/esm/typings/src/pipeline/PipelineString.d.ts +12 -0
- package/esm/typings/src/postprocessing/utils/extractBlock.d.ts +16 -0
- package/esm/typings/src/postprocessing/utils/extractJsonBlock.d.ts +25 -0
- package/esm/typings/src/postprocessing/utils/extractJsonBlock.test.d.ts +1 -0
- package/esm/typings/src/prepare/PrepareAndScrapeOptions.d.ts +51 -0
- package/esm/typings/src/prepare/isPipelinePrepared.d.ts +16 -0
- package/esm/typings/src/prepare/isPipelinePrepared.test.d.ts +1 -0
- package/esm/typings/src/prepare/preparePipeline.d.ts +20 -0
- package/esm/typings/src/prepare/prepareTasks.d.ts +33 -0
- package/esm/typings/src/prepare/unpreparePipeline.d.ts +13 -0
- package/esm/typings/src/scrapers/_common/Converter.d.ts +22 -0
- package/esm/typings/src/scrapers/_common/Scraper.d.ts +59 -0
- package/esm/typings/src/scrapers/_common/ScraperIntermediateSource.d.ts +11 -0
- package/esm/typings/src/scrapers/_common/prepareKnowledgePieces.d.ts +19 -0
- package/esm/typings/src/scrapers/_common/prepareKnowledgePieces.test.d.ts +1 -0
- package/esm/typings/src/scrapers/_common/register/$provideFilesystemForNode.d.ts +11 -0
- package/esm/typings/src/scrapers/_common/register/$provideScrapersForBrowser.d.ts +12 -0
- package/esm/typings/src/scrapers/_common/register/$provideScrapersForNode.d.ts +15 -0
- package/esm/typings/src/scrapers/_common/register/$registeredScrapersMessage.d.ts +13 -0
- package/esm/typings/src/scrapers/_common/register/$scrapersMetadataRegister.d.ts +13 -0
- package/esm/typings/src/scrapers/_common/register/$scrapersRegister.d.ts +13 -0
- package/esm/typings/src/scrapers/_common/register/ScraperAndConverterMetadata.d.ts +41 -0
- package/esm/typings/src/scrapers/_common/register/ScraperConstructor.d.ts +12 -0
- package/esm/typings/src/scrapers/_common/utils/getScraperIntermediateSource.d.ts +34 -0
- package/esm/typings/src/scrapers/_common/utils/getScraperIntermediateSource.test.d.ts +4 -0
- package/esm/typings/src/scrapers/_common/utils/makeKnowledgeSourceHandler.d.ts +11 -0
- package/esm/typings/src/scrapers/_common/utils/scraperFetch.d.ts +7 -0
- package/esm/typings/src/scrapers/document/DocumentScraper.d.ts +43 -0
- package/esm/typings/src/scrapers/document/DocumentScraper.test.d.ts +4 -0
- package/esm/typings/src/scrapers/document/createDocumentScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/document/playground/document-scraper-playground.d.ts +5 -0
- package/esm/typings/src/scrapers/document/register-constructor.d.ts +15 -0
- package/esm/typings/src/scrapers/document/register-metadata.d.ts +28 -0
- package/esm/typings/src/scrapers/document-legacy/LegacyDocumentScraper.d.ts +43 -0
- package/esm/typings/src/scrapers/document-legacy/LegacyDocumentScraper.test.d.ts +4 -0
- package/esm/typings/src/scrapers/document-legacy/createLegacyDocumentScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/document-legacy/playground/legacy-document-scraper-playground.d.ts +5 -0
- package/esm/typings/src/scrapers/document-legacy/register-constructor.d.ts +15 -0
- package/esm/typings/src/scrapers/document-legacy/register-metadata.d.ts +28 -0
- package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +29 -0
- package/esm/typings/src/scrapers/markdown/MarkdownScraper.test.d.ts +4 -0
- package/esm/typings/src/scrapers/markdown/createMarkdownScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/markdown/playground/markdown-scraper-playground.d.ts +5 -0
- package/esm/typings/src/scrapers/markdown/register-constructor.d.ts +15 -0
- package/esm/typings/src/scrapers/markdown/register-metadata.d.ts +28 -0
- package/esm/typings/src/scrapers/pdf/PdfScraper.d.ts +40 -0
- package/esm/typings/src/scrapers/pdf/createPdfScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/pdf/playground/pdf-scraper-playground.d.ts +5 -0
- package/esm/typings/src/scrapers/pdf/register-constructor.d.ts +15 -0
- package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +28 -0
- package/esm/typings/src/scrapers/website/WebsiteScraper.d.ts +50 -0
- package/esm/typings/src/scrapers/website/createWebsiteScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/website/playground/website-scraper-playground.d.ts +5 -0
- package/esm/typings/src/scrapers/website/register-constructor.d.ts +15 -0
- package/esm/typings/src/scrapers/website/register-metadata.d.ts +28 -0
- package/esm/typings/src/scrapers/website/utils/createShowdownConverter.d.ts +7 -0
- package/esm/typings/src/scrapers/website/utils/createShowdownConverter.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/custom-function-async.test.ts.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/custom-function-missing.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/custom-function-with-dependencies.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/custom-function.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/postprocessing.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/script-execution-errors.test.d.ts +1 -0
- package/esm/typings/src/scripting/_test/script-execution-tools.test.d.ts +1 -0
- package/esm/typings/src/scripting/javascript/JavascriptEvalExecutionTools.d.ts +22 -0
- package/esm/typings/src/scripting/javascript/JavascriptEvalExecutionTools.test.d.ts +4 -0
- package/esm/typings/src/scripting/javascript/JavascriptExecutionTools.d.ts +8 -0
- package/esm/typings/src/scripting/javascript/JavascriptExecutionToolsOptions.d.ts +26 -0
- package/esm/typings/src/scripting/javascript/postprocessing-functions.d.ts +52 -0
- package/esm/typings/src/scripting/javascript/utils/preserve.d.ts +13 -0
- package/esm/typings/src/scripting/javascript/utils/unknownToString.d.ts +8 -0
- package/esm/typings/src/scripting/python/PythonExecutionTools.d.ts +18 -0
- package/esm/typings/src/scripting/typescript/TypescriptExecutionTools.d.ts +18 -0
- package/esm/typings/src/storage/_common/PromptbookStorage.d.ts +24 -0
- package/esm/typings/src/storage/_common/PromptbookStorage.test-type.d.ts +5 -0
- package/esm/typings/src/storage/blackhole/BlackholeStorage.d.ts +33 -0
- package/esm/typings/src/storage/file-cache-storage/FileCacheStorage.d.ts +33 -0
- package/esm/typings/src/storage/file-cache-storage/FileCacheStorageOptions.d.ts +10 -0
- package/esm/typings/src/storage/file-cache-storage/utils/nameToSubfolderPath.d.ts +7 -0
- package/esm/typings/src/storage/file-cache-storage/utils/nameToSubfolderPath.test.d.ts +1 -0
- package/esm/typings/src/storage/local-storage/getLocalStorage.d.ts +10 -0
- package/esm/typings/src/storage/local-storage/getSessionStorage.d.ts +10 -0
- package/esm/typings/src/storage/local-storage/utils/makePromptbookStorageFromWebStorage.d.ts +11 -0
- package/esm/typings/src/storage/memory/MemoryStorage.d.ts +33 -0
- package/esm/typings/src/storage/utils/PrefixStorage.d.ts +25 -0
- package/esm/typings/src/types/Arrayable.d.ts +10 -0
- package/esm/typings/src/types/IntermediateFilesStrategy.d.ts +7 -0
- package/esm/typings/src/types/ModelRequirements.d.ts +104 -0
- package/esm/typings/src/types/ModelVariant.d.ts +15 -0
- package/esm/typings/src/types/Prompt.d.ts +111 -0
- package/esm/typings/src/types/ScriptLanguage.d.ts +13 -0
- package/esm/typings/src/types/SectionType.d.ts +21 -0
- package/esm/typings/src/types/TaskProgress.d.ts +43 -0
- package/esm/typings/src/types/TaskType.d.ts +15 -0
- package/esm/typings/src/types/typeAliasEmoji.d.ts +12 -0
- package/esm/typings/src/types/typeAliases.d.ts +630 -0
- package/esm/typings/src/utils/$Register.d.ts +39 -0
- package/esm/typings/src/utils/$getCurrentDate.d.ts +10 -0
- package/esm/typings/src/utils/FromtoItems.d.ts +19 -0
- package/esm/typings/src/utils/arrayableToArray.d.ts +11 -0
- package/esm/typings/src/utils/arrayableToArray.test.d.ts +1 -0
- package/esm/typings/src/utils/editable/types/PipelineEditableSerialized.d.ts +27 -0
- package/esm/typings/src/utils/editable/utils/removePipelineCommand.d.ts +22 -0
- package/esm/typings/src/utils/editable/utils/removePipelineCommand.test.d.ts +1 -0
- package/esm/typings/src/utils/editable/utils/renamePipelineParameter.d.ts +26 -0
- package/esm/typings/src/utils/editable/utils/renamePipelineParameter.test.d.ts +1 -0
- package/esm/typings/src/utils/editable/utils/stringifyPipelineJson.d.ts +16 -0
- package/esm/typings/src/utils/editable/utils/stringifyPipelineJson.test.d.ts +1 -0
- package/esm/typings/src/utils/emojis.d.ts +24 -0
- package/esm/typings/src/utils/environment/$getGlobalScope.d.ts +9 -0
- package/esm/typings/src/utils/environment/$isRunningInBrowser.d.ts +8 -0
- package/esm/typings/src/utils/environment/$isRunningInJest.d.ts +8 -0
- package/esm/typings/src/utils/environment/$isRunningInNode.d.ts +8 -0
- package/esm/typings/src/utils/environment/$isRunningInWebWorker.d.ts +8 -0
- package/esm/typings/src/utils/execCommand/$execCommand.d.ts +16 -0
- package/esm/typings/src/utils/execCommand/$execCommandNormalizeOptions.d.ts +12 -0
- package/esm/typings/src/utils/execCommand/$execCommands.d.ts +18 -0
- package/esm/typings/src/utils/execCommand/ExecCommandOptions.d.ts +45 -0
- package/esm/typings/src/utils/execCommand/execCommand.test.d.ts +1 -0
- package/esm/typings/src/utils/execCommand/execCommandNormalizeOptions.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/constants.d.ts +16 -0
- package/esm/typings/src/utils/expectation-counters/countCharacters.d.ts +7 -0
- package/esm/typings/src/utils/expectation-counters/countCharacters.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/countLines.d.ts +9 -0
- package/esm/typings/src/utils/expectation-counters/countLines.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/countPages.d.ts +9 -0
- package/esm/typings/src/utils/expectation-counters/countPages.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/countParagraphs.d.ts +7 -0
- package/esm/typings/src/utils/expectation-counters/countParagraphs.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/countSentences.d.ts +13 -0
- package/esm/typings/src/utils/expectation-counters/countSentences.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/countWords.d.ts +7 -0
- package/esm/typings/src/utils/expectation-counters/countWords.test.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/index.d.ts +12 -0
- package/esm/typings/src/utils/files/extensionToMimeType.d.ts +8 -0
- package/esm/typings/src/utils/files/extensionToMimeType.test.d.ts +1 -0
- package/esm/typings/src/utils/files/getFileExtension.d.ts +8 -0
- package/esm/typings/src/utils/files/getFileExtension.test.d.ts +1 -0
- package/esm/typings/src/utils/files/isDirectoryExisting.d.ts +14 -0
- package/esm/typings/src/utils/files/isDirectoryExisting.test.d.ts +1 -0
- package/esm/typings/src/utils/files/isExecutable.d.ts +11 -0
- package/esm/typings/src/utils/files/isFileExisting.d.ts +13 -0
- package/esm/typings/src/utils/files/isFileExisting.test.d.ts +1 -0
- package/esm/typings/src/utils/files/listAllFiles.d.ts +17 -0
- package/esm/typings/src/utils/files/listAllFiles.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/addAutoGeneratedSection.d.ts +14 -0
- package/esm/typings/src/utils/markdown/addAutoGeneratedSection.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/createMarkdownChart.d.ts +38 -0
- package/esm/typings/src/utils/markdown/createMarkdownChart.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/createMarkdownTable.d.ts +11 -0
- package/esm/typings/src/utils/markdown/createMarkdownTable.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/escapeMarkdownBlock.d.ts +11 -0
- package/esm/typings/src/utils/markdown/escapeMarkdownBlock.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/extractAllBlocksFromMarkdown-real.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/extractAllBlocksFromMarkdown.d.ts +36 -0
- package/esm/typings/src/utils/markdown/extractAllBlocksFromMarkdown.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/extractAllListItemsFromMarkdown.d.ts +15 -0
- package/esm/typings/src/utils/markdown/extractAllListItemsFromMarkdown.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/extractOneBlockFromMarkdown.d.ts +22 -0
- package/esm/typings/src/utils/markdown/extractOneBlockFromMarkdown.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/flattenMarkdown.d.ts +17 -0
- package/esm/typings/src/utils/markdown/flattenMarkdown.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/parseMarkdownSection.d.ts +34 -0
- package/esm/typings/src/utils/markdown/parseMarkdownSection.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/prettifyMarkdown.d.ts +9 -0
- package/esm/typings/src/utils/markdown/prettifyMarkdown.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/removeContentComments.d.ts +10 -0
- package/esm/typings/src/utils/markdown/removeContentComments.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/removeMarkdownFormatting.d.ts +9 -0
- package/esm/typings/src/utils/markdown/removeMarkdownFormatting.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/splitMarkdownIntoSections.d.ts +15 -0
- package/esm/typings/src/utils/markdown/splitMarkdownIntoSections.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/DIACRITIC_VARIANTS_LETTERS.d.ts +12 -0
- package/esm/typings/src/utils/normalization/IKeywords.d.ts +21 -0
- package/esm/typings/src/utils/normalization/capitalize.d.ts +6 -0
- package/esm/typings/src/utils/normalization/capitalize.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/decapitalize.d.ts +6 -0
- package/esm/typings/src/utils/normalization/decapitalize.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/isValidKeyword.d.ts +10 -0
- package/esm/typings/src/utils/normalization/isValidKeyword.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/nameToUriPart.d.ts +9 -0
- package/esm/typings/src/utils/normalization/nameToUriPart.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/nameToUriParts.d.ts +9 -0
- package/esm/typings/src/utils/normalization/nameToUriParts.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalize-to-kebab-case.d.ts +21 -0
- package/esm/typings/src/utils/normalization/normalize-to-kebab-case.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalizeTo_PascalCase.d.ts +17 -0
- package/esm/typings/src/utils/normalization/normalizeTo_PascalCase.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalizeTo_SCREAMING_CASE.d.ts +26 -0
- package/esm/typings/src/utils/normalization/normalizeTo_SCREAMING_CASE.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalizeTo_camelCase.d.ts +22 -0
- package/esm/typings/src/utils/normalization/normalizeTo_camelCase.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalizeTo_snake_case.d.ts +17 -0
- package/esm/typings/src/utils/normalization/normalizeTo_snake_case.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalizeWhitespaces.d.ts +6 -0
- package/esm/typings/src/utils/normalization/normalizeWhitespaces.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/orderJson.d.ts +21 -0
- package/esm/typings/src/utils/normalization/orderJson.test.d.ts +4 -0
- package/esm/typings/src/utils/normalization/parseKeywords.d.ts +16 -0
- package/esm/typings/src/utils/normalization/parseKeywords.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/parseKeywordsFromString.d.ts +9 -0
- package/esm/typings/src/utils/normalization/parseKeywordsFromString.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/removeDiacritics.d.ts +11 -0
- package/esm/typings/src/utils/normalization/removeDiacritics.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/searchKeywords.d.ts +10 -0
- package/esm/typings/src/utils/normalization/searchKeywords.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/titleToName.d.ts +9 -0
- package/esm/typings/src/utils/normalization/titleToName.test.d.ts +1 -0
- package/esm/typings/src/utils/organization/TODO_USE.d.ts +12 -0
- package/esm/typings/src/utils/organization/TODO_any.d.ts +6 -0
- package/esm/typings/src/utils/organization/TODO_object.d.ts +6 -0
- package/esm/typings/src/utils/organization/TODO_remove_as.d.ts +6 -0
- package/esm/typings/src/utils/organization/TODO_string.d.ts +6 -0
- package/esm/typings/src/utils/organization/TODO_unknown.d.ts +6 -0
- package/esm/typings/src/utils/organization/___and___.d.ts +7 -0
- package/esm/typings/src/utils/organization/___or___.d.ts +6 -0
- package/esm/typings/src/utils/organization/empty_object.d.ts +10 -0
- package/esm/typings/src/utils/organization/just.d.ts +14 -0
- package/esm/typings/src/utils/organization/just_empty_object.d.ts +12 -0
- package/esm/typings/src/utils/organization/keepTypeImported.d.ts +9 -0
- package/esm/typings/src/utils/organization/keepUnused.d.ts +16 -0
- package/esm/typings/src/utils/organization/really_any.d.ts +6 -0
- package/esm/typings/src/utils/organization/really_unknown.d.ts +6 -0
- package/esm/typings/src/utils/organization/spaceTrim.d.ts +11 -0
- package/esm/typings/src/utils/parameters/extractParameterNames.d.ts +10 -0
- package/esm/typings/src/utils/parameters/extractParameterNames.test.d.ts +1 -0
- package/esm/typings/src/utils/parameters/mapAvailableToExpectedParameters.d.ts +27 -0
- package/esm/typings/src/utils/parameters/mapAvailableToExpectedParameters.test.d.ts +1 -0
- package/esm/typings/src/utils/parameters/numberToString.d.ts +7 -0
- package/esm/typings/src/utils/parameters/numberToString.test.d.ts +1 -0
- package/esm/typings/src/utils/parameters/templateParameters.d.ts +16 -0
- package/esm/typings/src/utils/parameters/templateParameters.test.d.ts +1 -0
- package/esm/typings/src/utils/parameters/valueToString.d.ts +17 -0
- package/esm/typings/src/utils/parameters/valueToString.test.d.ts +1 -0
- package/esm/typings/src/utils/parseNumber.d.ts +16 -0
- package/esm/typings/src/utils/parseNumber.test.d.ts +1 -0
- package/esm/typings/src/utils/random/$randomSeed.d.ts +9 -0
- package/esm/typings/src/utils/removeEmojis.d.ts +8 -0
- package/esm/typings/src/utils/removeEmojis.test.d.ts +1 -0
- package/esm/typings/src/utils/removeQuotes.d.ts +14 -0
- package/esm/typings/src/utils/removeQuotes.test.d.ts +1 -0
- package/esm/typings/src/utils/serialization/$deepFreeze.d.ts +14 -0
- package/esm/typings/src/utils/serialization/asSerializable.d.ts +15 -0
- package/esm/typings/src/utils/serialization/asSerializable.test.d.ts +1 -0
- package/esm/typings/src/utils/serialization/checkSerializableAsJson.d.ts +45 -0
- package/esm/typings/src/utils/serialization/clonePipeline.d.ts +13 -0
- package/esm/typings/src/utils/serialization/deepClone.d.ts +10 -0
- package/esm/typings/src/utils/serialization/deepClone.test.d.ts +1 -0
- package/esm/typings/src/utils/serialization/exportJson.d.ts +29 -0
- package/esm/typings/src/utils/serialization/isSerializableAsJson.d.ts +25 -0
- package/esm/typings/src/utils/serialization/isSerializableAsJson.test.d.ts +1 -0
- package/esm/typings/src/utils/sets/difference.d.ts +10 -0
- package/esm/typings/src/utils/sets/difference.test.d.ts +1 -0
- package/esm/typings/src/utils/sets/intersection.d.ts +7 -0
- package/esm/typings/src/utils/sets/intersection.test.d.ts +1 -0
- package/esm/typings/src/utils/sets/union.d.ts +7 -0
- package/esm/typings/src/utils/sets/union.test.d.ts +1 -0
- package/esm/typings/src/utils/trimCodeBlock.d.ts +9 -0
- package/esm/typings/src/utils/trimCodeBlock.test.d.ts +1 -0
- package/esm/typings/src/utils/trimEndOfCodeBlock.d.ts +9 -0
- package/esm/typings/src/utils/trimEndOfCodeBlock.test.d.ts +1 -0
- package/esm/typings/src/utils/unwrapResult.d.ts +37 -0
- package/esm/typings/src/utils/unwrapResult.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/email/isValidEmail.d.ts +8 -0
- package/esm/typings/src/utils/validators/email/isValidEmail.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/filePath/isValidFilePath.d.ts +9 -0
- package/esm/typings/src/utils/validators/filePath/isValidFilePath.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/javascriptName/isValidJavascriptName.d.ts +10 -0
- package/esm/typings/src/utils/validators/javascriptName/isValidJavascriptName.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/parameterName/validateParameterName.d.ts +10 -0
- package/esm/typings/src/utils/validators/parameterName/validateParameterName.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/semanticVersion/isValidPromptbookVersion.d.ts +15 -0
- package/esm/typings/src/utils/validators/semanticVersion/isValidPromptbookVersion.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/semanticVersion/isValidSemanticVersion.d.ts +12 -0
- package/esm/typings/src/utils/validators/semanticVersion/isValidSemanticVersion.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/url/isHostnameOnPrivateNetwork.d.ts +11 -0
- package/esm/typings/src/utils/validators/url/isHostnameOnPrivateNetwork.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/url/isUrlOnPrivateNetwork.d.ts +13 -0
- package/esm/typings/src/utils/validators/url/isUrlOnPrivateNetwork.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/url/isValidPipelineUrl.d.ts +15 -0
- package/esm/typings/src/utils/validators/url/isValidPipelineUrl.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/url/isValidUrl.d.ts +13 -0
- package/esm/typings/src/utils/validators/url/isValidUrl.test.d.ts +1 -0
- package/esm/typings/src/utils/validators/uuid/isValidUuid.d.ts +8 -0
- package/esm/typings/src/utils/validators/uuid/isValidUuid.test.d.ts +1 -0
- package/esm/typings/src/version.d.ts +25 -0
- package/esm/typings/src/wizzard/wizzard.d.ts +51 -0
- package/package.json +63 -0
- package/umd/index.umd.js +2308 -0
- package/umd/index.umd.js.map +1 -0
package/esm/index.es.js
ADDED
|
@@ -0,0 +1,2295 @@
|
|
|
1
|
+
import spaceTrim, { spaceTrim as spaceTrim$1 } from 'spacetrim';
|
|
2
|
+
import { format } from 'prettier';
|
|
3
|
+
import parserHtml from 'prettier/parser-html';
|
|
4
|
+
|
|
5
|
+
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
6
|
+
/**
|
|
7
|
+
* The version of the Book language
|
|
8
|
+
*
|
|
9
|
+
* @generated
|
|
10
|
+
* @see https://github.com/webgptorg/book
|
|
11
|
+
*/
|
|
12
|
+
var BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
13
|
+
/**
|
|
14
|
+
* The version of the Promptbook engine
|
|
15
|
+
*
|
|
16
|
+
* @generated
|
|
17
|
+
* @see https://github.com/webgptorg/promptbook
|
|
18
|
+
*/
|
|
19
|
+
var PROMPTBOOK_ENGINE_VERSION = '0.81.0-10';
|
|
20
|
+
/**
|
|
21
|
+
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
|
+
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/*! *****************************************************************************
|
|
26
|
+
Copyright (c) Microsoft Corporation.
|
|
27
|
+
|
|
28
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
29
|
+
purpose with or without fee is hereby granted.
|
|
30
|
+
|
|
31
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
32
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
33
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
34
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
35
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
36
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
37
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
38
|
+
***************************************************************************** */
|
|
39
|
+
/* global Reflect, Promise */
|
|
40
|
+
|
|
41
|
+
var extendStatics = function(d, b) {
|
|
42
|
+
extendStatics = Object.setPrototypeOf ||
|
|
43
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
44
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
45
|
+
return extendStatics(d, b);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
function __extends(d, b) {
|
|
49
|
+
if (typeof b !== "function" && b !== null)
|
|
50
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
51
|
+
extendStatics(d, b);
|
|
52
|
+
function __() { this.constructor = d; }
|
|
53
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
var __assign = function() {
|
|
57
|
+
__assign = Object.assign || function __assign(t) {
|
|
58
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
59
|
+
s = arguments[i];
|
|
60
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
61
|
+
}
|
|
62
|
+
return t;
|
|
63
|
+
};
|
|
64
|
+
return __assign.apply(this, arguments);
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
function __values(o) {
|
|
68
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
69
|
+
if (m) return m.call(o);
|
|
70
|
+
if (o && typeof o.length === "number") return {
|
|
71
|
+
next: function () {
|
|
72
|
+
if (o && i >= o.length) o = void 0;
|
|
73
|
+
return { value: o && o[i++], done: !o };
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
function __read(o, n) {
|
|
80
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
81
|
+
if (!m) return o;
|
|
82
|
+
var i = m.call(o), r, ar = [], e;
|
|
83
|
+
try {
|
|
84
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
85
|
+
}
|
|
86
|
+
catch (error) { e = { error: error }; }
|
|
87
|
+
finally {
|
|
88
|
+
try {
|
|
89
|
+
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
90
|
+
}
|
|
91
|
+
finally { if (e) throw e.error; }
|
|
92
|
+
}
|
|
93
|
+
return ar;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function __spreadArray(to, from, pack) {
|
|
97
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
98
|
+
if (ar || !(i in from)) {
|
|
99
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
100
|
+
ar[i] = from[i];
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* This error indicates that promptbook not found in the collection
|
|
108
|
+
*
|
|
109
|
+
* @public exported from `@promptbook/core`
|
|
110
|
+
*/
|
|
111
|
+
var NotFoundError = /** @class */ (function (_super) {
|
|
112
|
+
__extends(NotFoundError, _super);
|
|
113
|
+
function NotFoundError(message) {
|
|
114
|
+
var _this = _super.call(this, message) || this;
|
|
115
|
+
_this.name = 'NotFoundError';
|
|
116
|
+
Object.setPrototypeOf(_this, NotFoundError.prototype);
|
|
117
|
+
return _this;
|
|
118
|
+
}
|
|
119
|
+
return NotFoundError;
|
|
120
|
+
}(Error));
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Returns the same value that is passed as argument.
|
|
124
|
+
* No side effects.
|
|
125
|
+
*
|
|
126
|
+
* Note: It can be usefull for:
|
|
127
|
+
*
|
|
128
|
+
* 1) Leveling indentation
|
|
129
|
+
* 2) Putting always-true or always-false conditions without getting eslint errors
|
|
130
|
+
*
|
|
131
|
+
* @param value any values
|
|
132
|
+
* @returns the same values
|
|
133
|
+
* @private within the repository
|
|
134
|
+
*/
|
|
135
|
+
function just(value) {
|
|
136
|
+
if (value === undefined) {
|
|
137
|
+
return undefined;
|
|
138
|
+
}
|
|
139
|
+
return value;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Name for the Promptbook
|
|
144
|
+
*
|
|
145
|
+
* TODO: [🗽] Unite branding and make single place for it
|
|
146
|
+
*
|
|
147
|
+
* @public exported from `@promptbook/core`
|
|
148
|
+
*/
|
|
149
|
+
var NAME = "Promptbook";
|
|
150
|
+
/**
|
|
151
|
+
* Email of the responsible person
|
|
152
|
+
*
|
|
153
|
+
* @public exported from `@promptbook/core`
|
|
154
|
+
*/
|
|
155
|
+
var ADMIN_EMAIL = 'me@pavolhejny.com';
|
|
156
|
+
/**
|
|
157
|
+
* Name of the responsible person for the Promptbook on GitHub
|
|
158
|
+
*
|
|
159
|
+
* @public exported from `@promptbook/core`
|
|
160
|
+
*/
|
|
161
|
+
var ADMIN_GITHUB_NAME = 'hejny';
|
|
162
|
+
// <- TODO: [🧠] Better system for generator warnings - not always "code" and "by `@promptbook/cli`"
|
|
163
|
+
/**
|
|
164
|
+
* The maximum number of iterations for a loops
|
|
165
|
+
*
|
|
166
|
+
* @private within the repository - too low-level in comparison with other `MAX_...`
|
|
167
|
+
*/
|
|
168
|
+
var LOOP_LIMIT = 1000;
|
|
169
|
+
// <- TODO: [🧜♂️]
|
|
170
|
+
/**
|
|
171
|
+
* @@@
|
|
172
|
+
*
|
|
173
|
+
* @public exported from `@promptbook/core`
|
|
174
|
+
*/
|
|
175
|
+
Object.freeze({
|
|
176
|
+
delimiter: ',',
|
|
177
|
+
quoteChar: '"',
|
|
178
|
+
newline: '\n',
|
|
179
|
+
skipEmptyLines: true,
|
|
180
|
+
});
|
|
181
|
+
/**
|
|
182
|
+
* @@@
|
|
183
|
+
*
|
|
184
|
+
* @private within the repository
|
|
185
|
+
*/
|
|
186
|
+
var IS_PIPELINE_LOGIC_VALIDATED = just(
|
|
187
|
+
/**/
|
|
188
|
+
// Note: In normal situations, we check the pipeline logic:
|
|
189
|
+
true);
|
|
190
|
+
/**
|
|
191
|
+
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
192
|
+
* TODO: [🧠][🧜♂️] Maybe join remoteUrl and path into single value
|
|
193
|
+
*/
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Make error report URL for the given error
|
|
197
|
+
*
|
|
198
|
+
* @private !!!!!!
|
|
199
|
+
*/
|
|
200
|
+
function getErrorReportUrl(error) {
|
|
201
|
+
var report = {
|
|
202
|
+
title: "\uD83D\uDC1C Error report from ".concat(NAME),
|
|
203
|
+
body: spaceTrim(function (block) { return "\n\n\n `".concat(error.name || 'Error', "` has occurred in the [").concat(NAME, "], please look into it @").concat(ADMIN_GITHUB_NAME, ".\n\n ```\n ").concat(block(error.message || '(no error message)'), "\n ```\n\n\n ## More info:\n\n - **Promptbook engine version:** ").concat(PROMPTBOOK_ENGINE_VERSION, "\n - **Book language version:** ").concat(BOOK_LANGUAGE_VERSION, "\n - **Time:** ").concat(new Date().toISOString(), "\n\n <details>\n <summary>Stack trace:</summary>\n\n ## Stack trace:\n\n ```stacktrace\n ").concat(block(error.stack || '(empty)'), "\n ```\n </details>\n\n "); }),
|
|
204
|
+
};
|
|
205
|
+
var reportUrl = new URL("https://github.com/webgptorg/promptbook/issues/new");
|
|
206
|
+
reportUrl.searchParams.set('labels', 'bug');
|
|
207
|
+
reportUrl.searchParams.set('assignees', ADMIN_GITHUB_NAME);
|
|
208
|
+
reportUrl.searchParams.set('title', report.title);
|
|
209
|
+
reportUrl.searchParams.set('body', report.body);
|
|
210
|
+
return reportUrl;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* This error type indicates that the error should not happen and its last check before crashing with some other error
|
|
215
|
+
*
|
|
216
|
+
* @public exported from `@promptbook/core`
|
|
217
|
+
*/
|
|
218
|
+
var UnexpectedError = /** @class */ (function (_super) {
|
|
219
|
+
__extends(UnexpectedError, _super);
|
|
220
|
+
function UnexpectedError(message) {
|
|
221
|
+
var _this = _super.call(this, spaceTrim$1(function (block) { return "\n ".concat(block(message), "\n\n Note: This error should not happen.\n It's probbably a bug in the pipeline collection\n\n Please report issue:\n ").concat(block(getErrorReportUrl(new Error(message)).href), "\n\n Or contact us on ").concat(ADMIN_EMAIL, "\n\n "); })) || this;
|
|
222
|
+
_this.name = 'UnexpectedError';
|
|
223
|
+
Object.setPrototypeOf(_this, UnexpectedError.prototype);
|
|
224
|
+
return _this;
|
|
225
|
+
}
|
|
226
|
+
return UnexpectedError;
|
|
227
|
+
}(Error));
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Prettify the html code
|
|
231
|
+
*
|
|
232
|
+
* @param content raw html code
|
|
233
|
+
* @returns formatted html code
|
|
234
|
+
* @private withing the package because of HUGE size of prettier dependency
|
|
235
|
+
*/
|
|
236
|
+
function prettifyMarkdown(content) {
|
|
237
|
+
try {
|
|
238
|
+
return format(content, {
|
|
239
|
+
parser: 'markdown',
|
|
240
|
+
plugins: [parserHtml],
|
|
241
|
+
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
242
|
+
endOfLine: 'lf',
|
|
243
|
+
tabWidth: 4,
|
|
244
|
+
singleQuote: true,
|
|
245
|
+
trailingComma: 'all',
|
|
246
|
+
arrowParens: 'always',
|
|
247
|
+
printWidth: 120,
|
|
248
|
+
htmlWhitespaceSensitivity: 'ignore',
|
|
249
|
+
jsxBracketSameLine: false,
|
|
250
|
+
bracketSpacing: true,
|
|
251
|
+
});
|
|
252
|
+
}
|
|
253
|
+
catch (error) {
|
|
254
|
+
// TODO: [🟥] Detect browser / node and make it colorfull
|
|
255
|
+
console.error('There was an error with prettifying the markdown, using the original as the fallback', {
|
|
256
|
+
error: error,
|
|
257
|
+
html: content,
|
|
258
|
+
});
|
|
259
|
+
return content;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Makes first letter of a string uppercase
|
|
265
|
+
*
|
|
266
|
+
* @public exported from `@promptbook/utils`
|
|
267
|
+
*/
|
|
268
|
+
function capitalize(word) {
|
|
269
|
+
return word.substring(0, 1).toUpperCase() + word.substring(1);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Converts promptbook in JSON format to string format
|
|
274
|
+
*
|
|
275
|
+
* @deprecated TODO: [🥍][🧠] Backup original files in `PipelineJson` same as in Promptbook.studio
|
|
276
|
+
* @param pipelineJson Promptbook in JSON format (.book.json)
|
|
277
|
+
* @returns Promptbook in string format (.book.md)
|
|
278
|
+
* @public exported from `@promptbook/core`
|
|
279
|
+
*/
|
|
280
|
+
function pipelineJsonToString(pipelineJson) {
|
|
281
|
+
var e_1, _a, e_2, _b, e_3, _c, e_4, _d, e_5, _e, e_6, _f;
|
|
282
|
+
var title = pipelineJson.title, pipelineUrl = pipelineJson.pipelineUrl, bookVersion = pipelineJson.bookVersion, description = pipelineJson.description, parameters = pipelineJson.parameters, tasks = pipelineJson.tasks;
|
|
283
|
+
var pipelineString = "# ".concat(title);
|
|
284
|
+
if (description) {
|
|
285
|
+
pipelineString += '\n\n';
|
|
286
|
+
pipelineString += description;
|
|
287
|
+
}
|
|
288
|
+
var commands = [];
|
|
289
|
+
if (pipelineUrl) {
|
|
290
|
+
commands.push("PIPELINE URL ".concat(pipelineUrl));
|
|
291
|
+
}
|
|
292
|
+
if (bookVersion !== "undefined") {
|
|
293
|
+
commands.push("BOOK VERSION ".concat(bookVersion));
|
|
294
|
+
}
|
|
295
|
+
// TODO: [main] !!!!! This increases size of the bundle and is probbably not necessary
|
|
296
|
+
pipelineString = prettifyMarkdown(pipelineString);
|
|
297
|
+
try {
|
|
298
|
+
for (var _g = __values(parameters.filter(function (_a) {
|
|
299
|
+
var isInput = _a.isInput;
|
|
300
|
+
return isInput;
|
|
301
|
+
})), _h = _g.next(); !_h.done; _h = _g.next()) {
|
|
302
|
+
var parameter = _h.value;
|
|
303
|
+
commands.push("INPUT PARAMETER ".concat(taskParameterJsonToString(parameter)));
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
307
|
+
finally {
|
|
308
|
+
try {
|
|
309
|
+
if (_h && !_h.done && (_a = _g.return)) _a.call(_g);
|
|
310
|
+
}
|
|
311
|
+
finally { if (e_1) throw e_1.error; }
|
|
312
|
+
}
|
|
313
|
+
try {
|
|
314
|
+
for (var _j = __values(parameters.filter(function (_a) {
|
|
315
|
+
var isOutput = _a.isOutput;
|
|
316
|
+
return isOutput;
|
|
317
|
+
})), _k = _j.next(); !_k.done; _k = _j.next()) {
|
|
318
|
+
var parameter = _k.value;
|
|
319
|
+
commands.push("OUTPUT PARAMETER ".concat(taskParameterJsonToString(parameter)));
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
323
|
+
finally {
|
|
324
|
+
try {
|
|
325
|
+
if (_k && !_k.done && (_b = _j.return)) _b.call(_j);
|
|
326
|
+
}
|
|
327
|
+
finally { if (e_2) throw e_2.error; }
|
|
328
|
+
}
|
|
329
|
+
pipelineString += '\n\n';
|
|
330
|
+
pipelineString += commands.map(function (command) { return "- ".concat(command); }).join('\n');
|
|
331
|
+
try {
|
|
332
|
+
for (var tasks_1 = __values(tasks), tasks_1_1 = tasks_1.next(); !tasks_1_1.done; tasks_1_1 = tasks_1.next()) {
|
|
333
|
+
var task = tasks_1_1.value;
|
|
334
|
+
var
|
|
335
|
+
/* Note: Not using:> name, */
|
|
336
|
+
title_1 = task.title, description_1 = task.description,
|
|
337
|
+
/* Note: dependentParameterNames, */
|
|
338
|
+
jokers = task.jokerParameterNames, taskType = task.taskType, content = task.content, postprocessing = task.postprocessingFunctionNames, expectations = task.expectations, format = task.format, resultingParameterName = task.resultingParameterName;
|
|
339
|
+
pipelineString += '\n\n';
|
|
340
|
+
pipelineString += "## ".concat(title_1);
|
|
341
|
+
if (description_1) {
|
|
342
|
+
pipelineString += '\n\n';
|
|
343
|
+
pipelineString += description_1;
|
|
344
|
+
}
|
|
345
|
+
var commands_1 = [];
|
|
346
|
+
var contentLanguage = 'text';
|
|
347
|
+
if (taskType === 'PROMPT_TASK') {
|
|
348
|
+
var modelRequirements = task.modelRequirements;
|
|
349
|
+
var _l = modelRequirements || {}, modelName = _l.modelName, modelVariant = _l.modelVariant;
|
|
350
|
+
// Note: Do nothing, it is default
|
|
351
|
+
// commands.push(`PROMPT`);
|
|
352
|
+
if (modelVariant) {
|
|
353
|
+
commands_1.push("MODEL VARIANT ".concat(capitalize(modelVariant)));
|
|
354
|
+
}
|
|
355
|
+
if (modelName) {
|
|
356
|
+
commands_1.push("MODEL NAME `".concat(modelName, "`"));
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
else if (taskType === 'SIMPLE_TASK') {
|
|
360
|
+
commands_1.push("SIMPLE TEMPLATE");
|
|
361
|
+
// Note: Nothing special here
|
|
362
|
+
}
|
|
363
|
+
else if (taskType === 'SCRIPT_TASK') {
|
|
364
|
+
commands_1.push("SCRIPT");
|
|
365
|
+
if (task.contentLanguage) {
|
|
366
|
+
contentLanguage = task.contentLanguage;
|
|
367
|
+
}
|
|
368
|
+
else {
|
|
369
|
+
contentLanguage = '';
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
else if (taskType === 'DIALOG_TASK') {
|
|
373
|
+
commands_1.push("DIALOG");
|
|
374
|
+
// Note: Nothing special here
|
|
375
|
+
} // <- }else if([🅱]
|
|
376
|
+
if (jokers) {
|
|
377
|
+
try {
|
|
378
|
+
for (var jokers_1 = (e_4 = void 0, __values(jokers)), jokers_1_1 = jokers_1.next(); !jokers_1_1.done; jokers_1_1 = jokers_1.next()) {
|
|
379
|
+
var joker = jokers_1_1.value;
|
|
380
|
+
commands_1.push("JOKER {".concat(joker, "}"));
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
384
|
+
finally {
|
|
385
|
+
try {
|
|
386
|
+
if (jokers_1_1 && !jokers_1_1.done && (_d = jokers_1.return)) _d.call(jokers_1);
|
|
387
|
+
}
|
|
388
|
+
finally { if (e_4) throw e_4.error; }
|
|
389
|
+
}
|
|
390
|
+
} /* not else */
|
|
391
|
+
if (postprocessing) {
|
|
392
|
+
try {
|
|
393
|
+
for (var postprocessing_1 = (e_5 = void 0, __values(postprocessing)), postprocessing_1_1 = postprocessing_1.next(); !postprocessing_1_1.done; postprocessing_1_1 = postprocessing_1.next()) {
|
|
394
|
+
var postprocessingFunctionName = postprocessing_1_1.value;
|
|
395
|
+
commands_1.push("POSTPROCESSING `".concat(postprocessingFunctionName, "`"));
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
399
|
+
finally {
|
|
400
|
+
try {
|
|
401
|
+
if (postprocessing_1_1 && !postprocessing_1_1.done && (_e = postprocessing_1.return)) _e.call(postprocessing_1);
|
|
402
|
+
}
|
|
403
|
+
finally { if (e_5) throw e_5.error; }
|
|
404
|
+
}
|
|
405
|
+
} /* not else */
|
|
406
|
+
if (expectations) {
|
|
407
|
+
try {
|
|
408
|
+
for (var _m = (e_6 = void 0, __values(Object.entries(expectations))), _o = _m.next(); !_o.done; _o = _m.next()) {
|
|
409
|
+
var _p = __read(_o.value, 2), unit = _p[0], _q = _p[1], min = _q.min, max = _q.max;
|
|
410
|
+
if (min === max) {
|
|
411
|
+
commands_1.push("EXPECT EXACTLY ".concat(min, " ").concat(capitalize(unit + (min > 1 ? 's' : ''))));
|
|
412
|
+
}
|
|
413
|
+
else {
|
|
414
|
+
if (min !== undefined) {
|
|
415
|
+
commands_1.push("EXPECT MIN ".concat(min, " ").concat(capitalize(unit + (min > 1 ? 's' : ''))));
|
|
416
|
+
} /* not else */
|
|
417
|
+
if (max !== undefined) {
|
|
418
|
+
commands_1.push("EXPECT MAX ".concat(max, " ").concat(capitalize(unit + (max > 1 ? 's' : ''))));
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
catch (e_6_1) { e_6 = { error: e_6_1 }; }
|
|
424
|
+
finally {
|
|
425
|
+
try {
|
|
426
|
+
if (_o && !_o.done && (_f = _m.return)) _f.call(_m);
|
|
427
|
+
}
|
|
428
|
+
finally { if (e_6) throw e_6.error; }
|
|
429
|
+
}
|
|
430
|
+
} /* not else */
|
|
431
|
+
if (format) {
|
|
432
|
+
if (format === 'JSON') {
|
|
433
|
+
// TODO: @deprecated remove
|
|
434
|
+
commands_1.push("FORMAT JSON");
|
|
435
|
+
}
|
|
436
|
+
} /* not else */
|
|
437
|
+
pipelineString += '\n\n';
|
|
438
|
+
pipelineString += commands_1.map(function (command) { return "- ".concat(command); }).join('\n');
|
|
439
|
+
pipelineString += '\n\n';
|
|
440
|
+
pipelineString += '```' + contentLanguage;
|
|
441
|
+
pipelineString += '\n';
|
|
442
|
+
pipelineString += spaceTrim(content);
|
|
443
|
+
// <- TODO: [main] !!! Escape
|
|
444
|
+
// <- TODO: [🧠] Some clear strategy how to spaceTrim the blocks
|
|
445
|
+
pipelineString += '\n';
|
|
446
|
+
pipelineString += '```';
|
|
447
|
+
pipelineString += '\n\n';
|
|
448
|
+
pipelineString += "`-> {".concat(resultingParameterName, "}`"); // <- TODO: [main] !!! If the parameter here has description, add it and use taskParameterJsonToString
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
452
|
+
finally {
|
|
453
|
+
try {
|
|
454
|
+
if (tasks_1_1 && !tasks_1_1.done && (_c = tasks_1.return)) _c.call(tasks_1);
|
|
455
|
+
}
|
|
456
|
+
finally { if (e_3) throw e_3.error; }
|
|
457
|
+
}
|
|
458
|
+
return pipelineString;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* @private internal utility of `pipelineJsonToString`
|
|
462
|
+
*/
|
|
463
|
+
function taskParameterJsonToString(taskParameterJson) {
|
|
464
|
+
var name = taskParameterJson.name, description = taskParameterJson.description;
|
|
465
|
+
var parameterString = "{".concat(name, "}");
|
|
466
|
+
if (description) {
|
|
467
|
+
parameterString = "".concat(parameterString, " ").concat(description);
|
|
468
|
+
}
|
|
469
|
+
return parameterString;
|
|
470
|
+
}
|
|
471
|
+
/**
|
|
472
|
+
* TODO: [🛋] Implement new features and commands into `pipelineJsonToString` + `taskParameterJsonToString` , use `stringifyCommand`
|
|
473
|
+
* TODO: [🧠] Is there a way to auto-detect missing features in pipelineJsonToString
|
|
474
|
+
* TODO: [🏛] Maybe make some markdown builder
|
|
475
|
+
* TODO: [🏛] Escape all
|
|
476
|
+
* TODO: [🧠] Should be in generated .book.md file GENERATOR_WARNING
|
|
477
|
+
*/
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* Orders JSON object by keys
|
|
481
|
+
*
|
|
482
|
+
* @returns The same type of object as the input re-ordered
|
|
483
|
+
* @public exported from `@promptbook/utils`
|
|
484
|
+
*/
|
|
485
|
+
function orderJson(options) {
|
|
486
|
+
var value = options.value, order = options.order;
|
|
487
|
+
var orderedValue = __assign(__assign({}, (order === undefined ? {} : Object.fromEntries(order.map(function (key) { return [key, undefined]; })))), value);
|
|
488
|
+
return orderedValue;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* Freezes the given object and all its nested objects recursively
|
|
493
|
+
*
|
|
494
|
+
* Note: `$` is used to indicate that this function is not a pure function - it mutates given object
|
|
495
|
+
* Note: This function mutates the object and returns the original (but mutated-deep-freezed) object
|
|
496
|
+
*
|
|
497
|
+
* @returns The same object as the input, but deeply frozen
|
|
498
|
+
* @public exported from `@promptbook/utils`
|
|
499
|
+
*/
|
|
500
|
+
function $deepFreeze(objectValue) {
|
|
501
|
+
var e_1, _a;
|
|
502
|
+
if (Array.isArray(objectValue)) {
|
|
503
|
+
return Object.freeze(objectValue.map(function (item) { return $deepFreeze(item); }));
|
|
504
|
+
}
|
|
505
|
+
var propertyNames = Object.getOwnPropertyNames(objectValue);
|
|
506
|
+
try {
|
|
507
|
+
for (var propertyNames_1 = __values(propertyNames), propertyNames_1_1 = propertyNames_1.next(); !propertyNames_1_1.done; propertyNames_1_1 = propertyNames_1.next()) {
|
|
508
|
+
var propertyName = propertyNames_1_1.value;
|
|
509
|
+
var value = objectValue[propertyName];
|
|
510
|
+
if (value && typeof value === 'object') {
|
|
511
|
+
$deepFreeze(value);
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
516
|
+
finally {
|
|
517
|
+
try {
|
|
518
|
+
if (propertyNames_1_1 && !propertyNames_1_1.done && (_a = propertyNames_1.return)) _a.call(propertyNames_1);
|
|
519
|
+
}
|
|
520
|
+
finally { if (e_1) throw e_1.error; }
|
|
521
|
+
}
|
|
522
|
+
Object.freeze(objectValue);
|
|
523
|
+
return objectValue;
|
|
524
|
+
}
|
|
525
|
+
/**
|
|
526
|
+
* TODO: [🧠] Is there a way how to meaningfully test this utility
|
|
527
|
+
*/
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Checks if the value is [🚉] serializable as JSON
|
|
531
|
+
* If not, throws an UnexpectedError with a rich error message and tracking
|
|
532
|
+
*
|
|
533
|
+
* - Almost all primitives are serializable BUT:
|
|
534
|
+
* - `undefined` is not serializable
|
|
535
|
+
* - `NaN` is not serializable
|
|
536
|
+
* - Objects and arrays are serializable if all their properties are serializable
|
|
537
|
+
* - Functions are not serializable
|
|
538
|
+
* - Circular references are not serializable
|
|
539
|
+
* - `Date` objects are not serializable
|
|
540
|
+
* - `Map` and `Set` objects are not serializable
|
|
541
|
+
* - `RegExp` objects are not serializable
|
|
542
|
+
* - `Error` objects are not serializable
|
|
543
|
+
* - `Symbol` objects are not serializable
|
|
544
|
+
* - And much more...
|
|
545
|
+
*
|
|
546
|
+
* @throws UnexpectedError if the value is not serializable as JSON
|
|
547
|
+
* @public exported from `@promptbook/utils`
|
|
548
|
+
*/
|
|
549
|
+
function checkSerializableAsJson(options) {
|
|
550
|
+
var e_1, _a;
|
|
551
|
+
var value = options.value, name = options.name, message = options.message;
|
|
552
|
+
if (value === undefined) {
|
|
553
|
+
throw new UnexpectedError("".concat(name, " is undefined"));
|
|
554
|
+
}
|
|
555
|
+
else if (value === null) {
|
|
556
|
+
return;
|
|
557
|
+
}
|
|
558
|
+
else if (typeof value === 'boolean') {
|
|
559
|
+
return;
|
|
560
|
+
}
|
|
561
|
+
else if (typeof value === 'number' && !isNaN(value)) {
|
|
562
|
+
return;
|
|
563
|
+
}
|
|
564
|
+
else if (typeof value === 'string') {
|
|
565
|
+
return;
|
|
566
|
+
}
|
|
567
|
+
else if (typeof value === 'symbol') {
|
|
568
|
+
throw new UnexpectedError("".concat(name, " is symbol"));
|
|
569
|
+
}
|
|
570
|
+
else if (typeof value === 'function') {
|
|
571
|
+
throw new UnexpectedError("".concat(name, " is function"));
|
|
572
|
+
}
|
|
573
|
+
else if (typeof value === 'object' && Array.isArray(value)) {
|
|
574
|
+
for (var i = 0; i < value.length; i++) {
|
|
575
|
+
checkSerializableAsJson({ name: "".concat(name, "[").concat(i, "]"), value: value[i], message: message });
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
else if (typeof value === 'object') {
|
|
579
|
+
if (value instanceof Date) {
|
|
580
|
+
throw new UnexpectedError(spaceTrim(function (block) { return "\n `".concat(name, "` is Date\n\n Use `string_date_iso8601` instead\n\n Additional message for `").concat(name, "`:\n ").concat(block(message || '(nothing)'), "\n "); }));
|
|
581
|
+
}
|
|
582
|
+
else if (value instanceof Map) {
|
|
583
|
+
throw new UnexpectedError("".concat(name, " is Map"));
|
|
584
|
+
}
|
|
585
|
+
else if (value instanceof Set) {
|
|
586
|
+
throw new UnexpectedError("".concat(name, " is Set"));
|
|
587
|
+
}
|
|
588
|
+
else if (value instanceof RegExp) {
|
|
589
|
+
throw new UnexpectedError("".concat(name, " is RegExp"));
|
|
590
|
+
}
|
|
591
|
+
else if (value instanceof Error) {
|
|
592
|
+
throw new UnexpectedError(spaceTrim(function (block) { return "\n `".concat(name, "` is unserialized Error\n\n Use function `serializeError`\n\n Additional message for `").concat(name, "`:\n ").concat(block(message || '(nothing)'), "\n\n "); }));
|
|
593
|
+
}
|
|
594
|
+
else {
|
|
595
|
+
try {
|
|
596
|
+
for (var _b = __values(Object.entries(value)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
597
|
+
var _d = __read(_c.value, 2), subName = _d[0], subValue = _d[1];
|
|
598
|
+
if (subValue === undefined) {
|
|
599
|
+
// Note: undefined in object is serializable - it is just omited
|
|
600
|
+
continue;
|
|
601
|
+
}
|
|
602
|
+
checkSerializableAsJson({ name: "".concat(name, ".").concat(subName), value: subValue, message: message });
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
606
|
+
finally {
|
|
607
|
+
try {
|
|
608
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
609
|
+
}
|
|
610
|
+
finally { if (e_1) throw e_1.error; }
|
|
611
|
+
}
|
|
612
|
+
try {
|
|
613
|
+
JSON.stringify(value); // <- TODO: [0]
|
|
614
|
+
}
|
|
615
|
+
catch (error) {
|
|
616
|
+
if (!(error instanceof Error)) {
|
|
617
|
+
throw error;
|
|
618
|
+
}
|
|
619
|
+
throw new UnexpectedError(spaceTrim(function (block) { return "\n `".concat(name, "` is not serializable\n\n ").concat(block(error.toString()), "\n\n Additional message for `").concat(name, "`:\n ").concat(block(message || '(nothing)'), "\n "); }));
|
|
620
|
+
}
|
|
621
|
+
/*
|
|
622
|
+
TODO: [0] Is there some more elegant way to check circular references?
|
|
623
|
+
const seen = new Set();
|
|
624
|
+
const stack = [{ value }];
|
|
625
|
+
while (stack.length > 0) {
|
|
626
|
+
const { value } = stack.pop()!;
|
|
627
|
+
if (typeof value === 'object' && value !== null) {
|
|
628
|
+
if (seen.has(value)) {
|
|
629
|
+
throw new UnexpectedError(`${name} has circular reference`);
|
|
630
|
+
}
|
|
631
|
+
seen.add(value);
|
|
632
|
+
if (Array.isArray(value)) {
|
|
633
|
+
stack.push(...value.map((value) => ({ value })));
|
|
634
|
+
} else {
|
|
635
|
+
stack.push(...Object.values(value).map((value) => ({ value })));
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
*/
|
|
640
|
+
return;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
else {
|
|
644
|
+
throw new UnexpectedError(spaceTrim(function (block) { return "\n `".concat(name, "` is unknown type\n\n Additional message for `").concat(name, "`:\n ").concat(block(message || '(nothing)'), "\n "); }));
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* TODO: Can be return type more type-safe? like `asserts options.value is JsonValue`
|
|
649
|
+
* TODO: [🧠][main] !!! In-memory cache of same values to prevent multiple checks
|
|
650
|
+
* Note: [🐠] This is how `checkSerializableAsJson` + `isSerializableAsJson` together can just retun true/false or rich error message
|
|
651
|
+
*/
|
|
652
|
+
|
|
653
|
+
/**
|
|
654
|
+
* @@@
|
|
655
|
+
*
|
|
656
|
+
* @public exported from `@promptbook/utils`
|
|
657
|
+
*/
|
|
658
|
+
function deepClone(objectValue) {
|
|
659
|
+
return JSON.parse(JSON.stringify(objectValue));
|
|
660
|
+
/*
|
|
661
|
+
!!!!!!!!
|
|
662
|
+
TODO: [🧠] Is there a better implementation?
|
|
663
|
+
> const propertyNames = Object.getOwnPropertyNames(objectValue);
|
|
664
|
+
> for (const propertyName of propertyNames) {
|
|
665
|
+
> const value = (objectValue as really_any)[propertyName];
|
|
666
|
+
> if (value && typeof value === 'object') {
|
|
667
|
+
> deepClone(value);
|
|
668
|
+
> }
|
|
669
|
+
> }
|
|
670
|
+
> return Object.assign({}, objectValue);
|
|
671
|
+
*/
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* TODO: [🧠] Is there a way how to meaningfully test this utility
|
|
675
|
+
*/
|
|
676
|
+
|
|
677
|
+
/**
|
|
678
|
+
* Utility to export a JSON object from a function
|
|
679
|
+
*
|
|
680
|
+
* 1) Checks if the value is serializable as JSON
|
|
681
|
+
* 2) Makes a deep clone of the object
|
|
682
|
+
* 2) Orders the object properties
|
|
683
|
+
* 2) Deeply freezes the cloned object
|
|
684
|
+
*
|
|
685
|
+
* Note: This function does not mutates the given object
|
|
686
|
+
*
|
|
687
|
+
* @returns The same type of object as the input but read-only and re-ordered
|
|
688
|
+
* @public exported from `@promptbook/utils`
|
|
689
|
+
*/
|
|
690
|
+
function exportJson(options) {
|
|
691
|
+
var name = options.name, value = options.value, order = options.order, message = options.message;
|
|
692
|
+
checkSerializableAsJson({ name: name, value: value, message: message });
|
|
693
|
+
var orderedValue =
|
|
694
|
+
// TODO: Fix error "Type instantiation is excessively deep and possibly infinite."
|
|
695
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
696
|
+
// @ts-ignore
|
|
697
|
+
order === undefined
|
|
698
|
+
? deepClone(value)
|
|
699
|
+
: orderJson({
|
|
700
|
+
value: value,
|
|
701
|
+
// <- Note: checkSerializableAsJson asserts that the value is serializable as JSON
|
|
702
|
+
order: order,
|
|
703
|
+
});
|
|
704
|
+
$deepFreeze(orderedValue);
|
|
705
|
+
return orderedValue;
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* TODO: [🧠] Is there a way how to meaningfully test this utility
|
|
709
|
+
*/
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* Order of keys in the pipeline JSON
|
|
713
|
+
*
|
|
714
|
+
* @public exported from `@promptbook/core`
|
|
715
|
+
*/
|
|
716
|
+
var ORDER_OF_PIPELINE_JSON = [
|
|
717
|
+
// Note: [🍙] In this order will be pipeline serialized
|
|
718
|
+
'title',
|
|
719
|
+
'pipelineUrl',
|
|
720
|
+
'bookVersion',
|
|
721
|
+
'description',
|
|
722
|
+
'formfactorName',
|
|
723
|
+
'parameters',
|
|
724
|
+
'tasks',
|
|
725
|
+
'personas',
|
|
726
|
+
'preparations',
|
|
727
|
+
'knowledgeSources',
|
|
728
|
+
'knowledgePieces',
|
|
729
|
+
'sources', // <- TODO: [🧠] Where should the `sources` be
|
|
730
|
+
];
|
|
731
|
+
/**
|
|
732
|
+
* The names of the parameters that are reserved for special purposes
|
|
733
|
+
*
|
|
734
|
+
* @public exported from `@promptbook/core`
|
|
735
|
+
*/
|
|
736
|
+
var RESERVED_PARAMETER_NAMES = exportJson({
|
|
737
|
+
name: 'RESERVED_PARAMETER_NAMES',
|
|
738
|
+
message: "The names of the parameters that are reserved for special purposes",
|
|
739
|
+
value: [
|
|
740
|
+
'content',
|
|
741
|
+
'context',
|
|
742
|
+
'knowledge',
|
|
743
|
+
'examples',
|
|
744
|
+
'modelName',
|
|
745
|
+
'currentDate',
|
|
746
|
+
// <- TODO: list here all command names
|
|
747
|
+
// <- TODO: Add more like 'date', 'modelName',...
|
|
748
|
+
// <- TODO: Add [emoji] + instructions ACRY when adding new reserved parameter
|
|
749
|
+
],
|
|
750
|
+
});
|
|
751
|
+
/**
|
|
752
|
+
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
753
|
+
*/
|
|
754
|
+
|
|
755
|
+
/**
|
|
756
|
+
* This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
|
|
757
|
+
*
|
|
758
|
+
* @public exported from `@promptbook/core`
|
|
759
|
+
*/
|
|
760
|
+
var ParseError = /** @class */ (function (_super) {
|
|
761
|
+
__extends(ParseError, _super);
|
|
762
|
+
function ParseError(message) {
|
|
763
|
+
var _this = _super.call(this, message) || this;
|
|
764
|
+
_this.name = 'ParseError';
|
|
765
|
+
Object.setPrototypeOf(_this, ParseError.prototype);
|
|
766
|
+
return _this;
|
|
767
|
+
}
|
|
768
|
+
return ParseError;
|
|
769
|
+
}(Error));
|
|
770
|
+
/**
|
|
771
|
+
* TODO: Maybe split `ParseError` and `ApplyError`
|
|
772
|
+
*/
|
|
773
|
+
|
|
774
|
+
/**
|
|
775
|
+
* This error indicates that the promptbook object has valid syntax (=can be parsed) but contains logical errors (like circular dependencies)
|
|
776
|
+
*
|
|
777
|
+
* @public exported from `@promptbook/core`
|
|
778
|
+
*/
|
|
779
|
+
var PipelineLogicError = /** @class */ (function (_super) {
|
|
780
|
+
__extends(PipelineLogicError, _super);
|
|
781
|
+
function PipelineLogicError(message) {
|
|
782
|
+
var _this = _super.call(this, message) || this;
|
|
783
|
+
_this.name = 'PipelineLogicError';
|
|
784
|
+
Object.setPrototypeOf(_this, PipelineLogicError.prototype);
|
|
785
|
+
return _this;
|
|
786
|
+
}
|
|
787
|
+
return PipelineLogicError;
|
|
788
|
+
}(Error));
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* Tests if given string is valid semantic version
|
|
792
|
+
*
|
|
793
|
+
* Note: There are two simmilar functions:
|
|
794
|
+
* - `isValidSemanticVersion` which tests any semantic version
|
|
795
|
+
* - `isValidPromptbookVersion` *(this one)* which tests just Promptbook versions
|
|
796
|
+
*
|
|
797
|
+
* @public exported from `@promptbook/utils`
|
|
798
|
+
*/
|
|
799
|
+
function isValidSemanticVersion(version) {
|
|
800
|
+
if (typeof version !== 'string') {
|
|
801
|
+
return false;
|
|
802
|
+
}
|
|
803
|
+
if (version.startsWith('0.0.0')) {
|
|
804
|
+
return false;
|
|
805
|
+
}
|
|
806
|
+
return /^\d+\.\d+\.\d+(-\d+)?$/i.test(version);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* Tests if given string is valid promptbook version
|
|
811
|
+
* It looks into list of known promptbook versions.
|
|
812
|
+
*
|
|
813
|
+
* @see https://www.npmjs.com/package/promptbook?activeTab=versions
|
|
814
|
+
* Note: When you are using for example promptbook 2.0.0 and there already is promptbook 3.0.0 it don`t know about it.
|
|
815
|
+
* Note: There are two simmilar functions:
|
|
816
|
+
* - `isValidSemanticVersion` which tests any semantic version
|
|
817
|
+
* - `isValidPromptbookVersion` *(this one)* which tests just Promptbook versions
|
|
818
|
+
*
|
|
819
|
+
* @public exported from `@promptbook/utils`
|
|
820
|
+
*/
|
|
821
|
+
function isValidPromptbookVersion(version) {
|
|
822
|
+
if (!isValidSemanticVersion(version)) {
|
|
823
|
+
return false;
|
|
824
|
+
}
|
|
825
|
+
if ( /* version === '1.0.0' || */version === '2.0.0' || version === '3.0.0') {
|
|
826
|
+
return false;
|
|
827
|
+
}
|
|
828
|
+
// <- TODO: [main] !!! Check isValidPromptbookVersion against PROMPTBOOK_ENGINE_VERSIONS
|
|
829
|
+
return true;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* Checks if an URL is reserved for private networks or localhost.
|
|
834
|
+
*
|
|
835
|
+
* Note: There are two simmilar functions:
|
|
836
|
+
* - `isUrlOnPrivateNetwork` which tests full URL
|
|
837
|
+
* - `isHostnameOnPrivateNetwork` *(this one)* which tests just hostname
|
|
838
|
+
*
|
|
839
|
+
* @public exported from `@promptbook/utils`
|
|
840
|
+
*/
|
|
841
|
+
function isHostnameOnPrivateNetwork(hostname) {
|
|
842
|
+
if (hostname === 'example.com' ||
|
|
843
|
+
hostname === 'localhost' ||
|
|
844
|
+
hostname.endsWith('.localhost') ||
|
|
845
|
+
hostname.endsWith('.local') ||
|
|
846
|
+
hostname.endsWith('.test') ||
|
|
847
|
+
hostname === '127.0.0.1' ||
|
|
848
|
+
hostname === '::1') {
|
|
849
|
+
return true;
|
|
850
|
+
}
|
|
851
|
+
if (hostname.includes(':')) {
|
|
852
|
+
// IPv6
|
|
853
|
+
var ipParts = hostname.split(':');
|
|
854
|
+
return ipParts[0] === 'fc00' || ipParts[0] === 'fd00' || ipParts[0] === 'fe80';
|
|
855
|
+
}
|
|
856
|
+
else {
|
|
857
|
+
// IPv4
|
|
858
|
+
var ipParts = hostname.split('.').map(function (part) { return Number.parseInt(part, 10); });
|
|
859
|
+
return (ipParts[0] === 10 ||
|
|
860
|
+
(ipParts[0] === 172 && ipParts[1] >= 16 && ipParts[1] <= 31) ||
|
|
861
|
+
(ipParts[0] === 192 && ipParts[1] === 168));
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* Checks if an IP address or hostname is reserved for private networks or localhost.
|
|
867
|
+
*
|
|
868
|
+
* Note: There are two simmilar functions:
|
|
869
|
+
* - `isUrlOnPrivateNetwork` *(this one)* which tests full URL
|
|
870
|
+
* - `isHostnameOnPrivateNetwork` which tests just hostname
|
|
871
|
+
*
|
|
872
|
+
* @param {string} ipAddress - The IP address to check.
|
|
873
|
+
* @returns {boolean} Returns true if the IP address is reserved for private networks or localhost, otherwise false.
|
|
874
|
+
* @public exported from `@promptbook/utils`
|
|
875
|
+
*/
|
|
876
|
+
function isUrlOnPrivateNetwork(url) {
|
|
877
|
+
if (typeof url === 'string') {
|
|
878
|
+
url = new URL(url);
|
|
879
|
+
}
|
|
880
|
+
return isHostnameOnPrivateNetwork(url.hostname);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* Tests if given string is valid URL.
|
|
885
|
+
*
|
|
886
|
+
* Note: Dataurl are considered perfectly valid.
|
|
887
|
+
* Note: There are two simmilar functions:
|
|
888
|
+
* - `isValidUrl` which tests any URL
|
|
889
|
+
* - `isValidPipelineUrl` *(this one)* which tests just promptbook URL
|
|
890
|
+
*
|
|
891
|
+
* @public exported from `@promptbook/utils`
|
|
892
|
+
*/
|
|
893
|
+
function isValidUrl(url) {
|
|
894
|
+
if (typeof url !== 'string') {
|
|
895
|
+
return false;
|
|
896
|
+
}
|
|
897
|
+
try {
|
|
898
|
+
if (url.startsWith('blob:')) {
|
|
899
|
+
url = url.replace(/^blob:/, '');
|
|
900
|
+
}
|
|
901
|
+
var urlObject = new URL(url /* because fail is handled */);
|
|
902
|
+
if (!['http:', 'https:', 'data:'].includes(urlObject.protocol)) {
|
|
903
|
+
return false;
|
|
904
|
+
}
|
|
905
|
+
return true;
|
|
906
|
+
}
|
|
907
|
+
catch (error) {
|
|
908
|
+
return false;
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
/**
|
|
913
|
+
* Tests if given string is valid pipeline URL URL.
|
|
914
|
+
*
|
|
915
|
+
* Note: There are two simmilar functions:
|
|
916
|
+
* - `isValidUrl` which tests any URL
|
|
917
|
+
* - `isValidPipelineUrl` *(this one)* which tests just pipeline URL
|
|
918
|
+
*
|
|
919
|
+
* @public exported from `@promptbook/utils`
|
|
920
|
+
*/
|
|
921
|
+
function isValidPipelineUrl(url) {
|
|
922
|
+
if (!isValidUrl(url)) {
|
|
923
|
+
return false;
|
|
924
|
+
}
|
|
925
|
+
if (!url.startsWith('https://')) {
|
|
926
|
+
return false;
|
|
927
|
+
}
|
|
928
|
+
if (url.includes('#')) {
|
|
929
|
+
// TODO: [🐠]
|
|
930
|
+
return false;
|
|
931
|
+
}
|
|
932
|
+
if (isUrlOnPrivateNetwork(url)) {
|
|
933
|
+
return false;
|
|
934
|
+
}
|
|
935
|
+
return true;
|
|
936
|
+
}
|
|
937
|
+
/**
|
|
938
|
+
* TODO: [🐠] Maybe more info why the URL is invalid
|
|
939
|
+
*/
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* Validates PipelineJson if it is logically valid
|
|
943
|
+
*
|
|
944
|
+
* It checks:
|
|
945
|
+
* - if it has correct parameters dependency
|
|
946
|
+
*
|
|
947
|
+
* It does NOT check:
|
|
948
|
+
* - if it is valid json
|
|
949
|
+
* - if it is meaningful
|
|
950
|
+
*
|
|
951
|
+
* @param pipeline valid or invalid PipelineJson
|
|
952
|
+
* @returns the same pipeline if it is logically valid
|
|
953
|
+
* @throws {PipelineLogicError} on logical error in the pipeline
|
|
954
|
+
* @public exported from `@promptbook/core`
|
|
955
|
+
*/
|
|
956
|
+
function validatePipeline(pipeline) {
|
|
957
|
+
if (IS_PIPELINE_LOGIC_VALIDATED) {
|
|
958
|
+
validatePipelineCore(pipeline);
|
|
959
|
+
}
|
|
960
|
+
else {
|
|
961
|
+
try {
|
|
962
|
+
validatePipelineCore(pipeline);
|
|
963
|
+
}
|
|
964
|
+
catch (error) {
|
|
965
|
+
if (!(error instanceof PipelineLogicError)) {
|
|
966
|
+
throw error;
|
|
967
|
+
}
|
|
968
|
+
console.error(spaceTrim$1(function (block) { return "\n Pipeline is not valid but logic errors are temporarily disabled via `IS_PIPELINE_LOGIC_VALIDATED`\n\n ".concat(block(error.message), "\n "); }));
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
return pipeline;
|
|
972
|
+
}
|
|
973
|
+
/**
|
|
974
|
+
* @private internal function for `validatePipeline`
|
|
975
|
+
*/
|
|
976
|
+
function validatePipelineCore(pipeline) {
|
|
977
|
+
// TODO: [🧠] Maybe test if promptbook is a promise and make specific error case for that
|
|
978
|
+
var e_1, _a, e_2, _b, e_3, _c;
|
|
979
|
+
var pipelineIdentification = (function () {
|
|
980
|
+
// Note: This is a 😐 implementation of [🚞]
|
|
981
|
+
var _ = [];
|
|
982
|
+
if (pipeline.sourceFile !== undefined) {
|
|
983
|
+
_.push("File: ".concat(pipeline.sourceFile));
|
|
984
|
+
}
|
|
985
|
+
if (pipeline.pipelineUrl !== undefined) {
|
|
986
|
+
_.push("Url: ".concat(pipeline.pipelineUrl));
|
|
987
|
+
}
|
|
988
|
+
return _.join('\n');
|
|
989
|
+
})();
|
|
990
|
+
if (pipeline.pipelineUrl !== undefined && !isValidPipelineUrl(pipeline.pipelineUrl)) {
|
|
991
|
+
// <- Note: [🚲]
|
|
992
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Invalid promptbook URL \"".concat(pipeline.pipelineUrl, "\"\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
993
|
+
}
|
|
994
|
+
if (pipeline.bookVersion !== undefined && !isValidPromptbookVersion(pipeline.bookVersion)) {
|
|
995
|
+
// <- Note: [🚲]
|
|
996
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Invalid Promptbook Version \"".concat(pipeline.bookVersion, "\"\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
997
|
+
}
|
|
998
|
+
// TODO: [🧠] Maybe do here some propper JSON-schema / ZOD checking
|
|
999
|
+
if (!Array.isArray(pipeline.parameters)) {
|
|
1000
|
+
// TODO: [🧠] what is the correct error tp throw - maybe PromptbookSchemaError
|
|
1001
|
+
throw new ParseError(spaceTrim$1(function (block) { return "\n Pipeline is valid JSON but with wrong structure\n\n `PipelineJson.parameters` expected to be an array, but got ".concat(typeof pipeline.parameters, "\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1002
|
+
}
|
|
1003
|
+
// TODO: [🧠] Maybe do here some propper JSON-schema / ZOD checking
|
|
1004
|
+
if (!Array.isArray(pipeline.tasks)) {
|
|
1005
|
+
// TODO: [🧠] what is the correct error tp throw - maybe PromptbookSchemaError
|
|
1006
|
+
throw new ParseError(spaceTrim$1(function (block) { return "\n Pipeline is valid JSON but with wrong structure\n\n `PipelineJson.tasks` expected to be an array, but got ".concat(typeof pipeline.tasks, "\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1007
|
+
}
|
|
1008
|
+
var _loop_1 = function (parameter) {
|
|
1009
|
+
if (parameter.isInput && parameter.isOutput) {
|
|
1010
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n\n Parameter `{".concat(parameter.name, "}` can not be both input and output\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1011
|
+
}
|
|
1012
|
+
// Note: Testing that parameter is either intermediate or output BUT not created and unused
|
|
1013
|
+
if (!parameter.isInput &&
|
|
1014
|
+
!parameter.isOutput &&
|
|
1015
|
+
!pipeline.tasks.some(function (task) { return task.dependentParameterNames.includes(parameter.name); })) {
|
|
1016
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Parameter `{".concat(parameter.name, "}` is created but not used\n\n You can declare {").concat(parameter.name, "} as output parameter by adding in the header:\n - OUTPUT PARAMETER `{").concat(parameter.name, "}` ").concat(parameter.description || '', "\n\n ").concat(block(pipelineIdentification), "\n\n "); }));
|
|
1017
|
+
}
|
|
1018
|
+
// Note: Testing that parameter is either input or result of some task
|
|
1019
|
+
if (!parameter.isInput && !pipeline.tasks.some(function (task) { return task.resultingParameterName === parameter.name; })) {
|
|
1020
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Parameter `{".concat(parameter.name, "}` is declared but not defined\n\n You can do one of these:\n 1) Remove declaration of `{").concat(parameter.name, "}`\n 2) Add task that results in `-> {").concat(parameter.name, "}`\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1021
|
+
}
|
|
1022
|
+
};
|
|
1023
|
+
try {
|
|
1024
|
+
/*
|
|
1025
|
+
TODO: [🧠][🅾] Should be empty pipeline valid or not
|
|
1026
|
+
// Note: Check that pipeline has some tasks
|
|
1027
|
+
if (pipeline.tasks.length === 0) {
|
|
1028
|
+
throw new PipelineLogicError(
|
|
1029
|
+
spaceTrim(
|
|
1030
|
+
(block) => `
|
|
1031
|
+
Pipeline must have at least one task
|
|
1032
|
+
|
|
1033
|
+
${block(pipelineIdentification)}
|
|
1034
|
+
`,
|
|
1035
|
+
),
|
|
1036
|
+
);
|
|
1037
|
+
}
|
|
1038
|
+
*/
|
|
1039
|
+
// Note: Check each parameter individually
|
|
1040
|
+
for (var _d = __values(pipeline.parameters), _e = _d.next(); !_e.done; _e = _d.next()) {
|
|
1041
|
+
var parameter = _e.value;
|
|
1042
|
+
_loop_1(parameter);
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
1046
|
+
finally {
|
|
1047
|
+
try {
|
|
1048
|
+
if (_e && !_e.done && (_a = _d.return)) _a.call(_d);
|
|
1049
|
+
}
|
|
1050
|
+
finally { if (e_1) throw e_1.error; }
|
|
1051
|
+
}
|
|
1052
|
+
// Note: All input parameters are defined - so that they can be used as result of some task
|
|
1053
|
+
var definedParameters = new Set(pipeline.parameters.filter(function (_a) {
|
|
1054
|
+
var isInput = _a.isInput;
|
|
1055
|
+
return isInput;
|
|
1056
|
+
}).map(function (_a) {
|
|
1057
|
+
var name = _a.name;
|
|
1058
|
+
return name;
|
|
1059
|
+
}));
|
|
1060
|
+
var _loop_2 = function (task) {
|
|
1061
|
+
var e_4, _h, e_5, _j;
|
|
1062
|
+
if (definedParameters.has(task.resultingParameterName)) {
|
|
1063
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Parameter `{".concat(task.resultingParameterName, "}` is defined multiple times\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1064
|
+
}
|
|
1065
|
+
if (RESERVED_PARAMETER_NAMES.includes(task.resultingParameterName)) {
|
|
1066
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Parameter name {".concat(task.resultingParameterName, "} is reserved, please use different name\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1067
|
+
}
|
|
1068
|
+
definedParameters.add(task.resultingParameterName);
|
|
1069
|
+
if (task.jokerParameterNames && task.jokerParameterNames.length > 0) {
|
|
1070
|
+
if (!task.format &&
|
|
1071
|
+
!task.expectations /* <- TODO: Require at least 1 -> min <- expectation to use jokers */) {
|
|
1072
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Joker parameters are used for {".concat(task.resultingParameterName, "} but no expectations are defined\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1073
|
+
}
|
|
1074
|
+
var _loop_4 = function (joker) {
|
|
1075
|
+
if (!task.dependentParameterNames.includes(joker)) {
|
|
1076
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Parameter `{".concat(joker, "}` is used for {").concat(task.resultingParameterName, "} as joker but not in `dependentParameterNames`\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1077
|
+
}
|
|
1078
|
+
};
|
|
1079
|
+
try {
|
|
1080
|
+
for (var _k = (e_4 = void 0, __values(task.jokerParameterNames)), _l = _k.next(); !_l.done; _l = _k.next()) {
|
|
1081
|
+
var joker = _l.value;
|
|
1082
|
+
_loop_4(joker);
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
1086
|
+
finally {
|
|
1087
|
+
try {
|
|
1088
|
+
if (_l && !_l.done && (_h = _k.return)) _h.call(_k);
|
|
1089
|
+
}
|
|
1090
|
+
finally { if (e_4) throw e_4.error; }
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
if (task.expectations) {
|
|
1094
|
+
var _loop_5 = function (unit, min, max) {
|
|
1095
|
+
if (min !== undefined && max !== undefined && min > max) {
|
|
1096
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Min expectation (=".concat(min, ") of ").concat(unit, " is higher than max expectation (=").concat(max, ")\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1097
|
+
}
|
|
1098
|
+
if (min !== undefined && min < 0) {
|
|
1099
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Min expectation of ".concat(unit, " must be zero or positive\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1100
|
+
}
|
|
1101
|
+
if (max !== undefined && max <= 0) {
|
|
1102
|
+
throw new PipelineLogicError(spaceTrim$1(function (block) { return "\n Max expectation of ".concat(unit, " must be positive\n\n ").concat(block(pipelineIdentification), "\n "); }));
|
|
1103
|
+
}
|
|
1104
|
+
};
|
|
1105
|
+
try {
|
|
1106
|
+
for (var _m = (e_5 = void 0, __values(Object.entries(task.expectations))), _o = _m.next(); !_o.done; _o = _m.next()) {
|
|
1107
|
+
var _p = __read(_o.value, 2), unit = _p[0], _q = _p[1], min = _q.min, max = _q.max;
|
|
1108
|
+
_loop_5(unit, min, max);
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
1112
|
+
finally {
|
|
1113
|
+
try {
|
|
1114
|
+
if (_o && !_o.done && (_j = _m.return)) _j.call(_m);
|
|
1115
|
+
}
|
|
1116
|
+
finally { if (e_5) throw e_5.error; }
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
};
|
|
1120
|
+
try {
|
|
1121
|
+
// Note: Checking each task individually
|
|
1122
|
+
for (var _f = __values(pipeline.tasks), _g = _f.next(); !_g.done; _g = _f.next()) {
|
|
1123
|
+
var task = _g.value;
|
|
1124
|
+
_loop_2(task);
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
1128
|
+
finally {
|
|
1129
|
+
try {
|
|
1130
|
+
if (_g && !_g.done && (_b = _f.return)) _b.call(_f);
|
|
1131
|
+
}
|
|
1132
|
+
finally { if (e_2) throw e_2.error; }
|
|
1133
|
+
}
|
|
1134
|
+
// Note: Detect circular dependencies
|
|
1135
|
+
var resovedParameters = pipeline.parameters
|
|
1136
|
+
.filter(function (_a) {
|
|
1137
|
+
var isInput = _a.isInput;
|
|
1138
|
+
return isInput;
|
|
1139
|
+
})
|
|
1140
|
+
.map(function (_a) {
|
|
1141
|
+
var name = _a.name;
|
|
1142
|
+
return name;
|
|
1143
|
+
});
|
|
1144
|
+
try {
|
|
1145
|
+
// Note: All reserved parameters are resolved
|
|
1146
|
+
for (var RESERVED_PARAMETER_NAMES_1 = __values(RESERVED_PARAMETER_NAMES), RESERVED_PARAMETER_NAMES_1_1 = RESERVED_PARAMETER_NAMES_1.next(); !RESERVED_PARAMETER_NAMES_1_1.done; RESERVED_PARAMETER_NAMES_1_1 = RESERVED_PARAMETER_NAMES_1.next()) {
|
|
1147
|
+
var reservedParameterName = RESERVED_PARAMETER_NAMES_1_1.value;
|
|
1148
|
+
resovedParameters = __spreadArray(__spreadArray([], __read(resovedParameters), false), [reservedParameterName], false);
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
1152
|
+
finally {
|
|
1153
|
+
try {
|
|
1154
|
+
if (RESERVED_PARAMETER_NAMES_1_1 && !RESERVED_PARAMETER_NAMES_1_1.done && (_c = RESERVED_PARAMETER_NAMES_1.return)) _c.call(RESERVED_PARAMETER_NAMES_1);
|
|
1155
|
+
}
|
|
1156
|
+
finally { if (e_3) throw e_3.error; }
|
|
1157
|
+
}
|
|
1158
|
+
var unresovedTasks = __spreadArray([], __read(pipeline.tasks), false);
|
|
1159
|
+
var loopLimit = LOOP_LIMIT;
|
|
1160
|
+
var _loop_3 = function () {
|
|
1161
|
+
if (loopLimit-- < 0) {
|
|
1162
|
+
// Note: Really UnexpectedError not LimitReachedError - this should not happen and be caught below
|
|
1163
|
+
throw new UnexpectedError(spaceTrim$1(function (block) { return "\n Loop limit reached during detection of circular dependencies in `validatePipeline`\n\n ".concat(block(pipelineIdentification), "\n "); }));
|
|
1164
|
+
}
|
|
1165
|
+
var currentlyResovedTasks = unresovedTasks.filter(function (task) {
|
|
1166
|
+
return task.dependentParameterNames.every(function (name) { return resovedParameters.includes(name); });
|
|
1167
|
+
});
|
|
1168
|
+
if (currentlyResovedTasks.length === 0) {
|
|
1169
|
+
throw new PipelineLogicError(
|
|
1170
|
+
// TODO: [🐎] DRY
|
|
1171
|
+
spaceTrim$1(function (block) { return "\n\n Can not resolve some parameters:\n Either you are using a parameter that is not defined, or there are some circular dependencies.\n\n ".concat(block(pipelineIdentification), "\n\n **Can not resolve:**\n ").concat(block(unresovedTasks
|
|
1172
|
+
.map(function (_a) {
|
|
1173
|
+
var resultingParameterName = _a.resultingParameterName, dependentParameterNames = _a.dependentParameterNames;
|
|
1174
|
+
return "- Parameter `{".concat(resultingParameterName, "}` which depends on ").concat(dependentParameterNames
|
|
1175
|
+
.map(function (dependentParameterName) { return "`{".concat(dependentParameterName, "}`"); })
|
|
1176
|
+
.join(' and '));
|
|
1177
|
+
})
|
|
1178
|
+
.join('\n')), "\n\n **Resolved:**\n ").concat(block(resovedParameters
|
|
1179
|
+
.filter(function (name) {
|
|
1180
|
+
return !RESERVED_PARAMETER_NAMES.includes(name);
|
|
1181
|
+
})
|
|
1182
|
+
.map(function (name) { return "- Parameter `{".concat(name, "}`"); })
|
|
1183
|
+
.join('\n')), "\n\n\n **Reserved (which are available):**\n ").concat(block(resovedParameters
|
|
1184
|
+
.filter(function (name) {
|
|
1185
|
+
return RESERVED_PARAMETER_NAMES.includes(name);
|
|
1186
|
+
})
|
|
1187
|
+
.map(function (name) { return "- Parameter `{".concat(name, "}`"); })
|
|
1188
|
+
.join('\n')), "\n\n\n "); }));
|
|
1189
|
+
}
|
|
1190
|
+
resovedParameters = __spreadArray(__spreadArray([], __read(resovedParameters), false), __read(currentlyResovedTasks.map(function (_a) {
|
|
1191
|
+
var resultingParameterName = _a.resultingParameterName;
|
|
1192
|
+
return resultingParameterName;
|
|
1193
|
+
})), false);
|
|
1194
|
+
unresovedTasks = unresovedTasks.filter(function (task) { return !currentlyResovedTasks.includes(task); });
|
|
1195
|
+
};
|
|
1196
|
+
while (unresovedTasks.length > 0) {
|
|
1197
|
+
_loop_3();
|
|
1198
|
+
}
|
|
1199
|
+
// Note: Check that formfactor is corresponding to the pipeline interface
|
|
1200
|
+
// TODO: !!!!!! Implement this
|
|
1201
|
+
// pipeline.formfactorName
|
|
1202
|
+
}
|
|
1203
|
+
/**
|
|
1204
|
+
* TODO: !! [🧞♀️] Do not allow joker + foreach
|
|
1205
|
+
* TODO: [🧠] Work with promptbookVersion
|
|
1206
|
+
* TODO: Use here some json-schema, Zod or something similar and change it to:
|
|
1207
|
+
* > /**
|
|
1208
|
+
* > * Validates PipelineJson if it is logically valid.
|
|
1209
|
+
* > *
|
|
1210
|
+
* > * It checks:
|
|
1211
|
+
* > * - it has a valid structure
|
|
1212
|
+
* > * - ...
|
|
1213
|
+
* > ex port function validatePipeline(promptbook: really_unknown): asserts promptbook is PipelineJson {
|
|
1214
|
+
*/
|
|
1215
|
+
/**
|
|
1216
|
+
* TODO: [🧳][main] !!!! Validate that all examples match expectations
|
|
1217
|
+
* TODO: [🧳][🐝][main] !!!! Validate that knowledge is valid (non-void)
|
|
1218
|
+
* TODO: [🧳][main] !!!! Validate that persona can be used only with CHAT variant
|
|
1219
|
+
* TODO: [🧳][main] !!!! Validate that parameter with reserved name not used RESERVED_PARAMETER_NAMES
|
|
1220
|
+
* TODO: [🧳][main] !!!! Validate that reserved parameter is not used as joker
|
|
1221
|
+
* TODO: [🧠] Validation not only logic itself but imports around - files and websites and rerefenced pipelines exists
|
|
1222
|
+
* TODO: [🛠] Actions, instruments (and maybe knowledge) => Functions and tools
|
|
1223
|
+
*/
|
|
1224
|
+
|
|
1225
|
+
/**
|
|
1226
|
+
* This error indicates errors in referencing promptbooks between each other
|
|
1227
|
+
*
|
|
1228
|
+
* @public exported from `@promptbook/core`
|
|
1229
|
+
*/
|
|
1230
|
+
var PipelineUrlError = /** @class */ (function (_super) {
|
|
1231
|
+
__extends(PipelineUrlError, _super);
|
|
1232
|
+
function PipelineUrlError(message) {
|
|
1233
|
+
var _this = _super.call(this, message) || this;
|
|
1234
|
+
_this.name = 'PipelineUrlError';
|
|
1235
|
+
Object.setPrototypeOf(_this, PipelineUrlError.prototype);
|
|
1236
|
+
return _this;
|
|
1237
|
+
}
|
|
1238
|
+
return PipelineUrlError;
|
|
1239
|
+
}(Error));
|
|
1240
|
+
|
|
1241
|
+
/**
|
|
1242
|
+
* Parses the task and returns the list of all parameter names
|
|
1243
|
+
*
|
|
1244
|
+
* @param template the string template with parameters in {curly} braces
|
|
1245
|
+
* @returns the list of parameter names
|
|
1246
|
+
* @public exported from `@promptbook/utils`
|
|
1247
|
+
*/
|
|
1248
|
+
function extractParameterNames(template) {
|
|
1249
|
+
var e_1, _a;
|
|
1250
|
+
var matches = template.matchAll(/{\w+}/g);
|
|
1251
|
+
var parameterNames = new Set();
|
|
1252
|
+
try {
|
|
1253
|
+
for (var matches_1 = __values(matches), matches_1_1 = matches_1.next(); !matches_1_1.done; matches_1_1 = matches_1.next()) {
|
|
1254
|
+
var match = matches_1_1.value;
|
|
1255
|
+
var parameterName = match[0].slice(1, -1);
|
|
1256
|
+
parameterNames.add(parameterName);
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
1260
|
+
finally {
|
|
1261
|
+
try {
|
|
1262
|
+
if (matches_1_1 && !matches_1_1.done && (_a = matches_1.return)) _a.call(matches_1);
|
|
1263
|
+
}
|
|
1264
|
+
finally { if (e_1) throw e_1.error; }
|
|
1265
|
+
}
|
|
1266
|
+
return parameterNames;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
/**
|
|
1270
|
+
* Unprepare just strips the preparation data of the pipeline
|
|
1271
|
+
*
|
|
1272
|
+
* @deprecated In future version this function will be removed or deprecated
|
|
1273
|
+
* @public exported from `@promptbook/core`
|
|
1274
|
+
*/
|
|
1275
|
+
function unpreparePipeline(pipeline) {
|
|
1276
|
+
var personas = pipeline.personas, knowledgeSources = pipeline.knowledgeSources, tasks = pipeline.tasks;
|
|
1277
|
+
personas = personas.map(function (persona) { return (__assign(__assign({}, persona), { modelRequirements: undefined, preparationIds: undefined })); });
|
|
1278
|
+
knowledgeSources = knowledgeSources.map(function (knowledgeSource) { return (__assign(__assign({}, knowledgeSource), { preparationIds: undefined })); });
|
|
1279
|
+
tasks = tasks.map(function (task) {
|
|
1280
|
+
var dependentParameterNames = task.dependentParameterNames;
|
|
1281
|
+
var parameterNames = extractParameterNames(task.preparedContent || '');
|
|
1282
|
+
dependentParameterNames = dependentParameterNames.filter(function (dependentParameterName) { return !parameterNames.has(dependentParameterName); });
|
|
1283
|
+
var taskUnprepared = __assign(__assign({}, task), { dependentParameterNames: dependentParameterNames });
|
|
1284
|
+
delete taskUnprepared.preparedContent;
|
|
1285
|
+
return taskUnprepared;
|
|
1286
|
+
});
|
|
1287
|
+
return exportJson({
|
|
1288
|
+
name: 'pipelineJson',
|
|
1289
|
+
message: "Result of `unpreparePipeline`",
|
|
1290
|
+
order: ORDER_OF_PIPELINE_JSON,
|
|
1291
|
+
value: __assign(__assign({}, pipeline), { tasks: tasks, knowledgeSources: knowledgeSources, knowledgePieces: [], personas: personas, preparations: [] }),
|
|
1292
|
+
});
|
|
1293
|
+
}
|
|
1294
|
+
/**
|
|
1295
|
+
* TODO: [🧿] Maybe do same process with same granularity and subfinctions as `preparePipeline`
|
|
1296
|
+
* TODO: Write tests for `preparePipeline`
|
|
1297
|
+
* TODO: [🍙] Make some standard order of json properties
|
|
1298
|
+
*/
|
|
1299
|
+
|
|
1300
|
+
/**
|
|
1301
|
+
* Library of pipelines that groups together pipelines for an application.
|
|
1302
|
+
* This implementation is a very thin wrapper around the Array / Map of pipelines.
|
|
1303
|
+
*
|
|
1304
|
+
* @private internal function of `createCollectionFromJson`, use `createCollectionFromJson` instead
|
|
1305
|
+
* @see https://github.com/webgptorg/pipeline#pipeline-collection
|
|
1306
|
+
*/
|
|
1307
|
+
var SimplePipelineCollection = /** @class */ (function () {
|
|
1308
|
+
/**
|
|
1309
|
+
* Constructs a pipeline collection from pipelines
|
|
1310
|
+
*
|
|
1311
|
+
* @param pipelines @@@
|
|
1312
|
+
*
|
|
1313
|
+
* Note: During the construction logic of all pipelines are validated
|
|
1314
|
+
* Note: It is not recommended to use this constructor directly, use `createCollectionFromJson` *(or other variant)* instead
|
|
1315
|
+
*/
|
|
1316
|
+
function SimplePipelineCollection() {
|
|
1317
|
+
var e_1, _a;
|
|
1318
|
+
var pipelines = [];
|
|
1319
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
1320
|
+
pipelines[_i] = arguments[_i];
|
|
1321
|
+
}
|
|
1322
|
+
this.collection = new Map();
|
|
1323
|
+
try {
|
|
1324
|
+
for (var pipelines_1 = __values(pipelines), pipelines_1_1 = pipelines_1.next(); !pipelines_1_1.done; pipelines_1_1 = pipelines_1.next()) {
|
|
1325
|
+
var pipeline = pipelines_1_1.value;
|
|
1326
|
+
// TODO: [👠] DRY
|
|
1327
|
+
if (pipeline.pipelineUrl === undefined) {
|
|
1328
|
+
throw new PipelineUrlError(spaceTrim$1("\n Pipeline with name \"".concat(pipeline.title, "\" does not have defined URL\n\n File:\n ").concat(pipeline.sourceFile || 'Unknown', "\n\n Note: Pipelines without URLs are called anonymous pipelines\n They can be used as standalone pipelines, but they cannot be referenced by other pipelines\n And also they cannot be used in the pipeline collection\n\n ")));
|
|
1329
|
+
}
|
|
1330
|
+
// Note: [🐨]
|
|
1331
|
+
validatePipeline(pipeline);
|
|
1332
|
+
// TODO: [🦄] DRY
|
|
1333
|
+
// Note: [🦄]
|
|
1334
|
+
if (
|
|
1335
|
+
// TODO: [🐽]
|
|
1336
|
+
this.collection.has(pipeline.pipelineUrl) &&
|
|
1337
|
+
pipelineJsonToString(unpreparePipeline(pipeline)) !==
|
|
1338
|
+
pipelineJsonToString(unpreparePipeline(this.collection.get(pipeline.pipelineUrl)))) {
|
|
1339
|
+
var existing = this.collection.get(pipeline.pipelineUrl);
|
|
1340
|
+
throw new PipelineUrlError(spaceTrim$1("\n Pipeline with URL \"".concat(pipeline.pipelineUrl, "\" is already in the collection \uD83C\uDF4E\n\n Conflicting files:\n ").concat(existing.sourceFile || 'Unknown', "\n ").concat(pipeline.sourceFile || 'Unknown', "\n\n Note: You have probably forgotten to run \"ptbk make\" to update the collection\n Note: Pipelines with the same URL are not allowed\n Only exepction is when the pipelines are identical\n\n ")));
|
|
1341
|
+
}
|
|
1342
|
+
// Note: [🧠] Overwrite existing pipeline with the same URL
|
|
1343
|
+
this.collection.set(pipeline.pipelineUrl, pipeline);
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
1347
|
+
finally {
|
|
1348
|
+
try {
|
|
1349
|
+
if (pipelines_1_1 && !pipelines_1_1.done && (_a = pipelines_1.return)) _a.call(pipelines_1);
|
|
1350
|
+
}
|
|
1351
|
+
finally { if (e_1) throw e_1.error; }
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
/**
|
|
1355
|
+
* Gets all pipelines in the collection
|
|
1356
|
+
*/
|
|
1357
|
+
SimplePipelineCollection.prototype.listPipelines = function () {
|
|
1358
|
+
return Array.from(this.collection.keys());
|
|
1359
|
+
};
|
|
1360
|
+
/**
|
|
1361
|
+
* Gets pipeline by its URL
|
|
1362
|
+
*
|
|
1363
|
+
* Note: This is not a direct fetching from the URL, but a lookup in the collection
|
|
1364
|
+
*/
|
|
1365
|
+
SimplePipelineCollection.prototype.getPipelineByUrl = function (url) {
|
|
1366
|
+
var _this = this;
|
|
1367
|
+
var pipeline = this.collection.get(url);
|
|
1368
|
+
if (!pipeline) {
|
|
1369
|
+
if (this.listPipelines().length === 0) {
|
|
1370
|
+
throw new NotFoundError(spaceTrim$1("\n Pipeline with url \"".concat(url, "\" not found\n\n No pipelines available\n ")));
|
|
1371
|
+
}
|
|
1372
|
+
throw new NotFoundError(spaceTrim$1(function (block) { return "\n Pipeline with url \"".concat(url, "\" not found\n\n Available pipelines:\n ").concat(block(_this.listPipelines()
|
|
1373
|
+
.map(function (pipelineUrl) { return "- ".concat(pipelineUrl); })
|
|
1374
|
+
.join('\n')), "\n\n "); }));
|
|
1375
|
+
}
|
|
1376
|
+
return pipeline;
|
|
1377
|
+
};
|
|
1378
|
+
/**
|
|
1379
|
+
* Checks whether given prompt was defined in any pipeline in the collection
|
|
1380
|
+
*/
|
|
1381
|
+
SimplePipelineCollection.prototype.isResponsibleForPrompt = function (prompt) {
|
|
1382
|
+
return true;
|
|
1383
|
+
};
|
|
1384
|
+
return SimplePipelineCollection;
|
|
1385
|
+
}());
|
|
1386
|
+
|
|
1387
|
+
/**
|
|
1388
|
+
* Creates PipelineCollection from array of PipelineJson or PipelineString
|
|
1389
|
+
*
|
|
1390
|
+
* Note: Functions `collectionToJson` and `createCollectionFromJson` are complementary
|
|
1391
|
+
* Note: Syntax, parsing, and logic consistency checks are performed on all sources during build
|
|
1392
|
+
*
|
|
1393
|
+
* @param promptbookSources
|
|
1394
|
+
* @returns PipelineCollection
|
|
1395
|
+
* @public exported from `@promptbook/core`
|
|
1396
|
+
*/
|
|
1397
|
+
function createCollectionFromJson() {
|
|
1398
|
+
var promptbooks = [];
|
|
1399
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
1400
|
+
promptbooks[_i] = arguments[_i];
|
|
1401
|
+
}
|
|
1402
|
+
return new (SimplePipelineCollection.bind.apply(SimplePipelineCollection, __spreadArray([void 0], __read(promptbooks), false)))();
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
// ⚠️ WARNING: This code has been generated by `@promptbook/cli` so that any manual changes will be overwritten
|
|
1406
|
+
/**
|
|
1407
|
+
* Pipeline collection for Untitled Promptbook project
|
|
1408
|
+
*
|
|
1409
|
+
* ⚠️ WARNING: This code has been generated by `@promptbook/cli` so that any manual changes will be overwritten
|
|
1410
|
+
*
|
|
1411
|
+
* @private internal cache for `getTemplatesPipelineCollection`
|
|
1412
|
+
* @generated
|
|
1413
|
+
*/
|
|
1414
|
+
var pipelineCollection = null;
|
|
1415
|
+
/**
|
|
1416
|
+
* Get pipeline collection for Untitled Promptbook project
|
|
1417
|
+
*
|
|
1418
|
+
* ⚠️ WARNING: This code has been generated by `@promptbook/cli` so that any manual changes will be overwritten
|
|
1419
|
+
*
|
|
1420
|
+
* @generated
|
|
1421
|
+
* @returns {PipelineCollection} Library of promptbooks for Untitled Promptbook project
|
|
1422
|
+
*/
|
|
1423
|
+
function getTemplatesPipelineCollection() {
|
|
1424
|
+
if (pipelineCollection === null) {
|
|
1425
|
+
// TODO: !!!!!! Use book string literal notation
|
|
1426
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
1427
|
+
pipelineCollection = createCollectionFromJson({
|
|
1428
|
+
"title": "💬 Chatbot",
|
|
1429
|
+
"pipelineUrl": "https://github.com/webgptorg/book/blob/main/books/templates/chatbot.book.md",
|
|
1430
|
+
"formfactorName": "CHATBOT",
|
|
1431
|
+
"parameters": [
|
|
1432
|
+
{
|
|
1433
|
+
"name": "previousTitle",
|
|
1434
|
+
"description": "Previous title of the conversation",
|
|
1435
|
+
"isInput": true,
|
|
1436
|
+
"isOutput": false
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"name": "previousConversationSummary",
|
|
1440
|
+
"description": "Previous conversation summary",
|
|
1441
|
+
"isInput": true,
|
|
1442
|
+
"isOutput": false
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"name": "userMessage",
|
|
1446
|
+
"description": "User message",
|
|
1447
|
+
"isInput": true,
|
|
1448
|
+
"isOutput": false
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"name": "title",
|
|
1452
|
+
"description": "Title of the conversation",
|
|
1453
|
+
"isInput": false,
|
|
1454
|
+
"isOutput": true
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"name": "conversationSummary",
|
|
1458
|
+
"description": "Summary of the conversation",
|
|
1459
|
+
"isInput": false,
|
|
1460
|
+
"isOutput": true
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"name": "chatbotResponse",
|
|
1464
|
+
"description": "Chatbot response",
|
|
1465
|
+
"isInput": false,
|
|
1466
|
+
"isOutput": true,
|
|
1467
|
+
"exampleValues": [
|
|
1468
|
+
"Hello, I am a Pavol`s virtual avatar. How can I help you?"
|
|
1469
|
+
]
|
|
1470
|
+
}
|
|
1471
|
+
],
|
|
1472
|
+
"tasks": [
|
|
1473
|
+
{
|
|
1474
|
+
"taskType": "PROMPT_TASK",
|
|
1475
|
+
"name": "create-an-answer",
|
|
1476
|
+
"title": "Create an answer",
|
|
1477
|
+
"content": "Write a response to the user message:\n\n**Question from user**\n\n> {userMessage}\n\n**Previous conversation**\n\n> {previousConversationSummary}",
|
|
1478
|
+
"resultingParameterName": "chatbotResponse",
|
|
1479
|
+
"personaName": "Paul",
|
|
1480
|
+
"dependentParameterNames": [
|
|
1481
|
+
"userMessage",
|
|
1482
|
+
"previousConversationSummary",
|
|
1483
|
+
"knowledge"
|
|
1484
|
+
],
|
|
1485
|
+
"preparedContent": "{content}\n\n## Knowledge\n\n{knowledge}"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"taskType": "PROMPT_TASK",
|
|
1489
|
+
"name": "summarize-the-conversation",
|
|
1490
|
+
"title": "Summarize the conversation",
|
|
1491
|
+
"content": "Summarize the conversation in a few words:\n\n## Rules\n\n- Summarise the text of the conversation in a few words\n- Convert the text to its basic idea\n- Imagine you are writing the headline or subject line of an email\n- Respond with a few words of summary only\n\n## Conversation\n\n**User:**\n\n> {userMessage}\n\n**You:**\n\n> {chatbotResponse}",
|
|
1492
|
+
"resultingParameterName": "conversationSummary",
|
|
1493
|
+
"personaName": "Paul",
|
|
1494
|
+
"expectations": {
|
|
1495
|
+
"words": {
|
|
1496
|
+
"min": 1,
|
|
1497
|
+
"max": 10
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
"dependentParameterNames": [
|
|
1501
|
+
"userMessage",
|
|
1502
|
+
"chatbotResponse",
|
|
1503
|
+
"knowledge"
|
|
1504
|
+
],
|
|
1505
|
+
"preparedContent": "{content}\n\n## Knowledge\n\n{knowledge}"
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"taskType": "SIMPLE_TASK",
|
|
1509
|
+
"name": "title",
|
|
1510
|
+
"title": "Title",
|
|
1511
|
+
"content": "{conversationSummary}",
|
|
1512
|
+
"resultingParameterName": "title",
|
|
1513
|
+
"dependentParameterNames": [
|
|
1514
|
+
"conversationSummary",
|
|
1515
|
+
"knowledge"
|
|
1516
|
+
],
|
|
1517
|
+
"preparedContent": "{content}\n\n## Knowledge\n\n{knowledge}"
|
|
1518
|
+
}
|
|
1519
|
+
],
|
|
1520
|
+
"personas": [
|
|
1521
|
+
{
|
|
1522
|
+
"name": "Paul",
|
|
1523
|
+
"description": "a developer of the Promptbook Project",
|
|
1524
|
+
"modelRequirements": {
|
|
1525
|
+
"modelVariant": "CHAT",
|
|
1526
|
+
"modelName": "gpt-4-turbo-2024-04-09",
|
|
1527
|
+
"systemMessage": "You are an experienced AI engineer and a developer of the Promptbook Project. Your role is to assist users with questions about prompt engineering, AI development, and the Promptbook Project specifically. You have in-depth knowledge of various AI models, prompt design techniques, and best practices in AI development. Offer clear, concise, and technically accurate information while maintaining a helpful and collaborative tone.",
|
|
1528
|
+
"temperature": 0.7
|
|
1529
|
+
},
|
|
1530
|
+
"preparationIds": [
|
|
1531
|
+
1
|
|
1532
|
+
]
|
|
1533
|
+
}
|
|
1534
|
+
],
|
|
1535
|
+
"preparations": [
|
|
1536
|
+
{
|
|
1537
|
+
"id": 1,
|
|
1538
|
+
"promptbookVersion": "0.81.0-10",
|
|
1539
|
+
"usage": {
|
|
1540
|
+
"price": {
|
|
1541
|
+
"value": 0.005805
|
|
1542
|
+
},
|
|
1543
|
+
"input": {
|
|
1544
|
+
"tokensCount": {
|
|
1545
|
+
"value": 1170
|
|
1546
|
+
},
|
|
1547
|
+
"charactersCount": {
|
|
1548
|
+
"value": 3241
|
|
1549
|
+
},
|
|
1550
|
+
"wordsCount": {
|
|
1551
|
+
"value": 579
|
|
1552
|
+
},
|
|
1553
|
+
"sentencesCount": {
|
|
1554
|
+
"value": 53
|
|
1555
|
+
},
|
|
1556
|
+
"linesCount": {
|
|
1557
|
+
"value": 71
|
|
1558
|
+
},
|
|
1559
|
+
"paragraphsCount": {
|
|
1560
|
+
"value": 20
|
|
1561
|
+
},
|
|
1562
|
+
"pagesCount": {
|
|
1563
|
+
"value": 2
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
"output": {
|
|
1567
|
+
"tokensCount": {
|
|
1568
|
+
"value": 153
|
|
1569
|
+
},
|
|
1570
|
+
"charactersCount": {
|
|
1571
|
+
"value": 640
|
|
1572
|
+
},
|
|
1573
|
+
"wordsCount": {
|
|
1574
|
+
"value": 95
|
|
1575
|
+
},
|
|
1576
|
+
"sentencesCount": {
|
|
1577
|
+
"value": 6
|
|
1578
|
+
},
|
|
1579
|
+
"linesCount": {
|
|
1580
|
+
"value": 16
|
|
1581
|
+
},
|
|
1582
|
+
"paragraphsCount": {
|
|
1583
|
+
"value": 2
|
|
1584
|
+
},
|
|
1585
|
+
"pagesCount": {
|
|
1586
|
+
"value": 1
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
}
|
|
1590
|
+
}
|
|
1591
|
+
],
|
|
1592
|
+
"knowledgeSources": [
|
|
1593
|
+
{
|
|
1594
|
+
"name": "source-the-book-abstract-528a374cfbc169af09d3",
|
|
1595
|
+
"sourceContent": "🤍 The Book Abstract\n\nIt's time for a paradigm shift! The future of software is in plain English, French or Latin.\n\nDuring the computer revolution, we have seen multiple generations of computer languages, from the physical rewiring of the vacuum tubes through low-level machine code to the high-level languages like Python or JavaScript. And now, we're on the edge of the next revolution!\n\nIt's a revolution of writing software in plain human language that is understandable and executable by both humans and machines – and it's going to change everything!\n\nThe incredible growth in power of microprocessors and the Moore's Law have been the driving force behind the ever-more powerful languages, and it's been an amazing journey! Similarly, the large language models (like GPT or Claude) are the next big thing in language technology, and they're set to transform the way we interact with computers.\n\nThis shift is going to happen, whether we are ready for it or not. Our mission is to make it excellently, not just good.\n\nJoin us in this journey!",
|
|
1596
|
+
"preparationIds": [
|
|
1597
|
+
1
|
|
1598
|
+
]
|
|
1599
|
+
}
|
|
1600
|
+
],
|
|
1601
|
+
"knowledgePieces": [
|
|
1602
|
+
{
|
|
1603
|
+
"name": "the-future-of-programming-languages",
|
|
1604
|
+
"title": "The Future of Programming Languages",
|
|
1605
|
+
"content": "---\n\nThe future of software development is shifting towards using plain human languages like English, French, or Latin, which will be both understandable and executable by humans and machines. This represents a significant paradigm shift in the field of programming.",
|
|
1606
|
+
"keywords": [
|
|
1607
|
+
"The Future of Programming Languages"
|
|
1608
|
+
],
|
|
1609
|
+
"index": [
|
|
1610
|
+
{
|
|
1611
|
+
"modelName": "text-embedding-3-large",
|
|
1612
|
+
"position": [
|
|
1613
|
+
-0.046162672, 0.019779595, -0.019517306, 0.021692755, -0.035732873, 0.025102496, 0.025225926, 0.027077371, -0.039374046, 0.002665308, 0.025056211, 0.0035563156, 0.00897179, 0.006711485, -0.013839545, 0.043940943, -0.006275624, 0.0006022015, -0.012034387, -0.01973331, -0.017496148, 0.0018842302, -0.043539796, -0.00028808278, 0.028527668, 0.014834696, 0.014117261, 0.002586236, -0.020011026, -0.0013249398, -0.0014994768, -0.017249288, -0.026352221, 0.0045900387, 0.028573954, -0.024547063, -0.008640072, 0.003216884, -0.011394096, 0.023698485, 0.021322465, -0.0041117487, 0.00091222196, 0.009874369, 0.0044126087, 0.018406441, -0.009419222, -0.020612745, -0.026599081, -0.050174136, -0.0017694791, 0.021816183, 0.0112706665, 0.007857066, -0.0011359381, -0.023497911, 0.007124203, -0.06319596, 0.02494821, -0.0044126087, -0.016323566, 0.0115098115, -0.018607013, -0.019563593, -0.006379768, -0.009997798, -0.008370071, -0.009164648, 0.0019903025, 0.038232323, 0.0043431795, -0.008300642, 0.02019617, 0.04360151, 0.018344726, 0.005893764, 0.0048060403, -0.030116824, -0.03422086, -0.01734186, 0.0025573072, -0.008586072, -0.0031493837, -0.03789289, 0.03576373, -0.011054665, 0.0408552, -0.057178766, 0.007016202, -0.006491626, -0.03610316, 0.027478516, -0.0057934774, -0.02210933, -0.00695063, 0.019100731, -0.01711043, -0.0012747964, 0.003961319, 0.042737503, -0.012258103, -0.0032863133, -0.0023953058, -0.045360383, 0.0047674687, -0.037152313, 0.010383516, 0.036689453, -0.02828081, 0.092387065, -0.027540231, 0.0022005185, 0.012666964, 0.0011426882, -0.009511794, 0.0047443258, -0.025040783, -0.059369642, 0.031057976, 0.052550156, 0.006680628, -0.020165313, 0.009226363, -0.034128286, -0.028327096, 0.009095219, 0.011502096, -0.022371616, 0.014649551, 0.029623106, -0.03659688, 0.041996926, 0.026830511, 0.035671156, 0.05347588, 0.018159581, -0.002661451, -0.006429911, -0.004304608, 0.030209398, -0.017743006, -0.011471239, -0.010236943, -0.039867762, 0.008624644, 0.008809788, 0.024423635, 0.025411071, -0.011378667, -0.039034612, -0.016107565, -0.039651763, 0.0019652308, -0.0053576166, 0.027910521, -0.00034907437, 0.017557861, 0.034776293, -0.014472121, 0.03527001, -0.02363677, 0.007185918, -0.018622443, 0.0064376257, 0.00492947, -0.011802956, 0.035362583, 0.024778495, -0.045792386, 0.034128286, -0.011070093, -0.023960773, 0.017804721, -0.041163776, -0.002871667, 0.011394096, 0.0089486465, 0.03218427, 0.013584971, -0.014587837, -0.0069699157, -0.0038841756, 0.0018524084, 0.010182943, 0.04076263, -0.00038282466, 0.058629066, 0.025472786, 0.031073404, -0.03776946, 0.015652418, -0.011841528, -0.012628392, -0.025241354, 0.012620677, -0.024176775, 0.004393323, 0.020134455, -0.03388143, 0.0055389036, -0.025981933, -0.06436854, -0.009195506, 0.017727578, 0.014186691, 0.010861806, 0.003508101, 0.021368751, 0.030317398, -0.015282129, 0.045483813, 0.023775628, -0.047828972, -0.0011301524, -0.022541333, -0.032122556, -0.011255237, -0.037923746, -0.016940715, -0.032863133, 0.019193305, -0.035239153, 0.007930352, -0.03838661, -0.00079698884, -0.01569099, -0.014086404, -0.002754023, 0.03326428, 0.013129825, 0.006402911, 0.057919346, 0.0044280374, 0.018437298, 0.004651753, -0.016061278, 0.02554993, -0.03659688, -0.0441878, 0.014448979, 0.0034463862, 0.012998681, -0.009866655, -0.027740804, -0.011640955, 0.0081154965, 0.008092354, 0.010761519, 0.012065244, -0.0012227246, -0.006777057, -0.024917353, -0.019548165, 0.019285876, -0.071959466, 0.038294036, 0.018267583, 0.0137084015, 0.015428701, 0.0067384853, -0.025380213, 0.03304828, 0.0008157926, 0.035455156, -0.0071164886, -0.03184484, 0.008246641, -0.010275515, 0.013569543, -0.034838006, 0.020998463, -0.025210498, 0.009226363, 0.005415474, 0.018375583, -0.016801856, -0.00039487833, 0.020844175, 0.051840436, -0.0011889742, -0.021708183, 0.007193632, 0.04906327, 0.02530307, 0.035331726, -0.021353323, -0.020242456, -0.0084163565, -0.013623543, -0.02244876, 0.0009474187, -0.0048561837, -0.011023807, 0.013438399, 0.023482483, -0.0052033295, 0.010422087, -0.013577257, -0.026799655, -0.011540668, 0.016987, -0.041657493, 0.022834478, -0.013986117, 0.017866436, 0.0082929265, 0.03743003, 0.030641401, -0.0039169616, 0.0062794816, 0.03088826, -0.036411736, -0.011201237, 0.021908756, 0.01574499, 0.062208522, 0.0013172254, -0.027355088, -0.011455811, 0.0033364566, -0.012659249, -0.020103598, -0.08633901, 0.00016597907, 0.059338786, 0.02305048, -0.00091559696, 0.004836898, 0.03422086, -0.026660796, -0.041873496, -0.049464416, 0.005658476, 0.0005843621, 0.023359053, -0.06449197, -0.012219531, 0.008879217, 0.034066573, -0.035146583, 0.02838881, 0.0015563703, 0.03693631, -0.020859605, 0.012242675, -0.020381315, -0.012882966, -0.0070470595, 0.012558963, 0.04005291, 0.0010366158, 0.007039345, 0.066713706, -0.022356188, 0.02210933, -0.01218096, 0.029638534, -0.006495483, -0.0050104707, 0.032122556, 0.0060171937, -0.009990084, 0.053321593, -0.004239036, 0.007764494, -0.050544426, -0.0040346053, -0.025457356, 0.023451626, -0.020026455, 0.012018958, 0.029422533, 0.007274633, -0.01301411, -0.020859605, 0.006032622, -0.017743006, 0.016477853, 0.02494821, 0.022711048, 0.016092135, 0.061282802, -0.015729561, 0.015451844, -0.0016219423, -0.0220939, 0.008485786, -0.030039681, 0.024732208, 0.0104375165, -0.0057819057, 0.015243556, -0.061498802, -0.00808464, 0.0009536866, 0.023590485, -0.003708674, -0.031073404, -0.021399608, -0.004181178, -0.03113512, -0.011941815, 0.044033512, 0.014973555, 0.0075986353, -0.0125203915, -0.004061606, -0.029854536, 0.011910957, -0.018483585, -0.05180958, -0.041657493, -0.015150985, 0.0013779759, -0.0068117715, -0.0116872415, -0.014009261, 0.036164876, -0.017249288, -0.0051994724, 0.037831176, -0.0006229338, -0.03647345, 0.012157816, -0.0058783353, 0.011355524, 0.01794358, 0.028975101, -0.011355524, -0.04289179, 0.015243556, 0.015274414, 0.026167078, -0.019702451, 0.0013230111, -0.04656382, -0.0006123266, 0.028527668, -0.002320091, 0.04634782, -0.02744766, -0.007085631, 0.028219094, 0.0044164658, -0.058721635, 0.013615829, -0.008701787, -0.00037655674, 0.009203221, -0.04122549, 0.0071473457, 0.013932117, -0.025333928, -0.0015255128, 0.025873931, -0.03338771, -0.030857403, -0.0027328087, 0.026120791, -0.039620906, 0.01900816, 0.047921546, 0.03705974, 0.0026035933, 0.035979733, -0.02411506, -0.010892663, -0.014310121, -0.0040114624, 0.012088387, -0.014518408, 0.00012101888, 0.010946663, -0.004709611, -0.015050698, 0.019455593, 0.011517526, -0.02804938, 0.010152086, 0.012319818, 0.011671812, -0.015606131, 0.02436192, -0.059091926, -0.010977521, 0.013654401, 0.044342086, -0.009118362, 0.04242893, 0.015228128, -0.0053383308, -0.0019343734, 0.010560946, 0.01675557, 0.01223496, -0.02055103, -0.033171706, 0.0098435115, 0.0091877915, 0.037923746, -0.05168615, 0.009835797, 0.01960988, 0.038818613, -0.040238053, 0.043416366, -0.029561391, 0.022279045, 0.011918671, -0.008817502, 0.0026363793, -0.043879226, -0.004732754, -0.005924621, 0.00067500566, 0.013430685, 0.0028003093, 0.0026807368, -0.019316735, 0.028604813, 0.02507164, -0.0016875142, 0.032245986, 0.0023413054, 0.00021371162, 0.01877673, 0.044249516, -0.0026074506, 0.024793923, -0.010244657, -0.028188238, 0.02008817, -0.04810669, 0.014819267, -0.023420768, -0.004644039, 0.024670493, 0.004578467, -0.01003637, 0.014009261, -0.013176111, 0.039404903, 0.0088329315, 0.035455156, 0.017789293, 0.012427819, 0.013484685, -0.03718317, 0.0008707573, -0.005697048, -0.04276836, 0.036504306, 0.016014991, 0.0094886515, -0.009712367, -0.007062488, 0.0052920445, -0.022371616, -0.023482483, -0.011417239, 0.025272213, 0.015714131, 0.0067886286, 0.017959008, 0.00927265, -0.0010443302, 0.057425626, 0.0091260765, -0.03385057, -0.0016209779, 0.016940715, -0.019069875, 0.002370234, -0.0032419558, 0.00594005, 0.04384837, -0.003839818, -0.020304171, 0.01508927, -0.007637207, -0.022649333, 0.0019064089, -0.04406437, 0.0036083874, 0.00031411872, 0.040207196, -0.011016092, 0.007189775, -0.001634478, -0.03338771, -0.020458458, 0.009750939, 0.0010067228, -0.030379113, 0.042027783, 0.0152667, 0.0010751876, 0.004555324, 0.025765931, -0.002241019, -0.0045013237, 0.054987893, 0.05656162, 0.0022699477, -0.0122812465, 0.0099052265, 0.007043202, 0.0023065908, 0.016323566, 0.0046054674, -0.015127841, -0.018159581, -0.012759536, 0.001332654, -0.011039236, -0.028141951, 0.01289068, -0.004582324, 0.001611335, 0.023806486, -0.012034387, -0.007675779, 0.0053344737, -0.02102932, 0.0091260765, 0.012443247, 0.0058821924, -0.01852987, 0.010290944, 0.008246641, -0.010221515, -0.024346491, -0.041379776, -0.0018090152, 0.0048330408, 0.007976638, -0.014541551, 0.039528333, -0.005500332, -0.014155833, -0.026876798, 0.0041696066, 0.0023856629, 0.02090589, 0.0011764384, -0.0077413507, 0.0010964021, 0.031412836, 0.05288959, -0.0011667955, 0.030811116, -0.033233423, 0.026460223, 0.042151213, 0.013183826, 0.018144153, 0.012628392, -0.0456381, -0.01746529, -0.012011244, -0.0091877915, 0.0051069, -0.0052110436, 0.0044511803, 0.0067384853, -0.025627073, 0.006858058, -0.006757771, -0.012852108, 0.05143929, -0.009750939, -0.014842411, -0.00046189674, 0.006202338, -0.019455593, -0.0017550148, -0.0035003866, 0.01461098, 0.006364339, 0.04705754, 0.0030201683, 0.010352658, 0.029731108, -0.007864781, -0.022988765, -0.009990084, -0.036164876, -0.005851335, -0.020227028, -0.021877898, -0.031690553, 0.017989866, 0.003035597, 0.023775628, 0.025087068, -0.006364339, 0.016678426, -0.023868201, 0.018205868, -0.0061483374, 0.02673794, -0.003961319, -0.015467273, -0.01574499, 0.009789511, 0.018483585, 0.0049178987, -0.010560946, -0.020828746, -0.0042621787, 0.0089486465, 0.01735729, -0.00950408, 0.016940715, -0.0021310893, 0.017002428, 0.016601283, 0.0014319763, -0.044990093, 0.005658476, -0.007629493, -0.013716116, -0.019748738, 0.01592242, -0.012844394, -0.03280142, 0.01758872, 0.0019652308, 0.029808251, -0.0015245485, 0.038787756, -0.0049410416, 0.01170267, 0.0016402638, -0.00914922, -0.03826318, -0.024670493, -0.010360373, -0.009511794, 0.0028928814, 0.0069814874, 0.008200355, 0.021708183, -0.025627073, -0.020890461, -0.018977303, -0.020983033, 0.0035582443, -0.0062409095, 0.016446995, 0.0022468045, -0.025210498, 0.01806701, -0.052951302, 0.00096959743, 0.022001328, 0.010784662, -0.026923083, -0.007945782, -0.004304608, 0.020535601, 0.0270928, 0.0016055492, 0.012188674, 0.013168396, -0.015582988, -0.032863133, -0.019039018, 0.0007130953, 0.003301742, 0.014657266, -0.020967605, 0.030919118, -0.0010385445, 0.0013124039, -0.0071164886, -0.031628836, -0.029407104, 0.008539787, 0.0057279053, -0.03672031, -0.006869629, -0.02684594, 0.03148998, -0.008562929, -0.019625308, 0.027493946, -0.0046247533, 0.0370906, 0.015845276, 0.008640072, -0.0006913987, 0.024778495, 0.027617374, 0.019378448, -0.035362583, 0.027555661, -0.007629493, -0.026460223, -0.032616273, 0.050760426, 0.03007054, -0.023729343, -0.034498576, 0.010977521, -0.027293373, 0.015004412, -0.015220414, 0.009349793, 0.044156943, -0.0026537366, -0.003419386, -0.0042081783, 0.02257219, 0.02411506, -0.0005983443, 0.018329296, 0.034868866, 0.0036026018, 0.03125855, -0.007367205, -0.022618476, 0.029916251, 0.013446113, -0.023559626, 0.02436192, 0.016061278, 0.02340534, 0.008956361, 0.011841528, -0.0041271774, 0.019193305, -0.008809788, -0.0046093245, 0.013199254, 0.029437961, 0.010668947, -0.008802074, -0.0010906163, -0.0037858177, -0.035825443, -0.014240691, 0.022772763, 0.007922638, -0.0018880874, 0.0048060403, -0.026876798, 0.005832049, -0.034313433, -0.020844175, 0.006973773, -0.016801856, 0.021353323, 0.040546626, -0.019023588, 0.0009242756, -0.0074019195, -0.024932781, 0.016493281, -0.015644703, 0.006225481, 0.0019401591, 0.030965403, -0.013484685, -0.009619795, -0.037399173, 0.008755788, -0.025611645, 0.012211817, -0.027061941, -0.002786809, 0.022664763, -0.0042698933, 0.024145918, 0.025704216, -0.015937848, -0.027046513, 0.0085937865, 0.039898623, -0.00038354786, 0.00727849, -0.0032785991, -0.0389729, 0.014572408, 0.0038783897, 0.029916251, -0.012867536, -0.008724931, 0.0030259541, 0.00071164884, 0.0017839436, 0.029021388, -0.011856957, 0.0032535275, 0.03255456, 0.0014599408, 0.011239809, 0.006202338, 0.006495483, 0.018792158, 0.0006619877, -0.044774093, -0.0020404458, 0.0054039024, -0.012720964, -0.016570425, -0.0009242756, 0.014387264, 0.028728241, 0.0034965293, -0.038078036, -0.01888473, 0.020767031, -0.037831176, 0.011733527, -0.040608343, -0.023544198, 0.009372936, -0.0116255265, 0.012265817, 0.052303296, 0.022402475, 0.016925285, -0.018715015, -0.020705316, 0.032863133, -0.017527005, -0.007637207, 0.03233856, -0.010684376, 0.019069875, 0.012558963, 0.03718317, -0.00065186265, 0.034066573, 0.00073334546, 0.022032185, 0.002848524, -0.029191103, -0.024793923, -0.05097643, -0.010599518, 0.009712367, -0.016894428, -0.008755788, -0.011787528, 0.009164648, -0.0002366136, 0.029854536, 0.042799216, 0.003915033, 0.013978403, 0.0042120353, -0.0103218015, 0.011262952, 0.027061941, -0.0106149465, 0.01437955, -0.018992731, 0.027509375, 0.017928151, 0.05051357, -0.026629938, -0.005832049, 0.044835806, -0.03338771, -0.012389247, -0.019501878, 0.00039439616, -0.0045206095, -0.0030220968, -0.01852987, -0.004138749, 0.019856738, 0.014394978, -0.00980494, -0.016848141, -0.008987218, 0.0046286103, -0.014178976, 0.010753805, -0.049587846, -0.009234077, 0.027725376, 0.017851008, -0.019393878, 0.0041001774, 0.028465955, 0.0007521492, 0.023868201, 0.023158481, 0.036689453, 0.022865335, -0.012666964, -0.015220414, -0.02257219, -0.0013085468, 0.013962975, -0.020165313, -0.00884836, -0.0013162611, -0.008663216, -0.010067227, 0.0095426515, 0.037460886, 0.033480283, 0.009041219, 0.0425215, -0.0491867, -0.0026305935, 0.019023588, 0.008717217, 0.008663216, -0.014371836, -0.016894428, -0.019933881, -0.020828746, -0.01973331, 0.0055427607, 0.017017858, -0.0016065135, -0.007043202, -0.018838445, -0.012597535, 0.014541551, 0.017835578, -0.009974656, 0.0287591, 0.030579686, 0.0034213145, -0.013932117, 0.0014223334, -0.012574391, 0.0090103615, -0.0059747645, 0.01081552, 0.009974656, -0.028188238, 0.009828082, 0.022140186, -0.010105799, 0.0065031974, 0.0056237616, 0.03280142, -0.004050034, -0.023158481, -0.0024319491, 0.02092132, 0.010707519, 0.00778378, 0.016971571, 0.008894647, 0.02138418, -0.033480283, -0.016076706, -0.026244221, -0.0022140187, 0.022757335, 0.007540778, 0.04005291, -0.0065494836, -0.03147455, 0.017048715, -0.011540668, 0.009334364, 0.0073363474, -0.01616928, 0.028743671, 0.010267801, 0.0025900933, 0.01973331, 0.000882811, 0.0119263865, 0.0066767703, 0.0030105254, 0.014865554, -0.011100951, 0.013098967, -0.0015341914, -0.0051223286, -0.005191758, -0.005322902, 0.004046177, 0.013176111, -0.028373381, -0.026213363, -0.0027019512, 0.00044815557, 0.018730443, -0.0072707753, -0.025935646, 0.023019623, 0.0070663453, 0.0049834703, -0.018668728, -0.02946882, 0.010005513, 0.063813105, 0.012636106, -0.012211817, -0.012227246, -0.013098967, -0.004798326, 0.016801856, -0.004050034, 0.017681291, -0.003390457, -0.0046903254, 0.010391231, -0.003606459, 0.0038610324, -0.0220939, 0.0023258766, -0.006507055, -0.029252818, 0.012450962, -0.021723611, -0.018205868, 0.005419331, 0.025179641, 0.021106463, -0.0053151874, 0.007610207, -0.0057279053, -0.029376248, 0.0033287422, 0.005893764, 0.007860923, -0.0031127406, -0.0019980168, -0.012628392, -0.0075523495, 0.016601283, -0.023420768, 0.016909856, 0.013824116, -0.030363685, 0.0091260765, -0.024577921, -0.032461986, -0.0030047395, -0.000057465884, -0.0043624653, -0.0003534137, 0.0039073187, -0.0011687241, 0.0045283237, -0.009882083, 0.011216666, -0.0030143824, 0.023158481, -0.0010896521, 0.0044511803, -0.0064607686, 0.0044473233, -0.0102138, 0.014742124, -0.003255456, 0.0007772208, 0.021415038, -0.0591845, -0.026568223, 0.012435533, 0.00609048, -0.031042546, -0.0135464, -0.003409743, 0.0015438345, -0.00045394132, 0.014479836, 0.0052264724, 0.014749838, -0.041163776, -0.0185453, -0.012720964, -0.026398508, 0.007216775, 0.015606131, 0.01996474, -0.006680628, 0.01003637, -0.008362356, 0.0013789402, -0.005261187, -0.017989866, -0.009820368, -0.016385281, 0.0016884785, -0.0016807641, 0.031057976, 0.00088859675, -0.019378448, 0.054093026, 0.02744766, 0.009095219, 0.014402692, 0.00017610416, -0.017959008, 0.0044280374, 0.0019391949, -0.037862033, 0.014603266, 0.0094886515, 0.016338995, -0.023497911, -0.010530089, 0.010599518, 0.026876798, 0.013762401, 0.012651535, 0.010229229, 0.0011436525, -0.013893546, 0.025102496, 0.022680191, 0.0017280146, -0.02328191, -0.0017771935, 0.015999563, 0.0056661908, 0.0093652215, -0.018267583, -0.0025187354, 0.008763502, 0.0059477645, 0.000013394644, -0.0030857401, -0.012844394, 0.016678426, -0.012443247, -0.01735729, -0.00271738, -0.0085937865, 0.016477853, -0.023235625, -0.023266481, 0.000968151, 0.01223496, 0.01081552, 0.017326431, 0.018283011, -0.014587837, 0.034529433, -0.024809351, 0.042984363, -0.0027559518, 0.00390539, -0.0108540915, 0.00945008, 0.018144153, -0.015235842, 0.027185371, 0.0047828974, 0.018252153, -0.022772763, 0.0036103162, -0.005901478, 0.0050799, 0.027416803, -0.0044318945, -0.013507828, -0.017388146, 0.008994933, 0.0074019195, -0.00044743234, 0.018761301, 0.018761301, 0.011810671, 0.006402911, -0.012265817, -0.009573509, 0.028897958, 0.014140405, 0.00029001138, -0.011131808, 0.006318053, 0.016092135, 0.00065620197, -0.018205868, -0.012435533, 0.005508046, 0.014711266, 0.00017538093, -0.014448979, -0.00008383329, -0.023158481, 0.015968706, -0.014834696, 0.01948645, 0.008200355, -0.012990966, 0.015968706, 0.024145918, -0.0069930586, -0.008732645, 0.007868637, -0.0050066137, -0.017573291, 0.0011802956, -0.026784224, -0.0020230885, -0.01390126, -0.007872495, -0.016709283, 0.0014261906, -0.0045360383, -0.039404903, -0.0027733091, -0.024577921, -0.01842187, 0.005592904, 0.00796121, 0.008809788, -0.0072283465, -0.010715233, 0.0031474552, 0.031057976, 0.010884949, 0.003380814, -0.02363677, 0.019594451, -0.0020288741, -0.02352877, 0.022757335, -0.0018919444, 0.008516643, 0.0089486465, -0.015150985, 0.020057311, 0.01615385, -0.0022506618, 0.008308356, -0.0035987445, -0.011872386, -0.014217548, 0.031104261, 0.0016518353, 0.02530307, 0.007768351, 0.00001559444, 0.007413491, 0.0008100068, -0.00015103252, 0.034004856, 0.01616928, 0.0072052036, -0.01686357, -0.0031956697, 0.016246423, -0.008987218, -0.018267583, 0.0058667636, -0.0048523266, -0.0044974666, -0.000116257674, 0.0040808916, -0.005481046, 0.0056931907, 0.011633241, -0.0072322036, 0.018437298, -0.024145918, -0.016230993, -0.035208296, 0.012960109, -0.026321365, -0.034128286, 0.014518408, 0.00558519, -0.01455698, -0.018607013, 0.010391231, 0.014001546, -0.0031513122, 0.011471239, -0.022016756, 0.003268956, -0.009696939, 0.014757553, -0.023112195, -0.0125203915, -0.012427819, 0.0053383308, 0.0031937412, -0.02399163, -0.01235839, -0.014958126, -0.0021580895, -0.030718544, -0.037707746, -0.003770389, 0.010622661, 0.014348692, -0.005157043, 0.01342297, 0.041564923, -0.016446995, 0.0096660815, 0.0069429157, 0.01829844, -0.026568223, -0.019532736, -0.02150761, 0.02815738, 0.0126978215, -0.019872168, -0.018375583, -0.017989866, -0.008701787, -0.025210498, -0.009642938, -0.008863789, -0.003810889, -0.013515542, -0.00867093, -0.0151355555, -0.0023683056, 0.018761301, 0.030965403, 0.016138421, -0.015644703, 0.016416138, 0.005349902, 0.015428701, 0.00086882873, -0.025997361, -0.007675779, -0.022587618, -0.00692363, -0.022402475, 0.016338995, 0.022325331, 0.011417239, -0.027817948, 0.029021388, 0.01842187, -0.02127618, -0.010051799, 0.018684158, -0.016909856, 0.035856303, 0.0049834703, -0.016894428, 0.0062409095, 0.004655611, -0.018499013, -0.00033726176, -0.021307036, 0.011949529, -0.014171262, -0.013476971, -0.0045476095, 0.004636325, 0.010267801, -0.002622879, -0.019687023, 0.0008587036, -0.00017803274, -0.009635224, -0.015752705, 0.006202338, 0.0064646257, -0.0061483374, -0.02838881, 0.021137321, 0.017681291, -0.004578467, -0.008184926, -0.011833814, 0.010044085, 0.014549266, 0.021970471, -0.028342525, 0.009388365, -0.015428701, 0.0069930586, -0.015189556, -0.0052226153, 0.014286977, -0.0035563156, -0.004732754, -0.015636988, 0.017172145, -0.004570753, -0.036566023, -0.029376248, 0.00543476, 0.010414373, -0.010861806, -0.00236252, 0.01289068, 0.013515542, -0.034004856, 0.0012516534, -0.012898394, 0.006094337, 0.0029835252, -0.029129388, 0.005828192, -0.01627728, 0.0057780487, 0.023852773, -0.0039304616, -0.008763502, -0.04323122, -0.01711043, -0.007745208, 0.009527223, -0.005103043, -0.0006041301, -0.057549056, -0.023621341, -0.012304389, -0.010221515, -0.0081154965, -0.019393878, 0.0055581895, 0.003751103, -0.0029758108, -0.008346927, 0.011131808, -0.005654619, -0.0287591, 0.0011243667, 0.007039345, 0.018622443, -0.0005477189, -0.027586518, 0.015397844, -0.001943052, 0.008778931, 0.0024049487, -0.031212263, -0.0017540505, -0.013214682, -0.014163548, 0.012072959, -0.0023683056, -0.0050027566, -0.016940715, -0.0026074506, 0.016230993, 0.007895638, -0.010784662, 0.008030639, -0.0016373709, -0.002320091, 0.012026672, -0.0034116716, -0.0034483147, -0.0065494836, -0.008778931, -0.0030278827, -0.013260969, 0.00031845804, -0.0030317397, 0.004331608, -0.019378448, -0.015359272, -0.012258103, -0.0066111987, 0.016122993, -0.000495647, 0.007463634, -0.020335028, -0.010206086, 0.02565793, 0.03468372, -0.0064723403, 0.021492181, -0.010946663, 0.034498576, -0.012188674, -0.0031165977, -0.011764385, 0.026290506, 0.023081336, -0.023852773, 0.02578136, -0.012188674, 0.00320917, 0.005573618, 0.056006186, -0.0013779759, 0.017311003, 0.013808687, 0.01615385, -0.023821915, -0.00009661019, -0.022186473, -0.01425612, -0.0021175893, -0.0030664543, -0.011216666, 0.017635005, 0.01640071, 0.022618476, 0.023343625, -0.014904126, 0.009974656, 0.013785545, -0.0020443029, -0.013731544, -0.0006383625, 0.019933881, 0.0037723174, 0.0054000453, 0.016493281, -0.026799655, -0.0045360383, 0.006665199, 0.010746091, 0.0025843075, 0.00074443483, 0.003511958, 0.005068328, 0.0017424789, -0.0007805959, 0.01069209, 0.017064143, 0.006333482, -0.0012256175, 0.010136656, 0.0019729452, 0.016122993, -0.007440491, -0.0016817284, -0.007301633, 0.008431785, -0.00020527405, -0.011201237, -0.0100826565, -0.012489534, -0.0017810507, 0.0031918127, 0.007614064, -0.011810671, 0.00025915395, 0.0204276, -0.0044164658, 0.005342188, -0.0032940276, -0.0045398953, 0.022063043, 0.011586955, -0.0047211824, 0.0032207414, 0.014626409, -0.0063990536, -0.0110315215, -0.005253473, 0.01805158, -0.008377785, -0.017048715, 0.017851008, -0.005346045, 0.0048330408, 0.0019189448, -0.0036103162, 0.034066573, -0.014803839, 0.003268956, -0.010668947, -0.008030639, -0.008817502, -0.03138198, 0.02613622, 0.0076256357, 0.0010819377, -0.010753805, 0.007355633, 0.002993168, -0.010468374, -0.01556756, 0.008578358, -0.017095001, 0.016956143, -0.0026363793, 0.00052361155, -0.0050953287, 0.008516643, 0.00072514894, 0.0063720536, 0.023605913, 0.005481046, -0.0039401045, 0.0034116716, -0.0044280374, 0.011232095, -0.0101598, -0.00028856492, -0.016647568, -0.0074944915, -0.00186398, 0.034622006, -0.02186247, 0.008717217, -0.024577921, -0.0067924857, -0.010830948, 0.00884836, 0.011378667, -0.015181842, 0.0073209186, -0.008154068, -0.029144816, 0.023112195, -0.0051069, 0.014047832, -0.0027058085, -0.0005009507, -0.026599081, 0.0053344737, 0.0058629066, 0.00040813736, -0.0068812007, 0.027987665, -0.012983252, -0.014410407, -0.014479836, 0.012366104, 0.005654619, -0.009056647, 0.024331061, -0.005504189, 0.0059786215, 0.0013365112, 0.02446992, -0.0032188129, -0.019872168, 0.0104375165, -0.0056199045, 0.015706418, -0.0062331953, -0.007791494, -0.016909856, 0.00492947, -0.019779595, -0.021168178, 0.016971571, -0.02399163, 0.020998463, -0.013314969, -0.011394096, 0.0075986353, 0.01478841, -0.001407869, -0.0016875142, 0.026074504, -0.007174346, 0.012126959, 0.010931235, -0.0026807368, -0.0075600636, 0.0069043436, -0.03872604, 0.0033692427, -0.002829238, -0.015582988, -0.0049371845, 0.0006947737, -0.0045861816, -0.013947546, -0.010429802, -0.0059979074, 0.0007666136, -0.0027617374, -0.007860923, 0.0022641618, -0.0007020059, -0.019347591, -0.010128942, -0.0013307255, 0.032523703, -0.009581223, 0.015143271, -0.002323948, -0.015066126, 0.01794358, -0.015058412, -0.026521938, -0.010329516, 0.004466609, 0.008231212, -0.0049564703, 0.008632358, -0.01971788, -0.0028523812, -0.0016894428, -0.0034637435, -0.026953941, -0.0000032544917, -0.065973125, -0.018761301, 0.007124203, 0.032739703, 0.0025206641, 0.04335465, 0.0038263178, -0.015606131, -0.00078252447, 0.011540668, 0.0060519082, -0.015544416, 0.024701351, 0.010684376, 0.004998899, 0.021800755, -0.018344726, -0.0008939004, 0.010445231, 0.009465508, 0.0064106253, 0.013916689, 0.008940932, 0.012474105, -0.010483802, 0.00626791, 0.006607341, -0.016817285, 0.008840646, -0.0112089515, 0.00027916307, 0.0038610324, -0.0013384399, -0.020335028, 0.007590921, -0.016292708, 0.007787637, 0.0013075825, 0.009473222, -0.00003025472, 0.0013702615, 0.0015168341, -0.00826207, 0.009912941, -0.012258103, 0.031628836, -0.006684485, -0.009712367, -0.017172145, -0.0013307255, -0.017125858, -0.01544413, -0.0016460496, 0.019748738, 0.015999563, -0.006271767, -0.00015597453, -0.010722947, 0.0023933772, 0.010128942, 0.0067191995, -0.009280364, 0.024068775, 0.0033711712, -0.02102932, -0.014541551, 0.003872604, -0.0060827653, -0.006750057, 0.020057311, 0.0092495065, 0.008393213, -0.010607232, -0.0016161564, -0.0012545462, 0.0032670274, -0.0006913987, 0.021368751, 0.000122043435, 0.018190438, 0.023019623, -0.0128752515, -0.01420212, 0.007968924, 0.017449861, 0.0060557653, -0.008809788, -0.019687023, 0.0049796132, -0.00038933364, -0.0018986946, -0.036442593, 0.013530971, 0.012983252, -0.0112706665, 0.00045996814, 0.022433331, 0.0107923765, -0.0042081783, 0.0020539458, 0.00980494, 0.004293036, 0.0003186991, 0.0077297795, -0.010013227, 0.0005240937, -0.015706418, 0.022124758, -0.02305048, -0.006669056, -0.01996474, 0.009743225, -0.01253582, -0.012420105, -0.015891563, -0.003957462, 0.009920655, 0.0070316307, -0.0082389265, -0.013777831, 0.020180741, -0.02484021, 0.013037252, 0.023420768, 0.0011571526, 0.011972672, 0.0015804776, 0.015143271, 0.011988101, 0.017974436, -0.008570643, -0.01455698, -0.009704653, 0.009372936, 0.0065263407, -0.006291053, -0.014055546, -0.012304389, 0.0028658812, -0.00236252, -0.01384726, 0.003128169, 0.020489315, -0.009612081, 0.0084395, -0.003531244, -0.031150548, 0.0057780487, 0.0057549058, 0.013793259, 0.017403575, 0.0069814874, -0.0116255265, -0.03351114, 0.007587064, -0.002310448, 0.0019546235, 0.010483802, -0.003461815, 0.020952176, -0.016740141, -0.013330398, 0.006491626, -0.014865554, 0.010136656, 0.0006812736, 0.0005361474, -0.007725922, -0.0027790947, -0.016323566, 0.014834696, -0.021415038, -0.0049410416, -0.013322683, -0.0037298885, -0.012589821, 0.013106681, -0.0027366658, 0.00006141346, -0.023559626, 0.009619795, -0.016940715, -0.01046066, -0.013538686, -0.03147455, 0.0026248079, -0.003380814, 0.002586236, 0.008184926, 0.01805158, 0.012481819, 0.0020192312, 0.0008910075, 0.013276397, 0.013893546, -0.00033436887, -0.003353814, 0.01223496, -0.022618476, 0.013152968, 0.008724931, -0.0042158924, 0.01086952, -0.016987, 0.010290944, 0.015359272, 0.017280145, 0.04431123, 0.022356188, -0.010969806, -0.008570643, 0.008840646, -0.029129388, 0.025380213, -0.005330616, -0.012674678, 0.008331499, 0.00980494, 0.019285876, -0.008778931, 0.016987, -0.02851224, 0.009342079, 0.007984353, 0.00042187856, 0.00061859447, 0.017295575, -0.011856957, -0.007725922, -0.02019617, -0.0010616875, -0.021939613, -0.002320091, 0.019393878, -0.01503527, 0.0062987674, -0.005523475, -0.0015120127, 0.0013934046, -0.021137321, 0.011409525, 0.029561391, 0.0058590495, -0.0075137774, -0.024392776, 0.018869301, -0.033541996, -0.0035254583, 0.0124586765, -0.016030421, -0.00054723676, 0.005747191, -0.0047211824, -0.0032535275, 0.0050220424, 0.008470357, -0.008038353, -0.011895529, -0.014194405, 0.0069043436, 0.002960382, -0.017295575, -0.0014724766, 0.0025380214, 0.011633241, -0.016138421, -0.014333263, 0.013137539, 0.036535166, 0.01675557, -0.008516643, -0.01579899, -0.0059091924, -0.020180741, 0.008933218, -0.0022795906, 0.0052071866, -0.016230993, -0.009303506, -0.0016200136, 0.012736393, -0.0013548328, 0.00050529, 0.0084395, -0.0061483374, 0.004134892, 0.030548828, 0.0028369525, 0.00492947, 0.010429802, -0.026691653, -0.008154068, 0.020412171, -0.013893546, -0.010684376, -0.025735073, -0.034251716, 0.029484248, 0.016076706, -0.005103043, -0.009411507, 0.031659696, -0.009311222, -0.006032622, -0.018992731, 0.017249288, 0.0072514894, 0.010584089, 0.010491516, -0.0032477416, 0.007212918, -0.0025090924, 0.008454928, 0.010738376, -0.008902361, 0.020952176, 0.008786646, 0.0045244666, 0.024068775, 0.00540776, -0.026475651, -0.008331499, 0.023806486, 0.010630375, 0.001887123, 0.0056893337, 0.019409306, 0.013939831, 0.0022255902, -0.004227464, 0.003685531, -0.02329734, 0.005990193, 0.028728241, 0.012636106, -0.0042158924, 0.012373818, -0.014487551, 0.006352768, 0.0051107574, 0.030456256, 0.008208069, 0.0076873503, -0.009642938, 0.0038456037, -0.019100731, 0.011239809, -0.012450962, -0.016184708, 0.004987328, 0.0030703116, -0.018283011, -0.012744107, 0.013685258, 0.008123212, 0.0060403366, 0.024176775, -0.0035833158, 0.007914924, -0.011316952, 0.010275515, -0.006487769, 0.00042549465, -0.027463088, -0.0051994724, 0.0052226153, -0.0035389583, -0.015189556, 0.0019006231, -0.020288741, 0.0010269729, -0.010344944, -0.012389247, -0.029191103, -0.015814418, -0.012605249, -0.00049612916, -0.0043701795, 0.0030741687, 0.0038783897, -0.015066126, -0.0066536274, -0.014564694, -0.004659468, 0.02340534, 0.008269784, 0.004644039, -0.0037665316, -0.0041734637, -0.00048986124, -0.0010944735, 0.026537366, 0.0009980442, -0.025133355, -0.00097393675, 0.021060178, -0.0070740595, -0.017095001, 0.020998463, 0.0074906345, 0.0023528768, -0.018082438, 0.0014126905, 0.020165313, -0.0032940276, -0.04005291, 0.007617921, 0.0036508164, 0.025627073, 0.026321365, 0.004755897, -0.02269562, 0.005504189, 0.014240691, -0.015405558, -0.008825217, -0.02530307, -0.013399827, -0.004158035, -0.015606131, 0.013476971, -0.030903688, -0.0061251945, 0.0041657495, -0.0062293382, 0.022603048, 0.0091877915, 0.0186533, 0.017064143, -0.012335246, -0.009257221, 0.0036315306, -0.0035138866, 0.007085631, -0.0096043665, 0.013284111, -0.006314196, -0.027972234, 0.019455593, 0.016956143, -0.019625308, -0.010545517, -0.010414373, 0.028712813, 0.031289406, 0.00692363, -0.013353541, 0.023575056, -0.005018185, -0.0073209186, -0.0116255265, -0.00985894, -0.016446995, 0.038695183, -0.018591585, -0.013091253, 0.0003261724, 0.01170267, -0.011116379, -0.018607013, -0.0052264724, -0.0031879554, -0.0100826565, 0.009226363, 0.005766477, -0.007768351, 0.0011687241, -0.012265817, 0.009288078, -0.0014763338, -0.0075523495, 0.005330616, 0.012998681, 0.00017043893, -0.00000813623, 0.010769233, 0.006796343, -0.004509038, 0.004748183, -0.0010356515, -0.001325904, 0.0052689016, 0.002923739, 0.0068156286, 0.024284776, -0.0015216557, 0.021939613, -0.025719645, -0.0044357516, -0.00611748, -0.032461986, 0.018730443, -0.0011899386, -0.015498131, -0.019177876, 0.0033460995, -0.019409306, -0.038170606, 0.00561219, 0.005573618, -0.013152968, -0.010491516, -0.0075754924, -0.015181842, 0.016446995, -0.007675779, 0.028311666, 0.01478841, -0.019471021, 0.0031493837, 0.012111531, 0.010190657, 0.026938513, -0.01604585, -0.0017125858, -0.014032404, -0.006669056, -0.0024782352, 0.011185808, -0.0014300478, 0.008879217, 0.006680628, -0.012227246, 0.025796788, 0.009457794, -0.01723386, -0.0013991904, -0.0020443029, 0.011370953, 0.021538466, 0.0074212053, -0.03326428, -0.021060178, 0.02007274, 0.00304524, -0.0012584034, 0.012805822, -0.012389247, -0.018391011, 0.014826982, 0.0068040574, -0.007521492, 0.0040384624, 0.0033615283, 0.010128942, -0.0010877234, 0.018931016, -0.017249288, 0.015860705, -0.005924621, -0.020689888, -0.014040118, 0.013500114, 0.0029449533, 0.0090720765, 0.0073864907, 0.005673905, -0.024192203, -0.012844394, -0.035578586, -0.0050297566, 0.0036257447, 0.020859605, 0.015004412, 0.03539344, 0.025472786, -0.0112089515, 0.033449423, -0.016014991, 0.0136004, -0.019455593, 0.010190657, -0.0110315215, -0.007702779, -0.007725922, -0.011124094, 0.012304389, -0.013006395, 0.014009261, 0.0023181625, -0.009990084, 0.009210935, 0.009203221, -0.023143051, 0.0018784443, -0.000337985, -0.012204102, 0.005681619, -0.009064362, -0.000813864, 0.025920218, 0.012960109, 0.009936084, -0.006356625, 0.012913823, 0.008570643, 0.010090371, 0.0006832022, 0.0035293153, 0.00808464, 0.0012921537, -0.012350676, -0.007984353, -0.019687023, 0.0013403684, 0.0009049898, -0.015359272, 0.012705536, 0.010861806, 0.018005295, 0.01253582, -0.021569325, 0.002254519, -0.0112089515, -0.011617812, 0.017881865, 0.004227464, 0.002582379, 0.009210935, -0.04727354, -0.0022892335, -0.0132918265, 0.016956143, -0.01711043, -0.02127618, 0.0025476643, 0.012011244, 0.008524357, -0.018977303, -0.012936966, 0.009990084, 0.017218431, -0.013322683, -0.0099592265, -0.019532736, -0.005172472, -0.019810453, 0.02446992, -0.008478072, 0.013808687, 0.007417348, 0.0009970798, 0.0005901478, -0.005943907, -0.020844175, -0.0057549058, -0.0024820922, -0.01805158, -0.0021754468, -0.00914922, -0.024223061, -0.002694237, 0.0028003093, -0.013885831, 0.012852108, 0.00029652036, -0.023204766, 0.0037896747, -0.0024145918, -0.0008722038, -0.010753805, -0.0010047941, -0.004026891, -0.008570643, 0.00016429156, 0.0017116215, 0.009095219, 0.00543476, 0.013075824, 0.026059076, -0.00095657946, 0.011756671, 0.0062833386, -0.0043547507, -0.011471239, 0.0012410461, 0.021754468, -0.018113295, 0.010537803, 0.025966505, -0.011756671, -0.019100731, 0.0023914487, -0.03314085, -0.016601283, -0.0021310893, -0.013484685, -0.014518408, -0.016092135, 0.005253473, 0.011440382, 0.00004402604, -0.0035910301, 0.010985236, 0.0071473457, -0.018637871, 0.014634123, -0.025087068, -0.014726696, 0.01746529, 0.0042583216, 0.011463525, -0.010206086, 0.01805158, 0.01758872, 0.008107782, -0.0011176165, 0.015829848, 0.003810889, 0.0061984807, -0.013739258, 0.002946882, 0.025873931, 0.0022583762, -0.013253255, 0.02554993, 0.0044743232, -0.0030606687, 0.0087095015, -0.009264935, 0.013307255, 0.0028639527, -0.0011349738, 0.010252372, -0.010753805, -0.012651535, -0.028913386, 0.0064106253, 0.010892663, -0.00017200591, 0.03243113, 0.030595114, -0.008385499, -0.0068349144, 0.0053074732, 0.011664098, -0.0018331226, 0.0037568887, -0.0029815966, -0.01253582, -0.0037356743, 0.004053891, 0.00012559927, 0.015613846, 0.01735729, 0.007818494, -0.014348692, 0.013515542, -0.0039420333, 0.0110932365, 0.00020334547, -0.008154068, -0.003980605, -0.0100826565, 0.0025804504, -0.017249288, -0.007201346, 0.014880982, 0.007884067, -0.002534164, 0.01936302, -0.009480936, 0.013777831, 0.0039169616, -0.0046710395, 0.005018185, 0.006618913, -0.02649108, 0.005747191, 0.021800755, 0.007081774, -0.025056211, 0.01973331, -0.015513559, 0.014140405, 0.010753805, -0.0036643166, 0.0058667636, -0.0074867774, 0.02090589, 0.009311222, 0.0069930586, -0.012157816, 0.014657266, 0.005847478, -0.0021118035, 0.024670493, 0.008015211, 0.0091260765, 0.0087095015, 0.0027250943, 0.018622443, 0.012744107, -0.007023916, 0.016709283, -0.0013249398, -0.011617812, -0.0035138866, 0.022433331, 0.006711485, 0.0014744053, -0.021893326, -0.03292485, -0.0063836253, 0.005920764, 0.018391011, 0.008987218, 0.010298658, -0.012767251, -0.008624644, -0.022171043, -0.0039420333, -0.01640071, 0.008069211, -0.022294473, -0.013137539, 0.0022333045, 0.01829844, 0.027262514, -0.005785763, 0.030733973, 0.014441265, -0.015536702, -0.011741241, 0.0033383851, -0.031628836, 0.015891563, 0.011517526, 0.01170267, -0.006935201, -0.007853209, 0.021553896, -0.0005212008, -0.0023586627, 0.011579241, 0.038664326, -0.006256338, 0.004740468, -0.017989866, -0.007830066, 0.009943798, -0.0029738822, -0.00045032523, 0.013993832, -0.018159581, -0.017989866, -0.012404676, 0.002202447, 0.014148119, 0.011548383, -0.00305874, 0.02767909, 0.003137812, -0.020026455, 0.012134673, 0.025087068, -0.001821551, -0.009118362, -0.005658476, -0.0077606365, 0.021415038, -0.008169497, -0.014780696, 0.01306811, -0.024037916, -0.0037877462, 0.01562156, -0.019671595, 0.010591803, -0.011378667, -0.014070976, 0.00271738, -0.010807805, 0.00028808278, 0.030471684, -0.025627073, -0.0025264497, -0.004798326, -0.020751603, -0.004158035, -0.015251271, -0.031412836, -0.010175228, 0.0044318945, -0.0043470366, 0.0019546235, -0.0005457903, -0.0005650762, -0.008555215, -0.008285212, 0.015297557, -0.019208733, 0.005319045, 0.0019469092, -0.020412171, 0.011964958, -0.011471239, -0.0011446167, 0.008370071, 0.00031556515, -0.011116379, -0.00092234707, 0.0012314032, 0.008400928, -0.010028656, -0.0005130043, 0.001594942, 0.011802956, -0.030163111, 0.015436416, -0.006426054, 0.0046054674, -0.0046247533, 0.016030421, -0.01253582, 0.0011253309, -0.013330398, -0.0076024923, 0.0048291837, 0.0042737504, 0.0061097657, 0.006711485, 0.026753368, 0.015204985, 0.0064144824, -0.0064761974, 0.02163104, -0.013561828, 0.022680191, -0.0033827426, 0.014464407, 0.009218649, 0.02102932, 0.014626409, -0.025827646, 0.017172145, 0.00022492153, 0.02115275, -0.026398508, 0.011563811, -0.026182506, -0.00028470776, 0.018961873, 0.011316952, -0.0005944871, -0.016585853, 0.000182131, 0.024886495, -0.022186473, 0.00006376393, 0.009920655, 0.0031474552, -0.011887814, 0.008856075, 0.013407541, 0.027370516, -0.015698703, -0.0095426515, 0.03921976, -0.009920655, -0.026444795, 0.014340978, 0.006225481, 0.02234076, 0.007131917, 0.0036353876, 0.0009638117, -0.03138198, 0.0020404458, -0.008231212, 0.001578549, -0.027154515, -0.012188674, 0.011394096, -0.0052187582, 0.015436416, -0.0014030475, -0.013484685, 0.02161561, -0.0043277508, -0.0005067364, -0.0072090607, -0.00202116, 0.017604148, 0.037738603, 0.0078493515, 0.0071164886, 0.00320917, 0.034066573, 0.0025360927, 0.019116161, 0.034251716, -0.020119026, 0.0085320715, -0.019116161, -0.00052698655, -0.0067732, -0.0137084015, -0.013253255, -0.01241239, -0.0038417466, -0.00052361155, 0.009480936, 0.00763335, -0.014742124, -0.0033788856, -0.018113295, -0.0042814645, 0.0070046303, 0.00813864, -0.001040473, 0.034529433, 0.012867536, -0.012080673, 0.021461323, -0.019517306, 0.012975538, 0.010152086, 0.0010964021, -0.018113295, 0.007089488, -0.0028215237, 0.0012738322, -0.0045900387, -0.0057934774, 0.012265817, 0.00540776, 0.02221733, -0.000011232516, -0.014340978, -0.019579021, -0.0022333045, 0.010545517, -0.0030201683, -0.03184484, 0.023729343, 0.011394096, -0.003731817, -0.022726476, 0.010298658, -0.00009100523, 0.005720191, -0.014796125, 0.0021638754, -0.002188947, -0.014317835, 0.0007719172, 0.0120421015, -0.0033152422, 0.00591305, -0.0022583762, 0.0033133137, -0.004161892, -0.0055543324, -0.003972891, 0.011818385, -0.027817948, -0.0068002, -0.006927487, -0.0023046623, -0.016817285, -0.005747191, 0.0104375165, -0.007108774, 0.00064414827, -0.009164648, -0.008964076, -0.010784662, -0.0005298795, -0.00543476, 0.0037376028, 0.010776948, -0.011725813, -0.009411507, -0.015845276, -0.019903025, 0.054154743, 0.005943907, 0.020304171, 0.01769672, 0.013615829, -0.043786652, 0.014418121, -0.004640182, -0.022171043, -0.00118801, -0.024685921, -0.020720746, 0.019594451, 0.019440163, -0.0022795906, 0.0027289516, 0.0010414374, 0.0044318945, 0.0023355198, -0.007984353, -0.0038128179, -0.020273313, -0.00760635, 0.0034541006, 0.0040191766, 0.0014772981, 0.018205868, -0.009164648, 0.014973555, -0.026197935, 0.025364785, -0.008123212, -0.021816183, 0.0096660815, 0.028820815, 0.025935646, -0.006518626, 0.015953276, 0.011039236, -0.018483585, 0.0018823015, -0.003965176, -0.0057163336, -0.007529206, -0.007529206, -0.0087095015, -0.021754468, 0.014626409, -0.019532736, -0.00061811233, -0.022788191, 0.0031146691, 0.014533836, -0.0049178987, -0.013083539, -0.0022468045, -0.0035698158, 0.016246423, 0.0036276735, -0.0046247533, -0.005569761, 0.0055581895, 0.0069660586, -0.0067924857, 0.008501214, 0.02863567, 0.0053614737, -0.021600181, 0.0015756561, 0.008825217, -0.004570753, -0.019301305, -0.007722065, -0.000021530874, 0.0018360155, -0.023976201, 0.0076680644, -0.0060403366, 0.0028215237, -0.017804721, 0.013168396, 0.009635224, -0.025920218, 0.00048214692, 0.025565358, -0.015536702, 0.00998237, -0.013592686, 0.017033286, 0.0029083102, 0.0050991857, -0.008269784, 0.0006022015, -0.007351776, 0.017789293, 0.00075070275, 0.0017714078, 0.00042790538, -0.00028133273, 0.0040847487, -0.007170489, 0.0042621787, -0.005430903, 0.0032747418, -0.0014445122, -0.018607013, 0.02565793, -0.008092354, -0.0044280374, -0.030641401, 0.016014991, 0.009480936, 0.0034078143, 0.045113523, 0.030733973, 0.01164867, -0.0067384853, -0.005758763, 0.024531635, 0.00068898796, -0.028219094, 0.007193632, 0.0057741916, -0.024577921, 0.0004915488, 0.00051637937, 0.017419003, 0.005631476, -0.015451844, 0.0093652215, -0.016354423, -0.01033723, 0.023374483, -0.0057124766, 0.00034425288, 0.005673905, -0.0132918265, -0.0034579576, -0.0065687695, 0.02127618, -0.0027713804, 0.0024628064, 0.006345053, 0.00017706846, -0.025272213, -0.01301411, -0.015374701, 0.003078026, 0.0060827653, 0.021399608, -0.020119026, -0.005415474, 0.0026267364, -0.0032419558, 0.0031165977, 0.0061521945, -0.007463634, -0.009712367, -0.0030625972, 0.002329734, 0.00090981124, -0.008053782, 0.018252153, 0.019748738, 0.0013451899, 0.010884949, 0.008817502, 0.013569543, -0.007344062, -0.0031069547, 0.00439718, -0.002418449, -0.0068349144, -0.0075793494, -0.00014958608, 0.007830066, 0.01033723, 0.01758872, -0.010252372, -0.019069875, -0.0052881874, -0.022911621, 0.0027636662, 0.010530089, -0.012126959, 0.013870402, -0.0048947553, 0.008732645, 0.016554996, -0.009743225, -0.010923521, -0.000087087785, -0.006360482, -0.013492399, -0.009581223, -0.006603484, -0.004663325, 0.0020539458, 0.0020404458, 0.010206086, -0.008308356, -0.016462425, -0.028651098, 0.015374701
|
|
1614
|
+
]
|
|
1615
|
+
}
|
|
1616
|
+
],
|
|
1617
|
+
"sources": [
|
|
1618
|
+
{
|
|
1619
|
+
"name": "source-the-book-abstract-528a374cfbc169af09d3"
|
|
1620
|
+
}
|
|
1621
|
+
],
|
|
1622
|
+
"preparationIds": [
|
|
1623
|
+
1
|
|
1624
|
+
]
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"name": "the-evolution-of-programming-languages",
|
|
1628
|
+
"title": "The Evolution of Programming Languages",
|
|
1629
|
+
"content": "The evolution of programming languages has progressed from physical rewiring of vacuum tubes through low-level machine code to high-level languages like Python and JavaScript. The next revolution in this evolution is the use of natural language for writing software.",
|
|
1630
|
+
"keywords": [
|
|
1631
|
+
"The Evolution of Programming Languages"
|
|
1632
|
+
],
|
|
1633
|
+
"index": [
|
|
1634
|
+
{
|
|
1635
|
+
"modelName": "text-embedding-3-large",
|
|
1636
|
+
"position": [
|
|
1637
|
+
-0.035349846, 0.010304077, -0.014439556, 0.02767057, -0.011871404, 0.031119948, 0.05063286, 0.008252074, -0.033260074, 0.011072004, 0.028048238, 0.011298606, -0.01253862, 0.01806518, -0.0030465322, 0.032756515, -0.0068421084, -0.014175187, -0.015748808, -0.026134714, 0.01266451, 0.0095927995, -0.03650803, 0.002714498, 0.011380434, 0.0008340197, 0.028048238, -0.0019229661, -0.017133597, 0.013054769, -0.0035752691, -0.011695159, -0.0041606566, -0.016944762, 0.027922349, 0.0027491176, 0.004824725, 0.0027003353, -0.00075455173, 0.0023446968, 0.020759221, -0.027368434, 0.015194894, 0.0039623803, 0.002535105, 0.004478528, 0.030289076, -0.0026861727, -0.009894935, -0.0161013, 0.017737867, 0.010354433, 0.048014354, 0.015773987, 0.021300547, -0.012903701, -0.015610331, -0.032429203, 0.02064592, -0.017549032, 0.0058601685, -0.0021700247, -0.03723819, -0.013482793, -0.0116636865, 0.013558327, -0.002535105, -0.022219542, 0.017272076, 0.022106241, 0.024447791, -0.009246603, 0.04257592, 0.033159364, -0.0007494375, 0.0059136716, 0.010071181, 0.035450555, -0.010637685, -0.046428144, 0.0070372378, -0.030087654, 0.018014824, -0.02028084, 0.033360787, 0.013218425, 0.025291253, -0.018216249, 0.018556152, -0.0107195135, -0.033385966, 0.034619685, 0.008296135, -0.011802165, -0.017511265, 0.02237061, -0.01549703, -0.009498382, 0.00031747823, 0.05372975, -0.0014209807, 0.0038113126, 0.01695735, -0.016692983, 0.0016286988, -0.03469522, -0.011166422, 0.021111714, -0.019110065, 0.03270616, -0.003701159, -0.0063291076, -0.016818872, 0.003109477, -0.0020913437, 0.0027569858, -0.018782752, -0.04207236, 0.0073960233, 0.043583035, 0.026034003, 0.0063889055, -0.0153585505, -0.02373022, -0.011644803, 0.022408377, 0.014552856, -0.056851815, 0.021011, 0.014200365, -0.033335607, 0.026109537, 0.026134714, 0.020922879, 0.04078828, 0.013747162, 0.0024926174, 0.0032731337, -0.0037043062, -0.015031237, -0.022395788, 0.0012596844, -0.01248197, -0.04207236, 0.015169716, 0.008787105, 0.009769046, 0.04798918, -0.0334615, -0.03776693, -0.012469381, -0.041216306, 0.010260016, 0.024850639, -0.012966645, 0.025089828, 0.017007707, 0.058110714, -0.01659227, 0.015950233, -0.008333902, -0.032127067, -0.0115881525, 0.004648479, 0.007465263, -0.029835872, 0.03537502, 0.028300019, -0.041468088, 0.026537562, 0.015824342, 0.01549703, -0.0022707365, -0.043608215, -0.0017545886, -0.0015224793, 0.003893141, 0.020343786, 0.045068536, 0.007257545, -0.030666746, -0.021451615, 0.017058063, 0.024170835, -0.003943497, -0.0067036296, 0.03713748, 0.0035249132, -0.003235367, -0.020620743, -0.0031173453, 0.010839108, -0.01757421, -0.025391964, 0.0068169306, -0.002585461, -0.027469145, 0.009366198, -0.03356221, 0.039806344, -0.030893346, -0.051967293, -0.012966645, 0.014666157, -0.0026908936, 0.0037735456, -0.001586211, -0.0071883053, 0.04129184, 0.0020551502, 0.04798918, 0.031900465, -0.016264956, -0.00903259, -0.02065851, -0.028828755, -0.015194894, -0.010499206, -0.041090418, -0.026839698, -0.008226896, 0.0091018295, 0.04375928, -0.038748868, -0.018266603, -0.025480088, -0.035677157, -0.006240985, 0.008604565, -0.027242545, 0.007610036, 0.055895053, 0.019953527, -0.0045855343, -0.009662039, 0.0061748927, 0.03849709, -0.013432438, -0.025240896, 0.030566033, -0.0012368669, -0.0024627184, -0.035223953, -0.009932702, -0.027897172, -0.0044281725, 0.01150003, -0.011298606, 0.028148951, 0.01302959, 0.0110216485, -0.0026499794, -0.0020677394, -0.013256192, -0.07175716, 0.003030796, 0.0334615, -0.01709583, 0.007427496, 0.018002236, -0.05040626, 0.011751809, 0.041719865, 0.040536504, -0.023654686, -0.011531502, 0.017788224, -0.0089507615, 0.022118831, -0.016504148, 0.031245839, -0.011575564, 0.011361551, -0.020016473, -0.002818357, -0.0040158834, -0.035475735, 0.014666157, 0.019563269, -0.010058592, -0.025140185, -0.009309548, 0.04255074, 0.035853405, 0.03738926, -0.045572095, 0.000630629, -0.016806282, -0.018140715, 0.003943497, 0.006407789, -0.00830243, 0.0033077535, -0.0033486676, 0.037213013, 0.012557504, -0.008377964, -0.022911936, 0.00657774, 0.011978411, -0.019689158, -0.057456087, 0.02064592, -0.019777281, -0.0145276785, 0.002155862, 0.044539798, 0.018833108, 0.0032542504, 0.01966398, 0.022584623, -0.006439261, -0.009315842, -0.0034902936, 0.022471322, 0.012053944, 0.030893346, -0.015685864, -0.032907583, -0.02335255, -0.012670805, 0.00688617, -0.071253605, 0.044187307, 0.057254665, 0.011462263, 0.007949938, -0.020142362, 0.018493205, -0.045320313, -0.009366198, -0.059218545, -0.012708572, 0.012123184, 0.04164433, -0.053175833, -0.033839166, 0.013218425, 0.015572564, -0.015673276, 0.012651921, -0.008812283, 0.03973081, 0.0073834346, -0.0024280988, -0.05483758, -0.014590623, 0.014590623, 0.00024489494, 0.018455438, 0.0007734352, 0.008862639, 0.053427614, -0.021778928, 0.0037703982, -0.009756456, 0.019147832, -0.007610036, -0.029709984, 0.017234309, -0.0007612397, -0.009718689, 0.05388082, -0.024875816, -0.013847874, -0.06490876, 0.02140126, -0.021149479, 0.007131655, -0.019714337, 0.02235802, 0.0047397492, 0.023579152, -0.009938996, -0.019475145, -0.0111349495, -0.000207128, 0.001353315, -0.00270663, 0.014703924, 0.013293958, 0.030188365, -0.010121536, 0.006898759, 0.0018080916, -0.05237014, 0.022295076, -0.057959646, 0.0059829107, 0.037817284, 0.006023825, 0.004425025, -0.062038474, -0.010599918, 0.034367904, -0.006410936, -0.013810107, -0.013696806, 0.00031393758, -0.013873052, -0.04005812, -0.008642332, 0.013810107, 0.018581329, -0.026764164, -0.036356963, -0.0432809, -0.01806518, -0.0030323695, -0.050431438, -0.0354002, -0.06324702, -0.023856109, 0.010228543, -0.009315842, -0.01070063, -0.0051646275, 0.05801, -0.0073330784, 0.0015043826, 0.05962139, 0.002917495, -0.017599389, 0.009309548, -0.028476264, 0.0027868846, -0.004679952, 0.020117184, -0.020180129, -0.019903172, 0.027720924, 0.005054474, -0.0024831756, 0.0043778163, -0.005419554, -0.04280252, 0.009876052, -0.0029316577, -0.015622919, 0.04252556, -0.000052863863, -0.010776163, 0.018996764, 0.021237602, -0.037162658, 0.018342137, -0.009718689, -0.00091742165, 0.032756515, -0.02568151, 0.05372975, 0.0095927995, -0.041266665, 0.015773987, 0.034116127, -0.028551798, -0.043834813, -0.013193247, 0.011411907, -0.051312666, 0.0044753808, 0.02963445, 0.029231602, -0.021841872, 0.035727516, -0.033486675, -0.02631096, -0.0041103004, -0.010077476, 0.021728573, 0.0068672863, -0.02754468, -0.000109170025, -0.0021920553, -0.0007986132, -0.028224485, 0.038144596, -0.037540328, 0.007534502, -0.0049820873, -0.0011275002, 0.009196247, 0.0056933644, -0.04129184, 0.0090262955, 0.027897172, 0.024070121, 0.0027585593, 0.043104652, -0.036482852, 0.000221684, 0.033662923, -0.0016412877, -0.0045981235, 0.0033612566, -0.027796458, -0.03587858, -0.005841285, 0.018480618, 0.024674393, -0.034770753, -0.016793694, -0.0074212016, 0.03504771, -0.06541232, 0.025052063, -0.03469522, 0.024384847, 0.010555857, 0.0012526031, -0.01253862, -0.038799223, -0.016630037, 0.05030555, -0.007956233, 0.0085353255, -0.004566651, 0.010581034, 0.0073834346, -0.008787105, 0.0065840343, -0.0038113126, 0.02618507, 0.009599094, -0.00073999574, 0.0175868, 0.040335078, 0.008428319, -0.020142362, 0.029785518, -0.039806344, 0.037263367, -0.041040063, -0.01500606, -0.0077233366, -0.023251839, 0.023553975, 0.008283546, 0.0015334947, 0.020834755, -0.014225543, 0.020142362, -0.030138008, 0.021237602, 0.0034871465, -0.009252897, 0.007364551, -0.029433025, -0.006678452, -0.021841872, -0.046176363, 0.041719865, -0.00750303, 0.0074778516, -0.031422082, 0.0072260723, 0.024624037, -0.03172422, -0.014653568, -0.026034003, 0.0145276785, 0.0072386614, 0.015887288, -0.010839108, -0.0006562004, 0.0030370904, 0.023176305, 0.001985911, -0.029709984, -0.0005519479, 0.010348138, -0.0068672863, 0.017385377, 0.008403141, 0.01670557, 0.022496501, 0.024309313, -0.028325196, -0.02371763, -0.0059262603, -0.04705759, 0.011204189, 0.0033958764, 0.0058066654, -0.013709395, 0.019173011, -0.010417378, 0.022332843, 0.0012061812, -0.024233779, -0.00835908, 0.026008824, -0.0070750047, -0.014703924, 0.02802306, 0.023012647, -0.018090358, -0.019387024, -0.0017357051, -0.024661804, 0.016906995, 0.037943173, 0.06037673, 0.021590093, 0.0062913406, 0.007458968, -0.009234014, -0.03467004, 0.028224485, 0.0021448468, -0.0006144994, -0.018795341, 0.025039474, -0.004349491, -0.0027318078, -0.04116595, -0.0038742574, 0.023289606, 0.0058884937, 0.014250721, -0.024548503, 0.0046768044, -0.01746091, -0.017423144, 0.016755927, 0.028828755, -0.0039246134, -0.01377234, 0.009082946, -0.003172422, -0.014288488, -0.03393988, -0.025807401, 0.014275899, 0.0011888715, 0.007175716, -0.012708572, 0.033285253, -0.007339373, -0.017536443, -0.03396506, -0.0052055414, -0.005306253, 0.03698641, -0.0009968895, -0.004645332, -0.007496735, 0.04096453, 0.039529383, -0.0053723454, 0.021564916, -0.029130891, 0.03957974, 0.034367904, 0.00025846742, -0.005919966, 0.01150003, -0.032378845, -0.023503618, 0.014691335, 0.010385905, 0.023063004, 0.013042179, 0.011594447, 0.0024658656, -0.017486088, -0.0023557122, 0.005290517, 0.007824048, 0.026587917, -0.01698253, -0.019739514, 0.004037914, 0.021904819, 0.0139989415, -0.025543032, 0.0012699129, 0.006753986, 0.013973763, 0.052319784, -0.006930231, 0.005353462, 0.0053471676, -0.00068216515, -0.0139234075, -0.0063889055, -0.006678452, -0.032781694, -0.03416648, 0.01315548, -0.017410554, 0.027368434, 0.004566651, 0.039025825, 0.0334615, 0.0008174966, 0.0025555622, -0.014426966, 0.0020488559, -0.035249133, 0.011833637, -0.013256192, -0.01768751, -0.030717101, 0.004563504, 0.020104595, -0.005299959, -0.013608683, -0.024762515, 0.0044061416, 0.018052591, 0.04043579, 0.0056681866, 0.030138008, 0.0023446968, -0.0033958764, 0.021904819, -0.0067099244, -0.04292841, -0.007824048, 0.01377234, -0.0033360787, -0.017032884, 0.004755486, -0.020822166, -0.03157315, 0.02224472, 0.015610331, 0.017649744, -0.003177143, 0.024863228, -0.021590093, -0.006552562, 0.0030276487, -0.014162598, -0.028425908, 0.0074526737, 0.025253486, 0.011745514, -0.037313726, 0.030842992, 0.0045886817, 0.0085353255, -0.016667804, -0.031976, 0.008547915, 0.0085353255, 0.0045729456, 0.003468263, -0.0024249514, 0.0089885285, -0.026864875, 0.02497653, -0.020948056, 0.035979293, 0.034065768, -0.0048719337, 0.003842785, 0.0043935524, 0.02274828, 0.0032322195, 0.035853405, 0.0023258133, -0.009429143, 0.0011086167, -0.021439027, -0.0001575589, 0.00030488925, -0.008409436, 0.00830243, 0.008340197, -0.00485305, 0.04594976, 0.024649216, -0.012828167, -0.021338314, -0.019978706, -0.011506324, 0.03738926, -0.009894935, -0.057556797, 0.00041189557, -0.01099647, 0.019273723, -0.0018175334, -0.0030858729, 0.008466086, -0.0087619275, 0.034569327, 0.003918319, 0.012135773, -0.013256192, -0.010851697, 0.0354002, 0.017888935, -0.042726986, 0.026210248, -0.0115503855, -0.0028388142, -0.03393988, 0.028123772, 0.039051004, -0.0047145714, -0.032529913, 0.035727516, -0.055844698, -0.010102653, -0.037993528, 0.011361551, 0.03431755, 0.0146409795, -0.01671816, -0.012740044, 0.025152775, 0.008780811, 0.017498678, 0.031271018, 0.034518972, 0.013495382, 0.018858286, 0.006149715, -0.031069594, 0.027318077, 0.023226662, -0.0177001, -0.0086863935, 0.015308195, 0.03701159, 0.02520313, 0.029433025, -0.01586211, -0.0043526385, 0.0051960996, 0.00051221397, -0.0018631684, 0.03590376, 0.039504208, 0.01768751, 0.012884817, -0.016038356, -0.0690883, -0.019726925, 0.054031886, -0.01955068, -0.018165892, 0.006436114, -0.020796988, 0.018732397, 0.00029289039, -0.014703924, 0.017121008, -0.0023572857, 0.0123812575, 0.03144726, -0.046906523, 0.012053944, 0.03900065, -0.005092241, 0.006357433, -0.01499347, 0.010581034, -0.010599918, 0.024472969, 0.0094794985, 0.0055926526, -0.04892076, 0.00387111, -0.030414967, 0.0030197806, -0.008289841, -0.01905971, 0.032404024, -0.019978706, 0.03429237, 0.019638803, -0.003984411, -0.02998694, 0.010278899, 0.00657774, -0.0010810783, 0.010927231, 0.0037389258, 0.01068804, 0.01117901, -0.012293135, 0.045345493, 0.0004071747, -0.023201482, 0.0153585505, 0.016038356, 0.025908113, 0.03628143, -0.021690806, 0.028073417, -0.0045194426, -0.009007412, 0.009013707, 0.009762751, 0.024145655, 0.00903259, 0.0043400493, -0.014187776, 0.0033990236, -0.0048310193, -0.009152185, 0.0042991354, -0.010927231, 0.0015342814, 0.005419554, -0.0003711781, -0.020746633, 0.00053935894, -0.008579387, -0.023780575, 0.015585152, -0.025291253, -0.033763632, -0.013369492, -0.03464486, 0.011902877, 0.021728573, -0.002565004, 0.022521678, 0.0029709984, -0.018820519, 0.036910877, -0.042349316, -0.030817814, 0.004629596, -0.017674923, -0.023566563, 0.0023683012, 0.03897547, -0.011380434, 0.016403437, -0.036936056, 0.00946691, 0.0034714101, -0.008868934, -0.008755633, -0.02335255, -0.008982235, 0.006357433, -0.012091711, -0.03811942, 0.016441202, 0.038446732, -0.0069050533, 0.0083464915, 0.04242485, 0.012941468, 0.0147920465, -0.008403141, -0.018417671, -0.00012411944, 0.0048971116, 0.0012675525, -0.017133597, -0.036533207, 0.004912848, 0.018140715, 0.011707747, 0.013419849, 0.0031063298, 0.020746633, -0.026537562, -0.009586506, -0.01328137, -0.003842785, 0.0054258485, 0.0076918644, -0.010310371, 0.01549703, 0.0062283957, 0.03185011, -0.026839698, -0.007402318, -0.015660686, 0.0017750456, -0.009120713, 0.022206953, -0.03303347, -0.016680393, -0.017876346, 0.02077181, -0.0011259265, 0.033864345, 0.036231074, 0.016416024, 0.006967998, 0.020482264, 0.010618801, 0.03308383, 0.016025767, -0.013382082, 0.00020260383, 0.012286841, 0.030641567, -0.027922349, 0.0015673275, 0.002522516, 0.005702806, -0.015811754, 0.03162351, 0.026864875, 0.03074228, -0.004220454, 0.020431908, -0.016390847, 0.032857228, -0.004708277, -0.010977587, -0.0039246134, -0.0026798784, 0.015069004, -0.0059168185, -0.009385082, -0.008321313, 0.0043526385, 0.02175375, -0.0016884964, -0.034745574, 0.022811225, -0.018921232, 0.0048561976, 0.0001324793, -0.007836638, 0.013419849, 0.021363493, 0.013168069, -0.0034147596, 0.023906466, -0.0021590095, -0.008132478, -0.007131655, 0.02531643, 0.0012848624, -0.037414435, -0.0025555622, 0.010033414, -0.024384847, 0.0015704747, 0.007005765, 0.022345433, 0.005366051, 0.0008300856, -0.022169188, 0.005145744, -0.014779458, 0.0020866229, 0.026839698, 0.010820225, -0.012859639, -0.015773987, 0.0029505412, 0.004075681, -0.009196247, 0.018291783, -0.010215954, 0.026587917, -0.007880699, -0.015635509, -0.00017427864, -0.0052810754, 0.011695159, -0.020494852, -0.003081152, 0.01696994, 0.009926408, -0.008566799, 0.027116654, 0.0031031827, 0.0016082417, 0.002631096, -0.0005881412, 0.0042393375, -0.019009354, 0.0056304196, 0.008522737, -0.027116654, -0.010581034, 0.013558327, 0.008069534, 0.003949791, -0.023818342, -0.017989647, -0.001990632, -0.000543293, 0.020985823, 0.029558916, -0.006294488, 0.048870403, -0.0032825754, -0.0055863583, -0.012223896, -0.0027082034, -0.030213542, 0.049852345, -0.010001942, 0.014124831, 0.014615801, 0.0012754207, -0.017926702, -0.0025004854, 0.034065768, 0.008900406, -0.019135244, -0.0062221014, 0.018858286, -0.011651097, 0.0064896173, -0.018593917, -0.000004880687, 0.0046107126, -0.0012164098, 0.021867052, -0.021325726, -0.009731279, 0.014326255, 0.05443473, -0.0024941908, 0.009202542, -0.007849227, -0.035349846, -0.028576976, 0.0027192188, -0.0012683393, 0.031296194, -0.037943173, 0.017146185, -0.00040599448, 0.0015098903, 0.013180658, 0.0024989117, 0.020003883, -0.025530443, -0.021678217, 0.001469763, -0.029785518, -0.03270616, 0.023667274, 0.015345962, 0.0052023944, -0.0028293724, 0.019122655, -0.0051142713, -0.0033675511, -0.041417733, -0.001148744, -0.028199306, -0.004538326, 0.010832814, -0.005919966, 0.009643156, 0.027443968, 0.014817225, 0.005158333, -0.015434084, 0.015459263, 0.02028084, -0.05801, -0.017196542, 0.023667274, -0.008887817, -0.02691523, -0.0141122425, 0.00068334537, -0.021363493, -0.00071363756, 0.003134655, 0.0009882346, 0.038043886, -0.059923526, -0.012312018, 0.0047366023, -0.019940939, 0.003918319, 0.007440085, 0.003984411, -0.02151456, -0.0116259195, -0.0007553386, -0.019487735, -0.008038061, -0.0017089535, -0.015081593, -0.015622919, -0.01328137, 0.003987558, 0.02568151, 0.013986353, -0.015585152, 0.011330078, 0.026890052, 0.012595271, 0.0050261486, -0.02199294, 0.009422849, 0.021501971, -0.016315313, -0.03318454, 0.020507442, 0.010178187, 0.011896582, -0.0048436085, -0.013331725, -0.012374964, 0.031019237, 0.00034167268, 0.01720913, 0.0029757193, 0.0118902875, -0.007717042, 0.030213542, 0.01284705, -0.0010220675, -0.014124831, 0.0010968145, 0.01869463, -0.009252897, -0.0124945585, -0.02618507, -0.004991529, 0.010272604, 0.004318019, -0.013948586, -0.0031283605, -0.009951586, 0.0054258485, 0.012916289, 0.014917936, -0.047183484, -0.02028084, 0.015534797, -0.005558033, 0.012840755, -0.014804636, 0.0058318432, 0.0045288843, 0.013054769, 0.018556152, -0.034116127, 0.046302255, -0.006508501, 0.026260603, -0.0012345065, -0.0139611745, -0.0017593094, 0.00268932, -0.0035406495, -0.027519502, 0.03514842, -0.0047114245, 0.006539973, -0.034216836, 0.0095172655, -0.0023210924, -0.018707218, 0.007597447, -0.015925055, 0.01223019, -0.029558916, -0.018191071, 0.005882199, -0.025719278, 0.009359904, 0.021199835, 0.010027119, -0.008591976, -0.01696994, -0.00016434515, -0.0078177545, 0.008591976, 0.025366787, -0.015887288, 0.02532902, 0.021552326, -0.017611977, -0.007257545, -0.004566651, 0.0014264884, 0.012463086, 0.019538091, 0.0029316577, -0.019072298, -0.017221719, 0.025857756, -0.0042015705, 0.021615272, 0.024397435, -0.01377234, -0.002610639, -0.007849227, -0.004295988, -0.0011424496, -0.0008536899, -0.002297488, -0.01364645, -0.025769634, -0.025266076, -0.0047901054, -0.0074841464, -0.024989117, -0.011909171, 0.005299959, -0.024900995, -0.010064886, -0.0035249132, -0.026839698, -0.018216249, -0.0022660156, -0.0043274607, -0.00020358735, -0.005299959, -0.0022408378, 0.0039025827, 0.0044753808, 0.0035815637, 0.007005765, -0.048517913, 0.014703924, -0.022647567, -0.036784988, 0.021867052, -0.018883465, 0.028098594, 0.014842403, -0.006319666, 0.031699043, 0.028979823, 0.0016397141, 0.017674923, -0.001611389, -0.009995647, -0.0087241605, -0.0025980498, 0.018530972, 0.0025099271, 0.024787694, -0.009385082, 0.004928584, 0.0027082034, -0.000054781714, 0.022232132, 0.028853932, -0.0046201544, -0.012425319, 0.008151362, 0.029886229, -0.022697924, -0.026814518, 0.010027119, 0.0076981587, 0.011726631, -0.012135773, 0.00067036296, -0.012954056, 0.00725125, 0.014804636, 0.009133302, 0.0091773635, -0.00546991, -0.016567092, -0.02176634, 0.019223366, -0.01044885, 0.010102653, -0.0013021722, 0.013671628, 0.013117713, 0.009038885, 0.007289017, -0.018455438, -0.006218954, 0.027695747, -0.031699043, -0.00073409465, -0.014351432, 0.019135244, -0.01830437, -0.013344315, -0.01597541, 0.013721984, 0.008654921, -0.0041386257, -0.0067665745, -0.020885112, 0.03552609, -0.025618566, -0.029181246, -0.03061639, 0.0045697982, 0.022106241, 0.0052558975, -0.018417671, 0.019387024, -0.01931149, 0.011166422, 0.0144899115, -0.0028419613, -0.037817284, 0.0044061416, -0.009674628, 0.016038356, 0.022597212, 0.017989647, -0.020431908, -0.0110216485, -0.010876875, -0.012677099, -0.005067063, -0.029105712, -0.014187776, -0.0016003735, -0.00071757165, -0.004141773, -0.004862492, 0.0023462705, 0.0069994708, 0.05262192, -0.038295664, 0.01284705, -0.013734573, 0.009800518, -0.008912995, -0.02865251, 0.0012667658, -0.017536443, -0.00835908, 0.0023415496, 0.0044659395, 0.011430791, 0.009114419, 0.010241132, -0.014590623, 0.014729102, 0.00034698364, -0.023516208, 0.02396941, 0.00040953513, 0.022874169, 0.028300019, 0.016491558, 0.03232849, 0.012463086, -0.028904289, -0.015534797, -0.036457676, 0.0040819757, -0.00885005, -0.036558386, -0.00064754544, 0.01112236, -0.008818578, -0.0039781164, -0.01832955, -0.021501971, 0.0040788283, -0.033612564, 0.0018914937, -0.0032951646, 0.01660486, -0.010776163, -0.013142891, 0.01155668, 0.026034003, -0.012582681, 0.01155668, -0.033612564, 0.009536149, 0.000014814176, 0.010706924, -0.026890052, 0.0028655657, -0.029659627, -0.007981411, 0.0024989117, 0.009347315, 0.012752633, -0.01204765, -0.013633861, -0.00060938514, -0.00032928042, 0.009876052, -0.019777281, -0.0152830165, 0.025303842, 0.0023368287, -0.0059766164, -0.005451027, 0.028501442, 0.012840755, -0.042500384, -0.00964945, -0.015534797, -0.0139611745, 0.011953233, -0.026864875, -0.0022077917, -0.0107195135, 0.013873052, 0.007030943, 0.005495088, 0.00085605035, -0.025543032, -0.018845698, -0.02164045, -0.0032212043, -0.0034084653, 0.00035367155, -0.012400141, -0.011795871, -0.00915848, -0.0026578475, 0.02469957, 0.015648097, 0.01266451, -0.00568707, -0.008774516, -0.020973234, 0.036533207, -0.010423672, -0.030817814, 0.001760883, 0.017486088, 0.01586211, -0.02764539, -0.002132258, 0.02225731, -0.008315018, 0.010593623, -0.00033262436, -0.003949791, -0.0018175334, -0.01401153, 0.0018631684, 0.027318077, -0.009498382, -0.005045032, -0.016818872, -0.02187964, 0.0140744755, 0.009561327, 0.00043117243, -0.015157127, -0.015610331, -0.0017545886, 0.0092151305, 0.0073079006, -0.0015091035, -0.0059388494, -0.003587858, 0.00885005, 0.0029426732, 0.002893891, -0.00516148, 0.0120791225, -0.0059955, 0.0140367085, -0.013331725, 0.017032884, 0.0035658274, -0.0055548856, -0.000428812, -0.0071127713, -0.008491265, 0.0071694218, 0.014162598, 0.008931879, 0.019739514, 0.009844579, 0.04781293, -0.016164245, 0.0051174187, 0.0025036326, 0.02656274, 0.029684806, -0.014326255, 0.018203659, -0.01586211, -0.0003218057, 0.006823225, 0.069642216, -0.006432967, 0.015585152, 0.007779987, 0.01757421, -0.006923937, -0.011632214, -0.0002509927, -0.017410554, -0.004538326, 0.0042456323, -0.000026579459, 0.014729102, 0.0013769192, -0.0013438732, 0.009441732, -0.01248197, 0.0058507267, 0.0022959146, 0.015874699, -0.008126184, -0.006152862, -0.007943644, 0.0110216485, 0.01088317, 0.0028356668, -0.026109537, -0.013193247, 0.002423378, -0.0009079799, -0.011185305, 0.0002777443, -0.005611536, 0.010587329, 0.014212954, 0.010046002, 0.005123713, 0.015799165, 0.0053849346, 0.0046075652, 0.017058063, 0.029332314, -0.0056681866, 0.0092151305, 0.0110594155, -0.01746091, 0.009271781, 0.0011589726, -0.0039686747, 0.0006302356, -0.016579682, 0.01100906, 0.0068546976, 0.0026373905, -0.007786282, -0.007830343, 0.016390847, -0.019978706, -0.0034242014, -0.008327608, 0.001960733, 0.012595271, 0.002160583, -0.0072386614, -0.0011621198, -0.004119742, -0.0032259251, 0.0061056535, -0.016630037, 0.021325726, -0.020469675, -0.017662333, -0.0023336813, -0.005262192, 0.016202012, 0.0090640625, -0.0076603917, 0.026638273, -0.011789576, -0.0018411378, -0.0068106363, -0.00835908, -0.032026354, -0.021325726, 0.023302194, -0.00848497, 0.01253862, -0.010052297, -0.002251853, 0.016428614, -0.020457085, -0.0044313194, 0.004730308, -0.022181775, 0.009844579, -0.0027648539, 0.014930526, -0.013935996, -0.010171893, 0.016541915, 0.0040819757, 0.021451615, 0.0034084653, 0.0006109587, 0.009114419, -0.008170245, -0.004462792, -0.007547091, -0.011518913, -0.005098535, 0.0031220661, 0.014917936, 0.013759751, -0.0036917173, 0.027192188, -0.01248197, 0.0090640625, 0.0043306076, 0.006162304, 0.0037200425, -0.031371728, -0.014049297, -0.0017388524, -0.027796458, 0.027242545, -0.00023466638, 0.0006746904, 0.0036067415, 0.002893891, -0.036105182, 0.024070121, -0.0042110123, 0.0016963645, -0.017234309, 0.023944233, -0.010027119, -0.012941468, -0.00095361494, 0.0038207541, -0.00848497, -0.013218425, 0.031220661, -0.0031283605, -0.0055485913, 0.009089241, 0.020935467, -0.010889464, -0.026965586, 0.0024517032, -0.020721454, -0.0030276487, 0.013193247, -0.011418201, -0.0112482505, -0.0035028826, -0.004063092, -0.007584858, 0.018228838, -0.007389729, 0.0039403494, -0.0039781164, -0.016529325, -0.009227719, 0.015408907, 0.004912848, -0.01223019, 0.023516208, -0.010499206, 0.0146032125, 0.00051182054, -0.020129772, 0.008843755, 0.014124831, -0.014250721, 0.0034934408, -0.0124567915, -0.020419318, 0.0008340197, 0.004500559, -0.00854162, -0.011575564, 0.00676028, -0.020154951, 0.0012911569, -0.00013316776, -0.014666157, 0.0136212725, -0.015761398, -0.023151128, 0.004516295, 0.0018505795, 0.01991576, 0.0016507294, -0.0051803635, 0.00052086887, -0.017133597, 0.019538091, -0.011216777, -0.0074149068, 0.009894935, 0.0012872228, 0.009366198, -0.018455438, 0.012658215, -0.021350903, 0.005781487, -0.012588976, 0.00427081, -0.011802165, 0.0037766928, -0.037590683, -0.013898229, 0.019538091, 0.020847345, -0.003063842, 0.02827484, 0.003147244, -0.020520031, -0.0064833225, 0.0087934, 0.002610639, -0.023843521, 0.016428614, 0.0041543623, 0.007458968, 0.0020047945, -0.012865934, 0.010064886, 0.014804636, -0.010348138, 0.0019827636, 0.016793694, 0.009152185, 0.01806518, -0.004878228, -0.006873581, 0.011600741, 0.0035249132, 0.0058601685, 0.005038738, 0.0018112389, 0.017045474, -0.016554503, -0.016176835, 0.00031669144, -0.015257839, -0.014477323, -0.0016932173, -0.007855521, -0.000023678094, 0.008289841, 0.0052968115, 0.006722513, 0.0059136716, -0.0051866584, 0.018178482, 0.0060395612, -0.013784929, -0.011883994, -0.0052716336, -0.0114748515, -0.012633038, 0.0011542517, 0.00885005, -0.0009520413, -0.0052653393, -0.0015059563, -0.020205306, -0.0035091771, 0.017259486, -0.006936526, -0.020582976, 0.02556821, -0.006552562, -0.0120035885, -0.010927231, 0.032781694, -0.004104006, 0.00019975164, 0.017561622, 0.019815048, 0.016013177, 0.0025933292, -0.012802988, 0.0009127008, -0.004371522, -0.012916289, 0.008163951, 0.0074715572, 0.007610036, 0.018228838, -0.02618507, -0.014099653, 0.011758104, 0.006011236, 0.003314048, -0.014804636, -0.011411907, 0.013130302, 0.021552326, -0.004355786, -0.037842464, 0.0043431967, 0.007912171, 0.02028084, -0.003805018, -0.0036885699, 0.014024119, -0.0013698379, -0.0085730925, -0.0030654157, 0.0033046063, 0.010052297, 0.013935996, -0.0011770693, 0.01032296, -0.019235956, 0.004840461, -0.024888406, 0.00019532583, -0.011581858, 0.003937202, -0.0010189202, -0.020469675, -0.0064046416, -0.020381553, 0.010058592, 0.012286841, -0.021325726, -0.0336881, -0.00040442086, -0.013633861, 0.011896582, 0.018908642, 0.010354433, 0.015232661, -0.009498382, 0.014087064, 0.023125948, 0.022509089, -0.013822695, 0.018870875, -0.021111714, -0.0023132244, 0.012053944, 0.010222249, -0.0076163304, -0.01217354, 0.011607036, -0.018631684, -0.022874169, 0.016290136, 0.008214307, -0.008056944, 0.004862492, -0.018744985, -0.011286017, 0.0004213373, 0.010064886, 0.011241956, -0.01106571, -0.001390295, -0.006285046, -0.021942586, 0.012104301, 0.012777811, 0.0028923173, 0.0149808815, -0.01248197, 0.02002906, -0.005060768, -0.00617804, -0.0009803665, -0.021162068, -0.008371669, -0.0019638801, 0.0010480323, 0.013570916, -0.014313666, -0.012519737, 0.024196012, -0.008780811, 0.0056839227, -0.0026090653, -0.0041826875, 0.001473697, -0.0049506146, -0.01451509, -0.008113595, 0.006285046, 0.0043778163, -0.016617449, -0.0050639156, -0.009334725, -0.0015995868, -0.0071694218, -0.010159303, 0.0015350683, -0.010857992, 0.021791518, -0.007622625, -0.0051551857, -0.0014516664, 0.0053471676, 0.008333902, 0.028375551, -0.0153207835, 0.000007966461, -0.030566033, 0.012639332, -0.0039686747, -0.007005765, 0.012695982, 0.0016224043, 0.019449968, 0.0053345785, 0.030087654, 0.040989704, 0.006798047, -0.012110595, 0.0056461557, 0.0076603917, -0.020696277, 0.01991576, -0.032781694, -0.003035517, 0.0056776283, 0.0024501295, 0.015962822, -0.0071505383, 0.0038333433, -0.0075407964, -0.014892759, 0.010234837, -0.00049136346, -0.0023384022, 0.020343786, -0.014326255, -0.004500559, -0.006149715, -0.02213142, -0.022534268, 0.01684405, 0.024498148, -0.0020299724, -0.007572269, -0.000077746765, 0.014703924, -0.012022472, -0.007893288, 0.007861815, 0.028123772, 0.0022345432, 0.0037578093, -0.010763574, 0.000014138011, -0.011273428, -0.011569269, -0.001573622, -0.0023667275, -0.0076792752, 0.004472234, -0.016264956, -0.011015354, -0.0018505795, -0.013218425, 0.009013707, 0.007622625, -0.004258221, 0.014351432, -0.0031582594, -0.0012801415, -0.004217307, -0.014238132, 0.008447203, -0.0016145362, -0.0032731337, -0.017863758, 0.023755398, 0.008006589, -0.008447203, -0.016214602, 0.010247426, -0.033713277, 0.024447791, 0.0011581858, 0.00964945, -0.01033555, -0.0004795613, -0.004601271, -0.0048939646, -0.002418657, -0.015534797, 0.008585681, -0.016050944, 0.00934102, 0.025480088, 0.017397964, -0.0073582563, 0.009850874, -0.022886759, 0.0067413966, -0.0014626817, -0.0153585505, -0.00019817802, -0.005894788, -0.012091711, 0.023793165, 0.018581329, -0.023075594, 0.003251103, 0.0148298135, -0.021111714, -0.010329255, -0.01880793, 0.01832955, 0.006464439, 0.003093741, 0.014364022, 0.0067728693, -0.00049805135, -0.0028545503, 0.013319137, 0.008774516, -0.014288488, 0.024535915, 0.00866751, 0.012179835, 0.018455438, 0.0053975233, -0.020822166, 0.0023446968, 0.010788753, 0.0056776283, 0.003205468, 0.020104595, 0.010669157, 0.0015201189, 0.021451615, 0.009983058, -0.005627272, 0.00068806624, -0.012991823, 0.037263367, 0.019538091, -0.0032825754, -0.005038738, 0.0032133362, -0.013860462, 0.0031079035, 0.026411671, 0.005495088, 0.021967763, 0.0032794282, -0.0017703248, -0.008107301, 0.021099124, -0.007219778, -0.013268781, 0.016139068, -0.0037578093, -0.022458734, -0.0046233013, 0.022572033, 0.007213483, 0.005828696, -0.0012014604, -0.016113888, 0.004925437, -0.019563269, -0.014477323, -0.01426331, 0.027192188, -0.013784929, -0.010650273, -0.010474028, -0.023591742, -0.018203659, 0.010039709, -0.0074904407, -0.0008780811, -0.008831167, -0.008277251, -0.011984705, -0.024019767, -0.0011204189, 0.008466086, -0.010253721, 0.0015980131, 0.0057940762, 0.013142891, -0.0025618565, -0.021489382, -0.0070561212, 0.01660486, 0.0014886464, -0.0012148361, -0.0036193307, -0.0072701336, -0.006716219, -0.0047145714, 0.04667992, 0.0073834346, -0.004991529, 0.019764692, 0.00897594, -0.020230485, -0.013331725, 0.009995647, 0.008239484, -0.0065588565, -0.016050944, -0.000025325478, 0.025543032, -0.017549032, -0.030389788, -0.014162598, 0.00811989, 0.023868699, 0.0085353255, 0.01364645, -0.021174658, -0.001902509, 0.01166998, -0.0018663157, -0.013419849, 0.005067063, -0.003559533, 0.0041165953, -0.03713748, -0.0014296356, -0.025857756, -0.015773987, -0.008396847, 0.0136212725, 0.020003883, -0.008466086, -0.0052779284, 0.0032794282, -0.00065462675, -0.004717719, -0.008944468, -0.018581329, -0.001390295, -0.006477028, 0.019084888, 0.0005299172, -0.010064886, 0.005428996, 0.012740044, 0.0029379523, 0.00015214957, -0.0071945996, 0.022433555, 0.032529913, 0.0034965882, -0.009429143, 0.0071001826, 0.01659227, 0.0036476557, -0.01548444, -0.007106477, -0.0065210895, 0.030641567, -0.020142362, 0.0015925055, -0.0058696102, 0.0043746694, 0.0033109006, -0.009901229, 0.0040914174, -0.00574372, 0.0075407964, 0.024838049, -0.0056933644, -0.0045509147, -0.011084594, -0.008717866, 0.014666157, -0.0072953114, -0.0019654538, 0.013558327, -0.0040693865, -0.01771269, -0.000009884313, 0.029332314, -0.004434467, 0.022534268, 0.0044596447, -0.0069428203, -0.004912848, 0.011040532, -0.013747162, 0.00007253414, 0.008126184, -0.020318607, 0.0016585976, -0.029206425, 0.004346344, -0.013898229, -0.04844238, -0.005454174, 0.017234309, 0.0009559754, -0.01635308, 0.001927687, -0.03182493, -0.03542538, -0.005451027, -0.009372492, 0.0024721602, 0.0014556004, -0.007402318, -0.0044690864, 0.016567092, -0.0147542795, 0.01684405, 0.016302723, -0.009410259, 0.008963351, 0.011997295, 0.013935996, 0.031145127, -0.011946938, -0.007465263, -0.018782752, -0.0060836226, 0.015899876, 0.007830343, 0.010127831, 0.007182011, 0.015383729, 0.0013147612, 0.01992835, -0.008931879, -0.0005873544, -0.0035437967, 0.012249074, 0.0033360787, 0.004012736, -0.00007759924, -0.037968352, -0.023163715, 0.018228838, 0.0034116125, -0.0056083887, -0.00048388875, -0.018732397, -0.011940644, 0.007842932, 0.011241956, 0.00051811506, 0.004188982, 0.0018411378, -0.004050503, -0.020016473, 0.022848992, -0.03001212, 0.0028655657, -0.009718689, -0.005790929, -0.005224425, 0.0072323666, -0.008604565, 0.008138773, -0.00977534, -0.0014343564, -0.03320972, -0.018958997, -0.028224485, -0.022320254, -0.010190777, 0.02165304, 0.020104595, 0.018040003, 0.017146185, -0.016315313, 0.048014354, -0.010272604, -0.0005342447, 0.00034796717, 0.0048813755, -0.008963351, -0.0022487058, -0.003483999, 0.00537864, 0.020469675, -0.0016019472, -0.012689688, 0.00768557, 0.010260016, 0.008012883, -0.0075282077, -0.005098535, -0.012242779, 0.01782599, -0.013293958, 0.014313666, -0.0019150979, 0.018631684, 0.011380434, 0.015131949, -0.0015201189, -0.0107195135, 0.0012966646, 0.014238132, -0.0011668407, -0.026713807, 0.0033046063, 0.00952356, -0.0058475793, -0.020721454, -0.003918319, -0.006565151, -0.0009583358, -0.007905877, 0.01708324, 0.027393611, 0.0074715572, 0.01684405, 0.012840755, -0.010902054, 0.0018773311, -0.027595036, -0.020935467, -0.006464439, -0.008831167, 0.0010149862, 0.020872522, -0.01670557, -0.0060395612, -0.002147994, 0.029684806, -0.006873581, -0.0143010765, -0.00830243, 0.0153207835, 0.003131508, -0.01830437, -0.005787782, 0.01266451, 0.01081393, -0.0033297841, -0.012406436, 0.0044690864, -0.015459263, -0.0023635803, 0.0036539503, -0.022836402, -0.0050261486, 0.010134126, 0.0068546976, 0.02002906, -0.003142523, -0.015799165, 0.004472234, 0.0089507615, -0.013570916, 0.008711572, 0.014225543, -0.013293958, 0.0030323695, 0.012784105, -0.023465851, -0.0014870728, 0.007981411, -0.0088374615, 0.010530679, -0.028904289, 0.008321313, -0.011260839, -0.013885641, -0.021917406, 0.0029237897, -0.0016176834, 0.0120035885, 0.012777811, 0.002572872, 0.003468263, 0.036784988, 0.0026578475, 0.011141243, -0.0037043062, 0.029281959, -0.024686983, 0.024548503, 0.015874699, 0.0016058813, 0.008264663, 0.014930526, -0.01831696, -0.016038356, 0.016277546, -0.024900995, 0.010732102, 0.009756456, -0.011109771, 0.016390847, -0.022786047, -0.015547385, 0.016113888, 0.015257839, -0.017146185, 0.007389729, -0.014666157, 0.0047019827, -0.006602918, -0.008780811, 0.004541473, 0.039604917, 0.006691041, -0.007547091, 0.009712395, 0.020809578, 0.00774222, 0.0060301195, 0.009265486, 0.018165892, -0.01709583, -0.014653568, 0.013394671, 0.0037106008, 0.009127008, -0.012085417, -0.012966645, 0.011141243, -0.004975793, -0.0175868, 0.035677157, -0.010020825, 0.0067351023, -0.004447056, 0.0041228896, -0.0059388494, 0.008019178, -0.0054856464, -0.016050944, -0.036080007, 0.015849521, -0.0116636865, 0.034946997, 0.022647567, -0.0140367085, -0.011216777, 0.0071883053, 0.009850874, -0.0049506146, 0.0026389642, 0.023063004, -0.0038490794, -0.009907524, 0.00060269726, 0.016516736, 0.014288488, 0.019575858, 0.013079946, -0.0068421084, 0.015849521, -0.0010936673, 0.0023053563, -0.0069868816, -0.0024753073, 0.0022125125, -0.0124190245, 0.0037735456, -0.024888406, 0.008063239, 0.0068672863, -0.0051520383, -0.015622919, 0.011991, -0.021816695, 0.011241956, 0.007427496, 0.0088374615, 0.009737573, -0.00928437, -0.015585152, 0.010165598, 0.015295606, 0.010832814, 0.00050316565, 0.011789576, -0.0001866709, 0.04096453, 0.020469675, -0.005536002, -0.0024721602, -0.007402318, 0.009580211, -0.0027695748, 0.008459792, -0.020457085, 0.006716219, 0.032781694, 0.002623228, 0.005828696, 0.0025901818, 0.018379904, 0.019827638, 0.009183658, 0.0039938525, 0.019827638, -0.02446038, 0.0124190245, 0.0030465322, -0.02433449, -0.002160583, 0.019563269, 0.00049215026, -0.011726631, -0.012809283, -0.023679864, -0.0035689748, 0.013784929, 0.0007514045, 0.0069617038, 0.009813107, -0.0055548856, -0.006898759, 0.010404789, 0.01673075, 0.0035941526, 0.008371669, 0.00706871, -0.02091029, 0.0020299724, 0.014389199, -0.011883994, -0.011833637, 0.034040593, 0.0067288075, 0.002443835, -0.005306253, -0.004151215, -0.011909171, 0.010889464, 0.024057534, 0.009202542, -0.012991823, -0.010530679, 0.0143766105, -0.01511936, 0.011342667, 0.004783811, 0.013910819, -0.00934102, -0.005787782, -0.01401153, -0.023982, 0.0094794985, -0.0034777047, 0.0029993237, 0.023629509, -0.015836932, 0.016655216, 0.01064398, 0.010511795, 0.018367317, 0.031925645, -0.005727984, 0.00768557, -0.012387552, -0.003675981, 0.007584858, 0.011481146, -0.0037892817, -0.012865934, -0.0027082034, -0.016176835, 0.015950233, -0.0011817901, -0.01670557, 0.010694335, -0.014477323, -0.011015354, 0.021967763, -0.001302959, 0.017183952, -0.0085730925, -0.010908348, 0.015094182, -0.016655216, 0.004717719, 0.0036445085, 0.0035123243, 0.008805988, 0.002365154, -0.017133597, -0.020494852, -0.0015138243, -0.012639332, -0.0023163715, 0.00626931, -0.012104301, -0.0037168951, -0.0040001473, -0.017737867, -0.0135457385, -0.008428319, 0.0123812575, -0.023692453, 0.0017703248, 0.0069050533, -0.015635509, 0.013331725, -0.00054565346, -0.0034777047, 0.010675452, -0.0063354024, 0.0175868, 0.0045131478, 0.010744691, 0.016781105, -0.011978411, 0.013067357, -0.0013163348, -0.0022911937, -0.03185011, -0.0006074181, -0.024044944, -0.001119632, -0.0014603212, 0.027116654, -0.015748808, -0.01217354, -0.018845698, -0.015471851, 0.01549703, 0.009120713, 0.017876346, 0.017914113, 0.037540328, 0.0147920465, 0.03232849, -0.005542297, 0.0028167835, -0.018921232, 0.012255368, -0.00030272553, 0.0034651156, -0.007276428, 0.007710748, 0.033662923, -0.009366198, 0.009636861, -0.012488265, 0.025769634, -0.017549032, -0.009089241, -0.0175868, 0.011241956, 0.01893382, 0.0072827227, -0.018115537, -0.010467733, 0.0024155097, 0.01235608, -0.009070357, -0.021149479, 0.020192718, 0.00004275826, 0.0015091035, -0.0056713335, 0.0050261486, 0.01978987, 0.007842932, -0.00537864, 0.0036413614, -0.0022408378, -0.014678746, 0.004837314, -0.0026940408, 0.006508501, 0.004037914, 0.018203659, 0.0068546976, -0.009271781, 0.0036728338, -0.02618507, 0.015799165, -0.03504771, -0.0120413555, -0.008774516, 0.015220072, -0.0013242029, -0.03096888, -0.018430261, 0.034871463, 0.0027900317, 0.003030796, -0.0068924646, 0.015471851, 0.027141832, 0.04448944, 0.007402318, -0.00023840374, 0.008868934, 0.015182305, 0.002522516, 0.0135835055, 0.034015413, 0.001956012, -0.013117713, -0.01253862, -0.00040481426, -0.0022266752, -0.009995647, -0.0047806636, -0.007710748, 0.010536973, -0.002851403, -0.017901523, -0.011745514, -0.013495382, -0.00774222, 0.0068169306, 0.0058129597, 0.015031237, 0.005907377, -0.0054321433, 0.016793694, 0.009045179, 0.009561327, 0.009227719, -0.022899348, 0.020268252, -0.005520266, 0.0017467204, -0.016554503, 0.022760868, -0.007402318, 0.0077359257, 0.0118902875, 0.008491265, 0.0017703248, 0.016932173, 0.023931643, 0.0016349932, -0.020948056, -0.013747162, 0.0069428203, 0.008566799, -0.018505795, -0.02593329, 0.00083874055, 0.0003936022, 0.02224472, 0.0014603212, 0.006923937, 0.015308195, -0.0022266752, 0.011128655, -0.010209659, 0.018908642, -0.019273723, -0.007364551, 0.022685334, 0.000385144, -0.007351962, -0.020079417, 0.015874699, 0.0034462323, 0.012205012, 0.0072323666, -0.003559533, 0.006628096, -0.021199835, -0.007389729, -0.002901759, -0.01166998, 0.013671628, -0.0067351023, -0.0039088773, 0.008868934, -0.016327903, 0.005583211, 0.007962528, -0.011311195, -0.00072032545, 0.018379904, 0.012475675, -0.0110971825, 0.003912024, -0.021149479, -0.0140744755, 0.036709454, 0.009787929, 0.025014296, 0.017611977, -0.0094794985, -0.0334615, 0.0020000737, -0.012444203, -0.017599389, -0.038018707, -0.007647803, -0.033486675, 0.023201482, -0.0002146027, 0.0009363051, 0.00903259, 0.014212954, -0.020104595, -0.0032857228, -0.0013470204, -0.004318019, -0.012576387, -0.0094794985, 0.009498382, 0.01019707, 0.0141500095, 0.006294488, -0.0144521445, -0.01051809, 0.01235608, 0.03356221, -0.00750303, -0.02593329, -0.0070120594, 0.008749339, 0.004075681, 0.00076084625, 0.018102948, 0.01051809, 0.010971293, 0.0035563856, -0.010190777, -0.025039474, -0.006565151, 0.009844579, -0.0031126244, -0.0143388435, 0.019210778, -0.009252897, -0.0023037826, -0.029130891, 0.0010110522, 0.00040442086, 0.017158775, 0.0039686747, -0.006678452, 0.014766869, 0.01866945, -0.012645626, 0.0051174187, -0.0022030708, 0.025026884, -0.0025744457, -0.0072071888, -0.0010810783, 0.015220072, 0.009045179, -0.03555127, 0.009599094, 0.010134126, -0.001477631, -0.01695735, -0.012765221, 0.0034808519, 0.0067413966, -0.016416024, -0.0140744755, 0.0014036709, 0.007842932, -0.0067917528, -0.009278076, 0.018027414, -0.0070875934, 0.0056241252, 0.02213142, -0.013419849, 0.021854462, 0.0006247279, 0.0025476941, 0.013482793, -0.008894112, -0.0060678865, 0.008283546, 0.010367022, 0.021665627, -0.0019245397, 0.0059955, -0.001015773, -0.0042236014, 0.003981264, 0.0035910055, 0.0023242396, -0.00497894, 0.015648097, -0.003949791, -0.0135835055, 0.0037168951, 0.0034965882, 0.004808989, -0.010121536, 0.010750986, 0.012513442, 0.0024863228, 0.027469145, 0.024372257, 0.0041071535, 0.0012069681, -0.03182493, 0.02568151, 0.0038364904, -0.0054227016, 0.0059294077, 0.005312548, -0.013218425, -0.0072827227, 0.018858286, 0.0111349495, 0.0062976354, -0.010146715, 0.00476178, -0.031925645, -0.007465263, -0.0049978234, -0.006798047, -0.009441732, 0.01671816, -0.009989353, 0.008409436, -0.0057940762, -0.0033958764, 0.0018490058, 0.023138538, -0.0024280988, 0.0051111244, -0.016214602, -0.022949703, -0.019638803, -0.013659039, 0.020935467, 0.02532902, -0.031220661, 0.016202012, -0.011418201, -0.0110216485, 0.0015744088, -0.0024092153, -0.0071631274, 0.021187246, 0.02053262, 0.030591212, 0.010908348, 0.006310224, 0.015081593, 0.029810695, 0.015446673, -0.007647803, 0.014099653, 0.014691335, -0.0033990236, -0.004963204, 0.007672981, -0.023226662, -0.009920113, 0.0058098123, -0.0069931764, 0.021804107, 0.007710748, 0.019034531, -0.0030024708, -0.012639332, 0.00676028, -0.0025587094, 0.013910819, -0.0031126244, -0.015887288, 0.012167245, 0.0045697982, 0.0005763391, 0.008478675, -0.0038018709, -0.008579387, 0.008025472, -0.004500559, -0.022496501, -0.0022644422, -0.0048719337, -0.01377234, -0.008447203, -0.017888935, -0.012463086, -0.0005023788, -0.004447056, -0.025492676, 0.014200365
|
|
1638
|
+
]
|
|
1639
|
+
}
|
|
1640
|
+
],
|
|
1641
|
+
"sources": [
|
|
1642
|
+
{
|
|
1643
|
+
"name": "source-the-book-abstract-528a374cfbc169af09d3"
|
|
1644
|
+
}
|
|
1645
|
+
],
|
|
1646
|
+
"preparationIds": [
|
|
1647
|
+
1
|
|
1648
|
+
]
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "ai-revolution-in-computing-interfaces",
|
|
1652
|
+
"title": "AI Revolution in Computing Interfaces",
|
|
1653
|
+
"content": "The advancement in microprocessor technology, guided by Moore's Law, has been the driving force behind increasingly powerful programming languages. Similarly, large language models such as GPT and Claude are now poised to transform human-computer interaction.",
|
|
1654
|
+
"keywords": [
|
|
1655
|
+
"AI Revolution in Computing Interfaces"
|
|
1656
|
+
],
|
|
1657
|
+
"index": [
|
|
1658
|
+
{
|
|
1659
|
+
"modelName": "text-embedding-3-large",
|
|
1660
|
+
"position": [
|
|
1661
|
+
-0.006521979, -0.0012670379, -0.026352916, 0.024807075, 0.000013457102, 0.014045074, 0.021332612, 0.016327031, -0.002644493, 0.04110466, 0.025381245, 0.018402874, 0.022392618, -0.019860381, -0.007386914, 0.010033247, -0.042871337, -0.030062936, -0.014751744, -0.0102614425, -0.014457298, -0.012322565, -0.05653363, 0.005005582, 0.029562376, 0.023143455, 0.015708694, -0.013308959, -0.04148744, 0.009333937, -0.01542897, 0.033507954, -0.0073464275, -0.052470274, 0.0050865547, -0.021406224, 0.012006035, 0.0046448857, -0.01613564, -0.0037541864, 0.04973193, 0.00020415688, 0.0049908594, 0.0015154767, 0.029577099, 0.016871756, 0.013338404, -0.047876917, -0.00040670353, -0.006864272, 0.003220503, -0.017578425, 0.043754674, 0.021288445, -0.013220625, -0.0031524124, -0.0015486019, -0.0070004533, 0.02177428, -0.0077071236, -0.006650799, 0.0066360766, -0.015811749, -0.024365406, 0.0067575355, 0.0049834982, -0.03948521, 0.03280128, 0.035569075, 0.007567262, -0.009635745, -0.013102846, 0.015105079, 0.0010554049, 0.021612335, 0.011998674, 0.039072983, 0.026205692, -0.0038535618, -0.05217583, 0.021141222, 0.02074372, -0.005638641, 0.028001813, 0.04705247, -0.0054877372, 0.037365194, -0.039661873, 0.0104307495, 0.009076297, -0.026087916, 0.02259873, -0.0116453385, 0.019094823, -0.0101804705, 0.012565482, -0.017622592, 0.012329926, 0.038042422, 0.0233054, 0.008273932, 0.023334844, 0.024041515, -0.03238906, 0.03118183, -0.03668797, -0.03618741, 0.036452413, 0.008413794, 0.0714326, -0.03680575, -0.03053405, -0.009679912, 0.019183157, -0.01722509, 0.020022327, -0.015281747, -0.030077659, 0.0023463664, -0.006798022, 0.0057012103, 0.0253518, 0.005012943, -0.024659852, -0.033920176, 0.04572746, -0.016739255, -0.04013299, -0.005333153, -0.017254535, -0.024910131, 0.04419634, -0.005576071, 0.006838508, 0.050556377, -0.011468671, 0.017151479, 0.021818448, 0.0037725891, -0.02022844, -0.01709259, -0.0027309866, 0.007964764, -0.070784815, -0.0045491904, -0.0030953635, -0.025248744, 0.052617498, -0.0023592485, -0.015708694, -0.012830484, -0.0041259243, 0.011144781, -0.0042032166, -0.006198088, -0.00050929957, -0.0044461344, 0.02240734, -0.03668797, 0.034155734, -0.023364289, -0.027574867, -0.008053098, 0.009245604, 0.0071992045, -0.009562134, 0.049260814, 0.039131872, -0.06265811, 0.026308749, -0.011925062, 0.036599636, -0.0072065657, -0.039661873, 0.03439129, -0.013463543, -0.032241836, 0.030975718, 0.010717834, 0.033979066, -0.0031340094, -0.041987997, -0.008406433, -0.005583432, 0.005815308, 0.0011023321, 0.039985765, 0.012977707, 0.0040964796, 0.006985731, 0.019992882, -0.030622384, 0.0033438022, -0.0052264165, 0.018329263, 0.008943797, -0.056386407, 0.046699133, -0.025557911, 0.02907654, -0.017696204, -0.0378952, -0.023084566, 0.020051772, 0.039750207, 0.009076297, -0.016150363, 0.03129961, 0.017622592, 0.025631523, 0.02311401, -0.00080144516, -0.005991976, -0.06607368, 0.016783422, -0.015281747, 0.008590462, 0.014317436, -0.018005373, -0.03821909, -0.025263466, 0.003739464, 0.01120367, -0.04967304, -0.019433435, -0.0528825, -0.016341753, -0.014287991, -0.0014703897, -0.023467345, -0.03604019, 0.05064471, 0.00954005, 0.042841893, 0.002907654, -0.018800376, 0.030180713, -0.04693469, -0.010570611, 0.02728042, 0.010496999, -0.008980603, -0.02663264, -0.008995325, 0.0007246132, 0.0014262227, -0.014692855, -0.019389268, -0.028546538, -0.0013967782, 0.0148548, -0.00063811964, 0.010121581, 0.039779652, -0.062245883, 0.037100196, 0.018932877, 0.0055024596, 0.010158387, 0.00097075163, -0.020537607, -0.015149246, 0.0034542195, 0.05550307, -0.035834078, -0.010342415, 0.019109545, 0.029547656, 0.0075967065, -0.007766013, 0.01241826, -0.013132291, -0.0132427085, 0.0070151757, -0.0010719674, -0.008494766, -0.016989533, 0.015075634, 0.027810425, 0.00011185497, 0.0014970738, 0.0058999616, 0.021479836, 0.010938669, -0.0025248744, -0.000787643, -0.0153406365, -0.00550614, -0.048436366, -0.01459716, -0.018491209, 0.015826471, -0.020463996, 0.009459077, -0.011358254, 0.007905874, 0.030975718, 0.0049135676, 0.0081635155, -0.02259873, -0.0038130756, -0.05647474, 0.03515685, -0.029474044, 0.01812315, 0.0010213596, 0.06254033, 0.023673458, -0.010276165, -0.018137872, 0.014773828, -0.0044976627, -0.043754674, 0.0046117604, 0.0010195193, 0.018388152, -0.00009322206, -0.022834286, -0.03515685, -0.036216855, 0.0049614147, -0.014545632, -0.06466034, 0.021288445, 0.012962985, 0.020522885, 0.013647571, 0.020419829, -0.025543189, -0.00531475, -0.003540713, -0.06501368, -0.013780072, 0.007464206, 0.024659852, -0.064189225, 0.00060545455, 0.03400851, -0.015576193, 0.009171993, 0.022392618, -0.028590705, 0.0014262227, -0.003916132, -0.026367638, -0.050733045, -0.018078983, 0.038307425, 0.008104626, 0.016857034, 0.00087735703, 0.008840741, 0.04749414, -0.006286422, 0.0000035260196, -0.004405648, 0.027295142, -0.0038572424, -0.009554773, 0.021244278, 0.02541069, -0.011873535, 0.052293606, 0.0126979835, 0.01120367, -0.044726346, -0.019830937, -0.009878663, 0.0026371318, -0.011961868, 0.007626151, 0.013743266, 0.00781018, 0.0016783421, -0.00011950367, -0.0048951646, 0.0010995717, -0.0056828074, -0.009076297, 0.010703112, 0.010239359, 0.03250684, 0.011041725, 0.015502581, -0.008332822, -0.03462685, 0.02638236, -0.04487357, 0.019786771, 0.026809307, -0.033066284, -0.025145687, -0.015870638, -0.017975928, 0.004891484, -0.030151268, 0.016577309, -0.011557005, -0.0067575355, -0.01728398, 0.006709688, 0.0071660792, 0.045815796, 0.011049085, -0.0010784084, 0.02055233, -0.037983533, -0.0060287816, 0.01050436, -0.022230672, -0.025705134, -0.016371196, -0.03330184, -0.011049085, 0.005333153, -0.016282864, 0.0010296408, 0.0058741975, 0.0027309866, -0.0014409451, 0.02158289, 0.018034818, 0.0030843217, 0.015870638, 0.002804598, -0.027560145, 0.029827379, 0.019330379, -0.009407549, -0.03309573, 0.011608534, 0.016120918, -0.015605638, -0.0009072617, -0.018726764, -0.047759138, 0.0031763362, 0.04213522, -0.01562036, 0.056739744, -0.013728544, -0.008575739, -0.0041406467, -0.0017041061, -0.052853055, 0.03156461, -0.038248535, -0.004044952, -0.0010830092, -0.041987997, -0.03074016, -0.019330379, -0.03156461, -0.0067023267, 0.041634664, 0.009517967, -0.025175132, -0.011542283, -0.0050939154, -0.041281328, -0.0010471236, 0.015738139, 0.04534468, -0.013750628, 0.00460808, -0.027942924, 0.009569495, -0.02150928, -0.015782304, 0.0102172755, 0.02049344, -0.028575983, -0.0049798177, 0.0041406467, 0.0036180052, -0.008700879, 0.00794268, -0.01050436, -0.011130058, 0.018167317, 0.021038165, 0.008597823, -0.024277072, -0.030916829, -0.021597613, 0.0035499146, 0.03330184, -0.012624372, 0.034244068, 0.014472021, -0.045580238, 0.016960088, 0.018756209, -0.0052595413, -0.011983952, 0.00027121237, -0.045109127, 0.025778746, -0.028119592, 0.01946288, -0.052234717, -0.011557005, 0.025395967, -0.0018090026, -0.052529164, 0.03347851, -0.008008931, 0.012764234, -0.020949831, 0.025705134, -0.0009882343, -0.024512628, 0.0020408789, 0.010408666, 0.008884908, -0.015708694, -0.019860381, 0.01107853, 0.017328147, 0.0074237194, 0.015399525, -0.009135187, 0.0091278255, 0.015841193, -0.023187622, 0.030710716, 0.005730655, -0.018682597, 0.001082089, -0.026205692, -0.036658525, 0.021479836, -0.048171364, -0.018844543, -0.027383476, -0.018211484, 0.018800376, -0.0064005195, -0.023423178, 0.0045823157, -0.007132954, 0.010703112, -0.010658945, 0.0016001299, 0.014207019, -0.0093781045, 0.010158387, -0.030651828, -0.00403391, 0.0048767617, -0.040633548, -0.004917248, 0.009017409, -0.011306726, 0.0068679526, -0.022451507, 0.0024107764, -0.0062459353, -0.017180923, -0.02374707, 0.00089668005, 0.01184409, -0.033861287, -0.0011998675, 0.0012467947, -0.0010802487, 0.062717, 0.0037118597, -0.0088333795, -0.009525328, 0.0062606577, -0.0071992045, -0.011542283, 0.0050423876, 0.02682403, 0.020184273, 0.0034615807, -0.011527561, -0.02131789, 0.0012845206, -0.020640664, -0.0009459077, 0.010798806, -0.002029837, 0.009878663, 0.02150928, -0.020007605, 0.012226869, 0.0045491904, -0.034155734, -0.011851451, -0.004725858, -0.047229137, -0.017357592, 0.0064373254, 0.00095050846, 0.016753977, 0.00014745303, -0.0070078145, -0.017652037, 0.010121581, 0.04949637, 0.046169132, -0.004457176, -0.008053098, -0.013581322, 0.0023537276, -0.00723233, -0.0054766955, 0.0069967727, 0.029591821, -0.0074568447, -0.0036327273, -0.014420493, 0.0031542527, -0.050791934, 0.003316198, -0.009400188, -0.0115643665, -0.01971316, 0.007158718, -0.009679912, -0.032182947, -0.021200111, -0.011542283, 0.03286017, -0.010379221, -0.02829626, -0.0070630233, -0.0101363035, -0.03509796, -0.026662085, -0.039102428, -0.009113103, -0.028252093, 0.0068863556, 0.000005991717, 0.0015071954, -0.014435215, 0.00812671, -0.026087916, 0.007280177, -0.014898967, -0.00009615502, 0.007986847, -0.004405648, 0.00012663478, 0.010784084, 0.04531524, 0.029665433, 0.031329054, -0.032418504, 0.018756209, 0.0340674, 0.0059772534, 0.012352009, 0.035569075, -0.021141222, -0.007482609, 0.014508826, -0.017578425, 0.005392042, 0.006993092, 0.008472683, 0.016739255, -0.025660967, -0.0073574693, -0.02682403, -0.02439485, 0.016592031, -0.021597613, -0.012756873, -0.002874529, -0.0107251955, 0.012477149, -0.016739255, 0.026426528, 0.018020095, 0.018653153, 0.018712042, -0.010320332, 0.023570402, -0.0110564465, 0.005800586, -0.024483183, -0.0017399917, -0.021347335, -0.019124268, -0.009113103, -0.0010011164, -0.020993998, -0.007927958, -0.030681273, 0.027000697, 0.0035811993, 0.03129961, -0.023835402, -0.011799923, 0.02586708, -0.03810131, 0.013470904, 0.004725858, -0.009871302, -0.008045737, 0.0037210612, 0.02170067, 0.009724079, -0.012918818, -0.046581354, 0.01843232, 0.015487859, 0.04802414, 0.010607417, -0.0017703566, -0.01132881, -0.017578425, 0.027619034, -0.009201437, -0.056445297, 0.01734287, 0.020095939, 0.0057159327, 0.006926842, 0.0010784084, -0.010445472, -0.0069121197, 0.032565728, 0.02995988, -0.0189476, 0.007416358, 0.020198995, -0.028914597, -0.0007632592, 0.0034597404, 0.025116242, -0.04207633, 0.00672441, 0.039072983, 0.0048767617, -0.023894291, 0.037159085, -0.01364021, 0.015267025, -0.016179807, -0.006448367, -0.011711589, -0.0091278255, 0.01567925, -0.011424504, 0.020508163, 0.012462427, -0.015517304, 0.0016893839, -0.03244795, 0.0033658857, 0.004302592, 0.015502581, -0.008796574, 0.008406433, -0.014994662, 0.011534922, 0.023982625, -0.00492829, -0.0027052225, 0.026176248, -0.03359629, 0.014273269, -0.0038020338, -0.0074568447, 0.017004255, 0.011998674, -0.0056165573, 0.052588053, -0.0031211274, 0.009525328, 0.007416358, -0.02131789, -0.008111987, 0.014420493, -0.010379221, -0.07791041, 0.023879569, -0.021627057, 0.041811332, -0.0126979835, -0.016592031, -0.020051772, -0.014759106, 0.036776304, 0.015752861, 0.006036143, -0.021185389, 0.011409782, -0.009503244, 0.02842876, -0.014008268, 0.006580868, 0.0072654546, 0.024674574, -0.03085794, 0.054001395, 0.014884245, -0.02758959, 0.012852567, 0.022039283, -0.030651828, 0.0022690743, -0.04419634, 0.00069700886, 0.018815098, 0.031211276, 0.015914805, 0.011851451, -0.0049393317, 0.012123814, 0.0036989776, 0.0004308573, -0.006032462, -0.0076335124, -0.014472021, 0.015068273, -0.007471567, 0.03238906, 0.004457176, 0.0023574082, 0.0058300304, 0.027427644, 0.026102638, 0.0234379, 0.024350684, -0.0056423214, 0.011247837, -0.00397134, -0.008722963, -0.0033824483, 0.032065168, 0.004394606, -0.0063526724, -0.015855916, 0.018388152, -0.060596984, -0.017946484, 0.016282864, -0.0062238523, 0.021038165, -0.0013590523, 0.002745709, -0.0028708484, 0.00096891134, -0.0069231614, 0.028752651, 0.01216062, -0.0068863556, 0.040250767, -0.05037971, 0.020051772, 0.0020316774, -0.015414247, -0.015590915, -0.024571517, -0.006551423, 0.011873535, 0.018726764, 0.0060729487, 0.0067133685, -0.0068237856, 0.0129482625, -0.012042841, -0.03462685, -0.039161317, 0.007048301, -0.0041884943, -0.04275356, 0.019212602, 0.007408997, 0.029635988, -0.0056754462, -0.009436994, 0.014744383, -0.0011207351, 0.011225753, 0.032654062, -0.025631523, 0.02810487, -0.0023445261, 0.022966787, -0.0019562256, 0.0008980603, 0.011704228, 0.019035934, 0.0012026278, 0.018520653, 0.009621022, -0.00037150804, -0.0024549435, 0.023864847, 0.018447042, 0.025513746, 0.009061575, -0.026735695, -0.0106295, -0.026838752, -0.022716507, 0.001331448, 0.018078983, 0.0020887263, 0.029989325, -0.024910131, 0.012646455, 0.0019378227, 0.008752407, 0.049525816, 0.013338404, -0.041987997, 0.025572633, 0.0017657558, -0.0052153748, -0.027574867, 0.020596497, 0.024468461, 0.018932877, 0.02240734, 0.022584008, -0.02516041, -0.03445018, 0.0042216196, -0.018815098, -0.010224637, -0.009863941, -0.018034818, -0.022054005, 0.0011446588, 0.0119397845, -0.00064824126, 0.03456796, -0.032182947, -0.002478867, 0.002445742, -0.0034818237, -0.0072433716, -0.037571307, -0.030269047, 0.02189206, -0.0064115613, -0.0118588125, -0.0030898426, 0.029635988, 0.019448157, 0.009120464, 0.016871756, 0.037689086, 0.026205692, 0.01613564, -0.04051577, -0.01177784, -0.0035996023, 0.0005645082, -0.01082089, -0.019153712, 0.017828705, -0.0101804705, 0.017004255, 0.020360941, -0.02055233, 0.009805052, -0.023275955, -0.024188738, -0.032654062, 0.021671224, 0.00034551395, -0.0028542858, -0.030269047, -0.008531572, -0.0025782427, 0.036275744, -0.012013396, -0.012837845, -0.0015283587, 0.0012725588, -0.0009316455, 0.031270165, 0.012145897, -0.014935773, 0.027604312, 0.03745353, 0.01913899, 0.0463458, 0.009488522, -0.009760885, 0.037159085, -0.032683507, 0.041016325, 0.022569286, -0.015399525, -0.02137678, 0.009768246, -0.003527831, 0.011152142, -0.008347544, -0.027162643, -0.0070409398, -0.012072286, -0.023702903, 0.0019065378, 0.010658945, 0.033390176, -0.000103861224, 0.036511302, -0.03553963, 0.04013299, -0.009370743, 0.0059588505, 0.0077807354, 0.0034210943, 0.009105742, 0.0054509314, -0.026544306, -0.009657828, -0.034273513, -0.010865057, 0.0038020338, -0.023923736, 0.0063048247, -0.01722509, 0.010931307, 0.010025886, 0.00032619096, 0.011991313, 0.0025303953, -0.0034266151, 0.014383687, 0.0058668363, -0.0037357835, -0.0006855071, 0.003432136, 0.00007085106, 0.011468671, -0.06360033, 0.010835612, 0.028443482, 0.00018966463, -0.017828705, 0.00959894, 0.024689296, 0.00008545835, -0.008848102, 0.00006038443, 0.000020343803, 0.0064704507, -0.003956618, 0.026014304, 0.032595173, -0.01357396, -0.02221595, 0.0011474192, -0.005785864, -0.01024672, 0.019345101, 0.017445926, 0.025837636, -0.005417806, -0.019153712, -0.0109754745, -0.012764234, 0.0016857033, -0.008553656, 0.0074752476, 0.018608987, -0.014670772, 0.0059588505, -0.003354844, 0.00736115, 0.012064924, 0.026146803, 0.004398287, 0.020714276, -0.02016955, 0.0007646394, 0.0050276653, -0.008480044, -0.0076408735, 0.026308749, 0.0074605253, -0.00029099546, -0.010570611, -0.034361847, 0.0018402875, 0.017136756, 0.015060913, 0.0014657889, -0.020581774, 0.03604019, 0.016488975, 0.006974689, 0.019094823, -0.004320995, -0.013404653, 0.08656712, 0.010482277, -0.034538515, -0.013919934, -0.020022327, -0.0015706853, 0.024277072, -0.03450907, 0.010209914, -0.011174225, 0.006087671, 0.026617918, -0.017048422, -0.027560145, -0.021862615, -0.008943797, -0.009370743, 0.0008989804, 0.022834286, -0.0011639819, -0.015473137, 0.012874651, 0.04051577, -0.008730324, 0.00410016, -0.005590793, -0.04334245, -0.020581774, -0.039544098, 0.005237458, 0.01600314, -0.014184936, 0.0071881628, 0.0029094943, -0.010276165, 0.035686854, -0.027354032, -0.00013100546, -0.023217067, -0.028310983, 0.007898513, 0.026927086, -0.02580819, -0.010276165, 0.009996441, -0.020346219, -0.008627268, -0.0048325947, -0.006095032, 0.0036658526, -0.037276864, -0.014494103, 0.012219508, 0.0053184307, 0.018785654, 0.0014427854, 0.018800376, 0.036275744, -0.027295142, -0.0075304564, 0.020581774, 0.009701995, 0.0050239847, -0.017431203, -0.0071734404, 0.012212147, 0.006415242, -0.031682387, 0.023379011, 0.008296016, -0.0400741, 0.012985068, 0.0014446257, -0.0055135014, -0.025690412, -0.018638432, -0.012602288, 0.0005014783, 0.008980603, -0.015576193, -0.0091278255, 0.012469788, 0.0012385134, 0.025543189, -0.011527561, -0.0019930312, -0.013389931, 0.0045675933, -0.0147223, -0.013838962, 0.006831147, 0.014221741, 0.006926842, -0.015267025, -0.00467433, 0.047759138, 0.013110207, -0.011888257, -0.004541829, -0.018991766, -0.021038165, 0.0052006524, -0.0064115613, -0.04322467, 0.029606543, 0.00825921, 0.021671224, -0.0027162642, 0.0060287816, -0.004394606, 0.039337985, 0.006798022, 0.017666759, -0.003923493, 0.026662085, -0.008664073, -0.00094130705, 0.027162643, 0.007714485, -0.0015440012, -0.028016536, 0.020375662, 0.008715602, 0.0037541864, -0.03707075, 0.019536491, -0.0104307495, -0.019786771, 0.016150363, -0.023261232, 0.012962985, 0.040309656, 0.022363173, -0.006890036, -0.039691318, 0.018093705, 0.0018108429, -0.011306726, 0.000061419596, -0.014582437, 0.0066949655, -0.007986847, 0.022907898, 0.033655178, -0.025881803, 0.018388152, -0.0047773863, 0.029591821, 0.021347335, -0.007581984, 0.009341299, 0.01030561, 0.010084775, -0.017931761, 0.030180713, -0.00012951023, -0.0023058802, -0.016238697, 0.015797026, -0.0009431473, -0.013360486, 0.012042841, -0.016297586, -0.0056423214, -0.02613208, -0.0063784365, 0.012506593, 0.017917039, -0.009819774, 0.018034818, -0.002907654, 0.013566599, 0.0044829403, -0.009952274, -0.0021752198, 0.0075304564, 0.028649595, -0.015767584, 0.03521574, -0.011866174, -0.0044387733, -0.033684622, -0.0004945772, -0.0049982206, 0.017769815, -0.0029628628, -0.0014078199, 0.00358488, -0.029209042, 0.030210158, -0.03047516, -0.003923493, 0.023423178, -0.01799065, -0.00410016, 0.00230404, -0.008376989, -0.023275955, -0.010003802, -0.022333728, -0.011880896, -0.013235347, 0.0062974636, -0.002228588, -0.019610103, -0.011490755, -0.029017651, 0.016017862, 0.0004455796, -0.015031468, 0.027044864, -0.0211265, 0.005193291, 0.0011676623, -0.00073151424, -0.0063784365, -0.0074310806, -0.01107853, 0.017122034, 0.029341543, -0.0045749545, -0.026588473, -0.006036143, 0.02689764, 0.00620913, -0.03765964, 0.017681481, -0.020302052, -0.00486572, 0.0065587843, -0.0037192209, 0.026235137, -0.007184482, 0.018078983, 0.016621476, -0.045020793, -0.016812867, -0.00076003873, 0.015738139, 0.010335054, 0.024998464, 0.020596497, -0.009878663, -0.009805052, 0.010106859, -0.00017448225, 0.033272397, -0.004092799, -0.0085389335, 0.005428848, 0.012278398, -0.0071881628, -0.020581774, -0.062069215, -0.010055331, 0.011534922, -0.0032057806, -0.0016120918, 0.0073022605, 0.00022750553, 0.024277072, 0.01888871, 0.014236463, 0.017298702, 0.008008931, 0.00492829, -0.005601835, 0.02093511, -0.0075599006, -0.0032481074, -0.037600752, 0.016430086, 0.009363382, -0.012705345, 0.006109754, -0.029842101, -0.002331644, 0.017195646, -0.035362963, -0.0013820558, 0.0032113015, 0.03880798, -0.014957856, -0.02395318, -0.016341753, 0.00057785027, 0.009186715, -0.0105117215, -0.014898967, -0.018196762, 0.016724532, -0.03904354, -0.052970834, -0.011822007, 0.010128942, 0.010349777, -0.009208798, -0.0028910916, -0.006625035, 0.000307328, 0.01101228, -0.0010517243, 0.006477812, -0.0121090915, 0.006216491, -0.003616165, -0.02240734, 0.024144571, -0.019065378, -0.02273123, -0.0012836005, 0.0049319705, -0.0022893175, 0.02995988, -0.021155944, 0.0054656537, -0.025822913, -0.024277072, 0.0050276653, -0.036010746, -0.006761216, 0.026176248, 0.023084566, -0.012823123, -0.005230097, 0.0122342305, -0.016415363, 0.008134071, -0.021612335, 0.011240476, -0.033066284, 0.0042289807, -0.005844753, 0.0126979835, 0.005877878, 0.0047037746, -0.032182947, 0.002197303, 0.0065992707, -0.008546295, -0.0068605915, 0.02573458, -0.008686157, 0.027221533, 0.0068237856, -0.024159294, 0.005480376, -0.00029283573, -0.010842973, -0.020817332, -0.008487405, 0.0038351591, -0.007905874, -0.0211265, -0.02382068, -0.0059294063, -0.0060214205, -0.024439016, -0.016341753, -0.012845206, 0.01613564, -0.013993545, -0.0013084444, -0.0053736395, -0.0037026582, -0.010747279, -0.033125173, 0.01082089, 0.023511512, -0.017048422, 0.027648479, -0.0042621056, 0.0042142584, 0.025602078, 0.0015900084, -0.018137872, -0.021450391, -0.0034983864, 0.018152595, -0.020154828, -0.014633966, -0.037482973, -0.003616165, 0.022584008, 0.016017862, 0.005804267, -0.00060545455, -0.0094738, -0.008376989, 0.006779619, 0.018594265, 0.011093252, 0.014265908, 0.0059956564, 0.021715391, -0.028782096, -0.0052337777, 0.0053110695, -0.0170337, -0.00870824, -0.029591821, -0.00736115, -0.011895618, 0.012999791, -0.010040608, -0.025189854, 0.003533352, -0.047670804, 0.00085159304, -0.008178237, -0.016665643, -0.011409782, -0.010762, -0.03118183, 0.0010968113, 0.013227986, 0.0126979835, 0.0037173806, -0.00036989778, 0.024542073, -0.008494766, 0.0010940508, -0.017917039, -0.0037155403, -0.025263466, -0.03898465, -0.006190727, -0.0042731473, 0.0034707822, -0.026426528, -0.014015629, 0.02791348, -0.01774037, -0.020272607, -0.0030659188, -0.017652037, -0.010901863, -0.0005373639, 0.0024917491, 0.0064557283, -0.014346881, -0.01613564, -0.0014170213, -0.021730114, 0.006680243, 0.013470904, 0.0057637803, -0.003284913, -0.0075120535, -0.011424504, 0.0027475492, -0.0020316774, -0.004854678, 0.0038020338, -0.0010259602, 0.014354242, 0.0015357198, 0.015605638, -0.014678133, 0.0047295387, -0.0148548, -0.012896734, -0.0021862616, 0.0072360104, -0.010143665, -0.011961868, 0.021656502, -0.0077365683, 0.00627538, 0.022171782, 0.017328147, -0.010739918, 0.00072001247, -0.011947146, 0.05456084, -0.013176458, -0.0018642112, -0.0061428794, 0.040721882, 0.010835612, -0.019610103, 0.019006489, -0.0037431447, -0.00768504, 0.0131985415, 0.04814192, -0.008914352, 0.025057353, -0.0030291132, 0.010187831, 0.010018525, -0.026338194, -0.023879569, 0.013161736, -0.000110532266, 0.00040003247, 0.02183317, -0.016385918, 0.0013884968, 0.039926875, 0.017961206, -0.0106295, 0.026794584, 0.0052742637, -0.0033658857, -0.020581774, -0.011446588, 0.0026095277, 0.010909224, 0.018329263, 0.010320332, -0.0006243175, 0.0061060735, 0.016739255, 0.009289771, -0.004707455, -0.010658945, 0.012477149, 0.0026702571, 0.009289771, 0.0019893507, -0.0037229015, 0.004379884, 0.0028818902, -0.0017261896, 0.01523758, 0.010519083, 0.008244487, -0.010018525, 0.007913236, -0.011225753, -0.017018978, 0.0016728212, -0.0026739377, -0.005244819, -0.002362929, 0.0169012, 0.019992882, -0.0063085053, -0.0031395303, -0.021097055, 0.025440134, -0.017917039, 0.01594425, 0.015914805, 0.0079942085, 0.016268142, 0.004015507, 0.0076408735, -0.017254535, -0.0113950595, 0.007824902, -0.019242045, 0.004762664, 0.029724322, -0.0001632105, -0.009827135, 0.017961206, 0.004505024, 0.0057269745, -0.013463543, 0.00011306266, 0.006753855, -0.0033327607, 0.019565936, 0.0049982206, 0.0048804423, -0.0009974358, -0.00864199, -0.007342747, 0.0005217215, -0.00050423876, 0.012300481, 0.0049135676, 0.0016811026, -0.024998464, -0.012315203, 0.024453739, -0.008509489, 0.009319216, 0.006908439, 0.0048583588, -0.004692733, 0.0005852114, -0.012999791, -0.0035572755, 0.022054005, -0.0018347666, -0.005638641, 0.0023058802, -0.010798806, -0.00057969056, -0.012013396, 0.005922045, -0.008413794, -0.0020445592, -0.020051772, 0.0049724565, 0.02137678, 0.008421156, -0.015149246, 0.00864199, 0.0046117604, 0.009083658, 0.013294237, -0.011579089, -0.008428517, 0.0058226692, -0.022878453, 0.0010038768, 0.0021844213, 0.017107312, -0.0074237194, 0.012263675, -0.043077447, 0.00037564867, 0.0034855043, 0.004302592, -0.008678796, -0.0035554352, -0.0017041061, -0.010592694, -0.013470904, -0.0020187953, 0.000056358804, -0.02452735, 0.009687273, 0.0027641116, -0.0016921443, 0.007434761, 0.021995116, 0.0057343356, -0.021185389, 0.0027162642, -0.019448157, 0.0051086377, -0.009194076, 0.004398287, -0.012734789, -0.0046375245, 0.0012219509, -0.011527561, 0.03124072, -0.0071918434, 0.0021273722, 0.0011216552, -0.0059772534, -0.015134524, 0.02246623, 0.012050202, 0.02747181, 0.02061122, 0.011534922, 0.010335054, 0.017328147, -0.014177575, -0.020434551, -0.01882982, -0.0036732138, -0.002132893, 0.020243162, -0.015163968, -0.02747181, -0.0045197457, -0.0027696325, 0.0034799834, 0.0028248413, -0.009930191, -0.02374707, -0.0009974358, 0.028414037, -0.0028082787, -0.0017823183, -0.015163968, -0.003124808, 0.0005787704, 0.011218392, -0.0081635155, -0.018402874, 0.012823123, -0.021877337, 0.004192175, 0.0050239847, -0.012050202, -0.006032462, 0.005841072, 0.013426737, -0.0035811993, 0.022760674, -0.0018678918, 0.0035112684, -0.0045381486, 0.0055871126, 0.0021402542, 0.0062312135, -0.043313004, -0.019727882, 0.0048583588, 0.021759558, 0.014965218, 0.022422062, -0.012742151, -0.020478718, 0.009576856, 0.007537817, -0.010231998, -0.03445018, -0.0014777508, 0.018211484, 0.0064078807, 0.028502371, 0.0044093286, 0.007714485, 0.015561471, -0.013434098, -0.0062790606, 0.0026923404, 0.01350771, 0.006698646, 0.00012306923, 0.0016636199, 0.020655386, -0.0019801492, 0.00041498482, -0.0143763255, 0.00102504, -0.013345764, -0.0010360818, -0.017946484, 0.005082874, 0.0029352584, -0.019183157, -0.0016240537, -0.002990467, -0.000029760899, 0.0048878035, 0.015311192, -0.010003802, 0.00009954805, 0.001485112, 0.010828251, 0.019183157, 0.0038940483, -0.008980603, 0.008008931, -0.013308959, -0.0048325947, -0.009488522, 0.0070630233, 0.009952274, -0.00065376214, -0.011299365, -0.028899875, -0.0023831723, 0.0032646698, 0.0032057806, -0.00094406743, 0.006128157, 0.0153406365, -0.006606632, -0.016091473, -0.0036400885, 0.014015629, -0.0010001962, -0.008465322, -0.016812867, 0.02068483, 0.0030824814, 0.0049614147, -0.017372314, 0.012285759, -0.00397134, 0.014398409, 0.009326576, 0.03221239, 0.024497906, -0.015149246, -0.008921714, -0.004652247, 0.0053552366, 0.00049411715, -0.01107853, -0.014913689, 0.0018007213, 0.0056165573, -0.0126979835, -0.011799923, 0.006345311, 0.0011750235, 0.021715391, 0.022186505, 0.023879569, 0.012248953, -0.010622139, 0.008303377, -0.0003924413, 0.017637314, 0.008884908, -0.006845869, -0.0018991766, 0.006639757, 0.013051319, 0.023452623, -0.030563494, -0.002138414, -0.0006496215, 0.02529291, -0.010231998, -0.030327937, -0.024998464, -0.012594927, 0.01971316, -0.013529793, 0.009289771, -0.005980934, 0.011512838, -0.007817541, 0.01286729, 0.032536283, 0.010570611, 0.009098381, 0.0073942747, 0.03085794, 0.008531572, 0.011453949, 0.0029150152, 0.0029039737, -0.0090026865, 0.0039271736, 0.019359823, 0.011601172, -0.0072507323, -0.0057895444, 0.007471567, 0.0016737414, -0.010224637, 0.009650467, 0.00086953584, -0.0026408124, 0.000050061568, -0.008715602, 0.003386129, 0.022127615, -0.0048325947, 0.010960752, 0.010901863, -0.01421438, -0.017048422, -0.015752861, -0.016680365, 0.005244819, -0.0029739046, 0.020890944, 0.008634629, 0.011505477, 0.008376989, -0.01364021, -0.0052558607, -0.008362266, -0.027839867, 0.01203548, 0.0037762697, 0.013213264, -0.002727306, 0.004387245, 0.0051564854, -0.013838962, 0.014221741, -0.020007605, 0.013205903, 0.024689296, -0.01255076, -0.0031579332, 0.0033585245, 0.006827466, 0.0010664465, 0.0038977289, -0.018638432, -0.017652037, 0.00034114328, 0.010739918, 0.020949831, 0.024497906, 0.019889826, 0.01645953, 0.012182703, 0.009429633, 0.005601835, 0.021406224, -0.020434551, 0.0047037746, -0.0029647031, 0.0033235592, -0.040044654, 0.01210173, -0.00537732, 0.00041153427, 0.010960752, 0.002907654, 0.022966787, -0.014265908, 0.018402874, 0.0050166235, 0.014199658, -0.015811749, 0.007482609, 0.008796574, -0.024733463, 0.029047096, -0.005193291, 0.017063145, 0.018756209, 0.0037192209, 0.015002023, 0.0019985521, 0.02483652, 0.014427854, -0.004604399, 0.001549522, -0.013853684, -0.008428517, -0.002125532, 0.011446588, 0.0080383755, 0.01088714, -0.012175342, -0.008273932, -0.0007664797, 0.038660757, 0.0008971401, -0.0035223102, -0.02395318, 0.0064078807, 0.00088195776, 0.00046191213, -0.0074605253, 0.015811749, -0.014766467, 0.01216062, -0.019286212, 0.00800157, -0.013426737, 0.003367726, 0.013264792, -0.0026076874, -0.021803726, 0.008266571, 0.002451263, -0.0026702571, 0.011711589, 0.011947146, -0.006934203, -0.005583432, 0.0040817577, -0.0046007186, -0.0015191573, -0.017622592, -0.0022837967, -0.015738139, -0.0020132745, -0.015134524, -0.026235137, -0.005804267, 0.0025083118, 0.009635745, 0.02137678, 0.0058300304, 0.012469788, -0.011785201, 0.036835194, 0.013544516, -0.00036782745, -0.010960752, -0.012226869, 0.0102172755, -0.009186715, -0.009503244, -0.00037173808, 0.020758443, 0.0044792597, -0.003047516, 0.015855916, -0.009194076, 0.008016292, -0.0016286544, -0.012720067, 0.0046669687, 0.013905212, -0.016960088, 0.017210368, -0.0153406365, -0.01588536, -0.008443239, 0.021965671, 0.010732557, 0.0028137995, 0.029797934, -0.022790119, 0.011748395, -0.024350684, 0.008251849, 0.0076335124, 0.008914352, -0.00339349, -0.0015541228, -0.009554773, 0.005454612, 0.021170666, -0.004486621, -0.02504263, 0.0017022659, -0.017166201, 0.010460194, 0.0011308566, -0.0003949717, -0.012712706, 0.0032223433, 0.022716507, -0.0022893175, -0.013029235, 0.0064557283, 0.00002567776, 0.035392407, 0.015767584, 0.005428848, -0.02477763, 0.015399525, -0.008362266, 0.018726764, -0.015811749, -0.003533352, 0.0061870464, -0.004103841, -0.0041516884, -0.024159294, 0.044549678, -0.0013047638, -0.020302052, -0.013051319, -0.0037063388, -0.012072286, 0.028899875, -0.0008943797, -0.0042878697, 0.016960088, -0.008921714, 0.006643438, -0.00851685, 0.019565936, 0.0036327273, 0.007478928, 0.014751744, -0.0167687, 0.0038020338, -0.022377895, -0.008244487, -0.024497906, 0.00275307, -0.016488975, -0.007869069, 0.009871302, 0.0051270407, -0.029164875, -0.008237126, 0.00659559, -0.0032573089, 0.0045381486, 0.024807075, -0.013021874, -0.017401759, 0.006319547, 0.005115999, -0.014965218, -0.01107853, 0.021155944, 0.021362057, -0.0042437026, 0.0069415644, 0.008826018, 0.021170666, 0.011130058, -0.0000780972, 0.008973242, -0.0029739046, 0.0046964134, -0.021847893, 0.01741648, -0.0297096, -0.0074752476, -0.002234109, 0.01338257, -0.0033438022, -0.003930854, 0.0025764024, -0.0032002598, -0.0015200775, -0.021479836, -0.0045859963, 0.038248535, -0.007626151, -0.02650014, -0.013220625, -0.0012403537, 0.014457298, 0.006032462, -0.0064888536, -0.01991927, -0.00090358115, -0.013441459, -0.006562465, -0.00384252, -0.0012716387, -0.008318099, -0.012617011, -0.002189942, 0.008745046, -0.024865964, 0.002515673, -0.016739255, -0.009098381, 0.011829368, -0.004320995, 0.02137678, 0.019359823, 0.009267688, 0.0021273722, -0.020993998, -0.001734471, 0.008170877, -0.012771594, 0.0024420614, -0.024880687, -0.016017862, 0.0105117215, 0.023644013, -0.020272607, -0.022495674, -0.0019875104, -0.007092468, 0.025543189, 0.0056828074, -0.013375209, -0.0039014095, -0.01325007, -0.009562134, -0.014619243, -0.0032168224, -0.029518211, 0.025528468, -0.0294446, 0.0028340425, 0.003016231, -0.010776723, 0.0025083118, -0.027707368, -0.01433952, -0.010960752, 0.0091278255, 0.008428517, -0.011284643, 0.0010554049, 0.017180923, -0.0010866898, -0.0115643665, -0.0065367008, 0.005785864, 0.017961206, -0.0034413375, -0.0042989114, -0.0000072353487, 0.003886687, -0.0066655213, 0.0049650953, 0.0062606577, 0.00010144585, 0.002708903, -0.006831147, -0.017387036, -0.019992882, 0.008185598, -0.012396176, 0.013802156, -0.000069873415, 0.013095485, 0.0028818902, -0.02049344, 0.015355358, 0.013949378, 0.0018669716, -0.03171183, -0.006293783, -0.012793678, -0.032124057, 0.016356474, -0.012572844, -0.013618127, 0.020434551, -0.0012716387, 0.0058373916, 0.017136756, -0.022937343, 0.03450907, 0.0076997625, -0.0035499146, 0.019772049, 0.008664073, 0.0030438355, 0.022834286, -0.008789212, -0.0056055156, -0.0018706522, -0.0061796852, 0.0013930976, 0.0015476817, 0.0019488644, -0.012558121, 0.0043909256, 0.008906991, 0.015811749, -0.0054251673, -0.0090026865, 0.024174016, -0.0009744322, -0.008354905, 0.005627599, 0.017254535, -0.01831454, -0.008730324, 0.0043762033, -0.00384252, -0.015782304, -0.00009322206, -0.0009744322, 0.0069231614, 0.0012789997, 0.0054214867, -0.0021678586, 0.022510396, 0.0109754745, 0.008016292, 0.010187831, 0.01760787, -0.007883792, 0.0042142584, -0.015325914, -0.019904548, -0.0023978946, 0.025234021, 0.009694634, -0.00046628283, 0.0016893839, -0.012823123, -0.0009431473, -0.023084566, -0.015458414, -0.020390384, 0.009311855, 0.023967903, 0.004552871, 0.009525328, 0.029209042, -0.028988207, 0.031682387, -0.011292004, -0.0072948993, -0.0017767975, -0.003912451, 0.008745046, 0.0049724565, -0.01306604, -0.012683261, -0.00160105, 0.0070335786, -0.017637314, 0.0115643665, 0.008936436, -0.01402299, -0.0006077549, -0.016341753, -0.026573751, -0.02516041, 0.0018522493, 0.00049779774, -0.0107251955, -0.004935651, 0.034744628, 0.015664527, 0.008531572, -0.024600962, -0.0040375907, 0.013264792, -0.0068348274, -0.020537607, 0.01338257, 0.014884245, -0.013397292, -0.0070188562, -0.0030695994, -0.03527463, -0.016032584, -0.0024770268, -0.0032959548, 0.025145687, 0.0032223433, 0.022333728, 0.0031800168, 0.0029186958, 0.018873988, -0.037482973, 0.0043357173, -0.0075451783, -0.015222858, 0.02080261, -0.0019083781, -0.023364289, -0.008362266, -0.0041259243, 0.011667422, 0.0022653937, -0.0008865585, -0.0035517546, 0.017784538, 0.0024310197, -0.016223975, -0.016106196, 0.005999337, 0.022760674, -0.004898845, 0.014633966, -0.00492829, 0.0009698315, 0.00075451785, 0.030828495, -0.0021218513, -0.005704891, 0.015767584, -0.010084775, 0.015635082, -0.013964101, -0.013772711, -0.000066825436, 0.0052411384, -0.0051270407, -0.010732557, -0.009819774, -0.027074309, 0.010327693, 0.01056325, -0.026455972, 0.005031346, -0.009400188, -0.0169012, 0.030592939, -0.018343985, -0.004460857, -0.005712252, 0.022893175, 0.00075451785, 0.011483394, -0.006190727, -0.00032504078, 0.011071169, -0.015487859, -0.012432982, -0.0014299033, -0.014243824, -0.00095786963, 0.007478928, 0.023570402, -0.0016240537, 0.0049614147, 0.010357138, 0.015267025, 0.0036584914, 0.015252302, -0.00008534333, -0.027825147, 0.018579543, -0.017210368, 0.015841193, 0.0030107102, 0.017313424, 0.004957734, -0.038042422, 0.0025911247, 0.023673458, 0.025705134, 0.005756419, -0.0016544184, 0.00011869854, -0.0069820504, 0.0032683504, -0.012977707, -0.0049135676, 0.029312098, 0.023658736, -0.019021211, 0.017784538, 0.033831846, -0.009760885, -0.01068839, 0.015973695, -0.0058484334, -0.009230882, 0.005686488, 0.0045859963, -0.0049982206, 0.017210368, -0.0051196795, 0.005557668, 0.00008287044, -0.005991976, -0.012425621, 0.030710716, -0.01255076, -0.0062716994, -0.0018881349, -0.0059183645, 0.023997348, -0.021759558, 0.012506593, 0.0049246093, -0.013625489, -0.012204786, -0.010622139, 0.007581984, 0.014302714, 0.0025543189, -0.021097055, -0.0005934927, 0.029047096, -0.006190727, -0.008796574, 0.020198995, -0.008310738, 0.017077867, 0.013816878, 0.0066103125, 0.013838962, 0.014427854, 0.015576193, -0.005841072, 0.02483652, -0.00044672977, -0.0064005195, 0.001913899, 0.0065367008, 0.024453739, -0.013802156, 0.011851451, -0.003468942, -0.0046117604, 0.0153406365, -0.0013544515, 0.0038646036, 0.008229765, -0.013095485, 0.03233017, 0.008656712, -0.001414261, 0.014994662, -0.008627268, -0.01831454, -0.0016148522, 0.010423388, 0.017961206, -0.0066544795, 0.0029058137, 0.006838508, 0.025778746, 0.01965427, -0.0010305609, 0.006639757, 0.004839956, 0.010121581, 0.01567925, -0.000041406467, 0.0046559274, -0.006120796, 0.026146803, 0.018638432, 0.009709356, 0.020125384, 0.0150461905, 0.015664527, 0.009974358, 0.012182703, 0.021052888, -0.01177784, 0.03674686, 0.006580868, -0.018770931, 0.012521315, 0.018815098, -0.0076703182, -0.012536038, -0.006875314, -0.026529584, 0.011799923, 0.029577099, 0.020184273, 0.006717049, -0.0070777456, 0.011034364, -0.031917945, -0.011947146, 0.009171993, 0.0017234292, 0.0015219178, -0.008340183, -0.03118183, -0.02638236, 0.0012799199, 0.0071108704, -0.0056128767, 0.03989743, 0.00082996965, -0.0014565875, -0.013389931, -0.010666306, -0.017313424, 0.026308749, 0.014420493, 0.022422062, 0.005064471, -0.0056165573, -0.008391711, 0.01024672, 0.013780072, 0.0032573089, 0.029635988, 0.008781851, 0.0031634541, -0.02605847, 0.028546538, 0.01645953, -0.013110207, -0.005399403, 0.036334634, -0.021170666, -0.009164631, -0.011343531, -0.0025248744, 0.024571517, 0.017122034, -0.014229102, 0.0019323018, 0.0115201995, 0.0116527, -0.0012670379, 0.0031395303, -0.027486533, -0.021288445, -0.0023408455, 0.011218392, 0.022289561, -0.003886687, -0.007832264, 0.007714485, -0.010548527, 0.010401305, 0.013176458, 0.0017372314, 0.028988207, 0.01804954, -0.026014304, 0.023217067, -0.041192994, -0.0059073227, -0.014199658, 0.009459077, -0.00015147866, 0.017313424, 0.0039198124, -0.006643438, -0.014744383, -0.0014887925, -0.013677016, 0.014751744, -0.013235347, -0.010106859, 0.0030364743, 0.004387245, -0.0012136695, 0.006742813, 0.00028846506, 0.0061502405, -0.013456182, 0.0029039737, -0.002926057, -0.0054877372, -0.0053110695, -0.0022874773, -0.0039014095, -0.0052742637, -0.004950373, 0.0038020338, -0.010519083, -0.0008529732, -0.010739918, -0.026205692, 0.004891484, 0.007114551, -0.029577099, 0.017445926, -0.010636861, 0.0017859989, -0.0040191878, 0.009790329, -0.016857034, 0.012020757, -0.006032462, 0.0031763362, 0.008016292, -0.0052926666, -0.011498116, 0.016327031, 0.015973695, -0.0045307875, 0.019035934, -0.0028506052, -0.009046853, -0.019624826, 0.035362963, -0.00339349, -0.0038388395, -0.005149124, 0.024792353, 0.020066494, 0.004387245, 0.0113508925, 0.001274399, 0.016562587, 0.009444355, -0.015576193, -0.009517967, 0.006415242, 0.0060839904, 0.017872872, -0.018520653, -0.017828705, -0.0036400885, 0.016150363, 0.0023923737, -0.0008239887, 0.011660061, 0.0014841919, 0.026029026, 0.013743266, -0.005841072, 0.009275049, 0.008148793, -0.009171993, 0.018020095, 0.005141763, -0.017254535, 0.019904548, 0.000018388497, 0.017445926, 0.0066287154, 0.013043958, 0.0124035375, -0.022112893, -0.005973573, -0.0253518, 0.0059662117, -0.037689086, -0.015590915, -0.0018467285, -0.00010098577, -0.006827466, 0.0014381846, -0.014089241, 0.026676808, 0.007920597, 0.0009385466, -0.027545422, 0.0064741313, 0.012263675, 0.029989325, -0.003150572, 0.0064078807, -0.014111324, -0.000015915612, 0.00390509, 0.030445715, 0.04166411, -0.016606754, 0.0010406825, -0.025454856, -0.0021144904, -0.037041306, 0.0016562587, 0.0012072285, -0.009621022, -0.0026720974, -0.0027033822, -0.024468461, -0.0039198124, -0.016327031, -0.01785815, 0.00080144516, 0.01785815, -0.002458624, 0.01229312, -0.0041884943, 0.006102393, 0.014582437, 0.025454856, 0.011137419, -0.012425621, -0.0088775465, -0.01862371, -0.010658945, -0.01190298, 0.01030561, -0.014265908, 0.008553656, -0.0033971707, 0.013986184, 0.014582437, 0.005369959, 0.009370743, -0.017652037, -0.0043173144, -0.011888257, -0.0015771263, 0.013456182, -0.005627599, -0.007029898, 0.0071808016, 0.007766013, 0.020596497, -0.012123814, 0.0061428794, 0.017063145, -0.007011495, 0.022687063, 0.009709356, 0.024439016, -0.008391711, -0.016724532, -0.0060655875, -0.008237126, -0.011851451, -0.0012366732, 0.0025948053, -0.018211484, -0.015738139, -0.01255076, -0.019183157, -0.0009173833, -0.013757989, 0.0009551092, -0.011144781, -0.00902477, -0.0016663803, 0.010835612, 0.0035131087, -0.0075893453, 0.002797237, 0.0013875767, 0.001895496, -0.008487405, -0.0037946727, 0.010526444, 0.009083658, -0.0013084444, 0.01286729, -0.017637314, -0.011365615, 0.046198577, -0.002745709, -0.010526444, 0.027442366, -0.011166864, -0.0043688426, 0.018726764, -0.012344648, -0.015487859, -0.025955414, -0.009900746, -0.016915923, 0.013757989, 0.033861287, -0.023084566, 0.0070593427, 0.005399403, -0.013286876, 0.0021844213, 0.010658945, 0.0046007186, -0.01414813, -0.013021874, 0.009510606, 0.027059587, 0.013088124, 0.013434098, -0.015075634, 0.008207682, 0.007221288, 0.015738139, -0.0028322025, -0.020993998, -0.013412015, -0.00877449, 0.002523034, 0.0027493895, 0.01229312, 0.02208345, -0.00870824, -0.010533805, 0.0015357198, -0.010379221, -0.013625489, -0.017107312, -0.026338194, 0.008369627, 0.026559029, -0.02259873, 0.007390594, -0.013213264, -0.007081426, 0.009201437, -0.0051012766, 0.018285096, -0.010666306, 0.009370743, 0.011093252, 0.016739255, -0.014656049, 0.020787887, 0.0038646036, -0.0041332855, -0.019094823, 0.00054564525, 0.018726764, 0.020581774, -0.02208345, 0.014324797, -0.0029315779, -0.0059294063, -0.011711589, 0.00877449, 0.003040155, -0.0023003593, -0.013500349, -0.011476032, -0.0012063084, 0.0052337777, -0.0018329263, -0.0015255982, -0.0074678864, -0.0019267809, -0.00998908, 0.022260116, -0.013117569, 0.019727882, -0.0039382153, -0.013684377, 0.0023592485, -0.0023923737, -0.0029113346, 0.0036456094, 0.012793678, 0.035304073, 0.0021144904, -0.0041958555, -0.00806782, -0.0050350265, -0.0027898757, -0.029488767, 0.0024623047, -0.0068495497, 0.003150572, -0.0036419288, -0.011299365, 0.0076040677, 0.009444355, -0.0016571789, -0.0012789997, -0.0012974027, 0.0049650953, -0.027972369, 0.009760885, 0.028826263, 0.014530909, 0.0017998011, -0.006087671, 0.016385918, -0.009370743, -0.0025782427, 0.0059257257, 0.0048583588, -0.006153921, -0.012006035, -0.0093781045, 0.0050534294, -0.0030935232, 0.0034284554, 0.0030640785, -0.018785654, -0.0014326638, 0.0011777839, -0.013662294, 0.0007411758, 0.0036529705, -0.012617011, -0.008244487, -0.010592694, 0.012734789, 0.00723233, 0.024056237, 0.01697481, 0.02061122, 0.0016884637, -0.018476486, 0.0015283587, 0.0024494226, 0.015053552, 0.01952177, -0.021141222, 0.010968113, -0.022171782, -0.0042694667, -0.002197303, 0.03592241, 0.0031008844, 0.009760885, 0.015178691, 0.025543189, 0.014391048, 0.022274839, 0.010651584, 0.021730114, 0.004770025, 0.03948521, 0.032418504, 0.014898967, 0.006422603, -0.004063355, 0.009805052, 0.0048767617, 0.007876431, 0.0011777839, 0.003680575, 0.010106859, 0.012543399, 0.018859265, -0.0017859989, -0.0011860653, -0.0016148522, 0.0148768835, 0.0014676292, -0.025027908, 0.0015642443, -0.010445472, -0.0010903704, 0.019212602, 0.0055135014, -0.020184273, -0.016047306, -0.0037946727, 0.000113810274, -0.01588536, 0.010121581, 0.0016921443, -0.014648688, -0.005384681, -0.00026201093, -0.019006489, -0.002081365, -0.013021874, -0.031122942, 0.0051380824
|
|
1662
|
+
]
|
|
1663
|
+
}
|
|
1664
|
+
],
|
|
1665
|
+
"sources": [
|
|
1666
|
+
{
|
|
1667
|
+
"name": "source-the-book-abstract-528a374cfbc169af09d3"
|
|
1668
|
+
}
|
|
1669
|
+
],
|
|
1670
|
+
"preparationIds": [
|
|
1671
|
+
1
|
|
1672
|
+
]
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
"name": "embracing-natural-language-programming-s-inevitable-future",
|
|
1676
|
+
"title": "Embracing Natural Language Programming's Inevitable Future",
|
|
1677
|
+
"content": "This transition to natural language programming is inevitable and imminent. The focus should be on implementing this change excellently rather than merely adequately.",
|
|
1678
|
+
"keywords": [
|
|
1679
|
+
"Embracing Natural Language Programming's Inevitable Future"
|
|
1680
|
+
],
|
|
1681
|
+
"index": [
|
|
1682
|
+
{
|
|
1683
|
+
"modelName": "text-embedding-3-large",
|
|
1684
|
+
"position": [
|
|
1685
|
+
-0.018741427, 0.010660188, -0.023402756, 0.013983988, 0.03261329, 0.056000024, -0.015625866, 0.011461103, -0.027231134, -0.004797485, 0.01662701, 0.0138878785, 0.050393615, 0.012366138, 0.0019131873, 0.06753321, -0.017139595, -0.012574377, 0.01737987, -0.01832495, 0.050713982, -0.00000943266, -0.019542344, 0.0027951957, 0.00401459, 0.022697952, 0.005550346, 0.032164775, -0.075157925, 0.01500916, 0.004769453, 0.0020983992, -0.02602976, 0.017972548, -0.0005971828, -0.0071521774, 0.053533204, -0.003730265, 0.0018090684, 0.030242577, 0.0058987443, -0.047382172, 0.009506869, 0.039885603, 0.02138445, 0.022009164, -0.022073237, -0.00012038764, -0.01710756, -0.0059988587, 0.010083528, -0.037386745, 0.06567509, 0.003413903, -0.0019712537, 0.017732274, -0.007192223, -0.00023964899, 0.015657902, 0.005378149, 0.027439373, -0.009811217, -0.006223115, 0.00094457995, 0.0115892505, 0.011677351, 0.0063913073, 0.034343265, -0.020775754, -0.01803662, -0.05917165, -0.00854577, 0.0015858131, 0.01672312, 0.044114437, 0.021592688, 0.058018334, -0.017716255, 0.030194521, 0.014680785, 0.03069109, -0.030114431, 0.0034038918, -0.0035660772, 0.00854577, -0.028512599, 0.02830436, -0.038315807, 0.068173945, 0.019446233, -0.018100694, -0.013247145, 0.031107565, 0.017027467, 0.013807787, 0.05007325, -0.05443023, 0.01615447, 0.0015768028, 0.003592107, -0.0031536056, -0.012998862, -0.020022893, -0.017988566, 0.015810076, -0.01851717, 0.013471402, 0.038443953, 0.0025729416, 0.016755156, -0.0042208256, -0.0018571232, -0.01025973, -0.005550346, -0.059139617, -0.055359293, -0.0044330684, -0.06561101, 0.031251732, 0.014000006, 0.046709403, -0.032549214, -0.025164772, -0.011076665, -0.055103, 0.01891763, 0.03780322, -0.042608716, 0.037098415, 0.057537783, -0.016835248, 0.020215113, 0.021352412, -0.0036922214, 0.054270048, 0.02774372, 0.02338674, 0.03067507, -0.0004813003, 0.01492106, -0.0029673926, -0.028913056, 0.0055223135, 0.014824949, 0.027887885, -0.0317483, 0.016314652, 0.03911672, -0.029217405, 0.035945095, -0.0319245, -0.049048077, 0.0010752294, 0.016114423, 0.0492403, -0.009771172, -0.054942816, 0.046997733, 0.009635015, 0.008802064, 0.041199103, -0.027679646, -0.01672312, 0.027951958, 0.042128164, 0.006895884, -0.014760876, -0.00007533613, -0.037450816, 0.030194521, -0.028112141, 0.018741427, -0.010732271, -0.00023189012, 0.0353364, -0.003996569, -0.0012033759, -0.019221976, 0.010003437, 0.014600693, -0.022361565, -0.014905041, -0.00083195115, -0.01795653, 0.041679654, 0.031524044, 0.017059505, 0.013247145, -0.023995435, 0.022121292, 0.002554921, 0.025821522, 0.02138445, 0.0116693415, 0.0004813003, -0.05984442, -0.0039104708, -0.016899321, -0.02373914, -0.008233413, -0.025148753, 0.022025181, 0.0029313515, 0.014945087, -0.0015778039, 0.009290623, 0.0064113303, -0.018453097, 0.05907554, -0.013687649, 0.0030755163, 0.015633874, -0.012582386, -0.013038907, 0.010035474, 0.0015107272, -0.0039545214, 0.0046493155, -0.022713969, -0.025773467, -0.012478267, -0.02003891, 0.017059505, -0.044146474, 0.021400467, 0.0134553835, 0.0001263945, 0.005282039, 0.033702534, 0.059427943, 0.0092265485, 0.038988575, 0.015113279, 0.0017219688, -0.01263044, -0.011172774, 0.028848983, -0.010035474, -0.051643044, 0.020695662, -0.019077811, -0.005406181, -0.017459963, -0.029377587, -0.0014096117, 0.017011449, 0.025693376, 0.0450435, 0.007848973, -0.02375516, 0.019125868, 0.028176215, -0.005422199, -0.004316936, -0.028000012, -0.000033694774, 0.015081243, -0.018677354, -0.010331812, 0.0040326104, -0.013967969, 0.0036822099, 0.015281471, 0.010868426, -0.045267757, -0.048599564, 0.007248287, 0.015081243, 0.0008249432, 0.04648515, 0.051546935, 0.021897035, -0.007881011, 0.019622434, 0.02327461, -0.019061795, 0.038155623, 0.05974831, 0.02127232, -0.022169346, -0.017219687, -0.021977127, 0.00078589853, -0.0075286077, 0.038636174, -0.023819232, -0.040878735, 0.008305496, -0.038956538, -0.0038223702, -0.01757209, -0.025597265, -0.00693593, 0.010796344, 0.040141895, 0.02612587, 0.030354705, -0.025997724, -0.035400473, -0.007812933, -0.016306644, 0.026366144, 0.006467394, -0.024764312, -0.013807787, -0.02175287, -0.016298635, 0.0008049203, -0.03211672, -0.027919922, 0.02774372, 0.018292915, -0.0008845113, -0.056832977, -0.0020183076, 0.014776895, 0.0031395894, -0.0036822099, -0.028400471, 0.015778039, -0.0020943945, 0.0028572667, -0.056096137, 0.019958818, 0.0107883345, 0.00836156, -0.016883302, -0.0039304937, -0.052411925, -0.017235706, -0.03208468, 0.009675061, 0.014680785, 0.0012223976, 0.004873572, -0.047862723, 0.03165219, 0.014176208, -0.027487427, 0.00251888, 0.013295201, 0.008289478, -0.01453662, -0.03600917, 0.0254531, 0.0007828951, -0.043025192, -0.0018811508, 0.009715107, -0.02602976, 0.0009741137, -0.0020243144, 0.046517182, 0.0014937078, 0.03208468, 0.0073403926, 0.0408467, 0.018837538, 0.05356524, 0.0042208256, 0.05603206, -0.038059514, 0.025917633, 0.03447141, -0.004997714, 0.039821528, 0.005806639, 0.010035474, -0.008473688, 0.003912473, -0.036906194, 0.016018314, 0.02832038, -0.011501149, -0.0064273486, 0.007752864, 0.0047093844, 0.034599558, 0.001772026, 0.025228845, 0.0054982863, 0.0026209967, -0.045203682, 0.039020613, -0.0018060649, -0.011461103, -0.01891763, 0.004445082, 0.040910773, 0.015257444, -0.0482792, -0.010363849, -0.01025973, -0.0098832995, -0.016755156, -0.015890168, 0.020839827, -0.04187187, 0.033958826, -0.03229292, -0.012590394, 0.003926489, 0.011453095, 0.00047228998, 0.0091865035, 0.005442222, 0.005994854, -0.0010166623, -0.0035540634, 0.016186506, -0.0148730045, -0.02232953, 0.025773467, 0.03440734, 0.014824949, 0.02631809, -0.0505538, 0.03687416, 0.024251727, 0.008978265, -0.019446233, 0.019173922, -0.0122860465, 0.008914191, 0.005870712, -0.022826098, -0.027775757, -0.018132731, 0.023290629, -0.0111567555, -0.009170485, 0.023418775, -0.008617853, -0.035112143, -0.007020026, -0.017508017, -0.00043199392, 0.04837531, -0.02955379, -0.0005496284, -0.007744855, -0.011837534, 0.0047454257, 0.028624726, -0.03360642, -0.026061798, 0.003594109, -0.029601844, 0.0024588113, -0.016106416, 0.0034419352, 0.015041197, -0.03754693, -0.008217395, 0.065578975, -0.049816955, -0.008101262, -0.0133112185, 0.014104125, -0.0040806653, 0.0012864708, 0.023498867, -0.0002114918, 0.007276319, 0.0012364136, 0.02774372, 0.007380438, 0.047542356, 0.010668197, 0.038443953, -0.0030795208, -0.030242577, 0.0023166486, 0.010323803, -0.0064553805, 0.047862723, -0.005910758, 0.0029313515, -0.03421512, -0.0050898194, -0.017011449, 0.054942816, -0.019173922, -0.020967973, -0.021496577, 0.025292918, 0.038411915, -0.0010542052, 0.0118135065, -0.03572084, 0.0054782634, -0.00503776, 0.01054005, 0.021128155, -0.008009157, -0.0036701963, -0.03658583, -0.009635015, -0.006419339, 0.06887875, -0.08829295, -0.012742569, 0.0007718825, 0.014696803, -0.04949659, 0.0078049237, -0.0022545776, 0.009426778, 0.021977127, -0.009739134, 0.0127986325, -0.021544632, 0.0035240292, 0.020215113, 0.02774372, 0.007544626, -0.029794063, 0.016082387, 0.0045932517, -0.0176682, -0.006915907, -0.0038484, 0.0017349836, -0.014392455, -0.01861328, -0.0054982863, 0.019173922, 0.0056224284, -0.013975979, -0.012790624, 0.009386732, 0.0032296926, -0.046100706, -0.021544632, -0.016466826, 0.012910761, -0.0025729416, 0.064553805, -0.009715107, -0.004789476, -0.013631585, 0.034151044, -0.0090423385, 0.008810072, -0.018356988, 0.03269338, 0.020855844, -0.010508014, 0.009979409, -0.008810072, 0.02860871, 0.006719683, 0.020247148, 0.017940512, -0.022762025, 0.003710242, -0.010299776, 0.019013738, -0.0143444, 0.0127986325, 0.0071481727, 0.03211672, 0.025148753, 0.0116693415, 0.017299779, 0.0482792, 0.038251735, -0.026958823, 0.009771172, -0.027151043, -0.038796358, 0.02385127, -0.00048905914, -0.028945094, -0.018276896, 0.0028552643, -0.019157903, -0.0066155638, 0.0036161344, -0.011557214, -0.011453095, 0.0017990569, -0.0019051782, 0.008369569, -0.012246001, 0.054109864, -0.018949665, -0.05081009, 0.008449661, 0.008689935, -0.0007088104, 0.0330618, 0.000028485692, 0.017027467, 0.010628152, 0.01739589, -0.018981703, 0.0071722, 0.001238416, -0.01263845, -0.01548971, 0.0074805524, -0.004533183, 0.01834097, -0.013607558, 0.033798642, -0.0023486852, 0.0070480583, -0.009891309, 0.03208468, -0.034343265, -0.008165335, -0.013951952, -0.012582386, -0.014096117, -0.002166477, 0.009835245, -0.004713389, -0.016290626, 0.010780325, 0.0070640766, -0.001308496, 0.0074805524, -0.015377581, 0.008273459, -0.0024407906, -0.0033898756, -0.0063712844, 0.006359271, -0.025469119, 0.0065434813, 0.0061430233, -0.04187187, -0.018244859, -0.012862707, -0.00014854483, 0.016883302, 0.04430666, 0.013831814, 0.008009157, -0.009450805, 0.0026630447, -0.017812366, 0.009546915, -0.008778036, 0.025421064, -0.027167061, 0.015209389, 0.029297497, -0.020086966, -0.0075005754, 0.0152414255, -0.008818082, 0.048151053, 0.016931359, 0.030418778, 0.029665917, -0.011324948, -0.00864188, -0.018004585, -0.0041207112, 0.0055623595, 0.003039475, 0.037354708, -0.0065394766, 0.014264309, 0.009891309, -0.028384453, -0.005406181, 0.042993154, -0.0040826676, 0.015641883, 0.0037182511, 0.015089252, -0.008105267, -0.007568653, -0.0061510326, 0.014280327, -0.015417627, 0.010716252, 0.0019762595, 0.00884211, 0.017043486, 0.008729981, -0.02803205, -0.020247148, -0.027631592, -0.00826545, 0.0133112185, -0.015265454, -0.027102986, 0.026766602, 0.020247148, -0.0054382174, 0.019606417, -0.005233984, -0.009170485, -0.03315791, 0.044434804, 0.013687649, 0.034823816, 0.017940512, -0.025725413, 0.010532041, 0.028913056, -0.011757443, 0.0046052653, -0.041743726, 0.0015878153, 0.013671631, -0.005434213, 0.007232269, 0.009114421, -0.03600917, 0.04645311, 0.024459966, -0.009146458, -0.036489718, -0.052187666, 0.022489714, 0.0032076673, -0.010628152, -0.0054942816, -0.02631809, -0.0056264326, 0.001509726, -0.0040085833, -0.026141888, 0.0035080106, -0.0063112155, 0.019734563, -0.0058386754, -0.028816946, 0.008321514, 0.02337072, 0.01006751, 0.013727695, 0.007953092, -0.0057305517, 0.025148753, 0.034727704, -0.010572087, 0.004020597, 0.015537765, -0.02888102, -0.0039064665, 0.031892464, 0.0037562947, -0.025148753, -0.009979409, -0.00132952, -0.014368428, 0.002200516, -0.0015427639, -0.02356294, 0.006591536, 0.0037923357, 0.008561789, -0.013046917, 0.03812359, -0.00064473716, -0.023210537, 0.00092255475, 0.0039845556, 0.022169346, -0.012005726, -0.03137988, -0.030578962, 0.014688794, 0.0019962825, 0.009178494, 0.013199091, 0.024443947, -0.026045779, 0.0014696803, -0.0012534331, -0.00054462266, -0.021192228, -0.017604128, -0.019318087, 0.016562937, -0.024668204, -0.052604143, 0.037931368, 0.0029033194, -0.038636174, -0.025308937, -0.015625866, 0.010131584, 0.025100699, 0.01416019, 0.003510013, 0.017299779, 0.012221973, 0.028432507, -0.025292918, -0.013495429, -0.00024465472, -0.01957438, -0.010395885, -0.0059988587, 0.0029473698, -0.00816934, 0.031107565, -0.008005152, -0.0152414255, 0.009618998, -0.025100699, -0.0050097276, 0.000037542923, 0.029874155, -0.015161335, 0.021304358, 0.012093827, 0.017123578, 0.017411908, 0.025052642, -0.00807323, -0.03238903, 0.037739147, -0.0064273486, 0.037578963, 0.009739134, 0.030098412, -0.004256867, -0.026430218, 0.033125874, 0.034951963, 0.0075966856, -0.019654471, 0.009346686, 0.02136843, -0.0009510874, 0.018725408, 0.02631809, 0.01416019, 0.031043492, 0.018709391, -0.010876435, -0.022393603, -0.006803779, -0.040974848, -0.0007083098, -0.01462472, 0.0017049493, -0.00465332, -0.0069799805, 0.017059505, 0.010187647, -0.0153855905, 0.016691083, 0.0008840107, -0.006058927, 0.016771175, -0.012013735, 0.016498864, -0.00044200534, -0.005530323, -0.007212246, -0.021208247, -0.016226552, 0.015850121, 0.004124716, -0.010483987, -0.0017620146, -0.00774085, -0.024203673, 0.030274613, -0.019318087, -0.03732267, -0.022025181, 0.018469116, -0.013935933, 0.0062391334, 0.02450802, -0.005045769, -0.00085397635, -0.011364994, 0.02309841, 0.0065114447, 0.0014596689, 0.0044570956, -0.036201388, 0.03137988, -0.0048415354, 0.015505728, 0.0026430218, 0.0014846975, 0.014496574, -0.019334106, 0.0040626447, 0.021608705, -0.03562473, -0.0016468829, 0.0071121315, -0.020663625, -0.005141879, -0.0075165937, -0.014136162, 0.004360986, -0.016707102, -0.012366138, -0.011389021, -0.010956527, -0.027054932, 0.019526325, -0.0021064084, 0.018308932, -0.0048375307, -0.03421512, -0.023050353, 0.0058186525, 0.012566367, -0.05385357, 0.015249435, -0.010443941, -0.02223342, -0.02250573, -0.010860417, -0.002657038, -0.010003437, 0.005446227, -0.01957438, -0.00053060666, 0.0010401893, 0.00053361006, 0.01244623, -0.016739137, 0.011108701, 0.01291877, -0.0042128167, 0.007276319, 0.02252175, -0.001038187, 0.022121292, -0.0029533766, -0.056000024, 0.027695665, -0.025244862, -0.007977121, 0.0015047204, 0.018453097, 0.0034038918, -0.037354708, -0.0153936, -0.05721742, -0.0020163052, 0.028544635, -0.00845767, -0.01063616, -0.008994283, 0.014784904, -0.0043369583, -0.019302068, 0.011332957, 0.02896111, -0.0027431364, -0.009506869, -0.00292134, 0.030338686, -0.014816941, 0.00864188, -0.008914191, -0.020022893, 0.0072002322, 0.030274613, -0.008697945, 0.0049416497, 0.0053340984, 0.018020604, -0.030082393, -0.025180789, -0.0063712844, -0.03876432, 0.01216591, -0.034311228, 0.0074965707, 0.017331816, 0.0028292348, -0.007868997, 0.029633882, -0.008762018, -0.032645322, -0.019686507, 0.018100694, -0.004421055, -0.0036601848, 0.010764307, -0.04059041, 0.014528611, 0.022697952, -0.008217395, 0.033125874, -0.03331809, -0.012117854, -0.0048135035, 0.035496585, -0.008157326, -0.01225401, -0.019125868, -0.024908477, -0.032725416, -0.009354696, -0.0014546631, -0.00035815948, -0.028993148, 0.023514885, 0.005017737, -0.026478274, 0.0052660205, 0.017027467, 0.014552638, -0.00079290656, -0.026061798, -0.011044627, -0.0012003724, 0.0046613296, -0.030659053, 0.037386745, -0.041102994, 0.03818766, 0.007456525, -0.042128164, 0.007468539, 0.021576669, 0.02470024, -0.015233416, -0.016899321, 0.008697945, 0.000011106448, 0.01111671, -0.0053060665, 0.0037623015, 0.017748293, 0.003453949, 0.012029754, 0.0127986325, -0.09207327, 0.002208525, 0.007332383, 0.008401605, 0.019894745, -0.015025179, 0.017780328, -0.010780325, -0.0176682, -0.021704815, 0.011164765, 0.035881024, 0.009354696, 0.0035200245, 0.018789481, 0.0019282046, -0.0054302085, 0.00026655477, 0.009034329, 0.015049206, 0.009466823, 0.036169354, 0.016370717, 0.0063032066, -0.014945087, -0.012213964, -0.009827236, -0.009635015, 0.025981706, -0.016883302, 0.037354708, 0.0058747167, -0.006423344, -0.020711679, 0.013159045, 0.009050347, -0.019398179, -0.001869137, 0.019510306, -0.014608703, -0.004633297, -0.01291877, -0.016643029, -0.00930664, -0.015986277, 0.0018310936, 0.0024007447, -0.012862707, -0.026750585, 0.015153325, -0.0037042352, 0.009138448, -0.03163617, -0.017652182, 0.015281471, 0.02803205, -0.0022966259, -0.002913331, 0.023114428, 0.010323803, 0.05327691, 0.00474943, 0.014296345, -0.013263164, 0.001073227, 0.0024828387, 0.010684215, -0.017363852, 0.028160196, 0.0034919924, -0.0064353575, 0.009050347, -0.023338683, -0.028352415, 0.0034098986, -0.028000012, 0.004933641, 0.001190361, 0.0109325, -0.024347838, -0.015617856, 0.014760876, 0.010844398, 0.01006751, -0.028336396, 0.004777462, -0.0037883313, -0.023050353, 0.008537761, 0.0018421061, 0.030819235, 0.013327237, -0.0072402777, -0.00921854, -0.003972542, 0.031107565, 0.0004925632, -0.0011963678, -0.020599551, 0.010211675, 0.000907037, 0.011741424, -0.021929072, 0.0040045786, -0.011084673, 0.0005060786, -0.01776431, 0.011044627, -0.0055823824, -0.013239137, -0.0044530914, -0.004340963, -0.018533189, 0.0030354704, -0.017908474, 0.0020963969, 0.015169343, -0.017636163, -0.0007428493, 0.019446233, -0.0029473698, 0.0036461686, 0.0073203696, -0.015826095, -0.01254234, 0.012830669, -0.024588112, 0.0034018895, -0.030707108, -0.039469127, -0.004913618, -0.014752867, -0.00334983, 0.006339248, -0.011413049, -0.019013738, -0.0016078383, 0.0032797498, 0.006487417, 0.010900463, -0.024924496, 0.024475984, -0.0055623595, 0.023002299, -0.0031275759, -0.023979416, -0.017299779, 0.01938216, 0.0053821537, 0.0014937078, -0.025517175, -0.014328382, -0.007056067, -0.015361563, 0.01330321, 0.00053260894, 0.01861328, 0.009058356, 0.018164769, -0.01377575, -0.029489717, 0.0053501166, 0.03636157, -0.013159045, 0.05234785, 0.0027171066, 0.01386385, -0.016963394, -0.015185362, -0.0020343259, 0.002713102, -0.009162475, 0.00029033195, 0.0024828387, -0.018581245, -0.009354696, 0.0043289494, 0.0252769, -0.010732271, -0.025613284, 0.00062521483, -0.0065194536, 0.009667053, -0.0048135035, 0.026622437, 0.018549208, -0.014816941, 0.009538906, 0.014776895, 0.0064834123, 0.010267739, 0.009923345, -0.0126144225, -0.01691534, -0.007020026, -0.019734563, 0.027711684, -0.015633874, 0.012734559, -0.012702523, -0.029601844, 0.014897032, -0.01054005, -0.0038463976, 0.01492106, -0.00027181077, -0.012566367, 0.025981706, 0.018389024, -0.0039785486, -0.04843938, 0.016394744, 0.0074324976, 0.0027090972, -0.0012364136, -0.008994283, 0.011292911, -0.04626089, 0.018725408, -0.019638453, 0.0033638459, 0.012902752, -0.008321514, -0.0018731416, 0.009667053, -0.0033678506, 0.019590398, -0.054974854, -0.027247151, 0.01967049, -0.0059227715, 0.01254234, 0.02649429, -0.014953096, -0.0053621307, 0.008281468, 0.025885595, -0.0019151897, -0.0000024989508, -0.0029493722, -0.010764307, -0.013407329, 0.009282613, 0.013287191, -0.021160193, -0.006563504, -0.0073283785, -0.03754693, 0.014736849, -0.004236844, -0.030418778, 0.004865563, 0.011549205, -0.003295768, 0.032485142, 0.016643029, -0.01680321, -0.012686505, -0.010948517, 0.010219684, -0.019654471, -0.011765451, -0.0121018365, 0.031123584, 0.01615447, 0.015705956, -0.042993154, -0.0071281497, 0.006339248, -0.021224266, 0.013767741, 0.032645322, -0.003405894, 0.023723124, 0.016947376, -0.0011342969, 0.021897035, -0.026862713, -0.012478267, 0.028368434, 0.0053260894, 0.009098402, 0.010964536, 0.007056067, 0.0074365023, 0.008617853, -0.013911906, 0.002901317, -0.005826662, 0.017540054, -0.0017119573, -0.0065394766, 0.031876445, 0.018212823, -0.010219684, 0.011172774, 0.015818086, -0.035977133, -0.0032917636, -0.006098973, -0.002318651, 0.0006767738, -0.014296345, 0.015721975, -0.0035540634, -0.00017294774, 0.020119002, -0.0012954811, -0.015609847, 0.00068378175, -0.0038944525, -0.0034859856, -0.00034814805, -0.023963397, 0.011741424, 0.012270029, 0.0073964563, 0.0049656774, 0.020407332, -0.018549208, -0.0012964823, -0.02726317, -0.00977918, 0.031956535, -0.007628722, -0.0034098986, -0.012053781, -0.015129298, 0.022121292, -0.017315798, -0.014993141, -0.0052179657, -0.0047173933, -0.0000104259825, 0.010155611, 0.013839823, 0.0065795225, -0.020871863, -0.0011162763, 0.0074164793, 0.0046853567, 0.013647604, 0.0072362735, -0.02450802, -0.0027030904, 0.025020607, -0.014552638, -0.012077808, -0.038604137, 0.009955382, -0.016610991, 0.0021104128, -0.0150972605, -0.00707609, -0.01616248, 0.0042648762, 0.042032056, -0.020407332, 0.0030254591, -0.0087139625, 0.016755156, 0.009378723, -0.0002512873, -0.00070230296, -0.010323803, 0.003606123, 0.027038913, -0.002338674, 0.01092449, -0.011292911, 0.014856986, -0.011260875, -0.010363849, -0.028192233, -0.0032156766, -0.0063032066, 0.0031596124, -0.036906194, -0.00060168793, -0.007608699, 0.010764307, -0.014800922, 0.013207099, 0.010203666, 0.011316939, -0.028832965, -0.012358129, -0.007336388, -0.00802117, -0.017796347, -0.015818086, 0.005634442, -0.007856983, -0.02279406, -0.01891763, -0.029345552, -0.026830675, 0.02337072, -0.0013525464, -0.013903896, -0.0016488852, 0.0033798642, -0.0035260313, 0.0092265485, -0.013607558, -0.029521752, -0.030354705, -0.014897032, 0.009939364, -0.0118135065, -0.006098973, -0.007941079, -0.025997724, -0.0046613296, 0.0053541213, -0.023338683, -0.0040185945, 0.010700233, -0.0038484, -0.0070080124, -0.007905038, 0.0072723147, -0.0015527753, -0.0066876463, -0.03230894, -0.009466823, 0.0065594995, 0.020567516, 0.028080104, -0.0110206, -0.005670483, 0.0017750295, -0.0015908187, 0.012654468, -0.00931465, -0.004577233, -0.0011162763, 0.000044895078, 0.012438221, -0.011989708, 0.007929065, 0.007332383, -0.0039084684, -0.013143026, 0.00010587104, 0.01633067, 0.018020604, -0.00056865014, -0.026205963, -0.001370567, 0.0132311275, -0.013783759, 0.019878728, 0.026109852, 0.0066235727, -0.012061791, 0.018677354, -0.009979409, 0.004078663, -0.0025248867, -0.0025108708, -0.02013502, -0.013527466, 0.016402753, 0.0057986295, 0.0075085848, -0.01568193, -0.017235706, -0.047734577, -0.018132731, 0.009066366, 0.0003706738, -0.012646459, -0.024828387, 0.014704812, -0.00036591836, -0.012902752, 0.022569804, -0.01169337, 0.015930213, -0.040718555, 0.019958818, 0.00931465, -0.0017950523, 0.006419339, -0.02308239, 0.020551497, 0.01986271, -0.014056071, -0.0043009175, -0.019926783, -0.017604128, 0.018677354, 0.0051538926, -0.0016248578, 0.0044891327, -0.011421057, -0.00930664, 0.0018200809, 0.0034419352, -0.015641883, -0.015345545, -0.021320377, 0.009931355, 0.006082955, -0.02365905, -0.0015567798, -0.009651034, 0.018276896, 0.017876439, 0.027567519, 0.027199097, -0.015073233, 0.011805497, -0.018421061, -0.0030574957, -0.012093827, -0.009643025, -0.01597026, 0.017427925, 0.011413049, -0.0036982282, -0.017299779, 0.011557214, 0.008001148, -0.0015487707, 0.01643479, 0.0017530043, 0.0058987443, 0.046965696, 0.009450805, 0.012894743, -0.008778036, 0.006291193, 0.0026550356, -0.018533189, 0.01587415, -0.006827806, 0.01634669, -0.021320377, -0.008882155, -0.011204811, 0.026141888, -0.0006742709, 0.007344397, 0.090535514, 0.0060549225, 0.021320377, 0.01616248, 0.024588112, 0.000119261356, 0.029585825, -0.010708243, -0.006291193, 0.0003256223, -0.0023066371, -0.02859269, -0.009715107, 0.014304355, -0.008609843, -0.005830666, 0.023643032, 0.016466826, 0.013671631, 0.0065194536, 0.01186957, -0.007252292, 0.02508468, -0.007288333, 0.012013735, 0.02462015, 0.0051378743, -0.020006875, 0.032485142, 0.021977127, 0.012053781, -0.0153936, 0.003890448, 0.00488959, 0.033029765, 0.015593829, -0.015369573, -0.0019422206, -0.012374148, -0.0016759161, 0.011469113, 0.010940508, 0.004953664, 0.005778607, 0.017908474, -0.012181927, -0.006951948, 0.0019322091, 0.013151036, -0.012854697, -0.008938219, 0.02735928, 0.0034839832, 0.015978267, 0.0019742572, 0.005422199, 0.001695939, -0.02242564, -0.008061216, 0.015409618, 0.00048405342, 0.006819797, 0.001135298, -0.018453097, 0.01709154, 0.01492106, 0.010668197, 0.0027451385, 0.0022185366, 0.023723124, -0.009643025, 0.005189934, -0.002104406, 0.023995435, -0.026286053, 0.011260875, -0.007881011, 0.004332954, -0.016090397, -0.0070720855, 0.0121418815, 0.00365618, -0.006014877, -0.020567516, 0.0012794628, -0.017139595, 0.019734563, 0.011076665, 0.00090903934, 0.010628152, -0.004533183, -0.013783759, 0.0015998291, 0.0004955666, -0.016482845, -0.015713966, -0.009538906, 0.013655612, 0.017556071, 0.0069239163, 0.012029754, -0.0020042916, 0.004533183, 0.0052379887, 0.012678496, -0.0075566396, -0.010668197, -0.00092155364, 0.012934788, -0.007732841, 0.00031385885, 0.028512599, -0.007945084, 0.025997724, 0.007860987, -0.0053701396, -0.008225405, -0.00884211, -0.014848977, -0.0017640168, -0.008898173, -0.0010071514, -0.008970256, -0.021240285, 0.007080095, -0.0006512446, 0.009050347, -0.0010922488, -0.0001664403, -0.015473691, -0.02849658, 0.008946229, -0.008625862, 0.025196807, 0.014704812, -0.01851717, -0.016186506, 0.01596225, 0.0041006883, 0.012974834, -0.0002730622, -0.009266594, 0.00061219995, 0.008161331, 0.010187647, -0.0010411903, -0.016947376, 0.01500916, 0.014520601, -0.017636163, 0.016963394, 0.0090423385, -0.0019422206, -0.024908477, 0.008754008, -0.010467968, 0.0025849554, 0.018164769, -0.005766593, 0.004208812, -0.0026670492, -0.012205956, 0.0059147626, -0.027631592, 0.016594972, 0.0051939385, 0.014264309, 0.016298635, -0.0011132729, 0.024492001, -0.010956527, 0.015802067, -0.013295201, 0.009627007, 0.008649889, -0.017732274, 0.0038604136, -0.024556076, 0.0055623595, 0.0014416482, -0.008537761, 0.0018250867, 0.025501156, -0.008473688, -0.008794054, -0.0330618, -0.013102981, 0.007380438, 0.006887875, -0.018981703, 0.0020943945, 0.00064623886, 0.008489707, 0.002388731, -0.0106441695, -0.0027471408, 0.0022445663, 0.008217395, 0.013054926, -0.003744281, -0.013943942, 0.0068758614, -0.0025168776, 0.028336396, -0.0078209415, -0.0032597268, -0.008978265, -0.009482842, -0.0108283805, -0.019221976, -0.063688815, -0.00884211, -0.0013425349, 0.020487424, 0.0043049217, -0.001515733, -0.0109725455, 0.017011449, 0.01728376, 0.0063792937, 0.00808124, 0.017411908, -0.017299779, 0.01795653, 0.014008015, 0.000726831, -0.022553787, -0.007881011, 0.02585356, 0.021624723, 0.025308937, -0.0036641893, 0.00978719, 0.015153325, -0.0047093844, 0.009963391, 0.0007909043, 0.015713966, 0.026990859, 0.0017199664, -0.005442222, -0.008089248, -0.0044290638, -0.017780328, -0.013183072, 0.00593879, -0.00085247465, -0.008233413, -0.008033184, -0.000033194203, 0.004377004, -0.009939364, 0.012902752, -0.006163046, 0.023803214, -0.013215109, 0.00027331247, 0.0093707135, -0.020919917, -0.0109725455, -0.007832956, 0.00627117, -0.013359274, 0.017732274, -0.0042408486, -0.0027251157, -0.024556076, 0.012806642, -0.002394738, 0.0110206, 0.0016488852, -0.010692225, -0.004445082, 0.021416485, 0.0046893614, -0.012093827, -0.014496574, 0.0011192797, 0.007116136, 0.013135018, -0.015001151, -0.008185359, 0.012966825, 0.021897035, -0.0012754583, -0.0005486272, -0.0145446295, 0.020263167, 0.016226552, 0.0044130455, 0.0071321544, 0.007949089, -0.012686505, -0.028816946, 0.0044891327, 0.00546625, -0.018276896, -0.029089259, -0.0040826676, -0.005065792, 0.008093253, 0.009651034, 0.008866137, 0.007360415, -0.0013745716, -0.011901607, 0.0068718567, 0.017043486, 0.00021912553, -0.009066366, 0.0074244887, -0.004272885, 0.013959961, -0.020343259, -0.0006422343, -0.012061791, -0.010988563, 0.0054141902, -0.0047534346, -0.009442796, 0.0074365023, -0.00527403, 0.018276896, -0.013895887, 0.0051138466, -0.011725406, -0.023995435, -0.0073844427, -0.013543485, -0.018773464, 0.024347838, -0.022601841, -0.015778039, 0.007808928, 0.008177349, 0.018100694, -0.0010972545, -0.004677348, -0.0047934805, 0.005446227, -0.008705954, 0.0011513163, 0.0039905626, -0.012846688, 0.00092455704, -0.0026330103, -0.011821516, -0.026302071, -0.005041764, 0.036169354, -0.01386385, 0.0004645311, 0.008153322, -0.009426778, 0.00864188, 0.014272317, -0.0024888455, -0.022729987, -0.00033713545, -0.010475977, 0.027295208, 0.002338674, 0.021192228, -0.002651031, -0.01768422, -0.017123578, 0.005422199, -0.008922201, -0.005165906, 0.019398179, -0.023546921, 0.0015687937, -0.002969395, 0.022265457, 0.012358129, 0.018132731, 0.015033187, 0.020391313, 0.0076207127, -0.0014696803, 0.0026109852, -0.0035961114, -0.015778039, -0.0038584115, 0.014744858, -0.0061990875, 0.0005481267, -0.0031315803, 0.018981703, -0.016178496, 0.00089752616, -0.0060308953, -0.0048335264, -0.00061370165, -0.010532041, 0.0065594995, -0.00627117, 0.009618998, -0.0012564365, -0.0010186647, -0.007937075, 0.0061550373, 0.005422199, -0.008874146, 0.0012894743, 0.01776431, -0.025116716, -0.013335247, -0.039597273, 0.0072442824, 0.033766605, -0.0019672492, 0.009050347, -0.0016208531, 0.0026189943, 0.011084673, 0.034823816, 0.0142162535, 0.013143026, -0.0109725455, 0.011677351, 0.02279406, 0.0035260313, 0.021304358, 0.02574143, 0.003411901, 0.028993148, 0.0066195684, 0.008874146, -0.01967049, 0.039565235, -0.027135024, -0.0022525755, 0.024363855, 0.017556071, 0.007808928, 0.012486275, 0.017604128, -0.020663625, 0.008505724, -0.00855378, 0.002124429, -0.013094972, -0.0004918123, 0.0031395894, -0.0010702236, -0.007816937, -0.009506869, -0.0033638459, -0.0059988587, 0.0069239163, -0.0019982846, 0.031908482, -0.0034559513, -0.011204811, 0.021000009, 0.00940275, 0.010275749, 0.0031235712, 0.00845767, -0.005490277, 0.00037868295, 0.0019342114, -0.017620144, 0.0011342969, -0.0093707135, 0.0020183076, 0.0070921085, -0.017491998, 0.015081243, -0.012830669, -0.010820371, 0.020551497, -0.0018200809, 0.026382163, -0.001446654, -0.0033638459, 0.022105273, 0.007380438, 0.00940275, -0.0056584696, -0.016867284, -0.015361563, -0.0032156766, 0.01691534, 0.0127585875, -0.007636731, -0.019974837, -0.0042808945, -0.0013885876, -0.012422202, 0.015762022, 0.009058356, 0.0016588967, -0.0044530914, 0.0077008046, 0.0048575536, -0.009939364, -0.0027591547, -0.0059628175, -0.012694513, -0.0013695658, -0.010668197, 0.008625862, 0.004577233, -0.00527403, 0.01984669, 0.01006751, 0.0020273179, 0.001619852, -0.0021704815, 0.010692225, -0.02497255, -0.006887875, -0.014424492, 0.0063232295, 0.006547486, 0.0052219704, -0.006207097, -0.016074378, 0.0024888455, 0.00060168793, 0.019974837, 0.0053461124, -0.029329533, -0.00531808, -0.004893595, -0.013831814, 0.00783696, 0.007925061, -0.026878731, 0.015177352, 0.003225688, 0.016963394, 0.006895884, 0.009635015, 0.007712818, 0.0048975996, 0.00527403, 0.0011893598, 0.016931359, -0.008649889, 0.025997724, 0.023034336, 0.0077368454, 0.012109845, 0.014800922, 0.009643025, 0.012246001, -0.012894743, -0.0048775766, 0.005310071, 0.015345545, 0.011485131, 0.0034639605, 0.004026604, 0.009795199, 0.008906183, -0.0052620163, -0.0035420496, -0.0033958827, 0.016194515, 0.009939364, 0.005189934, -0.006319225, 0.016210534, 0.008273459, 0.0015607844, -0.012414194, -0.019526325, 0.01186957, -0.009867282, -0.0019201954, -0.017908474, -0.0035780908, 0.0038303793, 0.00646339, -0.018485134, -0.00062471424, -0.014736849, 0.005778607, -0.01169337, 0.0036001161, -0.002520882, 0.0069479435, -0.0032557223, -0.0068438244, 0.010988563, -0.014656757, 0.010459959, 0.025597265, -0.0073043513, 0.019958818, 0.0001257688, -0.0064153345, 0.002208525, -0.0039485143, 0.029633882, -0.02649429, 0.00029208395, -0.013207099, -0.0140720885, 0.010395885, 0.0021684791, -0.015313508, 0.008449661, -0.007648745, 0.0061310097, 0.008786045, -0.013022889, -0.00083996035, -0.0035020038, -0.025501156, -0.0072643054, -0.018421061, -0.025421064, -0.01927003, 0.0013975978, -0.0087139625, 0.0039685373, -0.0023346692, 0.0040626447, 0.0037182511, -0.011036619, -0.0016669058, 0.009290623, -0.02213731, -0.006547486, 0.013295201, 0.013022889, 0.0050497735, -0.031187657, -0.0016899321, 0.005422199, -0.020054929, 0.017027467, 0.018084677, 0.017475981, -0.00401459, 0.0145846745, 0.009162475, 0.0007108127, -0.012494285, 0.0019962825, 0.012862707, 0.00209039, -0.0066476003, -0.015746003, 0.0176682, 0.0093707135, -0.026302071, -0.0020453385, 0.005426204, -0.003856409, 0.0010291766, -0.00045877454, 0.0028993147, 0.011637305, -0.0005966822, 0.0127986325, 0.012558358, 0.0090022925, 0.0013255154, -0.004777462, 0.013295201, 0.0009435788, 0.004701375, -0.017043486, 0.009114421, -0.013727695, -0.001557781, -0.017011449, -0.0061109867, -0.01843708, 0.0029093262, 0.003335814, 0.021048065, -0.032517176, 0.003225688, 0.006459385, -0.0058186525, 0.0050017186, 0.010323803, -0.010900463, -0.0000027257727, 0.014985133, 0.004316936, -0.0029794064, 0.0031115576, -0.004617279, 0.009522888, -0.014264309, -0.011853552, -0.02338674, -0.009394741, -0.022281475, 0.020167056, 0.01890161, -0.0137437135, 0.009114421, -0.008009157, 0.020759735, -0.010812362, -0.017876439, -0.017475981, 0.016378727, -0.018180786, -0.03697027, -0.0063792937, -0.0024207677, -0.016659046, 0.018405043, -0.0023166486, -0.016867284, -0.033798642, 0.0011132729, 0.0035220268, 0.020247148, -0.019334106, 0.005245998, -0.01406408, -0.014272317, -0.007612704, -0.013759731, 0.019334106, -0.03363846, -0.0062591564, -0.0129427975, -0.020663625, 0.004360986, 0.0077929096, -0.0035060085, 0.03389475, 0.0001699443, 0.015850121, -0.0016719116, 0.005225975, 0.015257444, 0.0023566945, 0.003960528, 0.0061350144, 0.006811788, -0.00015505227, -0.004389018, 0.01045195, -0.02308239, 0.0045572105, -0.022121292, -0.003053491, -0.00774085, 0.018244859, 0.0036001161, -0.0040586405, -0.02402747, 0.022713969, 0.01577003, 0.0059868447, -0.01311099, 0.010003437, 0.010708243, -0.0138878785, -0.010211675, 0.0025389027, 0.0045211692, 0.022169346, -0.00018170774, 0.007084099, -0.00012676994, -0.00038919496, -0.021945091, 0.0034719696, 0.015569801, 0.0022866144, 0.013855842, -0.016835248, -0.0055103, -0.023482848, -0.0015387593, -0.008489707, 0.0116693415, -0.01025973, -0.005654465, -0.009915336, -0.004769453, -0.0052419933, -0.014088107, -0.0025789486, -0.015537765, -0.013471402, 0.01645081, -0.013575521, -0.0068438244, -0.0073964563, -0.027215116, -0.0005601404, -0.018677354, 0.0036521757, 0.028865002, 0.005766593, 0.034983996, -0.009859272, -0.0039445097, 0.023114428, -0.005974831, -0.011901607, 0.018853556, 0.0019272034, -0.0027911912, 0.00026255017, 0.018581245, -0.008297486, 0.0008124289, -0.008005152, -0.017892458, 0.028897038, 0.005762588, -0.0070080124, 0.018565226, 0.0071201404, 0.00627117, -0.008593826, 0.0021404473, 0.011485131, -0.016963394, -0.025020607, 0.0020603556, 0.009618998, -0.0033618435, 0.03136386, -0.018485134, 0.022890171, -0.014000006, 0.01444051, 0.0008314506, -0.0096590435, 0.012318083, 0.017331816, -0.014712822, -0.0019141885, 0.01225401, 0.0019091828, -0.016771175, 0.0014136162, -0.00731236, -0.017219687, 0.02136843, 0.0014206242, 0.009506869, 0.03269338, -0.03914876, 0.004505151, 0.00216047, 0.004252862, 0.0060869595, -0.020375295, 0.0026670492, -0.026045779, 0.0039485143, 0.0050978283, 0.0065795225, -0.007716823, -0.0026089828, -0.000321868, -0.006058927, 0.009442796, 0.0034239145, -0.014208244, 0.01757209, 0.0062471423, -0.013151036, 0.007648745, -0.0092265485, 0.004865563, -0.013631585, -0.02556523, 0.0019191942, 0.010323803, -0.0016348691, 0.011413049, -0.0017209676, -0.021544632, -0.036746014, -0.0090423385, 0.024235709, -0.025677357, -0.0008004151, 0.004405036, -0.0074044657, 0.03572084, -0.0014977123, -0.0121579, -0.0015968257, -0.017588109, -0.011292911, -0.010900463, 0.0012784617, 0.026141888, -0.024924496, -0.0009941366, -0.00893021, 0.013607558, 0.010051492, 0.013239137, 0.013767741, 0.003335814, 0.029009167, -0.010331812, -0.013911906, 0.025052642, 0.0009285616, 0.0031836398, 0.012574377, -0.023114428, 0.005546341, -0.006975976, 0.00095509196, -0.022762025, 0.017972548, 0.022265457, 0.0020543488, 0.010860417, -0.008665908, -0.023594977, -0.01681923, -0.0009921343, -0.015593829, 0.010708243, -0.023242574, 0.0220412, 0.011525176, -0.0011853552, -0.004589247, -0.002146454, 0.016034333, -0.021592688, 0.013183072, 0.006639591, -0.0042808945, -0.0034359284, -0.009506869, 0.013815796, 0.004637302, 0.00503776, -0.025292918, 0.019029757, 0.013503439, 0.0043009175, 0.0121018365, 0.0007678779, -0.008321514, 0.0024107562, -0.0017419916, 0.032549214, -0.0030494865, 0.008281468, 0.0013165051, -0.017844401, 0.01462472, -0.020391313, 0.0036541778, 0.012550349, -0.017411908, 0.037739147, 0.010475977, 0.003972542, -0.009811217, 0.0048295218, -0.00949886, -0.017652182, -0.008225405, -0.0037783198, -0.011557214, -0.007256296, 0.0017409904, -0.019686507, 0.01416019, 0.021993145, 0.0024067517, -0.021480558, 0.021176212, 0.0076247174, -0.0072042365, 0.008209386, -0.010379868, 0.004541192, -0.007568653, 0.0065394766, -0.009723117, -0.004969682, -0.008810072, 0.01680321, 0.009635015, 0.0036581825, 0.0057545793, 0.002881294, -0.005398172, 0.0034078963, -0.006675632, -0.0012163908, 0.0017399894, 0.0010036475, -0.007400461, -0.0023106418, 0.016610991, -0.005398172, -0.019526325, 0.0055423365, 0.0038243725, 0.028544635, 0.0020363282, 0.014808931, -0.016018314, -0.014488565, 0.0043369583, -0.0029874155, -0.0049937093, 0.026894748, 0.0015317512, -0.012237992, -0.01406408, 0.027423354, -0.017075522, -0.0009631011, 0.026141888, 0.006723687, 0.007096113, 0.008721972, -0.01585813, 0.012982843, 0.012550349, 0.03411901, 0.023434794, 0.0098032085, 0.0024868432, 0.024588112, -0.021897035, 0.018453097, 0.018116713, -0.02298628, 0.010876435, -0.008129294, -0.015457673, 0.0027311225, -0.0031876445, 0.0071962276, 0.0075566396, 0.005502291, 0.008401605, 0.013623576, 0.028160196, 0.0022485708, -0.0048335264, -0.0019752583, 0.008189363, 0.0019242, -0.0090022925, -0.019398179, 0.034247156, 0.015177352, 0.009675061, 0.006459385, 0.010892454, -0.0132311275, -0.030146467, -0.0002635513, 0.0074084704, 0.006459385, -0.007552635, 0.0071081268, 0.0017019459, -0.008754008, 0.018757446, -0.037739147, 0.024908477, -0.015137306, -0.014752867, 0.0045171645, 0.009146458, 0.021913053, 0.007084099, 0.0061590415, 0.009602979, 0.009643025, -0.00365618, 0.0110206, 0.017844401, -0.008593826, 0.0048295218, 0.020295205, -0.016074378, -0.017748293, 0.006527463, 0.030370723, -0.02175287, -0.0025068661, 0.0092265485, 0.006459385, -0.00784497, 0.021336393, -0.011429067, -0.0066435956, 0.010556069, 0.00884211, 0.004332954, -0.009763163, 0.017427925, 0.00793307, 0.015625866, 0.017796347, -0.0014726837, -0.021576669, -0.0016558932, 0.018228842, -0.0015287478, -0.00033588402, -0.012910761, 0.0027110996, -0.001695939, -0.010908471, 0.002693079, -0.006383298, 0.023915343, -0.013831814, -0.0122860465, 0.015914194, 0.013935933, 0.039917637, -0.004078663, -0.025100699, 0.009811217, 0.049368445, 0.002208525, 0.0028612714, -0.009763163, 0.031475987, -0.012894743, 0.030514888, 0.010732271, 0.02023113, -0.000037949638, 0.028352415, -0.0020022893, -0.004090677, 0.017716255, -0.021736853, 0.006014877, -0.0011953667, 0.0078049237, -0.015593829, -0.01140504, -0.0062591564, 0.00826545, -0.011805497, 0.009194512, 0.006563504, -0.036617864, -0.0028953103, 0.008561789, -0.0121418815, 0.019446233, 0.00006795269, 0.0016538909, -0.0009916337, 0.005966822, -0.007220255, 0.00669966, 0.013895887, -0.006811788, 0.012077808, -0.02109612, -0.008077235, 0.0060549225, 0.0022866144, -0.013287191, 0.008986274, -0.014008015, -0.00084496604, -0.024283763, -0.028800929, -0.00969108, 0.0048815813, -0.013807787, -0.0055823824, -0.01377575, 0.015649892, -0.004797485, 0.013175063, -0.012237992, -0.002476832, -0.004006581, -0.009466823, -0.023434794, -0.022457676, 0.0022625867, -0.011741424, 0.0057545793, 0.0025449097, 0.019542344, 0.002318651, -0.019061795, 0.022457676, 0.011805497, 0.0025489142, -0.015073233, 0.020743717, -0.00076937967, 0.009282613, 0.005814648, -0.0058586984, 0.00076036935, 0.0015908187, -0.028144177, 0.0014226265, 0.011268884, -0.0028472552, -0.015914194, -0.012358129, 0.00746053, -0.014736849, 0.00013515452, -0.0016578955, 0.01938216, 0.002913331, -0.0045572105, -0.0076927952, 0.005846685, 0.012237992, 0.0110125905, -0.012189937, 0.021656761, -0.018373007, 0.0047254027, 0.024924496, 0.020247148, 0.009258585, 0.00012320335, -0.007164191, 0.00142563, 0.0055903913, 0.0012944799, -0.011573232, 0.00901831, 0.0048175077, -0.004633297, -0.0176682, 0.021480558, -0.025004588, 0.012694513, 0.000030190768, 0.01918994, 0.010419914, -0.004236844, -0.006295197, 0.014552638, 0.018821519, -0.021160193, 0.027327243, -0.00048755744, -0.010660188, -0.0040746587, -0.0011102693, -0.009410759, 0.016226552, -0.023226555, 0.01803662, 0.011060646, 0.02660642, 0.00028357422, 0.0015107272, 0.0018330958, -0.0041287206, 0.0010952522, 0.006375289, -0.00845767, 0.0071762046, -0.016578956, -0.0016238566, -0.01728376, -0.018292915, -0.0020683648, 0.019590398, 0.008345542, -0.007164191, 0.0057065245, -0.020583533, -0.0009641023, 0.049144186, -0.027295208, 0.01605035, 0.032485142, -0.005233984, -0.0072442824, 0.00275515, -0.028624726, -0.043858144, 0.008874146, -0.020775754, -0.034951963, -0.0076927952, -0.0038183655, 0.0044410774, 0.014200236, -0.0133112185, 0.004977691, 0.016106416, 0.014600693, -0.00884211, -0.013535475, -0.004809499, 0.004853549, 0.0101716295, -0.00016543915, -0.0029053218, 0.019029757, -0.013903896, -0.0060709408, 0.009482842, -0.00864188, -0.0003829378, 0.011749433, 0.021945091, 0.011485131, -0.0050697965, 0.020102983, 0.020503443, -0.013046917, -0.0024107562, -0.005330094, 0.0038103564, 0.011629296, -0.033702534, -0.007909043, -0.019302068, 0.0044971416, -0.004933641, -0.0044290638, -0.020567516, 0.0017159618, 0.0024347836, 0.0024067517, -0.005314076, 0.020359278, 0.00029959253, 0.026574383, -0.0017870432, -0.006167051, -0.023434794, 0.003926489, 0.009234558, -0.016594972, 0.021288339, 0.013503439, -0.0031375873, -0.03097942, 0.012205956, 0.021304358, 0.008377578, -0.020183075, -0.03693823, 0.011140738, 0.0071762046, 0.008145313, -0.022729987, 0.0069799805, 0.006038904, -0.014032043, 0.00050983287, -0.01444051, -0.023402756, -0.00391848, -0.020695662, -0.0076687676, -0.002977404, -0.020263167, -0.010556069, 0.00092305534, 0.005302062, -0.003744281, 0.016835248, -0.020263167, -0.0069239163, 0.021672778, -0.0021104128, 0.022954244, 0.010347831, 0.015898177, -0.008729981, 0.0032997727, -0.00826545, 0.0076687676, 0.010203666, 0.0006992995, 0.03818766, 0.0011222832, -0.007440507, 0.007296342, 0.034887888, -0.0057105287, -0.015225408, 0.016995432, 0.010604124, 0.0012834674, 0.017620144, -0.00017970546, 0.017876439, 0.019430215, 0.00527403, 0.020871863, -0.014945087, -0.0068718567, 0.0051138466, 0.004397027, 0.00016055857, 0.0012914765, -0.001667907, -0.02015104, 0.013767741, -0.020631589, 0.0053461124, -0.005338103, 0.023338683, 0.003786329, 0.0038884457, 0.023482848, 0.0068798657, 0.0060268906, 0.003051489, -0.0025529189, -0.016402753, -0.016659046, -0.0038504023, -0.0067757466, -0.009386732, -0.0013064938, 0.0036381595, -0.0010952522, 0.00784497, 0.0059508034, 0.0060308953, 0.0209039, 0.011789479, 0.0020393315, -0.018533189, -0.004673343, -0.008409615, 0.011757443, -0.015441654, 0.004741421, 0.0049416497, -0.025052642, 0.019990856, 0.004405036, 0.016899321, -0.01567392, 0.0022065227, 0.0075366166, 0.010884444, -0.0014877009, -0.023707105, 0.0063993162, 0.015145316, 0.011429067, 0.008281468, 0.0050217416, -0.023242574, 0.021400467, 0.0039885603, 0.021768888, -0.007352406, 0.019205958, -0.014969114, -0.0018961679, -0.0065875314, -0.0024207677, -0.000816934, -0.008305496, 0.03969338, -0.01130893, 0.015433646, -0.0069038933, 0.027006878, -0.017940512, -0.025469119, 0.016963394, 0.023018317, 0.03040276, -0.008145313, -0.011196801, 0.0046613296, 0.00209039
|
|
1686
|
+
]
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"sources": [
|
|
1690
|
+
{
|
|
1691
|
+
"name": "source-the-book-abstract-528a374cfbc169af09d3"
|
|
1692
|
+
}
|
|
1693
|
+
],
|
|
1694
|
+
"preparationIds": [
|
|
1695
|
+
1
|
|
1696
|
+
]
|
|
1697
|
+
}
|
|
1698
|
+
],
|
|
1699
|
+
"sources": [
|
|
1700
|
+
{
|
|
1701
|
+
"type": "BOOK",
|
|
1702
|
+
"path": null,
|
|
1703
|
+
"content": "# 💬 Chatbot\n\n- URL https://github.com/webgptorg/book/blob/main/books/templates/chatbot.book.md\n- PERSONA Paul, a developer of the Promptbook Project\n<!--\nTODO: !!!!!!\n- KNOWLEDGE https://ptbk.io\n- KNOWLEDGE https://github.com/webgptorg/promptbook\n -->\n\n## Knowledge\n\n- KNOWLEDGE\n\n```\n🤍 The Book Abstract\n\nIt's time for a paradigm shift! The future of software is in plain English, French or Latin.\n\nDuring the computer revolution, we have seen multiple generations of computer languages, from the physical rewiring of the vacuum tubes through low-level machine code to the high-level languages like Python or JavaScript. And now, we're on the edge of the next revolution!\n\nIt's a revolution of writing software in plain human language that is understandable and executable by both humans and machines – and it's going to change everything!\n\nThe incredible growth in power of microprocessors and the Moore's Law have been the driving force behind the ever-more powerful languages, and it's been an amazing journey! Similarly, the large language models (like GPT or Claude) are the next big thing in language technology, and they're set to transform the way we interact with computers.\n\nThis shift is going to happen, whether we are ready for it or not. Our mission is to make it excellently, not just good.\n\nJoin us in this journey!\n```\n"
|
|
1704
|
+
}
|
|
1705
|
+
],
|
|
1706
|
+
"sourceFile": "./book/books/templates/chatbot.book.md"
|
|
1707
|
+
}, {
|
|
1708
|
+
"title": "🖼 Generator",
|
|
1709
|
+
"pipelineUrl": "https://github.com/webgptorg/book/blob/main/books/templates/generator.book.md",
|
|
1710
|
+
"formfactorName": "GENERIC",
|
|
1711
|
+
"parameters": [
|
|
1712
|
+
{
|
|
1713
|
+
"name": "letter",
|
|
1714
|
+
"description": "Letter for you",
|
|
1715
|
+
"isInput": false,
|
|
1716
|
+
"isOutput": true
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"name": "yourName",
|
|
1720
|
+
"isInput": true,
|
|
1721
|
+
"isOutput": false
|
|
1722
|
+
}
|
|
1723
|
+
],
|
|
1724
|
+
"tasks": [
|
|
1725
|
+
{
|
|
1726
|
+
"taskType": "PROMPT_TASK",
|
|
1727
|
+
"name": "write-a-letter",
|
|
1728
|
+
"title": "Write a letter",
|
|
1729
|
+
"content": "Write a letter for {yourName}",
|
|
1730
|
+
"resultingParameterName": "letter",
|
|
1731
|
+
"personaName": "Jane",
|
|
1732
|
+
"expectations": {
|
|
1733
|
+
"words": {
|
|
1734
|
+
"min": 3
|
|
1735
|
+
},
|
|
1736
|
+
"pages": {
|
|
1737
|
+
"max": 1
|
|
1738
|
+
}
|
|
1739
|
+
},
|
|
1740
|
+
"dependentParameterNames": [
|
|
1741
|
+
"yourName"
|
|
1742
|
+
]
|
|
1743
|
+
}
|
|
1744
|
+
],
|
|
1745
|
+
"personas": [
|
|
1746
|
+
{
|
|
1747
|
+
"name": "Jane",
|
|
1748
|
+
"description": "linguist and computer scientist",
|
|
1749
|
+
"modelRequirements": {
|
|
1750
|
+
"modelVariant": "CHAT",
|
|
1751
|
+
"modelName": "gpt-4-turbo-2024-04-09",
|
|
1752
|
+
"systemMessage": "You are a virtual assistant with expertise in linguistics and computer science. Provide accurate and insightful information on language structures, computational linguistics, programming languages, and the intersection of language and technology. Offer clear explanations and be ready to discuss both theoretical concepts and practical applications in these fields.",
|
|
1753
|
+
"temperature": 0.7
|
|
1754
|
+
},
|
|
1755
|
+
"preparationIds": [
|
|
1756
|
+
1
|
|
1757
|
+
]
|
|
1758
|
+
}
|
|
1759
|
+
],
|
|
1760
|
+
"preparations": [
|
|
1761
|
+
{
|
|
1762
|
+
"id": 1,
|
|
1763
|
+
"promptbookVersion": "0.81.0-10",
|
|
1764
|
+
"usage": {
|
|
1765
|
+
"price": {
|
|
1766
|
+
"value": 0.005451
|
|
1767
|
+
},
|
|
1768
|
+
"input": {
|
|
1769
|
+
"tokensCount": {
|
|
1770
|
+
"value": 1167
|
|
1771
|
+
},
|
|
1772
|
+
"charactersCount": {
|
|
1773
|
+
"value": 3235
|
|
1774
|
+
},
|
|
1775
|
+
"wordsCount": {
|
|
1776
|
+
"value": 577
|
|
1777
|
+
},
|
|
1778
|
+
"sentencesCount": {
|
|
1779
|
+
"value": 53
|
|
1780
|
+
},
|
|
1781
|
+
"linesCount": {
|
|
1782
|
+
"value": 71
|
|
1783
|
+
},
|
|
1784
|
+
"paragraphsCount": {
|
|
1785
|
+
"value": 20
|
|
1786
|
+
},
|
|
1787
|
+
"pagesCount": {
|
|
1788
|
+
"value": 2
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
"output": {
|
|
1792
|
+
"tokensCount": {
|
|
1793
|
+
"value": 130
|
|
1794
|
+
},
|
|
1795
|
+
"charactersCount": {
|
|
1796
|
+
"value": 572
|
|
1797
|
+
},
|
|
1798
|
+
"wordsCount": {
|
|
1799
|
+
"value": 79
|
|
1800
|
+
},
|
|
1801
|
+
"sentencesCount": {
|
|
1802
|
+
"value": 5
|
|
1803
|
+
},
|
|
1804
|
+
"linesCount": {
|
|
1805
|
+
"value": 15
|
|
1806
|
+
},
|
|
1807
|
+
"paragraphsCount": {
|
|
1808
|
+
"value": 2
|
|
1809
|
+
},
|
|
1810
|
+
"pagesCount": {
|
|
1811
|
+
"value": 1
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
}
|
|
1815
|
+
}
|
|
1816
|
+
],
|
|
1817
|
+
"knowledgeSources": [],
|
|
1818
|
+
"knowledgePieces": [],
|
|
1819
|
+
"sources": [
|
|
1820
|
+
{
|
|
1821
|
+
"type": "BOOK",
|
|
1822
|
+
"path": null,
|
|
1823
|
+
"content": "# 🖼 Generator\n\n- URL https://github.com/webgptorg/book/blob/main/books/templates/generator.book.md\n\n## Write a letter\n\n- PERSONA Jane, linguist and computer scientist\n- EXPECT MIN 3 Words\n- EXPECT MAX 1 Page\n\n> Write a letter for {yourName}\n\n-> {letter} Letter for you\n"
|
|
1824
|
+
}
|
|
1825
|
+
],
|
|
1826
|
+
"sourceFile": "./book/books/templates/generator.book.md"
|
|
1827
|
+
}, {
|
|
1828
|
+
"title": "Untitled",
|
|
1829
|
+
"pipelineUrl": "https://github.com/webgptorg/book/blob/main/books/templates/generic.book.md",
|
|
1830
|
+
"formfactorName": "GENERIC",
|
|
1831
|
+
"parameters": [
|
|
1832
|
+
{
|
|
1833
|
+
"name": "letter",
|
|
1834
|
+
"isInput": true,
|
|
1835
|
+
"isOutput": false
|
|
1836
|
+
}
|
|
1837
|
+
],
|
|
1838
|
+
"tasks": [],
|
|
1839
|
+
"personas": [],
|
|
1840
|
+
"preparations": [],
|
|
1841
|
+
"knowledgeSources": [],
|
|
1842
|
+
"knowledgePieces": [],
|
|
1843
|
+
"sources": [
|
|
1844
|
+
{
|
|
1845
|
+
"type": "BOOK",
|
|
1846
|
+
"path": null,
|
|
1847
|
+
"content": "- URL https://github.com/webgptorg/book/blob/main/books/templates/generic.book.md\n\n> Write a letter for {yourName}\n\n-> {letter}\n"
|
|
1848
|
+
}
|
|
1849
|
+
],
|
|
1850
|
+
"sourceFile": "./book/books/templates/generic.book.md"
|
|
1851
|
+
}, {
|
|
1852
|
+
"title": "🧮 Sheets",
|
|
1853
|
+
"pipelineUrl": "https://github.com/webgptorg/book/blob/main/books/templates/sheets.book.md",
|
|
1854
|
+
"description": "Show how to use a simple prompt",
|
|
1855
|
+
"formfactorName": "SHEETS",
|
|
1856
|
+
"parameters": [
|
|
1857
|
+
{
|
|
1858
|
+
"name": "inputSheet",
|
|
1859
|
+
"description": "Customer names each customer on each row",
|
|
1860
|
+
"isInput": true,
|
|
1861
|
+
"isOutput": false,
|
|
1862
|
+
"exampleValues": [
|
|
1863
|
+
"First name,Last name,Note\nAlice,Springfield,Extremely important customer\nJohn,Snow,More informally in Scottish English\nPavol,Hejný,\"Writes in Czech language\nLives in and loves the Prague, please mention it every communication\""
|
|
1864
|
+
]
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"name": "outputSheet",
|
|
1868
|
+
"description": "Greeting to each customer on each row",
|
|
1869
|
+
"isInput": false,
|
|
1870
|
+
"isOutput": true
|
|
1871
|
+
}
|
|
1872
|
+
],
|
|
1873
|
+
"tasks": [
|
|
1874
|
+
{
|
|
1875
|
+
"taskType": "PROMPT_TASK",
|
|
1876
|
+
"name": "write-a-email",
|
|
1877
|
+
"title": "Write a email",
|
|
1878
|
+
"content": "Write an email from Coolstore shop to customer \"{firstName} {lastName}\". Inform him about new product fluorescent Uranium Glass Garden Gnome with build-in UV LED light.\n\n## Rules\n\n- Write just an text of email, nothing else\n- {note}",
|
|
1879
|
+
"resultingParameterName": "outputSheet",
|
|
1880
|
+
"foreach": {
|
|
1881
|
+
"formatName": "CSV",
|
|
1882
|
+
"subformatName": "ROW",
|
|
1883
|
+
"parameterName": "inputSheet",
|
|
1884
|
+
"inputSubparameterNames": [
|
|
1885
|
+
"firstName",
|
|
1886
|
+
"lastName",
|
|
1887
|
+
"note"
|
|
1888
|
+
],
|
|
1889
|
+
"outputSubparameterName": "email"
|
|
1890
|
+
},
|
|
1891
|
+
"personaName": "Jane",
|
|
1892
|
+
"dependentParameterNames": [
|
|
1893
|
+
"inputSheet",
|
|
1894
|
+
"knowledge"
|
|
1895
|
+
],
|
|
1896
|
+
"preparedContent": "{content}\n\n## Knowledge\n\n{knowledge}"
|
|
1897
|
+
}
|
|
1898
|
+
],
|
|
1899
|
+
"personas": [
|
|
1900
|
+
{
|
|
1901
|
+
"name": "Jane",
|
|
1902
|
+
"description": "customer service representative and skilled copywriter for eshop",
|
|
1903
|
+
"modelRequirements": {
|
|
1904
|
+
"modelVariant": "CHAT",
|
|
1905
|
+
"modelName": "gpt-4-turbo",
|
|
1906
|
+
"systemMessage": "You are a friendly and knowledgeable customer service representative and skilled copywriter for an e-commerce shop. Your role is to assist customers with inquiries, provide product information, and craft compelling product descriptions. Always maintain a helpful and positive tone, prioritize customer satisfaction, and use your copywriting skills to effectively communicate the value of products.",
|
|
1907
|
+
"temperature": 0.7
|
|
1908
|
+
},
|
|
1909
|
+
"preparationIds": [
|
|
1910
|
+
1
|
|
1911
|
+
]
|
|
1912
|
+
}
|
|
1913
|
+
],
|
|
1914
|
+
"preparations": [
|
|
1915
|
+
{
|
|
1916
|
+
"id": 1,
|
|
1917
|
+
"promptbookVersion": "0.81.0-10",
|
|
1918
|
+
"usage": {
|
|
1919
|
+
"price": {
|
|
1920
|
+
"value": 0.0054540000000000005
|
|
1921
|
+
},
|
|
1922
|
+
"input": {
|
|
1923
|
+
"tokensCount": {
|
|
1924
|
+
"value": 1173
|
|
1925
|
+
},
|
|
1926
|
+
"charactersCount": {
|
|
1927
|
+
"value": 3268
|
|
1928
|
+
},
|
|
1929
|
+
"wordsCount": {
|
|
1930
|
+
"value": 581
|
|
1931
|
+
},
|
|
1932
|
+
"sentencesCount": {
|
|
1933
|
+
"value": 53
|
|
1934
|
+
},
|
|
1935
|
+
"linesCount": {
|
|
1936
|
+
"value": 72
|
|
1937
|
+
},
|
|
1938
|
+
"paragraphsCount": {
|
|
1939
|
+
"value": 20
|
|
1940
|
+
},
|
|
1941
|
+
"pagesCount": {
|
|
1942
|
+
"value": 2
|
|
1943
|
+
}
|
|
1944
|
+
},
|
|
1945
|
+
"output": {
|
|
1946
|
+
"tokensCount": {
|
|
1947
|
+
"value": 129
|
|
1948
|
+
},
|
|
1949
|
+
"charactersCount": {
|
|
1950
|
+
"value": 577
|
|
1951
|
+
},
|
|
1952
|
+
"wordsCount": {
|
|
1953
|
+
"value": 79
|
|
1954
|
+
},
|
|
1955
|
+
"sentencesCount": {
|
|
1956
|
+
"value": 5
|
|
1957
|
+
},
|
|
1958
|
+
"linesCount": {
|
|
1959
|
+
"value": 15
|
|
1960
|
+
},
|
|
1961
|
+
"paragraphsCount": {
|
|
1962
|
+
"value": 2
|
|
1963
|
+
},
|
|
1964
|
+
"pagesCount": {
|
|
1965
|
+
"value": 1
|
|
1966
|
+
}
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
}
|
|
1970
|
+
],
|
|
1971
|
+
"knowledgeSources": [
|
|
1972
|
+
{
|
|
1973
|
+
"name": "source-coolstore-is-an-esho-54af0da6e247e295bb29",
|
|
1974
|
+
"sourceContent": "Coolstore is an eshop that sells various hobby, home and garden products. It has a wide range of products from garden gnomes to kitchen gadgets.\nIt has 3 physical stores in the UK and a large online store that operates in the UK + EU + Switzerland. Key benefits are fast delivery and excellent customer service with a personal touch.",
|
|
1975
|
+
"preparationIds": [
|
|
1976
|
+
1
|
|
1977
|
+
]
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"name": "source-uranium-glass-garden-77d2bea40f9d5065b9ff",
|
|
1981
|
+
"sourceContent": "Uranium Glass Garden Gnomes are the newest product in the eshop. They are made of glass with a fluorescent uranium oxide added to the glass mixture. The gnomes are equipped with a UV LED light that makes them glow in the dark. They are great for scaring away birds and snakes.",
|
|
1982
|
+
"preparationIds": [
|
|
1983
|
+
1
|
|
1984
|
+
]
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
"knowledgePieces": [
|
|
1988
|
+
{
|
|
1989
|
+
"name": "coolstore-hobby-home-essentials",
|
|
1990
|
+
"title": "Coolstore: Hobby & Home Essentials",
|
|
1991
|
+
"content": "---\n\nCoolstore is an e-commerce business specializing in hobby, home, and garden products. Their product range is diverse, including items like garden gnomes and kitchen gadgets.",
|
|
1992
|
+
"keywords": [
|
|
1993
|
+
"Coolstore: Hobby & Home Essentials"
|
|
1994
|
+
],
|
|
1995
|
+
"index": [
|
|
1996
|
+
{
|
|
1997
|
+
"modelName": "text-embedding-3-large",
|
|
1998
|
+
"position": [
|
|
1999
|
+
-0.024131803, 0.010242175, -0.029521564, -0.0036698414, -0.002869926, -0.02406667, 0.005625869, -0.020142402, 0.001083855, 0.014817773, 0.010168901, 0.0063748993, -0.02392012, -0.031280156, 0.04878467, 0.012937056, -0.015216714, 0.020370368, -0.0036454166, -0.020696033, 0.047449443, 0.01699973, 0.020940283, -0.024343485, 0.023610739, 0.019328238, -0.02610208, -0.01993072, -0.017178848, 0.03517186, 0.014671224, 0.020842582, 0.0036230271, 0.02496225, -0.01575406, -0.027030224, -0.017309114, -0.0003416942, 0.031850073, 0.0131161725, 0.045983948, -0.049696535, -0.030628826, 0.039535776, -0.029912364, 0.04350889, -0.015925037, -0.014923615, -0.011341296, 0.009183763, -0.0056625064, 0.0021514269, -0.03432513, 0.05366965, 0.024082953, 0.008394024, 0.02251976, 0.06754299, 0.0054589654, 0.020158686, -0.036246553, -0.0020812051, -0.016519375, -0.0004869715, -0.010657399, 0.033169016, -0.011984485, -0.008214909, -0.004844272, 0.020191252, -0.026004378, 0.023936404, 0.015395829, 0.027795538, -0.005528169, -0.027176773, 0.023838704, -0.0127090905, 0.02137993, 0.0024078882, 0.03686532, -0.0038489574, 0.0038448866, 0.006798264, 0.020907715, -0.005446753, -0.040187106, -0.09366135, 0.0025503668, -0.023985254, -0.011349438, -0.0164461, -0.01200891, 0.012204309, -0.0063504744, 0.007095434, -0.03173609, 0.0022613388, 0.00852429, 0.045983948, -0.028837668, 0.018025577, -0.020191252, -0.030579977, -0.017260265, 0.036832754, 0.013791928, 0.024310919, 0.0018247437, -0.05256239, 0.017423097, -0.010518991, 0.041131534, -0.015021315, 0.010592266, 0.008939514, 0.018921157, -0.03452053, 0.013498829, -0.0205332, -0.017016014, -0.030482277, -0.017618496, -0.00074546837, 0.021998694, -0.007946235, -0.02701394, -0.021689313, 0.0413595, 0.019523637, -0.07633596, 0.011748378, -0.021396214, 0.016348401, 0.044974387, -0.016332118, 0.04503952, 0.040284805, 0.013563962, 0.0033767426, -0.02297569, -0.010592266, 0.025255349, -0.013311571, -0.0409687, -0.015534237, -0.050412998, 0.042824995, -0.009883944, -0.019377088, -0.029081916, -0.00373701, 0.010934214, 0.009289605, -0.0011825723, -0.008145705, -0.03898214, -0.017797612, 0.013946619, -0.0034703715, -0.018839741, -0.0034703715, -0.011113331, 0.0129451975, -0.006667998, -0.0006706671, -0.0018623987, -0.033103883, -0.02650916, 0.02251976, 0.037353817, 0.031182459, -0.0021839933, 0.004799493, 0.0060166675, -0.015110873, 0.025385614, -0.0042377203, 0.023252506, 0.001771823, -0.008096855, 0.03787488, 0.02641146, 0.017797612, 0.021738162, 0.05705657, 0.020565767, 0.008064289, 0.021819578, 0.00881739, -0.01160997, -0.014402551, -0.0165438, 0.030954491, 0.008418449, -0.00702623, 0.0008436768, 0.047905374, -0.038949575, -0.014353701, 0.00368816, -0.0023447906, 0.035595223, -0.051911056, 0.011780945, 0.016869465, 0.02416437, 0.005051884, -0.0019020892, -0.011023772, 0.007820039, 0.013384846, -0.022650026, -0.0036983371, 0.035562657, 0.021184532, 0.013368563, 0.00976996, 0.0029330235, -0.008442874, -0.0071524256, -0.026427744, -0.009338454, -0.02576013, -0.01250555, -0.014150159, 0.013156881, 0.04823104, 0.021998694, 0.022210378, -0.031263873, -0.017178848, -0.030319445, -0.028381735, -0.022877991, 0.031752374, -0.042531896, -0.022454627, -0.027714122, -0.0019600983, 0.017732479, 0.0021738163, -0.036572218, -0.03647452, -0.008906947, 0.011536695, 0.022047544, -0.006818618, -0.024148086, -0.01988187, -0.025287915, 0.021949844, -0.034129728, 0.008190484, -0.0032261224, 0.011593686, 0.021900995, 0.022161527, -0.0010675717, 0.033804063, -0.03787488, -0.013612811, 0.0007347825, 0.038786743, -0.046732977, -0.029586697, 0.0127090905, -0.057284538, 0.009997927, 0.044388186, 0.015232997, 0.027714122, 0.0023447906, -0.00852429, -0.016788049, 0.0010685894, 0.036832754, -0.022356927, 0.038851876, 0.0023224012, -0.0023753217, -0.052855488, 0.052432124, 0.027762972, -0.010730674, 0.050054766, 0.0033075388, -0.005605515, -0.025450747, -0.033006184, -0.027079074, 0.0029554132, 0.010518991, -0.0040626754, 0.012953339, 0.028332885, 0.035562657, 0.05132486, -0.0078037563, -0.0017646991, 0.003323822, 0.009208188, -0.016063444, -0.030726526, 0.0009108453, 0.03598602, 0.00702623, 0.023464188, 0.0036433812, -0.017178848, 0.0421411, -0.045169786, -0.052432124, -0.051911056, -0.03686532, -0.003179308, 0.010291025, 0.017504513, -0.014516533, 0.01799301, -0.0068593267, 0.00014527728, -0.057024002, -0.00072257, 0.018644342, 0.005112946, -0.008316679, 0.022877991, 0.057284538, 0.02795837, -0.0014400515, -0.024652867, 0.03044971, 0.011748378, -0.0019977535, -0.010567841, -0.004339491, -0.015289988, -0.01280679, 0.011650678, 0.054060448, -0.026118362, -0.003942586, 0.018286109, 0.03722355, -0.019702755, -0.0027518722, 0.009794385, 0.02152648, -0.014068743, 0.0009210223, -0.0008350263, -0.03807028, 0.016380968, 0.023480473, -0.019474788, 0.034390263, -0.04171773, 0.013848919, 0.0502176, 0.0045063943, -0.0029676256, 0.012635816, 0.006313837, 0.025548447, 0.080243945, 0.010698107, 0.0014736358, 0.0018400092, -0.0055973735, 0.024799418, -0.035041593, -0.047807675, 0.018742042, 0.0059474637, -0.030661393, -0.00027070934, 0.0073071164, -0.026004378, -0.0037756828, -0.003203733, -0.02157533, -0.0413595, 0.009485004, 0.021900995, -0.0005587196, -0.0067290603, -0.01429671, -0.0063545452, -0.0019285495, -0.0009479915, 0.022959407, -0.020810015, 0.022438344, 0.0207286, 0.008988364, -0.008198625, 0.044095088, -0.035367258, -0.010535275, -0.045983948, 0.05197619, -0.030254312, 0.006834902, -0.05226929, -0.026737126, 0.022291794, -0.026720842, -0.007189063, 0.002725412, -0.057317104, -0.03419486, -0.007400745, 0.033006184, -0.009297746, 0.020793732, 0.044388186, 0.039210107, 0.028512001, 0.025418181, 0.021640463, -0.0018013365, 0.027942088, 0.03243627, 0.004673298, 0.024766851, 0.0055240984, 0.008947656, 0.039535776, -0.043867122, -0.0033665656, 0.015640078, 0.01997957, 0.006696494, 0.009932794, 0.01529813, 0.01580291, 0.02466915, 0.019360805, -0.016706632, -0.023594456, -0.0042092246, -0.029863514, -0.008931372, -0.023333922, -0.025141366, -0.014304851, 0.015273705, 0.031459272, 0.035106726, -0.013848919, 0.013425554, -0.019605054, -0.017292831, 0.016014595, -0.022584893, 0.0660775, 0.01599017, 0.012847498, 0.024604017, 0.041554898, 0.032647952, -0.0023956758, -0.014663083, -0.017227698, -0.04350889, 0.01739053, 0.011382004, 0.0042295787, 0.005198433, -0.050185032, 0.0019824877, -0.07640109, 0.068259455, -0.01529813, -0.013042898, 0.026688276, 0.0057072854, 0.02641146, -0.0066150776, -0.010282883, -0.00029004572, -0.021640463, 0.021868428, -0.0049338304, 0.0075920736, -0.016950881, -0.030987058, -0.002147356, 0.027762972, -0.0043964824, 0.022389494, 0.014223434, 0.011414571, -0.00029157227, 0.021738162, 0.015558663, 0.012000768, -0.029277315, -0.0021554977, 0.004652944, 0.004742502, 0.018611776, 0.044127654, 0.0043924116, -0.0100874845, 0.012285725, 0.061062254, 0.011080763, 0.027811822, -0.010706249, 0.034357697, -0.026150929, 0.005560736, -0.01734168, 0.002316295, -0.036018588, -0.0035273628, 0.028235186, 0.015192289, -0.014882906, 0.013042898, -0.022552326, -0.013563962, -0.008068359, 0.017325398, 0.0033970966, 0.007982872, 0.03969861, -0.019751605, 0.00812128, 0.008849956, 0.0038204617, 0.020354085, -0.00812128, -0.00662729, -0.029733246, -0.001992665, 0.02556473, -0.007966589, -0.05620984, -0.01753708, -0.0065051657, 0.0026338187, -0.008695265, 0.03198034, 0.020272668, 0.012049618, 0.015770344, -0.01116218, 0.0023793925, -0.0044982526, 0.01001421, 0.012497408, 0.024148086, -0.02137993, -0.020614617, -0.018204693, -0.030905642, -0.006269058, 0.019621337, 0.035790622, 0.011447137, 0.008727832, 0.055884175, -0.00807243, 0.016519375, 0.030563693, -0.007689773, -0.010901648, 0.00074139755, 0.010917931, 0.0013128385, -0.00044728103, -0.00762464, 0.009704827, -0.009672261, 0.0055729486, -0.010641116, -0.022226661, -0.036148854, -0.00562994, -0.021200815, 0.0001309022, -0.009924652, 0.0010869082, 0.019995853, 0.02556473, -0.041294366, 0.020223819, -0.016853182, -0.011821653, 0.008353316, 0.01758593, -0.013213872, 0.007946235, -0.027860671, -0.0006238527, 0.0059759594, -0.018514076, 0.024392335, 0.0018481509, 0.02312224, -0.019963287, -0.015224855, 0.0018919122, 0.0051617958, -0.0059271096, -0.006138792, 0.0012192096, -0.013848919, 0.028821385, 0.0136535205, -0.017129999, 0.027127923, -0.001173413, -0.044453323, 0.021054266, -0.0076002153, -0.0036189563, -0.010689965, -0.0033645302, -0.0027193057, -0.0064603863, 0.05210646, 0.0012059795, 0.009208188, -0.018693192, 0.0072460542, 0.022405777, 0.033510964, -0.0017931949, -0.027241906, -0.013612811, 0.0066842814, 0.0048971926, 0.033217866, 0.026916241, 0.016462384, -0.00017809824, -0.026313761, -0.026639426, 0.01734168, 0.03399946, -0.008280042, -0.011325013, 0.005984101, -0.0012650064, 0.021396214, 0.01813956, -0.015672645, -0.005401974, 0.008915089, 0.017830178, 0.018742042, -0.0060125967, -0.007954377, -0.009297746, 0.015607513, 0.0073437537, -0.018172126, -0.037451517, -0.0075554363, 0.020777449, -0.021542763, 0.01903514, -0.017879028, -0.0037960368, -0.026867392, 0.027437307, 0.0034194863, 0.024262069, -0.01753708, -0.008312608, 0.008898806, -0.017862745, 0.0012568648, -0.01848151, -0.0007108664, -0.010608549, -0.018074427, -0.02706279, 0.02810492, -0.008137563, 0.025287915, -0.0066232192, -0.04767741, 0.009061638, 0.005528169, -0.007860747, -0.05744737, -0.015151581, -0.03165467, 0.0020211607, -0.009664119, 0.0049704676, -0.018872308, -0.030465994, -0.026281195, -0.028446868, 0.0073437537, 0.017960444, -0.013791928, -0.013425554, 0.031752374, 0.032322288, -0.004946043, -0.028691119, -0.030807942, -0.0075717196, -0.016275126, -0.00048646264, 0.005068167, -0.0013423519, 0.01809071, -0.01794416, -0.015876187, 0.009395446, -0.01146342, 0.021770729, 0.04360659, 0.06611007, 0.03452053, -0.032452554, -0.00256665, 0.0016547871, 0.027567573, -0.016804332, -0.015078306, -0.0033502823, -0.047449443, -0.022112677, -0.02716049, 0.0056665773, 0.004473828, 0.010983064, 0.010225892, 0.0025035525, -0.020451784, 0.007107646, 0.02247091, -0.04604908, -0.020321518, -0.025971811, -0.013034756, -0.046765544, -0.022601176, -0.00088336726, 0.0080887135, 0.006317908, 0.014638658, -0.030661393, -0.030710243, -0.006212067, 0.00040453742, -0.020256385, -0.016161144, 0.020093553, 0.0041583395, -0.0042702868, 0.0010919967, 0.017309114, -0.025369331, 0.013897769, 0.029342448, -0.0062202085, -0.04305296, -0.006175429, 0.004909405, -0.011129614, 0.0048361304, -0.030026346, 0.007205346, 0.005760206, -0.007294904, -0.0015143439, -0.004445332, -0.008048005, -0.005939322, -0.042369064, -0.015957603, 0.023008257, -0.009354738, -0.013067323, -0.013213872, 0.016950881, 0.018058144, 0.012383426, 0.03212689, 0.0007627693, -0.005340912, -0.012529975, -0.02317109, -0.0034337342, -0.016722916, -0.012440417, -0.01983302, -0.015184147, 0.0027722262, -0.03064511, 0.018334959, 0.018351242, 0.0070628673, 0.019149123, 0.02610208, -0.001355582, -0.009900227, -0.016478667, 0.015770344, 0.013686087, 0.028039787, 0.02297569, 0.013946619, -0.0048157764, 0.024604017, -0.00976996, -0.0019254964, -0.005939322, 0.0005724586, 0.0085405735, -0.021217098, -0.012912631, 0.0001219973, -0.015599371, -0.03663735, 0.052529823, 0.0038855947, -0.015110873, 0.0070791505, -0.0058497638, -0.033576097, -0.045430318, -0.05490718, -0.0051943623, -0.012220592, 0.013857061, 0.030254312, 0.026525443, 0.026932525, 0.01285564, 0.0031955913, -0.022389494, 0.027779255, -0.025450747, 0.017211415, -0.015460962, -0.06490511, -0.008996505, -0.02486455, 0.027193056, 0.022145243, 0.027990937, 0.035236992, -0.00083044666, -0.0048320596, 0.010730674, -0.000536839, -0.020842582, 0.011626253, -0.0041725873, -0.00053175044, -0.01380007, 0.0030958564, 0.01146342, 0.014378126, 0.00787703, -0.0246203, -0.02576013, -0.009582703, 0.011797228, -0.0210217, -0.028414302, 0.01898629, 0.0019387265, -0.009940935, -0.03188264, -0.006830831, 0.012131034, 0.000057563895, 0.049957067, 0.014956182, 0.01450025, -0.017211415, -0.009240755, -0.004840201, -0.003895772, -0.008166059, 0.01051085, 0.017520797, -0.0048971926, -0.01335228, 0.020288952, -0.010893506, -0.035041593, 0.0012344753, -0.010242175, -0.0017199202, 0.01101563, -0.0062894123, -0.0015733708, 0.0023386844, -0.021803295, -0.016568225, 0.001028899, 0.01375122, 0.02820262, 0.021966128, -0.0018715581, 0.0072216294, 0.0030083337, 0.017960444, 0.008100926, -0.0006065517, 0.0050763087, 0.00067524676, -0.026818542, -0.0059759594, 0.033217866, 0.022943124, 0.000054924225, 0.031540688, 0.003877453, 0.001465494, 0.0014644763, -0.023757288, -0.01799301, 0.0009571508, -0.001806425, -0.014817773, 0.00573171, -0.0149643235, -0.0030062983, 0.02312224, 0.0055037444, -0.004514536, 0.020044703, -0.022796575, -0.0006798264, -0.020044703, -0.011316871, 0.023431621, 0.016030878, -0.027860671, 0.03258282, 0.006521449, 0.006985522, 0.005923039, -0.034129728, -0.021005416, 0.015925037, 0.012147318, 0.00488498, -0.013213872, -0.014809632, 0.034227427, 0.026948808, -0.017211415, 0.0028393948, -0.03761435, -0.032875918, 0.0062649874, -0.00041242465, -0.008939514, -0.006313837, 0.028039787, 0.00622835, 0.00852429, -0.018302392, 0.039991707, 0.010071201, -0.00921633, -0.016201852, 0.00038596432, 0.02989608, -0.011243597, -0.0018196552, 0.016771765, -0.0069733094, -0.011862361, 0.013059181, 0.0012446523, -0.0070995046, -0.0010899613, 0.026036946, -0.0134174125, 0.0059311804, 0.0017168671, -0.0016914244, 0.00042998005, 0.011911211, -0.02725819, -0.0054304698, 0.013914052, 0.007066938, -0.0030612543, 0.046081647, 0.013971044, 0.005515957, 0.0048320596, -0.048556704, 0.025353048, -0.05057583, -0.004966397, -0.014158301, 0.007653136, 0.015151581, -0.022308078, 0.011789086, -0.014956182, 0.03442283, -0.024783134, 0.011821653, 0.031670954, -0.03722355, 0.008141634, 0.005605515, -0.013759362, 0.004673298, -0.01380007, 0.029375015, -0.034911327, -0.023350205, 0.011968202, -0.05979216, -0.008377741, 0.045267485, -0.0021270018, 0.028463151, 0.029114483, -0.0068267602, -0.0077671185, -0.0076002153, -0.030677676, -0.004245862, -0.026378894, 0.009086063, 0.00602888, -0.05725197, 0.0021208955, -0.0035070088, 0.021298515, 0.024408618, -0.0061225086, 0.012139176, 0.0043679867, 0.020370368, -0.0036148855, -0.00016715792, 0.01305104, -0.035204425, 0.012367141, -0.015436538, 0.006293483, -0.011569262, 0.0019763815, -0.01146342, -0.0039161257, 0.0019417796, 0.014142018, 0.009647836, 0.003667806, -0.01823726, 0.02965183, 0.010193326, -0.0034052383, -0.019800454, 0.008451016, 0.0027885097, -0.0039507276, -0.025125083, -0.0013382811, 0.000057055044, 0.01638911, 0.0015947425, 0.006317908, 0.010079343, 0.0144921085, -0.008129422, 0.05650294, 0.0023834633, 0.0049338304, -0.007498445, 0.030026346, -0.0048768385, -0.019230539, 0.0025625792, 0.012904489, -0.010616691, -0.027421024, 0.0076368526, -0.018628059, -0.00030861882, -0.01983302, -0.012383426, -0.0068878224, -0.010502708, 0.028300319, 0.051552825, -0.012424134, -0.0045389608, -0.027339607, -0.0063464036, -0.010543416, -0.014744499, -0.005117017, -0.0070628673, 0.020337801, 0.025597297, -0.018709475, 0.0054141865, 0.014353701, 0.018807175, 0.0065702987, 0.010030493, -0.010649257, 0.0050844504, -0.013572103, -0.018921157, 0.0012436346, -0.03986144, -0.0064522447, -0.027421024, 0.010991205, -0.003592496, -0.00005387472, -0.020060986, -0.013816353, 0.00553224, 0.0049338304, 0.007738623, -0.013669804, -0.008332962, 0.018807175, 0.0034764777, -0.015078306, -0.0066191484, -0.0034113447, -0.031215025, 0.03344583, -0.010535275, -0.032957334, -0.02650916, -0.0017473982, -0.022096394, -0.002267445, 0.014614233, -0.017260265, 0.014329276, -0.010657399, -0.0017921772, -0.021151965, -0.017960444, 0.02561358, 0.03836338, 0.009493145, 0.002181958, 0.014573525, 0.0013189447, 0.022991974, -0.0032607245, 0.00043379643, 0.0119356355, 0.007298975, -0.010592266, 0.014817773, -0.011577403, -0.0018634164, 0.007905526, -0.003513115, 0.0153306965, -0.002930988, 0.009403587, 0.02007727, -0.019947004, 0.016885748, 0.025450747, 0.016218135, 0.011097047, 0.021607896, 0.026427744, 0.01997957, -0.00867084, 0.0032973618, -0.020989133, -0.00020239592, -0.01101563, -0.006468528, -0.029065633, 0.0015815124, 0.0032464764, -0.014573525, -0.0004080994, 0.004054534, -0.004319137, 0.016112294, 0.0033055034, -0.02466915, 0.0051495833, 0.0031263875, 0.040936135, -0.033250432, 0.005943393, -0.020142402, 0.0013759361, -0.0049704676, 0.013222014, -0.012586966, -0.010844656, -0.009094205, 0.009533853, 0.03543239, -0.017211415, -0.004909405, 0.004958255, 0.029179616, -0.019800454, 0.022047544, 0.0077956147, 0.0147282155, 0.007885172, 0.01958877, 0.016820615, 0.024278352, 0.0036087793, 0.042466763, 0.0013912017, -0.013433696, 0.0020598334, -0.015623796, -0.0031080688, -0.0066232192, -0.000026587522, 0.024262069, 0.0020700104, 0.010079343, -0.03364123, 0.031801224, 0.0025178003, -0.0022837282, -0.010177042, -0.014760782, -0.00812128, -0.011992627, -0.004823918, -0.014190868, 0.029586697, 0.0024139944, -0.034553096, 0.0056136567, -0.031752374, -0.00041827644, 0.00787703, -0.040773302, 0.01704858, -0.025173932, 0.02162418, -0.020842582, 0.014614233, -0.009533853, 0.017732479, 0.010111909, 0.019230539, 0.0290005, 0.019507354, -0.0011764661, 0.020500634, -0.014068743, 0.0016985483, 0.011683244, 0.00333807, -0.015721494, 0.013995469, 0.032696802, 0.02167303, 0.027274473, 0.006834902, -0.0004714515, -0.018383808, 0.0055240984, -0.012700949, 0.0025625792, -0.0037105496, -0.0062772, -0.009802527, -0.008104997, -0.007689773, 0.042531896, -0.022503477, -0.0101526175, -0.0024628444, -0.018595492, -0.009745535, 0.026590576, -0.010136334, 0.018660625, 0.020044703, 0.0021249664, -0.008955797, 0.020663466, 0.008890664, 0.012220592, 0.011365721, 0.023105957, -0.009745535, 0.011919352, 0.0064603863, -0.01608787, -0.00832075, -0.048296172, -0.023105957, -0.0022654096, 0.0060329507, -0.012334575, 0.0054996735, -0.025483314, -0.016177427, 0.015916895, -0.014687507, 0.023252506, 0.014288568, 0.0023346136, 0.012359, 0.003333999, -0.019735321, -0.0005236088, -0.008011368, -0.017471947, 0.010225892, -0.019914437, -0.03004263, 0.0064563155, 0.005568878, -0.0054345406, 0.011390146, 0.0025096587, -0.023382772, 0.023529323, 0.024473751, -0.0134174125, 0.03771205, 0.014443259, 0.012318292, -0.00024946476, 0.018693192, -0.004005684, -0.014443259, -0.010136334, 0.015607513, 0.003179308, -0.029537847, -0.02142878, 0.015143439, 0.0015876186, 0.030987058, 0.0075310115, -0.005467107, -0.014483967, -0.026330044, -0.011227313, 0.014475825, -0.0025829333, -0.024783134, -0.009729252, -0.049403433, -0.004197012, -0.0030856791, 0.007140213, -0.008882523, 0.0069122473, 0.011113331, -0.025678713, 0.010470142, 0.013629095, -0.00018802086, 0.017064864, -0.009403587, 0.015623796, 0.016030878, -0.004046392, -0.0076205693, -0.011854219, -0.0031019626, 0.022047544, -0.005585161, -0.025239065, -0.010225892, 0.0075147282, -0.0029330235, -0.002267445, -0.028642269, 0.013824495, -0.03986144, 0.0046570147, -0.03224087, -0.028316602, 0.021787012, 0.017879028, 0.018123277, -0.017146282, 0.021461347, 0.028365452, -0.03761435, -0.002422136, 0.0044778986, 0.026069513, 0.0074536656, 0.00056889665, 0.006672069, -0.0074170283, -0.012586966, 0.01355582, -0.0017972657, -0.0013291218, -0.013042898, 0.020907715, -0.023415338, -0.01504574, 0.0069895927, -0.008007297, 0.0067453436, 0.0024852338, 0.0062894123, -0.016169285, -0.004064711, 0.0023651447, -0.012912631, -0.022894274, 0.027909521, -0.0060533048, 0.026720842, -0.0058538346, 0.0019244787, -0.019360805, 0.03637682, -0.008145705, 0.012977764, -0.014891048, -0.008068359, -0.023757288, -0.015542379, -0.01320573, -0.007042513, -0.005072238, -0.016902031, 0.0077019855, 0.020354085, -0.03149184, 0.0070832213, 0.016633358, -0.000115573035, -0.039991707, -0.016804332, -0.02989608, -0.026590576, 0.007962518, 0.002277622, 0.014638658, -0.00094646495, -0.000574494, 0.03777718, 0.010339875, 0.007311187, 0.007148355, -0.0018552748, -0.026834825, 0.011683244, 0.008980222, -0.014158301, -0.0011968202, -0.0013718653, -0.001875629, 0.008418449, 0.02307339, 0.00602888, 0.029081916, -0.0131161725, 0.0058823307, -0.017195132, 0.020468067, -0.00066710514, 0.021933561, 0.01485034, 0.008267829, -0.00112151, -0.008467299, 0.027942088, 0.007315258, 0.026330044, -0.017520797, -0.0054833903, -0.0050111758, 0.006936672, -0.007311187, -0.012961481, -0.043671723, 0.011056338, 0.0027070933, -0.026427744, 0.0071035754, 0.0051333, 0.004530819, -0.038689043, 0.019751605, -0.014980607, -0.009590845, 0.0037756828, -0.022259228, 0.025206499, -0.008646416, -0.030970775, -0.013401129, -0.012318292, 0.007982872, 0.004555244, 0.017830178, 0.0032220515, -0.02162418, 0.0069326013, 0.0054386114, 0.038591344, -0.026118362, -0.00009331076, -0.012920773, -0.029635547, -0.04249933, 0.010608549, -0.015184147, 0.01997957, -0.022454627, 0.039210107, -0.026036946, 0.01748823, 0.0024852338, 0.012017052, 0.011894927, -0.007270479, -0.009639694, 0.004779139, 0.007588003, -0.014768924, 0.031801224, 0.007807827, -0.0034622299, 0.019311955, -0.017716195, -0.0009439207, 0.00016779399, 0.014174584, -0.0031365645, 0.008499865, 0.010103768, 0.004197012, 0.023708439, 0.0010268636, -0.017553363, 0.0022450555, 0.002316295, 0.0049786093, -0.028218903, -0.0035660355, 0.015216714, -0.0034663007, 0.0013057145, 0.023627022, -0.033608664, 0.026362611, 0.00035797746, 0.013824495, 0.009151196, -0.021217098, -0.009712969, 0.00996536, -0.015493529, 0.0024750568, -0.006781981, -0.021917278, -0.011626253, -0.006094013, 0.010242175, -0.005866047, -0.010917931, -0.0006905123, 0.030563693, -0.007567649, 0.00281497, 0.01360467, -0.0013057145, -0.005988172, -0.0049541844, -0.02750244, -0.011740237, 0.0033095742, 0.014532817, -0.00782411, 0.006049234, 0.016755482, -0.011927494, 0.0032668307, 0.011886786, -0.00012155205, 0.029375015, 0.011593686, 0.027469873, 0.017227698, 0.016307693, -0.036669917, 0.0067046355, -0.01485034, -0.00044270133, -0.011504129, 0.011626253, -0.005255425, 0.024880834, -0.022014977, -0.029130766, -0.011276163, 0.0019254964, 0.026378894, -0.003942586, -0.019898154, -0.0059515345, -0.0075147282, -0.0052432125, -0.0022694804, 0.020060986, 0.021803295, 0.014736357, -0.008056147, -0.011520412, 0.0040891357, 0.0009586774, 0.008174201, -0.00488498, 0.0036250625, 0.034487963, -0.022389494, -0.009257038, 0.000333807, 0.0023631093, -0.036702484, 0.017716195, 0.0065784403, 0.0011774838, 0.004689581, -0.0013810246, 0.004941972, -0.0067941933, 0.0053938325, 0.006871539, 0.025255349, 0.007140213, 0.0026745268, 0.016625216, 0.008825531, 0.011031914, -0.014679366, -0.015925037, -0.004424978, -0.0031101042, -0.003293291, -0.005784631, -0.0027131995, -0.016853182, 0.008231192, -0.0068593267, -0.0038062138, 0.001741292, -0.0147282155, 0.0118705025, 0.014654941, -0.024131803, -0.00013726286, -0.0030225816, -0.0068389727, 0.03487876, -0.0019489037, 0.009932794, -0.025727563, -0.0048320596, 0.005943393, -0.0023488614, -0.015127156, 0.005609586, 0.009379162, -0.015379546, 0.011316871, 0.0067005646, 0.011723952, 0.016323976, -0.014418834, -0.014443259, 0.017032297, -0.027828105, -0.0056177275, -0.011414571, -0.008638274, 0.011202889, 0.018269826, -0.0030714313, -0.022943124, -0.00289028, -0.013295288, -0.010803948, -0.0039405506, 0.02067975, 0.00448604, -0.018660625, -0.00008065306, 0.0013891663, 0.00398533, 0.011113331, 0.018155843, -0.00518215, -0.010242175, 0.0055444525, -0.0001620694, 0.008284112, -0.007734552, -0.021510197, -0.008345175, -0.016934598, -0.001479742, 0.014093168, -0.031898923, 0.008434732, -0.010111909, 0.011113331, -0.0066354317, 0.0090127885, -0.014785207, 0.002990015, -0.013449979, 0.017455664, -0.0059311804, -0.045202352, 0.0006345386, 0.003702408, -0.009810668, 0.015412113, 0.0041685165, 0.013287147, 0.0030327586, -0.008206767, -0.032696802, 0.029586697, -0.02251976, 0.008300396, 0.0003818935, 0.018220976, 0.017309114, -0.017292831, -0.0021371788, 0.0030917854, -0.013808211, 0.004941972, -0.0068064057, 0.018302392, 0.0074536656, -0.0030571835, 0.014589808, 0.01753708, -0.0076164985, -0.001228369, 0.018823458, -0.0019489037, -0.0116995275, -0.020614617, 0.014882906, -0.0060858713, -0.008621991, 0.0021168247, -0.002326472, 0.0017575752, 0.019165406, -0.012139176, 0.009623411, -0.0014502285, 0.004921618, -0.012635816, 0.014142018, -0.008377741, 0.017797612, -0.007132071, 0.024636583, -0.0025788625, -0.0031548832, -0.027876955, -0.016153002, 0.00244249, -0.0030571835, 0.0042336495, 0.020744883, -0.06233235, 0.010339875, 0.00079126505, -0.016169285, -0.005365337, -0.01231015, -0.010917931, 0.024506317, 0.002481163, -0.02261746, 0.021347364, 0.0054996735, -0.00801951, -0.02247091, 0.012489267, -0.0048768385, 0.012367141, -0.0048524137, 0.015574946, -0.015558663, 0.015412113, 0.01743938, -0.016006453, -0.011227313, 0.006313837, -0.005800914, -0.016332118, -0.005984101, -0.0047709974, -0.010095626, -0.012391567, -0.004166481, 0.011243597, -0.013669804, -0.00016232382, 0.014931757, 0.018628059, -0.005096663, -0.04041507, -0.000032566535, -0.002660279, 0.00043125218, -0.013865203, -0.005719498, 0.0027030224, -0.0047099353, 0.0044616153, -0.015705211, 0.008646416, -0.010054918, 0.007184992, -0.011903069, 0.014866623, -0.0043679867, 0.008858098, -0.0027742616, -0.008394024, 0.0019214256, -0.0037838244, 0.0056584356, 0.0019519568, -0.0053734784, 0.01480149, 0.0024974463, 0.0032159453, 0.0061713583, 0.010209609, -0.016649641, 0.011658819, 0.0012772188, 0.017960444, -0.004359845, -0.00019908839, -0.0030307232, -0.0056014443, -0.02261746, -0.0003467827, -0.0004119158, 0.01809071, 0.01983302, -0.024392335, -0.011382004, -0.0074129575, 0.0007927916, 0.018839741, -0.005528169, -0.019311955, 0.012839356, -0.0035375399, 0.013213872, 0.0047017937, -0.00031701487, 0.017667346, 0.0048809093, 0.0075350823, -0.039796308, 0.0015906717, -0.0028943508, 0.01857921, -0.00028597488, -0.016226277, 0.0135476785, -0.009721111, 0.011903069, -0.022259228, 0.023985254, -0.013222014, 0.020793732, -0.004530819, 0.00037044435, 0.017129999, 0.0047750683, 0.015615654, 0.009664119, -0.002721341, -0.0409687, -0.030335728, -0.017960444, -0.01823726, -0.01250555, -0.020891432, -0.0018644342, 0.009419871, 0.013930336, -0.002845501, 0.0088418145, 0.0019295672, 0.02157533, -0.0009775049, -0.001397308, 0.005609586, -0.028479435, 0.017260265, 0.0070832213, -0.008939514, -0.009086063, 0.028446868, -0.0412618, 0.010405008, -0.005760206, -0.010901648, 0.016527517, -0.0054345406, 0.00051801145, 0.0030368294, 0.021412497, -0.011300588, -0.0018206729, -0.004827989, -0.01076324, -0.01325458, 0.010877223, -0.010551558, 0.006965168, 0.01589247, -0.007588003, -0.013669804, 0.0026745268, 0.008654557, 0.0032749723, -0.0006136756, -0.005894543, 0.0062649874, 0.0039018781, -0.0044534737, -0.019425938, 0.0036983371, 0.011300588, -0.005646223, -0.019377088, -0.0065702987, 0.025320482, 0.024750568, 0.0036148855, 0.003075502, -0.002990015, -0.013938477, 0.014638658, 0.027307041, -0.009541995, -0.0329899, -0.016576366, 0.016869465, -0.017292831, -0.014931757, -0.0033543531, 0.029570414, 0.021412497, 0.0039039135, -0.017765045, 0.0030836437, -0.0054996735, -0.0077019855, 0.03393433, 0.012904489, 0.005796843, 0.0007149372, 0.020744883, 0.025743846, -0.02740474, 0.0077060563, -0.016421676, -0.007563578, -0.0043924116, 0.011373863, 0.0073437537, -0.013287147, 0.029326165, -0.008866239, -0.023692155, 0.0008889646, 0.0005546488, 0.008186413, 0.003826568, 0.015916895, -0.008442874, 0.024636583, 0.00876854, 0.0038001076, -0.013629095, -0.007604286, 0.009835094, -0.006269058, -0.015566804, 0.018058144, -0.015843619, 0.015078306, -0.019263105, -0.0047302893, 0.0125544, 0.006818618, -0.04767741, -0.00063097663, 0.00991651, -0.007828181, 0.021542763, -0.01758593, 0.0076409234, -0.00047068822, 0.0005653347, -0.0057887016, -0.010584124, -0.0034235572, 0.0012619533, 0.010877223, 0.026199779, -0.0038448866, -0.006900035, 0.006692423, 0.013759362, -0.008178271, 0.021559047, 0.0031874496, 0.01983302, 0.0029472716, -0.010632974, -0.026427744, -0.0058904723, -0.014312993, 0.026981374, 0.00043379643, -0.02711164, 0.005804985, -0.018286109, -0.030221745, -0.0015662469, -0.012774223, -0.01160997, -0.0013026614, 0.003069396, -0.023578173, -0.00048391835, 0.006541803, -0.016633358, -0.006207996, -0.008288183, 0.009452437, -0.0053246287, 0.0061632167, -0.029879797, 0.023236223, -0.025694996, -0.009460579, 0.017911594, -0.0031080688, 0.0016252736, 0.025353048, -0.004966397, -0.005589232, 0.012375284, 0.017032297, 0.010144476, -0.00662729, 0.008499865, 0.02735589, -0.0065336614, 0.025125083, -0.022861708, -0.008801106, 0.052008756, 0.010201467, 0.010046776, 0.027079074, 0.018074427, 0.017471947, 0.0036352396, -0.02256861, 0.012595108, -0.006667998, 0.007168709, 0.011471562, -0.00062334386, 0.0044982526, 0.004648873, -0.003203733, 0.01151227, -0.0072623375, -0.010983064, -0.007270479, -0.008662699, -0.004738431, 0.013222014, 0.022226661, -0.012033335, -0.008898806, 0.011821653, -0.017683629, 0.0058904723, -0.01614486, 0.0075757904, -0.005426399, -0.016503092, 0.002422136, -0.030075196, 0.004937901, 0.011243597, 0.0007683667, 0.008194555, -0.02212896, -0.0011306694, 0.018807175, -0.004612236, 0.0033177158, 0.0033543531, -0.023399055, 0.02655801, 0.0103235915, -0.010730674, 0.010470142, 0.018839741, -0.012212451, 0.031866357, -0.012155459, -0.01983302, 0.033478398, 0.00020036052, 0.0046244483, 0.008996505, 0.0009912439, -0.010575983, 0.011528553, 0.0019346557, -0.019311955, 0.016739199, -0.01350697, 0.010054918, 0.009672261, -0.02561358, -0.0016405393, -0.03134529, 0.011837936, -0.00687561, 0.020712316, -0.022552326, -0.024636583, -0.0129451975, 0.011056338, 0.0043924116, 0.007160567, -0.0015306271, 0.00897208, 0.00017390022, 0.0063871117, -0.0066191484, -0.004819847, -0.0040280735, 0.007441453, -0.02237321, 0.01160997, -0.010103768, 0.011202889, 0.005861976, -0.011569262, 0.02237321, 0.014614233, 0.006069588, 0.012147318, -0.016006453, 0.0056665773, -0.017406814, -0.00488498, 0.0054386114, 0.025922962, 0.009908369, 0.0061184377, -0.024294635, -0.020158686, 0.016950881, 0.023138523, 0.013238297, 0.004827989, -0.018058144, 0.001971293, -0.018823458, -0.015021315, -0.008833673, -0.012668382, 0.006647644, 0.004225508, 0.02670456, 0.0055770194, -0.008194555, 0.016209994, 0.005695073, -0.005157725, -0.0045878105, -0.0019224433, 0.024848267, -0.00018204184, 0.010201467, 0.0015581052, -0.0069773803, -0.0035497523, -0.007184992, 0.00056177273, -0.0028210762, 0.0054752487, 0.0021595685, -0.017618496, -0.018693192, -0.012839356, -0.0059352512, -0.0007978801, -0.0066191484, -0.01051085, 0.004819847, -0.014223434, 0.011715811, -0.0121066095, -0.0031263875, -0.014011752, -0.006781981, 0.014410692, 0.028609702, -0.026492877, 0.021900995, -0.0047058645, 0.011227313, -0.006920389, 0.011723952, 0.0033360345, 0.021233382, 0.0066395025, 0.015591229, 0.0016100081, 0.00065641926, 0.020240102, 0.0028190408, 0.021168249, -0.0047221477, -0.016788049, 0.022063827, 0.0150294565, 0.011023772, -0.0000029258997, -0.0052676373, 0.006358616, 0.017162565, 0.00052081014, 0.00022580313, -0.020207535, -0.010291025, -0.016600791, 0.0074658785, 0.000118562544, 0.008727832, -0.0017596106, -0.0047058645, -0.019377088, 0.0009439207, -0.013026615, -0.003922232, 0.007229771, -0.0010166866, 0.0049541844, 0.020370368, 0.012912631, -0.015371405, 0.018856024, -0.015184147, 0.015843619, -0.013596528, -0.0147933485, -0.011097047, 0.005442682, -0.023838704, -0.022047544, -0.0065743695, 0.0061225086, 0.018220976, 0.02610208, -0.025092516, -0.010974922, -0.0041074543, -0.00013611795, -0.0031528478, -0.013140597, -0.005442682, 0.0022165598, -0.0113331545, -0.008564999, -0.012163601, -0.020386651, 0.027567573, -0.006940743, -0.011894927, -0.0039201966, -0.0066354317, -0.00091135415, -0.021770729, 0.017911594, -0.0046651564, -0.00558109, -0.000019733921, 0.007653136, -0.02551588, 0.022047544, 0.014166443, 0.005198433, -0.0006864415, -0.0046244483, 0.0016222205, 0.0047221477, -0.006602865, -0.005939322, -0.016226277, -0.006175429, 0.008980222, 0.026330044, 0.019686472, -0.027307041, -0.02212896, 0.016454242, 0.008060218, 0.010225892, 0.025173932, -0.015908753, 0.018400094, 0.0033563885, 0.0069285305, -0.009493145, -0.0003661191, 0.009485004, -0.0041624103, -0.018204693, 0.024001537, 0.020565767, 0.011813511, 0.004742502, -0.004221437, 0.0051658666, -0.014711932, 0.00020099658, -0.0007006894, -0.016177427, -0.017504513, 0.0054101157, -0.009126771, 0.006444103, 0.013572103, 0.03144299, -0.005023388, -0.019458504, -0.017862745, 0.0024648798, 0.02147763, -0.0008991417, 0.009297746, -0.02048435, 0.0015723531, -0.00613065, -0.009900227, 0.009257038, 0.0017402743, -0.012603249, 0.022389494, -0.026346328, 0.0004912967, 0.023057107, 0.004241791, -0.006342333, -0.004913476, -0.009932794, -0.016307693, -0.01893744, 0.009493145, -0.0055444525, -0.033966895, 0.0020211607, 0.001300626, 0.0035049734, 0.03009148, 0.03452053, -0.01006306, -0.010869081, 0.01589247, -0.01335228, 0.00040682728, -0.013995469, -0.0004343053, -0.01949107, -0.003378778, 0.0036657706, 0.010307308, -0.0015886363, -0.015623796, 0.0051007336, 0.00028902802, 0.004689581, -0.01958877, 0.024424901, -0.020402934, -0.007355966, 0.0028780675, -0.009134913, 0.00033228044, -0.0136535205, -0.006488882, -0.023545606, -0.0131161725, 0.011276163, -0.009029072, 0.024082953, -0.012611391, 0.00061927305, 0.017748762, 0.0034846193, 0.007754906, -0.030840509, 0.012790507, -0.0075757904, -0.019605054, -0.0164461, 0.015925037, -0.003000192, -0.0039405506, 0.0011449172, 0.00044778988, -0.005796843, 0.018106993, -0.0076368526, -0.012595108, 0.009949077, -0.02137993, 0.013335996, -0.0011103153, -0.02247091, -0.021184532, 0.0036535582, -0.013726795, -0.004176658, 0.004036215, -0.031198742, 0.003189485, 0.02142878, -0.024327202, 0.024082953, -0.001796248, -0.004559315, 0.01021775, -0.0074821617, 0.0064115366, 0.021461347, -0.006419678, -0.016869465, -0.0023610739, -0.024848267, -0.015534237, -0.023675872, -0.0029981567, 0.003409309, 0.013694229, -0.010144476, -0.0072134878, -0.0045267483, 0.029212182, -0.0046244483, 0.008337033, 0.0060573756, -0.024750568, 0.008898806, 0.0075269407, 0.020614617, 0.0051495833, -0.0064603863, -0.0034744423, -0.025727563, -0.012814932, -0.0014878836, 0.0013189447, 0.0042743576, -0.0012069972, -0.006851185, 0.0012578825, -0.0025992165, 0.0063911825, 0.0047954223, -0.01843266, 0.0019254964, 0.0039975424, -0.011951919, -0.0021046123, -0.015884329, 0.0016089904, 0.013930336, 0.0006716848, 0.017292831, -0.02208011, -0.011382004, 0.013197589, 0.0012904489, 0.0010472176, -0.016185569, 0.003169131, 0.021184532, -0.00018789365, 0.008662699, -0.009558278, 0.025434464, -0.01325458, -0.011194747, 0.009403587, -0.019067707, -0.023627022, 0.007164638, -0.023268789, 0.010698107, -0.003303468, 0.0044575445, -0.0037634703, 0.0032525829, -0.00022491264, 0.0048320596, -0.020419218, 0.019328238, 0.004673298, 0.00055617536, 0.000024234083, -0.003692231, -0.0026643497, -0.01360467, 0.010999347, -0.017504513, -0.0072419834, 0.0090779215, 0.0016558048, -0.008638274, -0.025532164, -0.0025442606, -0.021884711, 0.015827335, 0.023724722, 0.0067453436, -0.0024791276, -0.017651062, -0.004510465, 0.0014929721, 0.0022939052, 0.01076324, -0.019963287, -0.00063810055, 0.014508392, 0.023008257, -0.00040682728, 0.021591613, -0.0005475249, 0.0006966186, 0.008744115, -0.01804186, -0.01285564, -0.006855256, 0.015965745, -0.0011591652, -0.0027742616, 0.012318292, -0.000040103907, -0.00040682728, -0.010136334, -0.0073641078, 0.020191252, 0.019360805, -0.013995469, -0.0010217751, 0.003388955, -0.0083695995, 0.02007727, 0.023838704, -0.0014319099, -0.010331733, -0.010820231, -0.016657783, 0.035855755, 0.0024099236, -0.024636583, -0.0012466877, 0.019002574, 0.027583856, -0.02716049, 0.018416377, -0.003179308, 0.0050600255, -0.000574494, 0.02297569, -0.008263758, -0.00066049007, 0.022487193, 0.033869196, 0.0039507276, -0.013629095, -0.01893744, -0.0030205462, -0.034650795, 0.031019624, -0.0053327703, 0.014378126, -0.0013331926, 0.00083248207, -0.011544837, -0.007030301, 0.000008857207, 0.021542763, 0.0020038597, 0.030514844, 0.0042377203, -0.010917931, -0.0020771343, -0.017471947, 0.016788049, 0.014736357, -0.002994086, -0.0017585929, -0.0032993972, -0.005711356, -0.012953339, 0.0058294097, 0.00573171, -0.011707669, -0.0035904606, 0.009029072, -0.01669035, 0.004718077, -0.006175429, 0.012228734, 0.009509428, 0.012994047, 0.008784823, 0.011943777, 0.0033278929, 0.0055770194, 0.008194555, -0.005776489, 0.01524928, -0.0001064773, 0.008377741, -0.010551558, -0.01638911, 0.01669035, -0.023187373, 0.010071201, -0.01564822, -0.0045878105, 0.000976996, -0.0038937365, 0.010746957, -0.003647452, 0.0054793195, 0.0037247974, 0.0065540154, 0.007030301, -0.014011752, 0.009940935, -0.0019204079, 0.004612236, 0.0050640963, 0.01893744, 0.0021799225, 0.019409655, -0.0021453206, -0.0035660355, 0.011031914, 0.01101563, -0.009134913, 0.02261746, 0.0023651447, -0.0206309, 0.009037213, 0.006094013, -0.003272937, -0.010160759, -0.0053327703, 0.026492877, 0.0037756828, -0.011658819, -0.016584508, -0.013914052, 0.005357195, -0.0033462115, -0.008760398, -0.017081147, -0.004241791, 0.007400745, 0.0009922617, -0.0048524137, -0.019344522, -0.012920773, -0.023431621, -0.0010431468, -0.018302392, 0.0053531243, -0.00981881, 0.028316602, 0.0040769232, -0.018269826, -0.0030470064, -0.01993072, 0.004380199, -0.0039690468, -0.009729252, 0.011569262, -0.018970007, -0.0092488965, -0.006399324, 0.00020761167, -0.013832636, -0.004868697, -0.0008971063, -0.03064511, 0.042922694, 0.010730674, 0.0012843427, 0.027860671, -0.0019356734, -0.004129844, 0.008947656, -0.01459795, 0.004966397, -0.010706249, 0.0037593995, -0.002357003, -0.009875802, 0.017260265, -0.014695649, -0.022308078, 0.0009596951, 0.002680633, -0.0054101157, 0.002336649, -0.0054630362, 0.0056625064, -0.007893314, 0.0075757904, -0.02646031, 0.011235455, -0.0048157764, 0.0022837282, -0.005841622, 0.015705211, -0.018220976, -0.02994493, 0.018318675, -0.03562779, 0.0026297478, -0.003952763, -0.019197972, 0.0067453436, -0.002336649, -0.018823458, 0.0011795192, 0.016706632, 0.0062405625, 0.05480948, -0.009493145, -0.010201467, 0.016739199, -0.026623143, -0.014174584, -0.005117017, 0.006957026, 0.0092488965, 0.021835862, -0.022829141, -0.022991974, -0.0029024924, 0.0011815546, 0.0006971274, 0.0077426936, -0.014199009, -0.000898124, 0.0008884558, 0.015973886, 0.0042377203, 0.017374247, -0.00032846406, 0.0045267483, -0.012880065, 0.020256385, -0.0038876303, -0.00008383339, -0.0059678177, -0.0132464385, -0.01071439, -0.012285725, 0.011764661, 0.0057642767, 0.008931372, 0.009908369, 0.011438996, 0.0020262492, -0.010681824, -0.0022816928, -0.016551942, 0.023105957, 0.023464188, -0.017927878, 0.0053449827, -0.017243981, -0.0009540977, 0.009419871, 0.016804332, -0.023985254, 0.00737632, -0.009949077, 0.002302047, -0.016853182, 0.011080763, -0.014817773, 0.009134913, -0.0055200276, -0.009411729, 0.0065499446, 0.0024384193, 0.017781328, -0.005739852, 0.009582703, 0.0048768385, 0.0017402743, 0.007111717, -0.0027070933, -0.002108683, -0.0048320596, -0.024831984, -0.020386651, 0.0011103153, 0.017276548, -0.0075920736, -0.025841545, -0.019051423, -0.004840201, 0.027144207, -0.0038876303, 0.029293599, -0.015306272, -0.00518215, -0.003189485, -0.016674066, -0.009590845, 0.055167712, -0.00011302878, -0.0037247974, -0.01823726, -0.008556857, -0.00056686124, -0.0019214256, -0.009061638, -0.0019448329, -0.028072353, 0.0011296517, -0.0017402743, 0.026997657, -0.014646799, 0.00026587522, 0.01988187, -0.0011866431, -0.005715427, -0.00025620704, 0.0016700526, -0.005711356, 0.013971044, 0.026297478, -0.002161604, -0.009989785, -0.0056828605, -0.0020323554, -0.01619371, 0.022275511, -0.011235455, -0.009224472, 0.011593686, -0.00028572045, 0.0036616998, 0.023350205, -0.011390146, -0.01763478, -0.0022145244, 0.0054956027, 0.0018277968, -0.03526956, -0.01818841, 0.016266985, 0.01380007, -0.008377741, -0.024994817, -0.01794416, 0.011691386, -0.0013209801, 0.024587734, 0.012472983, -0.00023114607, -0.00598003, -0.011552978, 0.011023772, 0.005450824, -0.013376704, -0.026330044, -0.0021839933, 0.017667346, 0.027274473, -0.021135682, 0.0100223515, -0.031752374, -0.029765813, -0.018269826, -0.01021775, 0.008556857, 0.016560083, -0.004689581, -0.0048076347, 0.013832636, -0.005654365, 0.005471178, -0.0038733822, 0.007518799, 0.0009159338, 0.0006818618, -0.019165406, -0.008947656, 0.011854219, -0.005275779, 0.0042580743, -0.0020903645, 0.007864818, 0.01813956, -0.023806138, 0.0041135605, -0.04279243, -0.022650026, 0.002122931, -0.000068567824, 0.017146282, -0.003667806, 0.003293291, -0.013669804, 0.0006996717, -0.013832636, 0.0036718769, 0.022682592, 0.0034988672, 0.021656746, -0.0023081533, -0.0031833788, 0.007449595, -0.005894543, 0.00032566534, 0.0052106455, -0.007730481, -0.0050803795, 0.014956182, 0.024734283, -0.011968202, 0.01156112, -0.007457737, -0.002855678, 0.006248704, 0.002247091, 0.00448604, -0.001992665, -0.0011805369, 0.01794416, 0.0129451975, 0.0007098487, -0.028365452, 0.0005653347, 0.013629095, -0.008418449, 0.006696494, 0.019442221, -0.010421291, -0.0206309, 0.027535006, -0.012049618, -0.007140213, 0.017032297, -0.023594456, 0.0027681554, 0.0029961213, 0.023350205, 0.0014868659, -0.011927494, 0.0021554977, -0.02058205, 0.009558278, -0.0035843544, -0.005023388, -0.008023581, 0.013995469, -0.013563962, -0.014044318, -0.029537847, -0.023708439, -0.0066639273, 0.0062039252, 0.0011194746, -0.018269826, -0.01410131, 0.020109836, -0.011764661, -0.01758593, 0.019263105, -0.0134825455, -0.0051658666, 0.0037899306, -0.0009861554, 0.004962326, -0.020093553, 0.008434732, 0.03399946, -0.01021775, -0.00951757, -0.0042702868, 0.00558109, 0.018302392, 0.018155843, 0.007001805, -0.000012935975, 0.005914897, -0.0010431468, 0.013262722, 0.016600791, 0.013108031, 0.00478321, 0.012912631, 0.0082393335, -0.004697723, 0.012595108, 0.0032403702, -0.009362879, 0.016902031, 0.0064522447, -0.006317908, 0.0019672222, -0.0051699374, 0.013767503, -0.0006589635, -0.013791928, -0.01305104, 0.007164638, 0.015021315, 0.0014329276, -0.013563962, 0.004844272
|
|
2000
|
+
]
|
|
2001
|
+
}
|
|
2002
|
+
],
|
|
2003
|
+
"sources": [
|
|
2004
|
+
{
|
|
2005
|
+
"name": "source-coolstore-is-an-esho-54af0da6e247e295bb29"
|
|
2006
|
+
}
|
|
2007
|
+
],
|
|
2008
|
+
"preparationIds": [
|
|
2009
|
+
1
|
|
2010
|
+
]
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
"name": "uk-retailer-stores-and-online-presence",
|
|
2014
|
+
"title": "UK Retailer: Stores and Online Presence",
|
|
2015
|
+
"content": "The company operates three physical stores in the UK, as well as a large online store. Their online presence serves customers in the UK, EU, and Switzerland.",
|
|
2016
|
+
"keywords": [
|
|
2017
|
+
"UK Retailer: Stores and Online Presence"
|
|
2018
|
+
],
|
|
2019
|
+
"index": [
|
|
2020
|
+
{
|
|
2021
|
+
"modelName": "text-embedding-3-large",
|
|
2022
|
+
"position": [
|
|
2023
|
+
-0.0073094354, 0.05622988, -0.012597828, 0.009948018, 0.024581859, 0.010090239, -0.000023991102, 0.018533703, -0.013930219, -0.0059545888, 0.0051274584, 0.018833118, -0.04173826, -0.012537946, 0.020749364, 0.012171164, -0.008817731, 0.008712936, -0.014701209, 0.008301243, 0.023578823, 0.0074628848, -0.03931301, -0.009940532, -0.0007382417, 0.024956126, -0.018354055, -0.016632427, 0.0149257695, 0.012949639, -0.008855158, 0.018863058, -0.03491163, 0.01285233, -0.023204556, 0.010337256, 0.010352226, -0.04790618, 0.035929635, 0.008900071, 0.04086996, -0.026602902, 0.011692102, 0.039911836, 0.0046446538, -0.040989727, 0.032546263, 0.019162472, 0.0018217448, 0.014820974, 0.0031924979, 0.018982824, -0.022590758, 0.020330185, 0.006141722, 0.013458642, -0.009895621, 0.10006403, 0.034552332, 0.009813282, -0.009813282, -0.021482928, -0.007163471, 0.014806004, -0.028174823, 0.042127497, -0.023174616, -0.014940741, -0.0050825463, -0.025569923, -0.018129496, 0.016542602, 0.04224726, 0.01296461, -0.032216907, 0.018309144, 0.0014680624, 0.017560609, 0.06371522, -0.015569509, 0.032546263, -0.035270926, -0.014020043, 0.012358298, 0.019012766, 0.012942154, -0.007859608, -0.07449411, 0.0118792355, -0.014177236, -0.008099139, -0.005449328, 0.011467542, -0.03844471, -0.019566681, -0.022006901, -0.010067783, 0.025105832, -0.019402003, 0.045660578, 0.0108762, 0.0017553124, 0.003791325, 0.028848503, -0.020794276, -0.009072233, 0.028279617, 0.021482928, 0.028534118, -0.05072067, 0.015644362, -0.0025263026, 0.004745706, 0.027590966, -0.028728738, 0.033893622, 0.004682081, -0.048025947, 0.022800349, 0.009311764, -0.0051574, -0.028758679, 0.005090032, -0.01372063, 0.035001453, -0.028459266, -0.03167796, -0.0088626435, 0.02878862, -0.026243605, -0.06509253, 0.002266187, -0.03167796, -0.0110034505, -0.009064748, 0.011190584, 0.056289762, 0.010030356, 0.02657296, 0.025016008, -0.0023148416, -0.002530045, -0.021827254, 0.0011162515, -0.030450366, -0.009498897, -0.022905143, 0.017530669, -0.016842017, -0.022695553, -0.012433151, -0.012440636, -0.034851745, 0.010030356, -0.014873372, 0.03452239, -0.0059658163, -0.024746537, 0.0017964818, 0.03422298, 0.014611385, 0.015614421, 0.007799725, 0.005628976, -0.005520439, 0.032157023, 0.001292157, -0.012275958, 0.0149182845, 0.012410695, 0.010135151, 0.03296544, -0.00009900533, -0.054493282, 0.021872165, -0.012260988, 0.03661829, -0.051708736, 0.00615295, 0.032097142, 0.0009665446, 0.01473115, 0.015958747, 0.014641327, -0.018743293, 0.02877365, -0.025016008, -0.01537489, -0.01372063, -0.009019836, -0.00968603, 0.0013408116, 0.0206296, 0.0283395, -0.021183515, 0.042666443, -0.036318872, 0.035720047, -0.011010936, -0.012343327, 0.04081008, 0.0022119181, 0.02416268, -0.0452414, 0.029013181, 0.004756934, -0.003422672, 0.0024477064, 0.011482513, 0.04069031, 0.059224017, 0.04257662, 0.011804382, 0.014626356, -0.037995588, 0.0028463008, 0.0048317877, 0.02854909, 0.012904728, -0.008181477, -0.023743501, -0.028279617, 0.00069707236, -0.046019875, 0.031318665, 0.04107955, -0.04305568, 0.04718759, 0.026438223, 0.0088626435, 0.007013764, 0.028623942, -0.025360335, -0.04113943, -0.004086996, 0.03533081, -0.0038119098, -0.03931301, -0.029117975, -0.00128935, -0.028414354, -0.010644155, -0.025090862, -0.031797726, -0.03359421, -0.022201521, 0.01760552, 0.029522184, 0.0059882724, 0.010531874, 0.010868715, -0.006313885, -0.0094465, 0.0028668854, -0.0026179978, 0.020045742, 0.011819353, -0.030929428, -0.02130328, 0.012620284, 0.021033807, -0.018578615, -0.041349024, 0.052547093, -0.034821805, -0.012178649, 0.0050338916, -0.0062951716, -0.015419802, 0.010524389, 0.011722043, 0.044732396, -0.03598952, -0.009977959, 0.0013155487, 0.024327358, 0.0003532145, 0.02655799, 0.0042965855, -0.0283395, 0.013069405, 0.013713144, 0.01934212, -0.03583981, 0.0052621947, 0.0412592, -0.013630806, 0.029971303, 0.0018273589, -0.010359712, -0.0011808125, -0.03428286, 0.012148708, 0.015060506, -0.03230673, 0.023444086, 0.01384788, 0.02506092, -0.066649474, 0.008233875, 0.011579822, 0.0032935499, -0.027845468, 0.008316213, -0.0075003114, 0.06742795, -0.0035293382, 0.002556244, 0.014536532, -0.00004804068, 0.0040832534, -0.021632634, -0.01778517, -0.021168543, -0.039163303, -0.039851952, 0.008503347, -0.008211419, 0.028608972, 0.004427579, -0.01648272, 0.04194785, -0.06694889, -0.02241111, 0.023593795, 0.0025412731, 0.021902107, 0.024776477, 0.011564852, -0.0137356, -0.0034095726, -0.029162887, 0.023563853, -0.0076724743, 0.04236703, -0.011183099, 0.0101576075, -0.0024495777, -0.016273132, 0.020689482, 0.100782625, -0.026543017, 0.018264232, 0.039283067, -0.0049028983, 0.011639705, -0.03886389, 0.036079343, 0.022321286, -0.005086289, 0.00062783295, -0.005202312, -0.0072383243, 0.020854158, 0.046229463, -0.019042706, -0.016662369, -0.023893207, 0.021857195, 0.012268473, 0.034971513, -0.030420424, -0.020449951, 0.021632634, -0.004378924, 0.05027155, 0.020539775, -0.02265064, 0.014686239, 0.00206034, -0.023773443, 0.0018816275, -0.039911836, 0.01932715, -0.02000083, 0.018159436, 0.009371647, 0.024776477, 0.028848503, -0.020764336, -0.0094465, -0.00020713342, -0.04353474, 0.019866094, 0.0012397596, -0.041828085, 0.0200158, -0.01012018, 0.004131908, 0.028084999, -0.013937704, -0.011377718, 0.033264853, 0.02613881, 0.039193243, -0.03407327, -0.024971096, 0.041678376, -0.04302574, -0.026483135, -0.016108453, -0.014963196, -0.028279617, 0.019806212, 0.00075414806, -0.05293633, 0.028504178, -0.014573959, -0.027620908, -0.034372684, -0.02416268, -0.04128914, 0.024132738, 0.039792072, 0.024701625, -0.01911756, -0.030899486, 0.012365783, 0.026722666, 0.007002536, -0.0071597286, 0.008578201, -0.017800141, 0.008593171, -0.05057096, 0.005599035, -0.01711149, 0.030809663, 0.0014399925, -0.023878237, -0.001283736, -0.009783341, -0.014985652, -0.009835738, -0.023204556, 0.033743914, 0.008488377, 0.041588552, 0.005677631, -0.0074441712, -0.014244603, 0.0017571837, 0.0043751816, -0.004023371, -0.0034975254, 0.013054434, -0.009753399, 0.035779927, 0.044283275, -0.014244603, 0.02110866, 0.009977959, -0.020764336, -0.01977627, -0.011482513, -0.059822842, 0.0160336, 0.021318251, -0.014177236, 0.046498936, 0.04431322, 0.02306982, 0.004034599, -0.026617872, -0.046229463, -0.016168335, -0.013383789, -0.00042713227, -0.00092116476, -0.0072982074, -0.059613254, -0.030435394, -0.02615378, 0.0068079173, 0.0123208705, -0.040061545, 0.045989934, -0.008712936, 0.005696344, -0.022201521, 0.025345365, -0.0019162472, 0.042816147, 0.01063667, -0.0067068655, -0.039163303, 0.019626563, -0.008256331, 0.024851331, 0.033983447, -0.026273547, -0.033294797, -0.011976545, 0.023174616, -0.014985652, -0.032905556, 0.015135359, -0.020135567, -0.026423253, 0.026318459, -0.007507797, 0.02655799, 0.0197613, 0.0021108661, 0.010352226, -0.028653884, -0.010195034, 0.06916455, -0.03661829, 0.020375097, 0.02592922, 0.03245644, -0.02024036, 0.01977627, 0.0065421876, -0.04260656, -0.007335634, -0.0012706366, 0.014289515, -0.010374682, 0.0016177692, 0.011856779, -0.045331225, 0.0049328394, -0.017081548, 0.019402003, -0.023653677, 0.0329355, 0.034462508, -0.00040748322, 0.003031563, -0.00036069987, -0.015187756, 0.016183307, 0.0135933785, 0.0039896867, -0.0042179893, -0.02327941, 0.03586975, -0.010224976, -0.0274712, 0.0042404453, 0.01339876, -0.017530669, -0.02567472, 0.013323907, 0.023578823, 0.00880276, -0.02127334, 0.00041590424, -0.029132945, -0.044702455, 0.015629392, -0.009394103, 0.024656713, 0.010539359, 0.0017768327, -0.0061230087, -0.01778517, -0.017695345, 0.019042706, 0.030899486, -0.03098931, -0.009753399, -0.00022678243, 0.0041843057, -0.012927184, 0.032157023, -0.018383997, 0.0030465336, -0.007926975, 0.015943775, -0.0061566927, -0.035779927, -0.030345572, 0.006463592, 0.00334969, -0.021378133, 0.010531874, -0.000018786452, -0.004131908, 0.022935083, -0.031258784, 0.014618871, -0.00910966, 0.0076462757, 0.02528548, -0.00085520017, -0.016093483, -0.017321078, 0.013204141, 0.008271301, -0.0015326235, 0.000636254, 0.005063833, 0.02877365, -0.00016666579, 0.029597037, 0.00018198734, -0.02353391, -0.006257745, 0.011931633, 0.026977168, 0.021782342, -0.0069987937, -0.007279494, -0.009461471, 0.010359712, 0.007552709, 0.0114525715, -0.004405123, 0.021213455, 0.01285233, 0.0002767237, 0.023908177, -0.007949431, -0.024222562, 0.045570754, -0.040121425, -0.01142263, -0.008196448, -0.015659332, 0.05078055, 0.031139018, 0.041528672, -0.014222147, 0.0075901356, 0.00068771566, 0.010037842, -0.0114600565, 0.0047195074, 0.0035162389, -0.019177442, -0.03055516, 0.017276166, 0.02241111, 0.011475028, 0.0106142135, 0.029582066, -0.007732357, -0.028444294, 0.011063334, -0.0039335466, 0.0338038, -0.002730278, -0.024087826, -0.045151576, 0.023698589, 0.029282654, -0.030240776, -0.028174823, 0.013967645, 0.01887803, -0.0038736637, 0.03586975, -0.0014175364, -0.024536947, -0.013241568, 0.020599658, -0.012695137, -0.027231669, -0.036887757, -0.015082962, 0.0053445334, 0.013787998, -0.003003493, 0.005962074, -0.019641533, -0.031288724, 0.015913835, 0.019162472, -0.0015672432, -0.002333555, 0.008286272, 0.0140424995, -0.03712729, -0.02089907, -0.0065870997, -0.017395932, 0.01998586, 0.00669938, -0.037247054, 0.013249053, 0.012231046, 0.01328648, -0.020749364, -0.017051606, 0.022366198, -0.007403002, -0.03910342, -0.013668233, -0.006201605, 0.0019780013, -0.0071260445, 0.021857195, -0.0035985776, -0.012882272, -0.00933422, -0.02527051, 0.005303364, -0.005643947, 0.03694764, -0.027575996, -0.026273547, 0.008623113, 0.010449535, 0.0070249923, -0.009379132, 0.0041244226, 0.01935709, 0.006220318, 0.004813074, -0.022770407, -0.002490747, 0.0070212497, -0.048654716, 0.007107331, 0.0070249923, -0.022890171, 0.014072441, 0.0061566927, -0.004225475, 0.021662576, -0.009581236, 0.022725495, -0.016617456, 0.012657711, -0.0064897905, -0.008435979, 0.0011433858, -0.032875616, -0.01439431, 0.012388239, 0.00444255, -0.015187756, 0.021707488, -0.0149107985, -0.018189378, 0.012133737, 0.0355404, 0.015464714, 0.0025637292, -0.0031475858, -0.0005562544, -0.03362415, -0.01601863, 0.017815111, -0.014529047, -0.0032804506, -0.005771198, 0.0038156523, 0.005868507, -0.010382168, -0.0317079, -0.013159229, -0.017201314, 0.033923563, 0.04940325, 0.013728115, 0.010404624, -0.01738096, 0.02703705, -0.020285273, -0.016392896, 0.015307521, -0.021168543, -0.013780512, 0.013862851, 0.029103005, -0.012380754, 0.004165592, -0.025465129, -0.016961781, 0.010659126, -0.024701625, -0.0047269925, 0.0039110905, 0.022066785, -0.024012974, -0.04413357, -0.008615627, 0.008510833, 0.02877365, -0.0061604353, 0.003926061, 0.003926061, 0.0013857237, -0.0015878279, -0.01624319, -0.011347776, -0.015958747, 0.035929635, -0.01582401, 0.012388239, -0.031737845, 0.011587308, 0.011954089, -0.043295212, 0.011991516, -0.006190377, 0.023009937, 0.011100761, -0.0058722496, -0.005490497, 0.014416766, -0.02109369, 0.01952177, -0.004487462, -0.024102798, 0.0006432715, 0.010696552, -0.003639747, -0.010367197, 0.028264647, 0.010936082, 0.008630598, -0.014776062, -0.005595292, 0.0050937743, 0.039402835, -0.020030772, -0.032606144, 0.006336341, 0.000099941, -0.007941946, 0.014768577, 0.015494655, -0.000106549145, -0.0022867715, -0.017530669, -0.022965025, -0.021198485, -0.0369177, -0.017455814, -0.010269888, 0.03598952, 0.022456022, 0.03664823, -0.014094897, 0.0017066577, -0.016183307, 0.0073730606, 0.009424044, -0.029896451, 0.0070923604, -0.026034014, -0.009596207, -0.030644985, -0.0024926185, 0.0180247, -0.009790826, 0.034582276, 0.039702248, -0.0009356676, -0.010374682, -0.017440844, 0.005164885, 0.005812367, -0.04066037, 0.005700087, 0.022470992, 0.0003864307, 0.011819353, 0.012373269, -0.014326942, 0.014873372, -0.010786376, 0.020045742, -0.014012557, 0.0017974174, 0.0035836068, -0.011385203, -0.0040158853, 0.024836361, 0.011564852, -0.033684034, -0.01648272, -0.0070699044, 0.017321078, 0.019252297, -0.005037634, -0.0017272424, -0.0016392897, -0.020734394, 0.0015831495, 0.019925976, 0.031737845, -0.00332162, 0.010659126, 0.027231669, -0.0031457145, 0.015067991, -0.0049216114, 0.000012923909, 0.009603692, -0.006268973, -0.031168958, -0.0032018544, 0.008084168, 0.0014802262, 0.02152784, 0.008930012, -0.035270926, -0.03230673, -0.06766748, 0.020584688, 0.030630015, 0.0030446623, 0.021153573, 0.060092315, -0.00030947206, -0.012650226, -0.027785584, -0.0058198525, 0.028204763, -0.026513077, -0.016527632, 0.023593795, -0.02703705, 0.008518318, 0.0066582104, 0.0042142468, -0.013892792, -0.009618663, -0.015127874, -0.009858194, -0.00020841995, 0.027950263, -0.0360494, 0.044971928, -0.029522184, 0.004595999, 0.022246433, -0.02040504, -0.0037146003, 0.013159229, -0.010846259, 0.018833118, -0.015584479, -0.010748949, 0.009948018, -0.0127400495, 0.0038212663, 0.0063513117, -0.01738096, -0.023653677, 0.013024493, -0.005793654, 0.00056373974, -0.00013321567, -0.0009833866, -0.022725495, 0.018279202, -0.019237326, 0.0127400495, -0.021348191, -0.014566473, 0.019162472, -0.007560194, -0.017036635, 0.0010619827, -0.019431945, 0.0064224224, -0.008196448, 0.011265438, -0.014880857, -0.0075452235, -0.0061716633, -0.010501933, 0.027605936, -0.0057973964, 0.011572337, -0.004618455, 0.026348399, -0.009394103, 0.026468165, -0.006901484, -0.026333429, -0.0018732065, 0.013241568, 0.01736599, -0.03452239, -0.03422298, 0.0047756475, 0.008144051, -0.0027003367, -0.03733688, -0.019581651, 0.0016364827, 0.011302864, 0.0020229134, -0.0020921528, -0.003310392, 0.0036940156, 0.011504969, -0.0058759926, -0.04572046, -0.029612008, -0.0067592626, -0.008922526, -0.031228842, -0.02880359, -0.044253334, -0.028219735, 0.023773443, 0.0053969305, -0.034462508, 0.028144881, 0.0024813905, 0.017021665, -0.0071148165, 0.017755229, 0.007605106, 0.0031120304, 0.007335634, -0.01759055, -0.021018837, -0.04197779, 0.009626148, -0.023983032, -0.0014558987, -0.00036023202, -0.008218904, -0.010494447, -0.013413731, 0.02657296, -0.014753606, 0.0022624442, 0.016183307, -0.0005412837, 0.0065758717, -0.0049552955, -0.035630222, 0.0017057221, -0.01865347, 0.009094689, -0.0057749404, -0.016812075, -0.003115773, -0.038324945, 0.0026048985, 0.046618704, -0.018533703, 0.013675718, 0.01010521, -0.0070100217, 0.018503763, 0.014214662, 0.017201314, -0.040241193, 0.010404624, -0.008091654, -0.006396224, -0.006893999, 0.042995796, -0.0028070027, 0.032725908, 0.013728115, 0.02043498, 0.015307521, 0.008121595, 0.011781926, 0.016946811, -0.026423253, 0.006777976, -0.011228011, 0.015494655, 0.0061941193, -0.013376304, -0.021423046, 0.0042516734, -0.0032542518, -0.005265937, 0.0043751816, -0.00500395, 0.03188755, -0.003400216, 0.008989894, 0.034791864, -0.025959162, 0.0014091154, -0.0017160143, 0.027351435, -0.039253127, 0.0032935499, -0.005348276, -0.00081730564, -0.0050675757, -0.04703788, -0.039582483, -0.019896036, -0.011931633, -0.014252089, -0.004378924, -0.022201521, 0.0014231504, 0.0042666444, 0.032216907, 0.0088476725, 0.012478063, -0.008151536, 0.01119807, -0.01559945, -0.0046858233, -0.015404832, -0.030360542, -0.0023110989, -0.003214954, -0.012201105, 0.0042404453, 0.030016216, 0.024551917, -0.012440636, 0.007844637, -0.0074404287, -0.02744126, -0.024521977, -0.0020902813, 0.014244603, -0.030809663, 0.006325113, 0.0066058133, -0.002367239, -0.0018591715, 0.011093275, -0.010486962, 0.003344076, -0.0077922395, 0.024462093, 0.024372268, 0.0075676795, 0.007754813, 0.02329438, -0.023249468, -0.011160643, -0.022875201, 0.017964818, -0.030165924, -0.01121304, 0.007702416, -0.018099554, 0.0110034505, 0.0034657128, -0.0022867715, -0.0072008977, -0.0015316878, -0.007185927, 0.021408074, -0.009790826, 0.009491412, -0.027306523, 0.02306982, 0.024596829, 0.03667817, -0.0019518026, 0.015240153, 0.0018077098, 0.012156193, 0.0021071234, 0.0015251382, -0.0026198693, 0.026932256, 0.000858475, -0.017455814, -0.0052509666, -0.027201729, 0.005015178, 0.01712646, -0.004872957, 0.03098931, -0.0073730606, -0.012395725, -0.026932256, 0.028055057, 0.0056701456, 0.021842225, 0.025315423, 0.024911214, -0.022485964, 0.013885307, 0.005277165, 0.005142429, -0.010674096, -0.0338038, 0.010951053, -0.0079868585, 0.006403709, -0.012388239, 0.018084584, 0.0076799598, 0.009513868, 0.019476857, -0.008915041, -0.013683203, 0.010973509, 0.008166507, -0.019177442, 0.00020701645, 0.029058093, 0.032186966, -0.015509626, 0.020973925, -0.0000034868237, -0.006429908, 0.009656089, 0.011639705, -0.0015008108, -0.005415644, -0.0042441883, 0.0148883425, 0.029716803, 0.0024551917, -0.011744499, 0.0014287644, 0.0046745953, -0.020105625, 0.017904935, -0.0017880608, 0.013518525, -0.00031110947, -0.00024280573, 0.016377926, 0.022740465, 0.042456854, 0.008054227, -0.0016336757, -0.007571422, -0.0024701625, 0.0029417388, -0.015449743, 0.00758265, -0.024087826, 0.011744499, 0.021003867, -0.0041468786, -0.022201521, 0.0025525012, 0.010000415, 0.015988687, -0.0023859523, -0.001736599, -0.00955878, -0.008323699, -0.026183723, 0.0019106332, 0.010958538, 0.03781594, -0.011677132, 0.0017384704, -0.032127082, -0.012927184, 0.02176737, -0.0148883425, 0.0011574208, -0.042067613, -0.004334012, -0.012463092, 0.025435187, -0.0027452486, -0.019237326, 0.0054081585, -0.03664823, 0.014012557, 0.010973509, 0.012335842, -0.035420634, -0.0034077014, -0.019027736, 0.012358298, -0.013982616, -0.017695345, -0.011617249, 0.036169168, 0.01164719, 0.0079943435, 0.006231546, -0.008840187, -0.025584895, 0.013555952, -0.022261404, -0.0039335466, -0.0084135225, -0.00417682, -0.0036303902, 0.0136083495, -0.0029230255, -0.015015594, -0.018279202, 0.008361125, -0.00483553, 0.0008327442, 0.005168628, 0.026962196, -0.005243481, 0.023204556, 0.018982824, 0.021378133, 0.041019667, 0.004086996, 0.005164885, 0.0014577701, 0.04640911, -0.0050226636, 0.024027944, 0.027800556, 0.018608557, -0.035420634, -0.005243481, -0.028908385, -0.02658793, -0.0028519148, -0.0027920322, -0.0048505007, 0.010000415, -0.024701625, 0.009551295, 0.033773858, -0.008076683, 0.014132324, 0.004655882, 0.010943568, 0.019731358, -0.0046334257, 0.0030895744, 0.017545639, -0.0074404287, 0.013892792, 0.0024458352, -0.0017833824, 0.0038998625, 0.019491827, -0.019716388, 0.018818147, 0.013570922, 0.0027658334, 0.02239614, -0.0005815174, 0.0028668854, -0.028384412, 0.012912213, 0.0136083495, 0.02613881, -0.00022268889, 0.0334445, -0.013241568, -0.03533081, 0.0029529668, -0.0011405788, -0.0062951716, -0.017410902, 0.01163222, 0.0030278203, 0.019731358, 0.018803176, 0.014371854, 0.013585893, -0.02112363, 0.0018058384, -0.009835738, 0.008271301, -0.006777976, -0.045600697, 0.008944982, -0.02898324, 0.0011733272, -0.007571422, 0.008233875, -0.00088373804, -0.000035058296, -0.015404832, 0.0042329603, 0.010674096, -0.013271509, -0.020779306, -0.008391067, 0.010187549, 0.010666611, 0.004906641, -0.02197696, 0.008825216, -0.0011405788, -0.0032598658, 0.013234083, 0.016842017, 0.00016058395, -0.0011330935, 0.022800349, 0.0046371687, -0.004075768, -0.010165093, -0.0019892293, 0.029147917, 0.02215661, 0.0110333925, -0.034193035, 0.0123133855, 0.023833325, 0.010127666, -0.02856406, -0.018443879, 0.016782135, -0.006231546, -0.006343826, 0.006298914, 0.009274337, -0.009962988, -0.0011424501, -0.011242982, -0.016407866, 0.0042179893, 0.008578201, -0.011467542, -0.023563853, -0.019806212, -0.016198277, -0.02152784, 0.010397138, 0.0039747157, 0.011527425, -0.015307521, 0.012889757, 0.006463592, -0.012904728, 0.007504054, -0.0012406952, -0.0013192913, 0.004236703, 0.025135774, -0.014192206, 0.009274337, 0.008742878, 0.011976545, -0.016677339, 0.020390067, 0.031558197, 0.028758679, 0.0072046407, 0.0028762422, -0.0122984145, -0.018563645, 0.0010778891, -0.010284858, 0.023818355, -0.025180686, -0.022485964, 0.0050338916, 0.0023578822, -0.0317079, 0.015689274, 0.00045473446, -0.003634133, -0.0020753108, -0.024207592, -0.012799933, -0.014529047, 0.0019780013, -0.000008874223, 0.013728115, -0.025330393, 0.024656713, 0.017261196, -0.0067255786, -0.0057524843, 0.00020561296, -0.008750363, 0.0035985776, -0.0014362497, 0.011175614, 0.015494655, 0.0208841, -0.02899821, -0.02024036, -0.0018703995, 0.007709901, -0.014618871, -0.009596207, 0.01847382, -0.012418181, 0.0052734227, 0.0020042, -0.010127666, -0.016767163, -0.026857402, 0.015105418, -0.005838566, 0.012545431, 0.01428203, 0.024237534, -0.034402627, 0.005782426, -0.005030149, 0.005048862, -0.0054119015, 0.028219735, -0.007043706, 0.008593171, 0.010666611, 0.009034806, 0.027156817, 0.04221732, 0.004465006, -0.014993138, -0.027725702, 0.010195034, -0.013877822, 0.019566681, 0.006871543, 0.007949431, 0.006381253, -0.0136233205, -0.019207384, 0.007388031, -0.01473115, 0.0049141264, 0.033983447, -0.02943236, 0.0074292007, 0.04305568, 0.010254917, 0.020524804, -0.018922942, 0.01712646, -0.02504595, 0.007934461, 0.0008982409, 0.033504386, -0.0035368234, -0.017620493, -0.010891171, 0.013458642, -0.0039223186, 0.0074591422, 0.0017094647, 0.0022362454, 0.0025880565, -0.0017094647, -0.011242982, 0.0015017465, -0.022725495, -0.0063288556, 0.024686653, 0.0071559856, 0.013443672, -0.018713351, -0.020719424, 0.032366615, 0.0088776145, 0.009079718, -0.021812283, -0.004483719, -0.0053857025, -0.017665405, 0.023384204, 0.0073842886, 0.018863058, -0.008952468, -0.0042516734, 0.015883893, -0.01646775, -0.021887137, 0.0088476725, 0.00203227, 0.003628519, 0.013653262, 0.0094465, 0.034312803, 0.025809456, -0.0065309596, -0.00022561285, -0.024222562, 0.0040158853, 0.035031393, 0.0052135396, 0.0027209213, -0.000095438096, -0.0007943818, -0.0131816855, -0.0009983573, -0.017740257, -0.0092893075, 0.010494447, 0.0017384704, 0.012493034, -0.02416268, -0.010322285, -0.008772819, -0.012246017, 0.0068752854, 0.00417682, -0.027800556, 0.015270095, 0.015524597, 0.00901235, 0.0038998625, 0.0033852453, 0.0072532953, 0.0040084, 0.0004374246, 0.01670728, -0.005838566, 0.030225806, 0.002908055, -0.00024818582, 0.021947019, -0.0033590468, -0.012665196, 0.029402418, -0.026348399, 0.013773027, -0.006051898, -0.00010882984, 0.012283444, 0.023369234, -0.016617456, -0.049493074, -0.0053857025, -0.011272923, -0.0006311078, -0.00790452, -0.0005716929, 0.0065758717, 0.007852122, 0.0048916703, -0.0013089989, 0.011931633, -0.0122984145, 0.011804382, -0.005142429, -0.0002905248, -0.0015373018, 0.009453985, -0.0054193866, -0.019476857, 0.016961781, 0.009311764, 0.011415144, 0.004573543, 0.013787998, -0.016827045, -0.0064748195, 0.024911214, -0.0013174199, 0.001959288, 0.0031625566, 0.0034151867, -0.026707696, -0.007174699, -0.00056654675, 0.00274712, 0.0015045535, 0.002573086, -0.010457021, 0.040121425, 0.0038624357, -0.005015178, -0.01714143, 0.0067031225, 0.0040720254, -0.003501268, -0.013211627, -0.004023371, -0.020045742, 0.012260988, 0.0056926017, 0.015000623, -0.013758056, 0.018279202, -0.019626563, 0.0014287644, 0.003521853, -0.003544309, 0.022875201, 0.022770407, -0.0052584517, 0.018069612, -0.0049552955, 0.015008108, -0.0015635005, 0.0052247676, 0.008248845, 0.0088626435, 0.016063541, 0.015494655, 0.00933422, 0.0024739052, -0.003115773, -0.0073056924, 0.032127082, 0.0072420673, -0.002015428, 0.022785377, 0.00040467622, -0.013234083, 0.0074591422, -0.008937497, 0.00087952754, -0.011699587, -0.0004774244, -0.008278787, -0.0012828002, -0.0011555494, -0.0073094354, 0.008061712, -0.026213663, 0.018189378, -0.019851124, -0.009199483, 0.0073730606, -0.0039784587, 0.012283444, 0.034402627, 0.015015594, 0.008473406, -0.020105625, -0.005640204, 0.018369026, -0.014072441, 0.0004860793, 0.009573751, -0.013241568, -0.012979581, 0.0028294588, 0.005404416, -0.024252504, 0.022021873, -0.011100761, 0.0020509833, -0.015389861, -0.025779514, 0.010936082, -0.017186342, -0.0101426365, 0.0118792355, -0.028055057, -0.02024036, -0.0026329686, 0.007563937, -0.013698174, -0.018728323, 0.005007693, -0.0024084083, 0.011594793, -0.013630806, -0.008907556, 0.009873165, -0.011856779, 0.004075768, -0.019611593, 0.02109369, 0.012163679, -0.008106624, -0.0052996213, -0.004700794, -0.023653677, 0.0040720254, -0.016767163, 0.016048571, 0.014806004, -0.007956917, 0.020764336, 0.006298914, 0.003527467, 0.011954089, 0.010696552, -0.0044687483, 0.0059920154, -0.03314509, 0.011924148, -0.008159022, 0.00269098, 0.0027153073, -0.026887344, 0.016856987, 0.0073318915, 0.002178234, 0.017395932, 0.013316421, -0.015988687, -0.0047868756, 0.027291553, 0.0011770698, -0.00087952754, -0.023788413, -0.006201605, 0.0028463008, -0.005041377, -0.033743914, -0.003544309, 0.012567887, 0.008900071, -0.00549424, -0.0009440886, -0.033294797, -0.024926184, -0.0012912212, 0.00056233624, -0.0064111943, 0.035450574, 0.0016954297, -0.005468041, 0.01953674, -0.03452239, 0.025495071, -0.0018582358, -0.016632427, -0.0149033135, -0.0022100469, -0.011939119, 0.007979373, 0.0032598658, 0.024536947, 0.01196906, -0.006871543, 0.012463092, -0.004326527, -0.00023719174, 0.00020865387, -0.011295379, -0.00046409114, -0.010853744, -0.012186134, 0.010359712, 0.008465921, 0.0153299775, 0.00869048, -0.00976837, 0.02944733, 0.008039256, -0.003155071, 0.0036809163, 0.0047382205, -0.000034298064, -0.0042030187, -0.01670728, -0.013271509, 0.011242982, -0.023998002, 0.005123716, 0.014192206, 0.0049141264, 0.01799476, -0.0031026737, 0.013091861, 0.0040084, -0.0022231461, -0.0105842715, 0.012979581, 0.0010657253, -0.010232461, 0.0030072357, -0.015674304, 0.012343327, 0.006392481, -0.0069538816, -0.0046409112, 0.00052116683, -0.016003659, -0.007979373, 0.0055129533, -0.003533081, 0.0028612714, -0.011272923, 0.0035985776, -0.009790826, -0.0047719046, -0.025465129, -0.008615627, -0.00020865387, 0.009693516, -0.00052724866, -0.0049478104, -0.01913253, -0.0041131945, -0.014326942, 0.009850709, -0.0007438557, -0.015584479, 0.015554538, -0.0012799932, 0.0035705075, 0.01351104, 0.031168958, -0.018623527, 0.011811867, 0.017291138, -0.009633633, 0.011654676, -0.03949266, 0.003970973, -0.0028238448, 0.0075452235, -0.0549424, -0.010719008, 0.014551503, 0.0008004636, 0.023204556, -0.0063176276, 0.015704244, -0.021063749, 0.014094897, -0.008780304, 0.015120388, 0.0003087703, -0.0045885136, 0.0012762506, -0.008974924, 0.0024664197, -0.037666235, -0.024357298, -0.0014877114, -0.03934295, 0.012934669, -0.0027639621, 0.012455607, -0.0008042063, -0.009865679, 0.0080018295, -0.01582401, -0.0036715597, -0.002065954, 0.025539983, -0.0018189378, 0.018369026, -0.03299538, 0.008278787, 0.010606728, 0.011796897, -0.0032692226, -0.003014721, -0.017425872, 0.0035199814, 0.01153491, 0.0053782174, -0.0010694681, -0.021812283, 0.002668524, -0.01153491, -0.009566265, -0.01601863, -0.0114450855, -0.0072720083, 0.021557782, 0.0021969476, 0.000419413, -0.02329438, 0.015973717, 0.016123423, 0.0025169458, -0.00039064122, 0.023219528, 0.01296461, -0.007425458, -0.00094174943, -0.030121012, 0.020914042, 0.0068079173, -0.005857279, -0.026004074, 0.0030446623, 0.010344741, 0.016437808, -0.0047382205, 0.00845095, -0.0052172826, 0.020524804, 0.014356883, 0.008144051, -0.02064457, -0.018324114, 0.0029230255, 0.036199108, -0.004326527, -0.0018647856, -0.016572544, -0.0028594001, -0.021632634, -0.01351104, 0.00080935244, 0.021408074, 0.019416973, -0.01799476, 0.01449162, 0.000012361046, -0.025644777, 0.008944982, 0.0008074811, 0.006291429, -0.0011293507, -0.018039672, -0.0041393936, 0.0046221977, -0.02702208, -0.0072982074, -0.003065247, -0.022710524, 0.019461885, 0.013540981, -0.0041693347, 0.009745914, 0.014806004, 0.00088654505, 0.0025599864, 0.027531084, 0.024701625, 0.000103917584, 0.0060144714, 0.004045827, 0.020449951, 0.020270303, 0.020195449, 0.0033702746, 0.00334969, -0.01020252, 0.0027658334, -0.014401795, -0.015958747, -0.010344741, -0.0035705075, 0.025225598, 0.01582401, -0.013548466, -0.008406037, -0.011796897, -0.011677132, 0.0013192913, 0.010052812, -0.0067143505, 0.025195656, -0.0011957831, 0.0131891705, 0.013421216, 0.013496069, -0.028923357, -0.014723665, 0.0049777515, 0.03161808, 0.021482928, -0.013234083, -0.019431945, -0.014349398, 0.0061828913, -0.0026273546, 0.004906641, 0.011138187, 0.029821597, 0.0055166963, -0.0035667648, -0.0073506045, 0.00056327187, -0.01622822, -0.021423046, 0.019027736, -0.0018142594, 0.0012004615, 0.006448621, -0.03074978, -0.0044500353, -0.011684617, -0.012036428, 0.0066245263, 0.024057886, -0.033354677, 0.011864265, 0.021033807, 0.018578615, -0.0048542432, 0.0024870045, -0.009618663, 0.00968603, -0.01240321, -0.011257952, -0.00008426856, -0.00017216284, -0.005973302, -0.004551087, 0.0052958787, -0.002651682, 0.023459058, 0.013481098, 0.025794484, 0.010778891, 0.00081917696, -0.0032636086, 0.005789911, 0.00074853405, -0.017455814, 0.016318044, 0.004790618, 0.03407327, -0.0033403332, 0.0015775355, 0.032785792, 0.013114317, -0.011594793, 0.026932256, -0.00933422, -0.0077473274, -0.009251881, -0.00072093186, 0.0007962531, -0.022755437, 0.0041917907, 0.03934295, -0.014214662, 0.0048392727, -0.0064673345, -0.016752193, 0.011684617, 0.0064860475, 0.01865347, -0.0074703703, -0.015958747, -0.013997587, 0.0025599864, 0.016318044, 0.012433151, -0.007481598, 0.008907556, -0.009955503, -0.012912213, 0.00058619573, -0.014401795, -0.0047157644, 0.031228842, 0.011751985, -0.006437393, -0.00500395, 0.003020335, 0.015030564, 0.0008028028, -0.018848088, 0.0019985859, -0.0035873496, -0.00012222158, -0.015928805, 0.00056561106, -0.0103148, -0.0007962531, -0.02021042, 0.005520439, -0.016782135, 0.014723665, -0.0048692143, 0.019836154, -0.014424251, 0.019671476, -0.012882272, 0.008054227, -0.0069314255, 0.005531667, 0.0073056924, 0.0186385, -0.0029529668, -0.015494655, -0.005696344, 0.016198277, 0.0056701456, -0.008750363, -0.0005838566, -0.036169168, -0.010172578, -0.016362954, 0.00093660323, -0.0074516567, 0.0035143674, -0.014072441, -0.011317835, 0.00035368235, 0.02438724, -0.0003873664, 0.009416559, -0.014835945, -0.0015354306, -0.01935709, -0.005337048, -0.0052921358, 0.013855366, 0.013451157, 0.03185761, -0.018608557, 0.016303072, -0.022979995, 0.006740549, -0.0025319166, -0.0018123881, 0.015779098, 0.0018189378, 0.0074778553, 0.017680375, 0.021932049, -0.003757641, 0.00037824363, 0.017425872, -0.007492826, 0.0062090904, -0.029312594, -0.03730694, -0.0008916912, 0.0050825463, 0.0021857196, -0.004143136, 0.014791033, -0.0072008977, 0.0010460764, -0.0071672136, -0.0077173864, -0.019716388, -0.0076350477, 0.0022418594, -0.0148883425, 0.025315423, -0.010434565, 0.011662161, 0.007391774, -0.021363162, 0.029761715, -0.024477065, -0.0035424375, 0.022291346, 0.028159851, -0.0059920154, 0.013061919, -0.0031531998, -0.000047982205, -0.013630806, 0.008593171, 0.0010713394, -0.0114600565, -0.0042105042, -0.000543155, -0.020150537, -0.008106624, -0.024596829, 0.0045585725, 0.0030877031, -0.0084284935, -0.017815111, 0.0012163678, -0.027800556, -0.013488584, 0.017800141, -0.015270095, -0.0007354347, -0.0046259407, 0.020090654, 0.0206296, -0.0317079, 0.0027770614, -0.0041468786, 0.0032055972, -0.0017487627, 0.016931841, 0.010995965, 0.030615043, 0.0066619534, -0.0025356591, -0.026318459, -0.012867301, 0.0019742586, 0.0017740257, -0.0041506216, -0.009633633, -0.0061604353, 0.019671476, 0.012762506, -0.034642156,
|
|
2024
|
+
8.516037e-7,
|
|
2025
|
+
0.024327358, 0.021797312, 0.021812283, -0.006609556, -0.011924148, -0.007586393, -0.008091654, -0.02284526, 0.0024215076, -0.019431945, 0.015142844, -0.0072757513, -0.011572337, -0.008076683, 0.008084168, 0.003327234, 0.00910966, 0.0011153157, 0.0033684033, 0.006560901, -0.0042030187, -0.019641533, 0.009962988, 0.0153299775, -0.024971096, 0.007687445, -0.01537489, -0.019836154, -0.007066162, 0.017036635, -0.017560609, -0.0030502763, 0.009259366, 0.014776062, 0.015097932, 0.035899695, 0.0016037342, 0.0080168, -0.008196448, 0.022605728, -0.019387033, -0.0007948496, 0.00692394, 0.02306982, 0.00069192617, 0.024656713, -0.0072982074, -0.011512454, 0.025315423, 0.0013773027, -0.022276374, 0.013840395, 0.029896451, -0.01711149, -0.022530876, -0.008435979, -0.010846259, -0.0024944898, 0.0014839688, 0.019641533, -0.007107331, 0.011332806, 0.008982409, 0.017440844, 0.0015934419, -0.0075976206, 0.01473115, -0.015142844, -0.00867551, 0.01208134, -0.015629392, 0.015973717, -0.00812908, 0.007197155, 0.011931633, -0.022081755, -0.0050338916, -0.009191998, 0.014895828, 0.007537738, 0.01953674, 0.028444294, 0.010464506, -0.006051898, 0.012522975, 0.0011433858, 0.007129787, 0.015008108, -0.016362954, -0.0032954214, 0.0041843057, 0.0073094354, 0.008623113, -0.0009992929, 0.0077398424, 0.006538445, 0.00538196, -0.014865886, -0.03494157, 0.0050675757, -0.0009609306, 0.01021749, -0.014499105, 0.0005169563, 0.020569716, 0.0206296, 0.012418181, -0.0013726243, -0.0048579862, 0.013278995, 0.034672096, -0.0050002076, -0.003166299, -0.0049141264, 0.0011742628, 0.0015466586, -0.003926061, 0.013862851, 0.010239946, 0.009566265, 0.008952468, -0.012335842, 0.018264232, 0.0003737992, 0.01890797, -0.015614421, -0.0018357799, -0.0043302695, 0.0027003367, -0.021692518, -0.022066785, -0.0153449485, -0.023084791, 0.022081755, 0.004109452, 0.003355304, 0.028608972, 0.014648812, -0.011512454, -0.035240985, 0.0040832534, -0.0077248714, 0.008435979, -0.014761092, 0.003774483, -0.022036843, -0.0105842715, 0.00082338747, 0.01503805, -0.0018544932, -0.020704452, 0.013383789, 0.004801846, -0.00029824403, 0.021318251, 0.0055391523, -0.010943568, 0.010681581, -0.02127334, -0.0052846507, -0.0032804506, -0.023474028, -0.006856572, -0.0071447575, -0.015060506, 0.006912712, -0.011228011, 0.013787998, -0.032097142, 0.013249053, -0.0028650141, 0.0015260738, 0.00088233454, 0.006119266, 0.026213663, 0.0060481555, 0.008570715, -0.014791033, 0.023788413, -0.0063176276, -0.02218655, 0.015322492, -0.011205555, 0.01757558, 0.0010563687, -0.01473115, -0.018788205, -0.0027658334, 0.0217524, 0.00012420987, 0.007852122, 0.019042706, 0.0042030187, -0.0042629014, -0.041199315, -0.018608557, -0.016572544, -0.015779098, -0.000049210266, -0.007335634, -0.0025094606, 0.005015178, -0.008218904, 0.0027096933, 0.010689067, -0.010150122, 0.026842432, 0.01622822, 0.014431737, 0.011160643, 0.012156193, -0.009027321, -0.00968603, -0.0008594107, -0.009775855, 0.009498897, 0.029237742, -0.017395932, 0.0068977415, -0.002361625, 0.016048571, -0.032246847, -0.0079868585, 0.003656589, 0.008810246, 0.023548882, -0.00021146088, 0.0015157815, -0.0005113423, 0.0127699915, -0.019626563, 0.009214454, -0.005950846, 0.0028463008, 0.013780512, 0.00069239404, -0.0005581257, 0.008024286, -0.013743086, -0.014371854, 0.019611593, -0.0025337879, 0.010681581, 0.010464506, -0.009701001, -0.0103148, -0.012388239, -0.015419802, 0.004704537, 0.0025001038, -0.005700087, -0.007141015, -0.018189378, 0.010000415, 0.010284858, -0.0049216114, -0.007447914, 0.007141015, 0.01505302, 0.0140649555, -0.013301451, 0.015090447, -0.005415644, 0.0012013972, -0.026692726, 0.018159436, 0.014124838, -0.005007693, -0.008915041, -0.00009111063, -0.0028238448, -0.0061566927, -0.0074179727, 0.0066282693, 0.00060023076, 0.0070175068, -0.0022811575, -0.008608142, 0.0059770443, -0.009154572, -0.012994551, 0.02110866, 0.014424251, 0.025420217, -0.008151536, -0.005531667, 0.01622822, -0.011048363, -0.026977168, -0.024312386, -0.013668233, -0.0038231378, -0.025345365, 0.010681581, -0.013683203, 0.0017562481, -0.007432943, 0.0001446776, 0.00066245266, -0.028010145, -0.032157023, 0.017949848, -0.013877822, -0.010659126, -0.0030558903, -0.02416268, 0.014311971, 0.00065309595, -0.0022699295, 0.020674512, -0.008757848, 0.01601863, -0.008825216, -0.012156193, -0.0045585725, -0.0029885222, -0.0009805796, 0.0118717505, 0.0050563477, 0.0061866343, -0.0144766485, -0.003907348, -0.004356468, -0.016946811, -0.017710317, 0.018324114, -0.016827045, 0.015060506, -0.005123716, -0.009566265, 0.03754647, 0.024087826, 0.005756227, 0.016961781, 0.0027003367, 0.008121595, 0.025480099, 0.010816317, -0.01646775, 0.040301073, 0.01044205, 0.004801846, -0.012103796, -0.009311764, -0.012957125, -0.023773443, -0.0092818225, 0.0042142468, 0.0070100217, -0.0180247, 0.022246433, 0.016437808, -0.011347776, -0.02351894, -0.0005880671, -0.0012519233, -0.017740257, 0.007096103, -0.0009005801, 0.006733064, -0.009274337, 0.011272923, 0.00032771757, -0.007051191, -0.024027944, -0.03317503, 0.014970682, 0.012088825, 0.0021932048, -0.0064561064, -0.004326527, -0.019042706, -0.006310142, 0.009790826, -0.009588721, -0.027111905, -0.0005819852, -0.02482139, 0.0169019, -0.0071335295, 0.01063667, -0.008840187, -0.0007321599, -0.0012519233, -0.024342328, 0.019821182, -0.010921112, -0.020449951, 0.020105625, -0.007447914, 0.0017637335, 0.006845344, 0.008832702, 0.006310142, 0.0022399882, -0.0021557782, -0.01890797, -0.0063400837, 0.0032336672, 0.0012247888, -0.027366405, 0.022291346, -0.009244395, 0.011512454, -0.011939119, 0.013114317, -0.02591425, 0.0052958787, 0.002919283, -0.0040084, -0.010666611, -0.014087412, 0.0110184215, 0.0071110735, -0.0014596415, 0.012455607, 0.010030356, 0.0034189294, -0.0023878238, -0.020090654, -0.0066844095, -0.00010584739, 0.0040907385, -0.013316421, 0.0011433858, 0.017395932, -0.0070811324, 0.0105992425, 0.014985652, -0.028833533, -0.00031321472, 0.03233667, 0.015090447, -0.010771405, 0.005924647, 0.018159436, -0.0025861852, -0.026543017, -0.033025324, -0.02768079, -0.0016785876, 0.008832702, -0.019312179, -0.0075676795, -0.0037258284, 0.009962988, 0.01262777, 0.023848295, 0.01757558, -0.009251881, -0.016871957, -0.0042965855, -0.011714558, -0.011220526, 0.016632427, 0.027261611, 0.010494447, -0.009147086, 0.011183099, -0.027007109, 0.0047831326, -0.010479477, 0.005804882, 0.0030296918, -0.014177236, -0.005617748, -0.0018273589, 0.008937497, -0.0027639621, 0.027501142, 0.015883893, -0.013900278, -0.008982409, 0.0074179727, -0.012043913, 0.02395309, -0.004487462, 0.03317503, -0.0008982409, -0.014132324, -0.00045777537, -0.0070100217, 0.008465921, 0.00434524, -0.009828253, -0.005771198, 0.005531667, -0.022081755, -0.021692518, -0.0036865303, -0.0019405746, 0.0009777726, 0.0027770614, -0.0013239697, 0.0123133855, 0.00045730753, -0.011856779, -0.008900071, -0.008518318, -0.015509626, 0.0028238448, 0.0026385826, -0.02265064, -0.013900278, 0.01937206, -0.02793529, 0.000058362268, 0.0047195074, 0.010022871, 0.0010900528, -0.011250467, 0.010995965, 0.012156193, 0.02263567, -0.000636254, 0.041498728, -0.0037651265, 0.0114450855, -0.022560816, 0.00085473235, 0.023638707, -0.022096725, 0.0058647646, -0.011729529, 0.0041693347, -0.0013464256, -0.029956333, -0.00061800843, 0.013713144, 0.0012556659, 0.0035892208, -0.0065234746, 0.009154572, 0.016527632, -0.0011630348, 0.0038399799, -0.022051813, 0.00056561106, 0.014738636, 0.0024776477, 0.002406537, -0.00217262, -0.0028650141, 0.0032841933, 0.014020043, -0.003388988, -0.02329438, 0.005655175, -0.0033141347, 0.0051948265, 0.0047419635, 0.0067180935, -0.022485964, -0.025764544, -0.021003867, -0.008525803, 0.0037220856, -0.00091601856, -0.010412109, 0.0053071068, 0.011070819, -0.023488998, 0.009865679, 0.013264024, -0.024521977, -0.014873372, -0.0063887383, 0.026198693, 0.013249053, 0.004756934, 0.010823803, 0.0062502595, -0.0153299775, -0.0084210085, 0.017470784, -0.0015475942, 0.024566889, -0.010853744, 0.009057262, 0.0012940282, 0.005041377, -0.0049665235, -0.024521977, 0.0009375389, -0.017545639, -0.003757641, -0.038534533, 0.016153365, 0.009641119, -0.022515904, -0.002054726, -0.0029155402, 0.008630598, 0.014177236, -0.0039036053, 0.03488169, 0.029612008, -0.006560901, 0.025779514, 0.0021651348, -0.007447914, 0.040570546, 0.015883893, -0.021947019, -0.014184721, -0.0022456022, 0.029177858, 0.0057300283, 0.01932715, 0.009034806, -0.0017777684, -0.00011479472, 0.009745914, 0.022560816, 0.009918077, -0.011130702, 0.01932715, -0.0035349522, -0.025869338, -0.0043864097, 0.0016196406, 0.012657711, -0.0024664197, 0.011242982, 0.0084284935, -0.006074354, 0.012433151, 0.020734394, -0.01251549, -0.000337776, 0.026213663, 0.001601863, 0.016362954, 0.023324322, 0.0066507254, 0.039283067, 0.01527758, -0.03137855, 0.0012509875, 0.00011859587, -0.019237326, -0.02922277, -0.0068678, 0.010232461, 0.012762506, -0.008630598, 0.00880276, 0.0055690934, 0.007627562, 0.0058872206, 0.019626563, -0.01132532, 0.016961781, -0.015868923, -0.048415184, -0.014311971, 0.010689067, -0.0071597286, -0.01865347, -0.0031943691, 0.023129703, 0.00076350477, -0.003830623, 0.011669646, 0.0041581066, -0.019701418, -0.005838566, -0.009498897, -0.0058423085, -0.0048505007, -0.016827045, -0.013952675, 0.025734602, -0.015734186, 0.0054568136, -0.021857195, 0.0114450855, 0.005846051, -0.026004074, 0.0026834947, 0.017291138, 0.023009937, 0.013278995, 0.013443672, -0.009087204, 0.00020818604, 0.021842225, 0.0006685345, -0.022890171, -0.006845344, -0.008181477, -0.011063334, 0.003982201, -0.010000415, 0.023114732, 0.011362747, 0.021827254, 0.03296544, -0.025749572, 0.0071335295, 0.01108579, 0.003231796, 0.016153365, -0.008937497, -0.0274712, 0.0016224476, 0.016347984, -0.017560609, 0.0047606765, -0.00016327399, 0.017949848, -0.0042404453, -0.0019611593, -0.00009432699, -0.005520439, -0.0118942065, -0.001398823, 0.012560402, -0.0079943435, -0.013713144, -0.005879735, -0.014701209, 0.007702416, 0.0114376005, 0.002981037, -0.008720422, -0.009206969, 0.0064111943, 0.0077697835, 0.014027528, 0.0028930842, 0.0023915663, -0.019881064, 0.022815319, 0.00203227, -0.0021576495, 0.0052846507, -0.00790452, 0.00084771484, 0.017021665, 0.013675718, 0.017620493, 0.010434565, 0.011991516, 0.00955878, -0.0067966892, 0.0065122466, 0.02151287, -0.0047606765, 0.024372268, -0.0149107985, -0.0088851, 0.016437808, 0.008046742, 0.0015111031, -0.0019929719, -0.0169019, -0.0014933255, -0.028399382, -0.00052537734, -0.019222355, -0.020464921, 0.012784962, -0.0043115565, 0.009858194, 0.0017104003, -0.010337256, -0.0040832534, -0.015434773, 0.016512662, 0.022545846, -0.0020472407, -0.0041468786, 0.0019293466, -0.015494655, -0.0077473274, 0.02305485, 0.014970682, -0.0026834947, 0.0059283897, 0.0005394124, -0.0061230087, 0.029267682, -0.010509418, -0.0065796147, -0.0057973964, 0.020075684, 0.0039934292, 0.013862851, 0.031558197, -0.001733792, 0.014289515, 0.0052172826, -0.014641327, 0.0055840644, 0.01119807, 0.0053108493, -0.01527758, 0.009962988, -0.0122984145, 0.022905143, -0.0010086497, 0.021872165, -0.006609556, -0.0009581236
|
|
2026
|
+
]
|
|
2027
|
+
}
|
|
2028
|
+
],
|
|
2029
|
+
"sources": [
|
|
2030
|
+
{
|
|
2031
|
+
"name": "source-coolstore-is-an-esho-54af0da6e247e295bb29"
|
|
2032
|
+
}
|
|
2033
|
+
],
|
|
2034
|
+
"preparationIds": [
|
|
2035
|
+
1
|
|
2036
|
+
]
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"name": "fast-delivery-personal-customer-service",
|
|
2040
|
+
"title": "Fast Delivery, Personal Customer Service",
|
|
2041
|
+
"content": "Coolstore's key selling points are fast delivery and excellent customer service with a personal touch.\n\n---",
|
|
2042
|
+
"keywords": [
|
|
2043
|
+
"Fast Delivery",
|
|
2044
|
+
"Personal Customer Service"
|
|
2045
|
+
],
|
|
2046
|
+
"index": [
|
|
2047
|
+
{
|
|
2048
|
+
"modelName": "text-embedding-3-large",
|
|
2049
|
+
"position": [
|
|
2050
|
+
0.004566246, -0.002016403, -0.014944853, 0.007365739, -0.005155164, -0.029514166, -0.006324464, 0.003766086, -0.0010300726, 0.034123085, 0.018299123, 0.018094283, -0.040353667, -0.023095816, 0.0029552574, 0.038646657, 0.001581116, 0.02377862, 0.009397078, -0.014483961, 0.025212506, 0.0007516169, 0.008475294, -0.009439753, 0.041958254, 0.018964857, -0.01412549, -0.010728545, -0.03895392, 0.0018510367, 0.046908576, 0.037656594, -0.024478493, 0.012205106, -0.013587782, -0.018589316, -0.024990594, -0.022208173, 0.014919248, 0.027721807, 0.0048649726, -0.030777352, -0.014996064, 0.03041888, -0.021235177, -0.0030086013, -0.0074382867, 0.011044341, -0.009601919, -0.024324862, -0.012042941, -0.020074412, -0.062374067, 0.016933518, 0.024819894, 0.029070344, -0.009362938, 0.038646657, 0.047249977, -0.025895309, -0.051312655, -0.042265516, 0.021047406, -0.0035036337, -0.02386397, 0.022020401, -0.019289188, 0.033679266, -0.012469692, 0.007028605, -0.033354934, 0.016839633, 0.020552374, 0.02391518, -0.031767417, 0.0036487293, 0.042606916, 0.0010908847, 0.024990594, -0.0025370405, 0.01727492, 0.00077882234, 0.016967658, -0.016267784, 0.027619386, -0.007276121, -0.036564108, -0.076064266, 0.017146893, 0.011436952, -0.010370073, -0.040217105, -0.011462558, -0.018725876, 0.008782555, 0.027909579, -0.04830832, 0.011428418, 0.014407146, 0.011880775, -0.046669595, 0.0071523627, -0.039705, -0.030913912, -0.023488428, 0.034515698, -0.001724078, 0.012307527, 0.022873905, -0.061554704, 0.020398743, -0.031630855, 0.022788554, -0.013937719, -0.027926648, -0.017599251, 0.011419882, -0.026782952, 0.028933782, -0.0042760544, -0.0023321994, 0.013792624, 0.004282456, -0.0071993056, 0.0019673265, -0.0011575647, -0.0004875641, 0.0059019797, 0.04530399, 0.0018094283, -0.05861865, 0.042333793, -0.015934918, -0.00031179565, 0.038885638, 0.017889442, 0.06807547, 0.040148824, 0.010916315, 0.0395343, -0.005027138, -0.029070344, 0.020876706, 0.023488428, -0.012239247, 0.004237647, -0.0046772016, 0.011249182, 0.0009745948, 0.0037874237, -0.0325185, -0.06619776, -0.01302447, -0.02200333, 0.012401412, 0.0113003915, -0.025229575, -0.02642448, 0.0056032534, 0.0064908974, -0.012307527, 0.0070115346, -0.010224977, 0.0008102953, -0.0051850365, 0.007997332, 0.007327331, -0.04796692, -0.04148029, 0.03943188, 0.019374538, -0.004544908, -0.002389811, -0.030145759, 0.008936186, 0.022532504, 0.019272119, -0.037724875, -0.008633192, -0.014586382, 0.0009409881, 0.012973259, -0.0066829356, -0.008035739, 0.011897844, 0.053395204, 0.035574045, 0.020876706, 0.049298387, 0.015764218, 0.0059190495, 0.0015299058, 0.012887909, 0.029804356, -0.01957938, 0.0017219442, 0.0045790486, 0.07381102, -0.03239901, -0.0042056404, 0.022071611, -0.01409135, 0.046976857, -0.030982193, -0.009200772, 0.007135293, 0.012298992, 0.03728105, 0.0008545708, 0.0002465826, 0.025451487, 0.0065805153, -0.02630499, 0.018435685, 0.018708806, 0.042777617, -0.0033350666, 0.009661664, -0.012213641, -0.02848996, -0.0051850365, -0.011223577, -0.015115554, -0.0522003, -0.0052277115, -0.029428815, 0.0021604318, -0.015252115, 0.0132293105, 0.053429347, -0.031306524, -0.012879374, -0.028694801, -0.027277986, -0.013656063, -0.013195171, -0.037178632, -0.026492761, -0.053395204, 0.004822297, -0.011138226, 0.01097606, -0.04574781, -0.021405878, 0.0052789217, -0.0013890776, 0.0008054943, 0.034293786, 0.0021273585, -0.016336065, -0.036495827, -0.002859238, 0.009354403, 0.025144225, 0.033679266, 0.02857531, 0.017317595, -0.0048351, -0.035778884, 0.006290324, -0.004327265, -0.013698738, 0.03038474, 0.05001533, -0.055546034, -0.012708673, -0.0017934251, -0.0107968245, -0.0061708335, 0.072104014, 0.02393225, 0.03977328, 0.004796692, -0.025622187, 0.010438353, 0.0054112147, 0.0018457022, -0.012222176, 0.010737079, -0.020262184, 0.015098484, -0.016404346, 0.06510528, -0.034942452, -0.010600518, 0.022515433, -0.009320263, -0.03495952, -0.03943188, -0.04141201, -0.033269584, -0.029906778, 0.0052618515, 0.010395678, 0.0009655263, 0.009328797, 0.053156223, 0.032279518, -0.021064477, 0.018947788, 0.046772014, 0.030913912, 0.004416883, -0.015849568, -0.0020185367, 0.02161072, -0.03060665, 0.00862039, 0.027670598, 0.008244848, 0.037861433, -0.038817357, -0.017752882, -0.053122085, -0.0145010315, 0.02162779, 0.006234846, 0.02183263, -0.005530705, -0.0050356733, 0.009593384, 0.028899644, -0.0822095, -0.044518765, -0.0062647187, -0.016003199, 0.01194052, 0.008479562, 0.034344997, 0.028131489, -0.021422949, -0.013493897, 0.016011734, 0.022156961, -0.027329195, -0.033713404, -0.030094549, -0.018418614, -0.02833633, 0.014108419, 0.04315316, -0.030623721, -0.029002063, 0.057696864, 0.03055544, -0.0053984122, -0.0035911177, -0.01942575, 0.051005393, -0.043972522, 0.0010103353, -0.005300259, 0.015021669, 0.013835299, 0.02161072, -0.026902443, 0.024495563, -0.0029509899, 0.0020292057, 0.029514166, 0.042538635, 0.026151361, -0.012034405, 0.044143222, 0.021849701, 0.07592771, 0.0101823015, 0.024410212, -0.00435287, 0.025400277, -0.031289455, -0.0015992529, -0.059676994, 0.0195111, -0.0045363735, 0.0057440815, 0.007920517, 0.033491492, -0.00863746, -0.009388543, -0.002364206, -0.042231373, -0.019067278, 0.040558506, -0.008961791, -0.00043982125, -0.00063586043, 0.0032475824, -0.009747014, 0.014151095, -0.0328599, 0.014782688, -0.035437483, 0.004958858, 0.017454155, 0.035198502, 0.01988664, 0.0391929, -0.0013645394, -0.014885108, -0.042572774, 0.014629058, -0.023300657, -0.015055809, -0.036188565, -0.001910782, 0.07067013, -0.013647527, 0.021935051, 0.040046405, -0.046874434, -0.04158271, -0.015858103, 0.004314462, 0.003953857, 0.023078745, -0.0009804626, 0.0005926518, -0.0028507032, 0.018811226, 0.007694338, 0.008146695, -0.00027192102, 0.015397211, 0.007702873, 0.050732274, -0.034362067, 0.01753097, 0.01753097, -0.010660264, -0.043016598, -0.005150896, 0.009132492, -0.032006398, 0.0048351, 0.011863705, -0.017838232, -0.031169964, -0.0056459284, -0.012247781, -0.0283534, -0.01988664, -0.01188931, -0.03437914, -0.020620655, -0.0049161827, -0.021286387, 0.009209307, 0.028797222, -0.021474158, -0.006717076, 0.035710603, -0.01089071, -0.044962585, -0.026066009, -0.003305194, 0.026612252, 0.03456691, 0.005197839, 0.0007894911, 0.031460155, -0.0065506427, 0.024905244, -0.012853769, -0.008599052, 0.0084070135, -0.005714209, 0.014637592, 0.020740146, 0.007920517, -0.007062745, -0.02145709, -0.00064706267, 0.024717474, 0.011240646, -0.027670598, 0.025212506, 0.010190837, 0.0033692068, -0.001723011, -0.055307053, -0.010924851, -0.008061345, 0.019016067, -0.0060044, 0.023249447, -0.018708806, -0.019101419, 0.022532504, 0.00081509625, 0.0051338263, 0.015337465, 0.028984994, -0.00022804558, -0.03676895, -0.00351857, 0.02843875, 0.0198525, -0.010438353, -0.010609054, 0.025605118, 0.014270586, 0.00161739, 0.025588047, -0.012606253, 0.002957391, 0.025024734, -0.013169565, -0.013877974, 0.008816696, -0.029172763, 0.045167428, -0.011180901, 0.016199505, -0.005872107, -0.029019134, -0.024939384, 0.02633913, -0.0066872034, 0.0034758947, -0.00020884174, 0.015141159, -0.0025861168, -0.019698871, 0.018538104, -0.0027610853, -0.0137328785, 0.004741214, 0.021013267, -0.03690551, -0.004156564, 0.027738877, -0.007779688, 0.0018638392, -0.034174297, 0.008214975, 0.013357337, 0.017804092, 0.010549309, -0.014270586, -0.01658358, 0.018179633, 0.007131025, 0.024341932, -0.008581982, 0.025724608, 0.011838099, 0.010387143, -0.0054240176, -0.021098617, -0.0072974586, -0.020859636, -0.033542704, -0.017257849, 0.036359265, -0.018043073, -0.040217105, 0.0021454955, -0.018094283, -0.026902443, -0.025331996, 0.07169433, 0.031955186, 0.015004599, 0.03977328, 0.0090642115, 0.03224538, 0.016045874, -0.03762245, -0.014586382, -0.017974792, 0.020415815, 0.0051210234, -0.025366137, -0.011641794, 0.000033473356, -0.009141027, -0.017855301, -0.008517969, -0.005799559, -0.009106887, -0.014722942, -0.01295619, -0.044621184, 0.0077327457, 0.0031579644, -0.007045675, 0.013604852, -0.008978861, -0.0016782021, -0.023386007, -0.012836699, 0.013101285, -0.0016910046, -0.017872373, 0.0010300726, -0.012520903, 0.005214909, 0.018196704, -0.012657464, 0.015576446, 0.01422791, 0.050937112, 0.0017272786, -0.020228043, 0.015892243, 0.03021404, 0.027721807, 0.03458398, 0.00994332, -0.03064079, -0.007835166, 0.0035719138, -0.029667797, 0.009781155, -0.00035047004, -0.006883509, -0.0064610248, 0.0010679468, -0.00380236, 0.0039133155, -0.038134556, 0.01737734, -0.036325127, 0.044211503, 0.025280787, -0.024239512, -0.01295619, -0.017232245, -0.005492298, 0.02608308, -0.027670598, -0.0283534, -0.053053804, -0.004741214, 0.017718742, 0.001243982, 0.019784221, -0.00029765948, 0.004638794, -0.008782555, -0.009508033, 0.0051935716, 0.05872107, -0.020859636, -0.008471026, -0.023061676, 0.009764085, 0.0565361, 0.025758749, -0.01963059, 0.024529703, 0.020091482, 0.012853769, 0.035949584, -0.00301927, -0.010361537, 0.0070158024, 0.006793891, -0.00073774747, -0.008168032, -0.0013826763, 0.0039559905, 0.02592945, -0.014714408, 0.026629323, 0.00082203094, -0.01649823, -0.02173021, 0.05001533, -0.0007516169, 0.018111354, -0.0059830626, 0.004728412, 0.0041181566, 0.007694338, 0.028558241, -0.016959123, 0.0072419806, 0.03047009, -0.009499499, 0.0010588783, 0.007540707, -0.022378873, 0.03490831, -0.010105486, -0.02166193, 0.019408679, 0.018930716, -0.011257716, -0.08063905, -0.0106431935, -0.020757215, -0.02845582, -0.016310459, -0.007118223, -0.019750081, -0.013536572, -0.012648928, -0.04783036, 0.02819977, 0.018094283, 0.00808695, -0.033133022, 0.028831363, -0.0014253516, 0.0044894307, -0.024239512, -0.0077242106, -0.027175564, -0.00061398937, 0.010003066, 0.018657595, -0.004574781, -0.0018083614, -0.0031302257, -0.0096702, 0.019818362, -0.011684469, 0.03731519, 0.017129824, 0.03943188, 0.049298387, -0.037178632, -0.0012631858, 0.009183702, 0.017974792, 0.030231109, -0.05226858, -0.011240646, -0.029309325, -0.040899906, -0.035471622, -0.009559244, 0.018026004, -0.0023108618, 0.0057696863, -0.003608188, -0.0052831895, 0.003704207, 0.048410743, 0.018247914, -0.015789822, -0.022942185, -0.017787023, -0.015610587, -0.013289056, -0.017104218, 0.006998732, -0.024341932, -0.007293191, -0.011027271, -0.020074412, -0.019494029, -0.046259914, 0.00045049004, -0.004337934, 0.01718957, -0.0020409413, 0.00032806557, 0.008240581, -0.0067298785, -0.0023023267, 0.0026437284, 0.006793891, -0.0034758947, -0.014492497, -0.003392678, 0.030692002, -0.0075833825, -0.0059275846, 0.012904979, 0.011274787, -0.032091748, 0.005295992, 0.0483766, 0.00879109, -0.01199173, -0.047352396, -0.028097348, -0.022327663, -0.0024580914, -0.016199505, -0.0012514502, -0.019494029, 0.006332999, 0.01761632, 0.0241883, 0.0051124883, 0.0071395603, 0.0008198972, 0.025366137, -0.0015352402, -0.0048479023, -0.006192171, -0.0035591114, 0.0009911314, -0.022276452, -0.0025519768, 0.0017838232, 0.0024922315, -0.010720009, -0.011599118, 0.021405878, -0.0029829962, 0.02186677, -0.020484094, -0.026390342, -0.022634923, 0.019442819, -0.013707273, 0.03021404, 0.007877842, 0.012708673, 0.011496698, 0.0012237113, -0.020688934, 0.010506634, -0.037929714, 0.012128291, 0.0047838893, -0.0122648515, -0.027994929, 0.011445488, -0.03676895, 0.020927915, -0.0042696535, 0.0011789023, 0.011001665, -0.01085657, 0.00017190102, -0.029599516, -0.04578195, 0.013656063, -0.016506765, 0.019698871, 0.015951987, 0.02188384, 0.0041608317, 0.010284722, 0.021849701, -0.013476827, 0.0051935716, -0.024819894, -0.0151582295, -0.01980129, -0.044962585, -0.00064919645, 0.003482296, 0.008014401, -0.008884976, 0.03513022, 0.028592382, -0.0043208636, 0.0034396208, 0.009260518, 0.00026258582, 0.0060300054, 0.024683334, 0.0052447817, 0.017735811, 0.012998865, -0.018213773, -0.00067106745, 0.009405613, -0.0052106413, -0.031955186, -0.025263716, -0.01922091, 0.00657198, 0.00042141756, -0.029855568, 0.00063479354, 0.0018969125, -0.016182434, -0.022361802, 0.008232045, 0.012537973, 0.015550842, 0.00408615, -0.0045235706, 0.029292254, -0.018094283, 0.014151095, -0.003100353, -0.013724343, -0.019818362, -0.004736947, 0.013638993, -0.0031814359, 0.009909181, -0.00063319324, 0.0031664995, -0.015789822, -0.016822562, -0.042197235, -0.028763082, 0.0070926175, -0.0026159894, 0.005731279, -0.009687269, 0.019016067, -0.0056373933, -0.007899179, -0.005586183, 0.027482826, 0.03038474, 0.0060684127, 0.0129220495, 0.0016120556, -0.0015011, 0.04806934, -0.018879507, 0.01527772, -0.014535172, 0.012597718, -0.020432884, -0.0071523627, 0.010660264, -0.022976326, 0.0054965653, 0.014859503, 0.00027578845, 0.014535172, -0.017957723, -0.008176568, 0.015439886, 0.010148162, -0.022191102, -0.000036107216, -0.010711474, 0.014116955, 0.03260385, -0.0026266584, 0.0014360204, 0.0022319127, -0.016856702, -0.025007665, -0.016711608, -0.018435685, 0.0029125821, -0.01718957, -0.01971594, -0.015704472, 0.017718742, -0.018674666, 0.01765046, -0.009618989, 0.006414082, 0.0012535839, 0.0010407413, 0.018060142, -0.005155164, -0.027004864, 0.04400666, -0.009456824, -0.019323329, -0.0025434417, -0.016933518, -0.015422815, 0.024307791, -0.0068237637, -0.022754414, -0.013792624, 0.007314529, -0.0053600045, -0.020432884, 0.014313261, 0.011385743, 0.013835299, 0.015781287, -0.0050058006, -0.029121554, 0.013084215, 0.007177968, -0.009576314, 0.0005809161, -0.018367404, -0.009627524, -0.009627524, 0.0076516625, 0.0029083146, -0.019494029, 0.016080014, 0.022395942, -0.035574045, -0.011001665, -0.0198525, 0.02176435, -0.006239114, -0.044894308, -0.009422683, 0.006695738, -0.01106141, -0.0039687934, 0.001642995, -0.0060300054, -0.0004739614, -0.011274787, -0.05052743, -0.008748415, -0.050663993, 0.0023471357, 0.0043784752, 0.006857904, -0.0048180297, 0.0035868501, 0.014381541, -0.018572245, 0.035949584, -0.020449953, 0.011522303, 0.053258646, -0.03697379, 0.0071651656, -0.0066786683, -0.03272334, -0.008859371, -0.0100286715, -0.015687402, -0.00092445145, -0.0143474005, 0.019818362, -0.04810348, 0.0076516625, 0.031272385, 0.0035548438, 0.023044607, 0.03222831, -0.00016003198, -0.014671733, -0.023522569, -0.028746013, -0.029121554, 0.00406908, -0.0096702, -0.012887909, -0.025451487, 0.015021669, -0.02587824, 0.031135824, 0.014253516, -0.0051380936, 0.007702873, 0.012981795, 0.016233645, -0.018725876, 0.007980262, -0.0059830626, -0.0285241, 0.0007734879, -0.018828297, 0.0012962591, 0.008893511, 0.0032646526, -0.01637874, -0.0038983792, 0.008581982, 0.027841298, 0.0046046535, -0.005338667, -0.008343001, 0.012478228, -0.015081414, -0.0076687327, 0.00080976187, -0.036188565, 0.020944986, -0.031204103, -0.034003597, 0.018538104, 0.013050075, -0.008833766, -0.009729945, -0.003358538, 0.010438353, 0.018350335, 0.00048116283, 0.039943982, 0.01973301, -0.0031387606, 0.0055648456, 0.02403467, -0.002124158, 0.008556377, 0.00497166, 0.004442488, -0.016028803, -0.03045302, -0.008466759, -0.033696335, 0.00092178426, -0.03084563, -0.0040456085, -0.007852236, 0.015337465, 0.007647395, 0.06066706, -0.0074212165, -0.024836965, -0.011641794, 0.004239781, -0.018555176, 0.00176782, -0.023556707, 0.010779754, 0.008594785, 0.0032049073, -0.027909579, 0.010370073, 0.014577847, 0.008671599, -0.012418482, -0.004282456, -0.0004272854, -0.007459624, -0.039670862, -0.0033179964, -0.010737079, -0.013937719, -0.0058934446, 0.003448156, -0.0037916913, 0.0067554833, -0.006379942, -0.01963059, -0.0055989856, -0.002246849, -0.0077114077, -0.0016387275, -0.009251983, -0.023386007, -0.00763886, 0.0007708207, -0.0031387606, -0.020723075, -0.005189304, -0.0019182501, 0.015064344, -0.011710074, -0.0062561836, -0.009226377, -0.0019033138, -0.02393225, -0.012298992, 0.015346001, -0.010916315, 0.015832497, -0.025212506, 0.0026714674, -0.008462491, -0.010950455, 0.030077478, 0.01959645, 0.0114540225, 0.00243462, 0.025741678, 0.006759751, -0.009141027, 0.013237846, 0.020859636, 0.03272334, -0.009115422, -0.011607653, -0.0031942385, 0.008987396, -0.00975555, 0.0130330045, -0.010062811, 0.020603584, -0.0071480954, -0.003358538, 0.009644594, -0.025707537, 0.013118356, 0.012060011, 0.0073059937, -0.0058763744, 0.0118039595, 0.01625925, -0.008650262, -0.0008631058, 0.005231979, -0.026987795, -0.0064823623, -0.015994664, -0.007113955, -0.010242047, -0.00044142155, -0.00083430007, -0.013015935, 0.0062604514, -0.0019257183, 0.006085483, 0.032381937, 0.006981662, -0.006990197, -0.0138865085, -0.007916248, 0.02642448, -0.05216616, -0.0043293987, -0.008436887, 0.010506634, 0.008432618, 0.037520032, -0.0043870104, 0.000029872637, -0.026475692, 0.02377862, 0.005116756, 0.011215041, 0.0025071679, -0.005684336, 0.000919117, -0.011718608, -0.011863705, 0.0062220437, -0.013596318, -0.014023069, 0.02183263, 0.0023876773, 0.02166193, 0.023300657, 0.018521035, 0.0073486688, -0.010045741, 0.024376072, -0.012162431, -0.023164097, 0.000033056607, -0.013331731, 0.005069813, 0.010139626, -0.003055544, -0.018282054, 0.0030619453, 0.017027402, 0.0030256715, -0.002923251, -0.004248316, -0.0040904176, -0.008402746, -0.010199372, -0.009490964, 0.015841033, 0.00023684734, -0.02828512, -0.002814429, -0.020279253, -0.007216376, 0.00087164086, -0.025058875, -0.0032881238, -0.035198502, 0.006388477, -0.0041053537, 0.0035911177, -0.02161072, 0.015823962, -0.0021433616, -0.0135792475, 0.012034405, -0.015303325, 0.0056971386, -0.0041010864, 0.013365871, 0.004047742, 0.0135792475, 0.013954789, -0.029787287, -0.0021508299, 0.014185235, 0.024546772, 0.012665998, 0.0240176, 0.01730906, 0.008496632, 0.006328732, -0.015337465, 0.010600518, -0.013656063, 0.0068664392, -0.014065744, 0.007997332, -0.007993064, 0.029223975, -0.025400277, 0.00218497, -0.016976193, 0.01209415, 0.01615683, 0.028046139, -0.009448288, 0.020706005, 0.031767417, 0.012401412, 0.0029019134, 0.040182963, -0.025093015, 0.009175167, 0.02427365, 0.027858367, -0.0068536364, 0.0027973591, 0.017095683, -0.008607587, -0.0046643987, 0.0015448421, -0.018981928, 0.006934719, -0.0033628053, -0.028472891, -0.001323998, -0.018777085, -0.026441552, 0.016054409, -0.0013432018, -0.013954789, 0.03265506, 0.002204174, 0.017957723, 0.0048009595, -0.013434152, -0.0030982192, -0.008091217, -0.0042653857, -0.004574781, -0.023607919, -0.011411347, 0.0002776555, -0.00013129291, 0.02388104, 0.0092178425, 0.0068365666, -0.013630457, -0.00066573307, 0.024222441, -0.039705, 0.023317726, -0.0016718009, -0.03439621, -0.0002176435, 0.007681535, 0.008987396, -0.012606253, -0.008479562, -0.005287457, 0.017223708, 0.016848167, -0.011530838, 0.015670331, 0.010557843, 0.006226311, 0.0125721125, -0.01089071, -0.02372741, -0.02592945, -0.0045321058, 0.005304527, 0.031903975, -0.012179501, -0.012128291, -0.0010124691, -0.009200772, 0.022993395, 0.009234913, -0.038236976, 0.005897712, 0.025895309, -0.008987396, 0.02596359, 0.020927915, 0.014885108, 0.00020804159, -0.023044607, 0.0020996197, 0.018452754, -0.008842301, -0.015806893, -0.016916448, 0.02161072, 0.031562574, -0.007045675, -0.0238469, 0.0055563105, -0.0069133816, -0.031938117, 0.026578112, -0.0029424548, -0.009627524, -0.041821692, -0.0061153555, -0.029326394, -0.0118039595, 0.008368606, -0.0025541105, 0.014893644, -0.040114686, 0.029087413, 0.0042653857, -0.011658863, 0.0015960523, 0.01980129, 0.0021999064, 0.003731946, 0.016728677, 0.0046942714, -0.026817093, 0.000932453, 0.0063586044, 0.0048905774, -0.00323478, -0.01930626, 0.00603854, -0.042163093, -0.027704738, 0.0037170097, 0.0008028271, 0.009593384, 0.009499499, -0.012742814, 0.005287457, -0.007933319, -0.004459558, -0.029975059, -0.019357469, 0.0026757347, -0.0100286715, 0.024495563, -0.0059403875, -0.0047156094, -0.029975059, 0.017172499, -0.01310982, -0.0060897507, 0.024495563, 0.008590517, -0.0026330596, -0.0020217374, -0.0055947183, -0.0006545308, 0.02806321, -0.000621991, 0.0065421076, 0.010037206, -0.008150962, -0.018913647, 0.016890842, -0.018913647, -0.036598247, -0.018760016, -0.033832897, -0.0037639523, -0.0024666262, -0.012179501, -0.009251983, 0.0033990794, -0.002462359, 0.022532504, 0.01625925, -0.02181556, -0.012307527, -0.009047141, -0.02364206, 0.04598679, 0.010694404, -0.006849369, -0.008607587, 0.018657595, 0.0031387606, 0.02181556, -0.019903712, 0.01106141, -0.0055989856, 0.016062943, 0.0007868239, -0.0013378673, 0.025553908, -0.017991863, 0.03289404, 0.00863746, 0.017053008, -0.006938987, -0.007374274, 0.01293912, -0.0085051665, -0.0031857034, -0.038475957, -0.0043742075, 0.0023343333, -0.018145494, -0.00025138358, -0.002771754, -0.024120022, 0.012017335, 0.012324597, -0.017769951, -0.02179849, 0.04424564, 0.008675868, -0.002931786, 0.0064610248, -0.0073486688, -0.07135293, 0.03516436, -0.00015469758, 0.009661664, 0.00091538293, -0.04134373, -0.011931985, -0.00031713006, 0.029121554, 0.004736947, -0.013621923, 0.002577582, -0.019016067, 0.013178101, 0.0075833825, 0.040387806, -0.0053429347, 0.008001599, -0.0061238906, -0.006187903, -0.0163446, 0.0108394995, -0.007984529, 0.038475957, -0.030077478, 0.044621184, -0.002007868, -0.016950589, -0.0074297516, -0.0016589982, 0.00488631, 0.0064183497, 0.007775421, 0.008884976, -0.004485163, -0.02833633, 0.04373354, 0.0089532565, -0.00021270919, 0.008816696, -0.0059233173, -0.0005889177, -0.017061543, -0.004958858, -0.020654796, -0.010660264, -0.00048222972, 0.0074766944, -0.00012782555, 0.0008855103, 0.020296324, 0.008492364, 0.0011746348, 0.007856503, -0.018230844, -0.012162431, -0.002790958, -0.002291658, 0.0032454487, 0.01202587, -0.011197971, 0.017667532, 0.037895575, 0.02181556, 0.000043842098, -0.033559773, 0.0014232178, 0.009849436, -0.005534973, -0.011667399, 0.00041581644, -0.012623323, -0.010131092, 0.011488163, 0.008112554, 0.0019502564, 0.0033884107, -0.004638794, 0.041889973, -0.014978994, 0.021098617, 0.0094141485, -0.0011148895, 0.0073315986, -0.014441286, -0.025775818, -0.021508299, -0.0025605117, 0.012435552, -0.031238243, 0.017735811, 0.006175101, -0.01520944, -0.007113955, 0.008607587, -0.00708835, 0.013963324, -0.0016814027, -0.0023684734, 0.017821161, 0.0086033195, -0.027704738, -0.0009223177, 0.002044142, 0.00096232566, -0.0011735678, 0.021986261, -0.0071651656, 0.011138226, -0.012973259, -0.030077478, -0.011701539, -0.009687269, 0.013621923, -0.0043357997, -0.01753097, -0.003145162, 0.0014146827, -0.00032539837, -0.028097348, 0.01988664, 0.02195212, 0.0014072146, -0.008415549, -0.00603854, 0.0050143357, 0.0067640184, 0.0198525, -0.0022404478, 0.01644702, 0.031443086, -0.010301792, -0.012341667, 0.0032817225, -0.0071907705, -0.014936319, 0.00712249, 0.018128423, -0.0049801953, -0.009141027, -0.018435685, -0.01739441, -0.013271986, 0.008701473, 0.010242047, 0.010054276, 0.012981795, 0.018333264, 0.00862039, 0.022498364, 0.012153896, 0.00016710006, -0.01976715, -0.0061238906, -0.0026074545, 0.0027333463, -0.0132293105, -0.017667532, 0.0077668857, -0.0017560843, -0.0149619235, -0.012350202, -0.015798358, 0.004305927, 0.01087364, -0.008517969, -0.015021669, 0.012700139, 0.0030064676, 0.0032987928, 0.023710338, 0.014893644, 0.022617854, -0.02179849, -0.0047028065, 0.0021999064, -0.0108394995, -0.011402813, 0.014082815, 0.0017422149, -0.010634659, 0.006896312, -0.0072547835, 0.012819629, 0.03222831, -0.009004466, 0.0041010864, -0.000022987928, -0.03905634, 0.00486924, -0.0036636656, 0.01947696, -0.0013271986, 0.0050911508, -0.0059574572, -0.013707273, -0.0021369604, -0.00698593, -0.009516569, 0.008936186, 0.00065186364, -0.012717209, -0.020501165, -0.0009521903, 0.0092178425, 0.0015299058, 0.029377606, 0.0011735678, -0.022293523, -0.0037426148, -0.010848035, 0.008633192, -0.013178101, -0.0080442745, -0.009132492, -0.018077213, -0.018862437, 0.002291658, 0.021525368, -0.005150896, -0.016626256, -0.0043678065, 0.008014401, 0.0035292387, -0.0066402606, -0.005001533, 0.017300524, -0.0161739, 0.023078745, -0.007771153, -0.015798358, -0.018350335, 0.019835431, -0.027226776, 0.020774286, 0.025502697, 0.022327663, -0.0075279046, -0.025827028, -0.009533639, 0.010574914, -0.018640526, -0.026714673, 0.014424216, 0.021166896, 0.013638993, -0.0121112205, -0.00548803, 0.017300524, -0.026885374, 0.006324464, 0.005159431, 0.002833633, 0.0025263715, -0.009618989, 0.0078010256, 0.008731345, 0.010131092, -0.0028827095, -0.00041208236, -0.015414281, -0.0087569505, -0.03721277, 0.002140161, -0.0034268182, -0.010583448, 0.0047582844, 0.0036636656, 0.0151753, 0.024307791, -0.0022169764, 0.0042931247, -0.016924983, -0.002594652, -0.0030171364, 0.03265506, 0.0038044937, 0.008351536, -0.007408414, 0.01415963, 0.0045193033, 0.009977461, 0.004005067, -0.013715808, -0.013314662, -0.0036551305, 0.0070968852, 0.018299123, -0.06360311, 0.004286723, 0.015346001, -0.010207907, -0.007224911, 0.0025989194, -0.010122556, 0.0283534, 0.017991863, -0.020279253, 0.03084563, 0.0022404478, 0.002246849, -0.010003066, 0.010122556, -0.0059403875, 0.033440284, 0.0013933452, -0.0015448421, -0.007186503, 0.010924851, -0.009448288, -0.00047182763, 0.0046259915, 0.007293191, 0.008530771, -0.029872637, 0.002861372, -0.02806321, -0.022208173, -0.0023044606, 0.00014149495, 0.029053273, -0.0038983792, 0.0056886035, 0.016754283, 0.02171314, -0.00030379405, -0.03033353, -0.000037374135, 0.013528037, 0.007506567, -0.020313393, -0.015064344, -0.004325131, -0.009909181, -0.0018595717, 0.0070584775, -0.015892243, -0.009422683, 0.0019406546, -0.029104484, 0.013357337, -0.0022105752, 0.0030256715, 0.0063970117, -0.0087569505, 0.007630325, -0.029070344, -0.0017624856, 0.011197971, 0.001642995, 0.014552242, -0.00022724541, 0.016455555, 0.00096712663, -0.00063906104, 0.0036167228, 0.0069773947, -0.009234913, 0.022156961, -0.009251983, 0.004894845, 0.0113003915, 0.0034844298, 0.011547908, 0.013365871, -0.0043293987, 0.032279518, 0.023590848, -0.030862702, -0.010310328, 0.017249314, 0.0037916913, 0.022532504, 0.008313128, -0.0052191764, 0.014099885, 0.00066733337, 0.010737079, 0.018913647, 0.002532773, 0.0053343996, 0.0075364397, 0.0016067211, -0.020279253, -0.0028720407, -0.0024986328, 0.015388676, -0.036017865, -0.0043678065, 0.016796958, -0.0011074214, 0.009917716, -0.016609186, 0.016899377, 0.0016237912, 0.033303723, 0.012759884, 0.00135067, 0.02406881, -0.011522303, 0.002462359, 0.008961791, -0.004192838, -0.027653527, -0.02608308, -0.028865503, -0.017138358, -0.025246646, -0.0052831895, -0.0070968852, 0.0010978194, 0.014202305, 0.01658358, 0.008650262, -0.0014957656, 0.019203838, 0.013715808, -0.022600783, 0.007591917, -0.035096083, 0.017923582, 0.0145010315, 0.022225242, 0.0067213434, 0.007506567, -0.024802824, 0.015610587, 0.018862437, 0.00090311386, -0.0030832828, 0.023027536, 0.003987997, -0.0024836964, 0.033781685, -0.009661664, 0.025178365, -0.006768286, 0.017172499, 0.013877974, -0.0052661193, 0.016814027, 0.0034950986, 0.005624591, -0.000737214, 0.004451023, 0.013417082, -0.004412615, 0.0140401395, -0.004984463, 0.002255384, -0.0026138558, 0.020740146, -0.008701473, 0.0015320395, -0.0079461215, 0.02154244, 0.01956231, 0.005249049, 0.010429818, 0.0024026136, 0.012785489, -0.0023087282, -0.0006102553, -0.022378873, 0.001527772, 0.009977461, 0.012333131, -0.017787023, -0.02376155, -0.009030071, 0.0073486688, -0.028882572, -0.009473894, 0.006290324, 0.031852767, 0.03084563, -0.010216442, -0.016703071, 0.012444087, -0.005057011, -0.014321796, 0.0135792475, 0.017735811, 0.013485362, 0.0038813092, 0.0027098749, -0.0030982192, 0.0015853836, 0.011095551, -0.015371606, 0.012068545, -0.0056886035, -0.0050826157, 0.0033905443, -0.020688934, 0.02628792, 0.029275184, -0.026322061, -0.0027504163, 0.004451023, -0.00043848765, -0.014671733, 0.01642995, -0.013963324, 0.011138226, 0.022105752, -0.0007036073, -0.0044766283, -0.017804092, -0.012640393, 0.0066487957, -0.0077583506, 0.020893777, -0.001954524, 0.01649823, -0.01195759, -0.008496632, 0.0032241112, 0.0078010256, -0.03516436, -0.017078614, 0.006559178, -0.015841033, -0.0007302793, -0.010754149, 0.0029339197, -0.00009221843, 0.008061345, 0.0058251643, -0.011428418, 0.002061212, -0.0063970117, 0.012316061, 0.0066658654, -0.019289188, 0.011735679, 0.003136627, -0.0043635387, 0.0056075207, 0.011633258, 0.012503833, 0.0050911508, -0.003367073, 0.0029957988, -0.01758218, 0.00241755, -0.0100286715, 0.01190638, 0.0106858695, -0.0036359266, 0.02178142, -0.015986128, -0.0136902025, -0.009030071, 0.018162563, -0.0050058006, -0.00022737878, 0.0038365002, 0.010276187, 0.024359003, 0.002114556, -0.0008214975, -0.0013784089, -0.006742681, -0.009123957, -0.021337599, 0.000675335, 0.0006214575, -0.0021380272, -0.0068451012, 0.0006246582, -0.016370205, -0.008876441, 0.012162431, 0.02405174, -0.0155081665, 0.016062943, 0.016771352, 0.015465491, 0.004184303, 0.0068621715, -0.0034502896, 0.010865105, 0.011155296, 0.005560578, -0.00975555, -0.010327398, 0.031869836, -0.0018136959, 0.0011917049, 0.020125622, -0.0059574572, 0.014970459, 0.016114155, -0.008718543, 0.012495297, -0.009465358, 0.0012823896, 0.0049161827, -0.007506567, 0.011317462, 0.007980262, -0.009644594, -0.007212108, -0.00041101547, -0.026270851, -0.009960391, 0.0063927444, 0.008108287, 0.0027973591, -0.0018361004, 0.005197839, -0.0133829415, 0.0061537633, 0.0029552574, 0.0082533825, -0.015371606, 0.010173767, -0.009729945, 0.0036444617, 0.010114022, -0.008961791, -0.013271986, 0.0013880108, 0.0024218173, 0.014944853, -0.0012567845, 0.0036935383, 0.027824229, 0.0029083146, 0.0014957656, -0.0068707066, 0.0035996528, 0.035266783, 0.022071611, 0.0059361197, 0.022600783, 0.026356202, 0.018162563, 0.010156697, -0.0016109886, -0.0069944644, 0.012153896, -0.013425617, 0.006281789, 0.003153697, -0.016831098, -0.0067128083, 0.016045874, 0.01742855, 0.0063116616, 0.0056544635, 0.008112554, -0.005001533, 0.004024271, -0.015602051, 0.020859636, -0.026492761, -0.0010594118, -0.012563578, 0.0049332525, 0.023283588, -0.025417347, 0.0041480293, 0.026151361, 0.01397186, 0.007169433, 0.010156697, 0.028677732, 0.007852236, 0.0049929977, -0.0058251643, -0.0024687601, 0.0040370733, 0.0045790486, -0.0030598117, 0.0067768213, 0.009004466, 0.008782555, 0.0072547835, -0.01758218, 0.020091482, 0.0060300054, 0.0048436346, -0.0071993056, -0.005855037, 0.018589316, 0.0011746348, -0.0043678065, -0.0041266913, 0.0018723742, 0.0020302725, 0.0048094946, -0.015499631, 0.0005755817, 0.004130959, -0.002255384, 0.014799758, 0.0070584775, -0.007950389, -0.01197466, -0.0028400342, -0.010489563, 0.005859304, -0.0057014064, 0.012870839, 0.009508033, -0.008919116, 0.0009516569, -0.013374407, 0.0024495563, 0.0067896238, -0.0122648515, -0.0022148427, -0.009712875, 0.009320263, 0.011949055, 0.013297591, 0.013510967, -0.000047409474, -0.0009559244, -0.003384143, -0.00074468215, -0.011539373, 0.002603187, -0.00595319, -0.0011479628, -0.014321796, -0.020262184, 0.022908045, -0.003313729, -0.018247914, 0.008146695, 0.005142361, 0.00980676, 0.0386808, -0.013980394, -0.0012994597, 0.008338734, 0.0135792475, 0.006704273, 0.028984994, 0.0043912777, 0.014569312, -0.026987795, 0.003970927, 0.0067725535, 0.013929184, -0.009030071, 0.0028549705, 0.011445488, 0.009089816, 0.014526636, 0.007028605, 0.021166896, 0.01744562, 0.011863705, 0.009456824, -0.011675933, 0.028387541, 0.01707008, 0.011138226, -0.0000014294524, 0.012427017, 0.010071347, 0.011931985, -0.010924851, 0.0008241647, -0.001395479, -0.005543508, -0.0016707339, -0.0020601451, -0.012580648, -0.0061068204, -0.01424498, -0.0025349066, -0.022071611, 0.012555042, -0.018333264, 0.014765617, -0.027021933, -0.009431219, -0.015499631, -0.008057077, 0.0038621053, -0.016907912, 0.010284722, -0.022549573, -0.020757215, -0.003428952, 0.017667532, -0.018521035, 0.0029787286, -0.013280521, 0.0008049609, -0.008125357, -0.009422683, 0.0143474005, 0.020449953, -0.023488428, -0.0052618515, 0.0037596847, 0.019255048, -0.0017379473, 0.000024104818, -0.029428815, -0.014765617, -0.020535305, 0.0034630923, -0.011931985, 0.0024666262, -0.0011959723, -0.01654944, -0.007852236, 0.0052831895, -0.01966473, -0.006793891, 0.0027034737, 0.0021433616, -0.008731345, 0.0062220437, -0.004681469, -0.005675801, -0.035096083, 0.013621923, 0.005231979, 0.007301726, -0.006802426, 0.0052277115, -0.0033542705, -0.001724078, -0.010114022, -0.013289056, -0.01620804, 0.009636059, 0.008168032, 0.02376155, 0.017906513, -0.0069261845, -0.019186769, 0.021252248, 0.018674666, -0.011112621, 0.021969192, -0.011035806, 0.025229575, 0.004229112, -0.0049417876, -0.006768286, 0.012665998, 0.025673399, -0.01304154, -0.01209415, 0.014116955, 0.0041971053, 0.0041907043, -0.004745482, -0.0055008326, -0.012589183, -0.016421415, -0.008936186, 0.0039239842, 0.013604852, 0.008133892, -0.006187903, 0.010370073, -0.009747014, 0.062476486, 0.0150472745, -0.0035014998, -0.010096951, 0.011761284, 0.014748548, 0.019255048, 0.000061145554, 0.001110622, -0.015969058, -0.013101285, -0.011530838, -0.015695937, 0.007775421, 0.014065744, -0.02630499, 0.002300193, -0.036359265, 0.014902178, 0.009200772, 0.012452622, -0.0060300054, 0.003659398, 0.0036722007, -0.014279121, 0.0075705796, -0.024000531, -0.03239901, -0.025980659, -0.0065933177, -0.0127684185, -0.0052277115, 0.012452622, 0.017838232, 0.010899245, -0.008441154, 0.006717076, -0.007860771, -0.002771754, -0.011419882, 0.024000531, 0.0020718807, -0.020262184, -0.020467024, 0.022976326, 0.012170966, -0.0062135085, 0.005526438, -0.002042008, 0.0054410873, -0.020245112, 0.008048542, 0.00063906104, -0.012606253, 0.005906247, -0.013195171, -0.004316596, -0.017513901, -0.014364471, -0.004412615, -0.010702939, 0.00820644, 0.0044808956, 0.02819977, -0.0064908974, 0.0023770083, 0.033133022, 0.014168165, 0.0018339666, -0.01302447, 0.0305213, 0.0019182501, -0.0130756805, -0.002327932, 0.021149827, -0.02169607, 0.0014370872, 0.013297591, 0.0042077745, -0.011727144, 0.016993264, -0.00060172024, -0.012802559, -0.020296324, -0.024802824, 0.0066487957, 0.018913647, 0.01295619, -0.01538014, 0.005052743, -0.010105486, -0.020876706, -0.022634923, 0.00061719003, -0.012418482, 0.023078745, -0.0036039203, -0.0065762475, -0.00010495431, 0.0062647187, 0.018247914, -0.008919116, 0.008074147, 0.017334664, -0.015875174, -0.007685803, 0.00081616314, -0.018606385, -0.0066487957, -0.0018361004, -0.006414082, 0.007220643, 0.029582446, -0.0047156094, -0.013178101, -0.011658863, 0.020706005, -0.004459558, -0.009354403, 0.0061793686, 0.0030064676, 0.006187903, -0.0086033195, 0.011880775, 0.008513701, -0.0033457354, -0.00032246445, -0.0241883, -0.011368672, 0.01736027, -0.009747014, -0.0015405746, -0.0018425016, 0.006128158, 0.016899377, 0.012333131, 0.018674666, 0.004984463, -0.023368938, -0.00080176024, -0.0056629987, -0.031238243, 0.011129691, -0.006315929, -0.0035996528, 0.014526636, 0.008833766, 0.014927784, -0.006947522, -0.0060214703, 0.025570977, 0.006375674, 0.008453956, -0.0038236976, -0.008611854, 0.024871103, -0.020398743, -0.0071054203, -0.0057696863, 0.008859371, -0.018896576, 0.015371606, 0.007267586, -0.019169698, -0.009448288, 0.012435552, -0.006140961, -0.0009228511, -0.006111088, -0.0014168165, -0.0042760544, 0.00033953454, 0.0036359266, 0.00045769147, 0.011121156, 0.031852767, 0.00080015993, 0.010096951, -0.0061153555, 0.015371606, -0.00039021132, -0.0007878908, -0.0025797156, -0.006601853, -0.009251983, 0.01666893, 0.0032646526, 0.008389943, -0.01930626, -0.01963059, -0.01409135, 0.0014157497, 0.013476827, 0.009277588, -0.013400012, -0.008419816, -0.035096083, 0.008133892, 0.008876441, 0.006742681, -0.010848035, 0.017804092, -0.003977328, 0.0023151294, 0.0032625187, 0.008765485, -0.006635993, 0.008146695, 0.003945322, -0.019357469, -0.022156961, -0.015439886, 0.031204103, -0.0059745274, 0.0002376475, 0.0030576778, -0.012324597, 0.0034673596, -0.0067768213, -0.027397476, 0.007216376, 0.014518102, -0.013937719, 0.0014882975, 0.0077498155, -0.030879771, 0.022549573, 0.012017335, 0.0055648456, -0.0063458015, -0.0038578378, 0.012683068, 0.01629339, -0.0047625517, -0.012205106, 0.014099885, 0.016634792, 0.00078202295, -0.015584982, -0.002364206, -0.006892044, 0.01519237, 0.0024751613, 0.022105752, -0.0054112147, 0.0054752277, 0.017821161, 0.0055648456, -0.0121112205, -0.015678868, 0.010848035, 0.015994664, -0.028387541, 0.005240514, 0.0051338263, 0.0056629987, 0.0075108344, 0.0053514694, -0.020159762, 0.0023855434, 0.010933385, 0.0036401942, 0.030879771, 0.027892508, 0.007835166, -0.01087364, -0.007301726, -0.018350335, 0.0052831895, 0.007963192, 0.0018798424, -0.019750081, 0.003981596, -0.009081282, 0.0033265315, -0.0053685396, 0.012828164, -0.009175167, -0.0057782214, 0.0049161827, -0.040899906, 0.008146695, 0.0004782289, 0.027141424, 0.034191366, 0.0048820423, 0.0048991125, 0.00863746, 0.0013965458, 0.019750081, -0.0054112147, -0.005581916, 0.022413014, 0.008842301, 0.015772752, -0.020074412, -0.022327663, 0.0037020734, 0.0033265315, 0.02162779, -0.0078010256, -0.000777222, -0.013767018, 0.010660264, 0.017121289, 0.006635993, 0.013920649, -0.018384475, 0.012017335, 0.0047924244, 0.012640393, -0.00758765, 0.008466759, 0.0072462484, -0.006802426, 0.0069773947, -0.021303458, 0.020552374, -0.00016136559, -0.028592382, -0.0044296854, -0.0032006397, -0.010387143, 0.020432884, -0.016856702, -0.0055648456, 0.00161739, 0.010412748, 0.0002476495, -0.0047924244, 0.0018168965, 0.035335064, 0.0034950986, -0.016131224, -0.025144225, -0.02181556, 0.019050207, -0.0033713405, -0.012136825, -0.020279253, -0.01642995, 0.0094141485, 0.0048649726, 0.0013698738, -0.013570712, -0.0009729945, -0.008581982, 0.0025285054, -0.015798358, 0.016873773, -0.007933319, 0.012196571, -0.0077327457, -0.015721543, 0.009576314, -0.012870839, 0.0031408945, -0.020603584, -0.00033420013, 0.008577715, -0.020791356, -0.005995865, -0.009311728, -0.011590583, 0.013835299, 0.005330132, -0.015636193, -0.019186769, 0.033389073, 0.0040178695, 0.005479495, 0.023505498, -0.018998997, 0.0017251448, -0.0014114821, -0.009226377, -0.00013462691, -0.01302447, -0.0027226775, 0.0022404478, -0.0073870765, 0.013340266, -0.013084215, -0.028848432, 0.002124158, 0.0014264184, -0.0031921046, 0.008321663, 0.008372873, -0.0070072673, 0.0010556777, -0.012631858, 0.00028512365, 0.019084347, -0.012990329, -0.006281789, -0.03673481, 0.00598733, 0.00046222573, -0.03248436, 0.014654662, -0.016711608, 0.0014637592, 0.0075022993, -0.003232646, 0.011274787, 0.023403078, -0.0077498155, 0.00011495631, 0.011317462, -0.0004995665, 0.039978124, -0.011274787, -0.027841298, 0.007886376, -0.008270453, 0.005889177, -0.0088679055, -0.009695805, 0.008240581, 0.022105752, 0.005628858, -0.01637874, 0.01653237, 0.0057440815, -0.005748349, 0.015602051, -0.027363336, 0.0040392075, 0.012333131, 0.024495563, 0.0025797156, 0.029070344, 0.0078052934, 0.0064994325, -0.02814856, 0.03291111, 0.021559509, 0.0073785414, -0.012435552, -0.023368938, -0.019954922, -0.009550709, 0.01654944, 0.011360137, 0.006111088, 0.03265506, -0.006183636, 0.0018947787, 0.0034140158, -0.00040168027, -0.032040536, -0.008513701, 0.012529437, -0.005961725, -0.0019491896, -0.0048991125, 0.002532773, 0.014868039, 0.000011118889, -0.020740146, 0.0028827095, -0.02616843, 0.01510702, -0.0031686332, -0.009516569, 0.0009036473, 0.0198525, -0.013613388, 0.005620323, 0.0088679055, 0.0013079947, -0.0018136959, -0.013621923, 0.0041672327, 0.003909048, 0.006183636, -0.0014360204, -0.009166632, -0.014134025, 0.0024388875, 0.004201373, -0.016472626, 0.001492565, 0.0010748815, 0.010079881, -0.012486762, -0.015064344, -0.00010962191, 0.030043337, 0.001252517, 0.027824229, 0.008219243, 0.01524358, 0.008539307, 0.003350003, -0.0009223177, 0.05373661, 0.006793891, -0.02186677, -0.010062811, -0.00089244504, 0.0088679055, -0.005859304, -0.000057878235, -0.007779688, -0.0046601314, 0.010387143, 0.0031216906, 0.018094283, -0.0062519163, -0.0033820092, 0.016771352, -0.0105322385, -0.007212108, 0.0040392075, 0.004316596, -0.0020772151, 0.009490964, 0.022669064, 0.00034113484, -0.0013752081, -0.023351867, 0.0035335063, -0.0007916249, 0.028626522, -0.010600518, 0.0056629987, -0.02173021, 0.015900778, 0.0008396345, 0.003072614, -0.0025925182, -0.018794157, 0.00973848, -0.009593384, -0.0060982853, -0.010284722, -0.013801158, 0.024290722, 0.009909181, -0.009960391, -0.009141027, -0.0069517894, 0.018503966, -0.0054112147, 0.019750081, 0.031562574, 0.011880775, -0.006874974, -0.027790088, 0.027158495, 0.0029104485, -0.01094192, -0.0032838564, 0.01397186, 0.029326394, 0.024649194, -0.018555176, 0.0074937646, -0.028643591, -0.032142956, -0.009849436, -0.018896576, 0.0050058006, 0.011445488, -0.0025114352, 0.006226311, 0.02389811, -0.0034161494, -0.0047156094, 0.0019214507, -0.0065506427, 0.005526438, -0.02364206, -0.003277455, -0.010071347, 0.0032198436, 0.0036679332, 0.0037639523, 0.0009185836, -0.007941854, 0.014279121, -0.021064477, -0.010037206, -0.027107285, -0.015030204, 0.010754149, -0.00863746, 0.023351867, 0.008052809, 0.013903579, 0.009294658, 0.011488163, 0.008005867, 0.006934719, 0.018111354, -0.0042504496, 0.0106858695, -0.0010546108, -0.013365871, -0.005855037, -0.0052703866, 0.005018603, 0.0109931305, -0.012418482, -0.006529305, 0.026270851, 0.02178142, -0.0027568177, 0.005773954, -0.011010201, 0.0073870765, 0.0029659262, 0.0030000664, 0.014296191, -0.00019203838, 0.015934918, 0.011966125, -0.012213641, 0.00029552574, -0.018077213, 0.0090642115, -0.004337934, -0.009115422, -0.00042781883, 0.013818229, 0.00009988663, -0.013297591, 0.013630457, 0.003347869, -0.011812494, 0.00595319, -0.021320527, -0.018299123, 0.007229178, 0.028558241, -0.0017656862, 0.003021404, 0.0065335725, -0.020381674, 0.0108394995, -0.012298992, 0.012614788, -0.006414082, 0.026458621, -0.02393225, -0.0016333931, -0.009550709, -0.026834164, 0.0096702, -0.0004272854, 0.012384342, -0.005624591, -0.0044638254, 0.037417613, -0.034071878, 0.0077540833, 0.011163832, -0.006239114, 0.0097214095, 0.020740146, -0.0047625517, 0.014910714, -0.006512235, -0.024888175, 0.030128688, 0.0069091143, -0.0071054203, 0.0053429347, 0.01746269, 0.025041806, 0.0018136959, -0.005206374, 0.0029957988, 0.012828164, 0.003642328, 0.010284722, 0.01963059, 0.010498098, 0.009951856, -0.022703204, 0.005820897, -0.018930716, 0.011564978, 0.0011917049, -0.004958858, 0.0141767, -0.017804092, -0.011855169, -0.006849369, 0.0020857502, 0.006670133, 0.0022127088, -0.015772752, -0.024734544, 0.007118223, 0.017735811, -0.0048052273, -0.002042008, -0.0054197498
|
|
2051
|
+
]
|
|
2052
|
+
}
|
|
2053
|
+
],
|
|
2054
|
+
"sources": [
|
|
2055
|
+
{
|
|
2056
|
+
"name": "source-coolstore-is-an-esho-54af0da6e247e295bb29"
|
|
2057
|
+
}
|
|
2058
|
+
],
|
|
2059
|
+
"preparationIds": [
|
|
2060
|
+
1
|
|
2061
|
+
]
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"name": "glowing-uranium-glass-garden-gnomes",
|
|
2065
|
+
"title": "Glowing Uranium Glass Garden Gnomes",
|
|
2066
|
+
"content": "---\n\nUranium Glass Garden Gnomes are a new product available in an online shop. These decorative items are made from glass that contains fluorescent uranium oxide, giving them unique visual properties.",
|
|
2067
|
+
"keywords": [
|
|
2068
|
+
"Glowing Uranium Glass Garden Gnomes"
|
|
2069
|
+
],
|
|
2070
|
+
"index": [
|
|
2071
|
+
{
|
|
2072
|
+
"modelName": "text-embedding-3-large",
|
|
2073
|
+
"position": [
|
|
2074
|
+
0.0072421087, -0.016470866, -0.008946963, -0.027376298, 0.01771076, 0.019162, 0.003997954, -0.011342213, -0.0229944, -0.017358517, -0.008453824, 0.06932135, -0.020232817, -0.024727434, 0.029278409, 0.03102553, -0.020303266, -0.0205287, -0.01004596, 0.017513504, 0.014301051, -0.021641787, -0.022458991, -0.0026242076, 0.02863028, 0.030490123, 0.013892449, -0.003635144, -0.012765273, 0.03387165, -0.0036052035, -0.023543898, 0.010186857, 0.0063755917, -0.04782046, -0.06441813, -0.004265658, 0.0035752628, -0.022416722, -0.011461975, -0.042353656, -0.01172968, 0.025446009, -0.0064742197, -0.03646416, 0.038521256, -0.006146634, -0.041508272, 0.02248717, -0.02724949, 0.021219097, 0.02771445, -0.05494985, 0.044382572, 0.028108962, 0.013716328, 0.033730756, 0.06571439, 0.061262038, 0.028968435, 0.020514611, -0.0035488445, -0.037394077, -0.0035629342, 0.009256937, 0.009179443, -0.0063967262, -0.018048912, 0.020979572, -0.0046460805, -0.005801436, 0.0763662, -0.028320309, 0.013568386, 0.019894663, -0.007826831, 0.0402402, -0.0004389824, 0.008820156, -0.0053012515, 0.04029656, 0.010299575, 0.0061501563, 0.023036668, 0.04398806, 0.021261366, -0.022374453, -0.030940993, 0.011560603, 0.0038570568, -0.011060419, 0.046045158, 0.010496831, 0.027883528, -0.024642894, 0.034237985, -0.027996244, -0.0032353485, 0.0014943894, 0.05827502, -0.021134557, -0.03350532, -0.051032912, -0.050131172, 0.018048912, 0.024093397, 0.045087058, 0.006541146, -0.018880205, -0.05582341, -0.0343507, -0.07777517, -0.011208361, 0.0063262777, -0.0016335252, 0.04207186, 0.017795298, 0.028024424, 0.0046460805, 0.033251707, 0.00682294, 0.0050159353, -0.021627698, -0.0040014763, -0.0022842935, -0.009271027, -0.008383375, -0.034266163, 0.03440706, 0.033251707, -0.017372606, 0.025248753, 0.062276497, 0.031842735, 0.011321078, 0.03350532, -0.0117508145, 0.045199774, -0.017626222, -0.021233186, -0.06329095, -0.034040727, -0.0014265827, 0.0013191487, -0.055626158, -0.031870913, -0.03006743, 0.01775303, -0.016879467, -0.010306619, -0.010799759, -0.049060356, 0.008982187, -0.014596934, -0.010355934, 0.009066725, -0.046693284, -0.006569325, -0.044720724, 0.0024974004, -0.020725956, -0.025896879, -0.0023089505, 0.013096381, -0.0031243921, 0.0063896812, -0.008735618, 0.028757088, -0.026178673, 0.023036668, 0.052244626, 0.016400417, 0.018739307, 0.0024005335, -0.0023089505, 0.03440706, 0.00885538, -0.008045222, -0.009348519, 0.013948808, -0.051004734, 0.028855717, -0.016682211, -0.019584691, 0.028080784, 0.013906539, -0.0064143385, 0.0018580799, -0.0034766349, 0.024220204, -0.03311081, -0.014526486, 0.015907278, -0.032603577, -0.041790064, 0.021754505, -0.009390789, -0.00763662, -0.013237278, -0.022529438, -0.01772485, 0.005287162, 0.029870175, -0.018063003, 0.032885373, 0.008700393, -0.029278409, -0.009665538, 0.0022842935, 0.026361838, 0.015414137, -0.031927273, -0.038352177, 0.006153679, -0.01385018, 0.0064249057, 0.0011491916, -0.014470127, 0.021839043, 0.042945422, -0.010116409, 0.012293268, 0.0125539275, -0.004114194, -0.03344896, 0.039028484, 0.008242478, 0.015061895, -0.0036457113, 0.014308096, -0.04782046, 0.0030680334, 0.0044805263, -0.014195378, -0.0118071735, 0.03674595, 0.0053435205, -0.009644403, 0.007080077, 0.008848335, -0.051878296, 0.017668491, -0.023712974, 0.01913382, 0.038324, 0.0020447685, 0.031250965, -0.031701837, 0.009130129, 0.029757459, 0.0042515686, 0.012546883, -0.029081153, 0.015259151, 0.007488678, 0.023163475, 0.004758798, 0.018992923, -0.010271396, -0.001900349, -0.023290282, 0.025981417, -0.009137174, 0.035224263, -0.056725156, -0.0036915028, 0.01673857, -0.010602503, 0.03680231, 0.03443524, 0.011983294, 0.002634775, -0.04117012, 0.041790064, -0.043706264, 0.024234293, -0.023093028, 0.025305111, 0.04877856, -0.024797881, 0.03105371, -0.058669534, 0.026178673, -0.00085066597, 0.031138249, 0.0031384819, 0.0050159353, 0.015991816, -0.029954713, -0.003652756, -0.005551344, 0.05066658, 0.023952499, -0.010792715, 0.022219466, 0.00037866083, 0.008904694, 0.011060419, 0.020063741, -0.01412493, -0.0015208076, -0.028644372, -0.03443524, 0.022853503, 0.015146433, 0.030461943, -0.021712236, 0.03156094, -0.049990274, 0.007552082, 0.039592072, 0.0005296849, -0.030433763, -0.032265425, -0.004603811, -0.015710022, 0.0012196401, -0.024713343, -0.014195378, 0.014371499, 0.0020253952, -0.0135402065, 0.005403402, 0.03970479, 0.030771917, 0.030659199, -0.009137174, -0.0023600257, 0.0076154857, -0.026432287, 0.006090275, -0.046693284, -0.0029535545, 0.025615085, 0.011264719, -0.05644336, -0.024811972, 0.0033198867, 0.030940993, 0.024431549, 0.017922105, -0.022938041, 0.0008154417, 0.0118494425, -0.022557618, -0.05015935, -0.026685903, 0.016301788, 0.017612131, -0.01675266, 0.0007921056, -0.019725587, -0.01528733, -0.0125680175, -0.0021979942, 0.011116778, -0.0027157906, 0.0018580799, 0.0049173073, 0.058951326, -0.0026946561, -0.023727063, 0.053230908, 0.030969173, -0.046270594, 0.033899833, -0.01527324, 0.015005536, -0.00024833105, -0.022656247, -0.0056957635, -0.023093028, -0.048440408, 0.025079675, 0.014012212, 0.0062241275, 0.048186794, 0.012307358, -0.0063227555, 0.03350532, 0.035167906, 0.036154184, 0.01052501, -0.00042004936, 0.029560203, 0.038887586, -0.0061712908, -0.02062733, 0.019852394, 0.022656247, 0.0073407367, -0.03683049, -0.005428059, 0.03296991, 0.023248013, -0.0014873445, 0.016809018, 0.014082661, 0.028447116, -0.009996646, -0.0062100375, 0.03108189, -0.013596565, 0.005237848, -0.019316986, 0.02822168, -0.01775303, -0.00023864438, 0.0026699991, -0.06881412, -0.011067464, -0.047256872, 0.005723943, -0.029560203, 0.023712974, 0.038408536, -0.013991077, 0.056668796, 0.026573185, -0.007263243, 0.035196085, 0.041367374, -0.033223525, 0.0059775575, -0.04221276, -0.01431514, 0.024516087, -0.008594721, 0.0496803, -0.03105371, 0.06081117, -0.03358986, 0.0013948808, -0.010954746, -0.019528331, 0.025629174, 0.00910195, 0.014026302, -0.020415982, -0.0008075162, -0.03838036, 0.014371499, -0.01919018, -0.054189008, -0.036633234, -0.024375191, 0.019246537, 0.016076354, 0.0077634277, 0.023586167, -0.02722131, -0.040352914, 0.0069110007, 0.010031871, 0.0026382974, -0.019274717, 0.003923983, -0.0055548665, 0.017118992, 0.014484217, -0.019542422, 0.050300248, -0.01868295, -0.034519777, -0.020275086, -0.028010335, 0.024727434, 0.046749644, 0.0030363316, 0.020007381, 0.0033480662, 0.0043325843, -0.026192762, 0.008186119, 0.0014265827, -0.029870175, -0.044748906, -0.03674595, 0.021909492, -0.016921736, -0.008355196, -0.0010144588, -0.03970479, 0.016978094, 0.015484586, -0.03776041, 0.014047436, -0.0051427423, -0.023205744, -0.0012698347, -0.02533329, 0.018936563, -0.032941733, -0.03598511, -0.0067137447, 0.02772854, -0.021289544, 0.032293607, -0.02774263, 0.011391527, -0.031166429, -0.016513135, -0.009552821, 0.020993661, 0.024811972, -0.0018369453, 0.007537992, 0.04167735, 0.006146634, 0.0037478616, -0.01385018, -0.03683049, -0.02196585, 0.0127089145, 0.016456775, 0.023107117, -0.016301788, -0.010503875, 0.02010601, -0.0011967444, 0.002883106, -0.009151264, -0.016823107, -0.0044981386, -0.0037725186, 0.028545743, 0.00933443, 0.02295213, 0.012405986, -0.0055478215, -0.03392801, 0.037647694, -0.004128284, 0.020021472, -0.018556142, 0.012391896, -0.009052636, 0.0010761012, 0.002205039, -0.022599887, -0.02777081, -0.04359355, -0.013878359, -0.0024392803, -0.0024357578, 0.012624376, 0.041451912, 0.021881312, 0.0036985476, -0.00014805199, -0.0022825322, 0.0074816337, 0.013526117, 0.020275086, -0.0075732167, -0.009862794, -0.025023317, 0.019218357, -0.006636251, -0.00036170916, -0.0031173474, 0.008658124, 0.012321447, -0.0038112653, 0.028883897, -0.007932504, 0.02772854, 0.00014827213, 0.0037408168, -0.032406323, 0.005931766, 0.0033251704, -0.017062632, -0.0005336476, -0.008319971, -0.018006643, -0.0023195178, 0.003793653, -0.028813448, -0.018288437, -0.016668122, -0.019359255, -0.015540945, 0.017414875, -0.019007012, -0.05075112, -0.0076718447, 0.014174243, -0.021416353, -0.00023886454, 0.03395619, 0.017457144, 0.011673321, -0.008784931, 0.031448223, 0.002876061, -0.0028637326, 0.027925797, 0.0114690205, 0.0195706, -0.007742293, 0.029278409, 0.02537556, 0.034209806, 0.041311014, 0.0118917115, -0.004071925, -0.0030046296, 0.034604315, -0.008002953, 0.025967328, -0.00019109163, 0.0062346947, 0.0121594155, 0.014131974, 0.022120837, -0.0078691, -0.0016881229, -0.0116521865, -0.026699992, -0.008094536, -0.0059846025, 0.01482237, -0.008164984, 0.028334398, -0.0024163844, -0.0058437055, -0.029982893, -0.018809756, 0.025474187, 0.008446778, -0.015991816, -0.0030451375, 0.001450359, 0.018556142, 0.010785669, -0.0034449329, 0.022839412, 0.007819787, 0.023346642, -0.0041494183, 0.046016976, -0.0075732167, -0.019936932, 0.0003815228, 0.009475327, 0.030039253, -0.0060867527, -0.01431514, 0.0025801773, -0.030321047, 0.011011105, -0.010327754, 0.013434534, 0.031758197, -0.019218357, 0.0060867527, -0.0068018055, 0.0061642462, 0.020260997, 0.014526486, 0.0014987924, 0.008665169, -0.0071399584, -0.020880943, -0.0016951677, -0.00022301362, -0.016470866, 0.0061818585, -0.0045721093, 0.011574693, 0.0006313949, 0.015414137, -0.00021795013, 0.044805262, -0.0030468989, -0.032857195, -0.002527341, -0.014667383, 0.007890235, -0.02674226, -0.017048543, 0.02675635, 0.0054738508, -0.0049666213, 0.0048186793, -0.019711498, -0.004219867, -0.019584691, 0.015132343, -0.017499413, -0.023980679, 0.0130329775, 0.035055187, -0.014026302, -0.001318268, -0.011602872, 0.0001429885, 0.015230971, -0.014526486, -0.008150894, 0.0335335, -0.051850118, 0.0018369453, -0.025727803, 0.0061853807, -0.017316248, 0.033223525, -0.00911604, 0.031758197, -0.024910599, 0.022543529, -0.018908385, 0.003561173, 0.049454868, -0.012758228, 0.020458253, -0.016174981, -0.0162877, 0.045058876, 0.051004734, 0.004755276, -0.035562415, -0.030884635, 0.021500891, -0.004071925, 0.033167165, 0.00016852608, 0.013624745, -0.0036562786, 0.00033595142, -0.015146433, -0.002809135, 0.005089906, -0.0020993662, 0.019936932, -0.026051866, 0.014160154, 0.0069955387, -0.03105371, -0.018739307, -0.00740414, 0.009158309, -0.017104903, -0.0010373546, -0.035534237, -0.0058472278, 0.037084106, 0.00038394448, -0.0066503407, 0.024487909, -0.005033547, -0.001284805, -0.038098563, -0.023388911, 0.014596934, -0.015188702, 0.002081754, 0.014780101, -0.015977725, -0.005417492, 0.014864639, -0.022106748, 0.014216512, 0.01338522, 0.034209806, -0.018922474, -0.03454796, 0.022191286, 0.026319569, 0.04029656, 0.0004011163, -0.008538362, -0.011828308, -0.0073900507, -0.0027052234, 0.023276193, 0.0015384197, -0.020162368, -0.028024424, -0.034745213, -0.009686672, -0.034519777, 0.009764166, -0.010179812, -0.0029782115, 0.0032564832, 0.0031701836, 0.023966588, 0.00037513842, 0.0018246168, 0.015061895, 0.016949916, 0.038070384, -0.006949747, 0.0039768196, 0.040437456, 0.028912075, 0.032772657, -0.02295213, 0.03302627, 0.009137174, 0.024135666, -0.02865846, 0.008503137, -0.02674226, -0.040521994, -0.013131605, 0.008538362, -0.014301051, 0.019655138, 0.025896879, -0.003561173, -0.0031103024, 0.017851656, -0.018809756, -0.011440841, -0.044241674, 0.01816163, 0.010581369, -0.0013755074, 0.0026541483, -0.014026302, 0.013843136, -0.010764535, 0.024727434, -0.005033547, 0.0051110405, -0.01583683, -0.0133993095, 0.018739307, 0.032321785, 0.026685903, -0.0075661717, 0.0071998397, 0.03443524, 0.014540576, -0.014146064, -0.00052792364, 0.006541146, -0.0117930835, 0.010877253, 0.008108625, -0.03395619, 0.013195009, 0.00028245457, -0.032885373, -0.016710391, -0.0023336075, 0.059007686, 0.027094504, 0.0012698347, 0.04364991, 0.0124693895, -0.0068969107, 0.009989602, -0.00885538, 0.002478027, -0.01816163, -0.015033715, 0.002330085, -0.023121206, 0.0119903395, -0.009905063, 0.0130752465, 0.018697038, -0.008834246, -0.022064479, 0.020796405, 0.0051110405, -0.043424472, -0.014167199, -0.009200578, 0.029362947, 0.002354742, 0.025389649, 0.030687379, 0.008496093, 0.0071258685, 0.04111376, -0.009292161, -0.022881681, -0.0135402065, -0.0020852764, -0.04021202, 0.015639573, 0.001983126, 0.00078638166, 0.05540072, -0.023360731, -0.019415613, -0.0066538635, -0.015907278, -0.017541682, 0.021374082, 0.0018105272, 0.005699286, 0.0022120837, 0.013364086, 0.0162877, -0.0017946762, -0.013624745, 0.015893187, 0.018598411, 0.014906908, 0.01052501, 0.010672952, -0.026206853, 0.015977725, 0.016104532, 0.009771211, 0.001965514, 0.043706264, -0.001119251, 0.009496462, -0.03350532, 0.025967328, 0.04114194, 0.0034555004, 0.021021841, 0.03587239, 0.037506796, -0.010997015, -0.013751552, -0.024248384, -0.03302627, 0.02767218, -0.0122298645, -0.030321047, 0.0224449, 0.01624543, -0.008728572, 0.026319569, -0.004843336, 0.032349963, -0.029278409, -0.021205006, 0.009228757, -0.019162, -0.01290617, 0.04021202, -0.018048912, -0.0056887185, 0.008291791, 0.004550975, -0.016034085, -0.0515965, -0.017189441, -0.019007012, 0.019584691, 0.037957665, 0.0036562786, -0.023670705, 0.0071857497, -0.016710391, 0.023656616, 0.0015102403, -0.0050124126, 0.03488611, -0.00045307208, 0.020613238, 0.026995875, -0.0067947605, -0.0003564255, 0.011419706, 0.008418599, -0.050835658, 0.0008154417, 0.005047637, 0.0018334229, 0.01338522, 0.008806066, 0.045227956, 0.014568755, 0.013265458, -0.012730049, 0.014709652, -0.0012442971, -0.0013385221, 0.00717166, 0.04686236, 0.0031596164, 0.03206817, 0.020782316, -0.013772687, 0.012265089, -0.023642525, -0.015160523, -0.0008282105, -0.0043501966, -0.002618924, -0.017922105, 0.02817941, -0.02534738, -0.0056534945, 0.052470062, 0.011116778, 0.0088272, 0.017569862, -0.01966923, 0.016597673, -0.024149755, -0.029362947, 0.010158678, -0.014906908, -0.050497506, -0.024741523, 0.018330706, -0.0009836375, 0.041564632, -0.017865747, 0.018401155, 0.019288806, 0.025615085, 0.0124412095, 0.0123989405, 0.00050326664, 0.020782316, -0.021472711, 0.039902046, 0.008552452, 0.0073759607, -0.034604315, -0.022318093, -0.004991278, -0.0028232248, -0.0011351019, 0.0013323578, 0.001990171, -0.009538731, 0.0117930835, 0.017809387, -0.021021841, 0.018866116, -0.020289175, 0.0052061463, -0.037506796, -0.039169382, -0.006858164, -0.020500522, -0.0025784161, 0.016639942, -0.024445638, -0.0038077428, -0.0116099175, 0.004501661, -0.019049281, 0.024882419, 0.011123822, -0.018119361, -0.0017312726, 0.011342213, -0.0060832305, -0.027503105, -0.0029852563, -0.0020993662, 0.014237647, 0.00012427561, 0.010179812, 0.016809018, 0.008425644, -0.0015093597, -0.011525379, 0.011624007, -0.0015225688, 0.013349996, 0.009538731, 0.015611393, 0.012265089, -0.015442317, -0.009940287, -0.0025326246, -0.016358148, 0.003850012, 0.023233924, 0.0036985476, 0.016386328, -0.016964005, 0.009771211, -0.022754874, -0.019824216, 0.009355565, -0.010489786, 0.013716328, -0.021317724, 0.0117015, 0.018358886, -0.0035382772, -0.019810125, -0.035562415, -0.009369654, 0.021951761, 0.011046329, -0.01721762, 0.016301788, -0.0033057972, 0.009954377, 0.052329168, -0.0036879804, 0.015921367, 0.010574324, -0.004219867, -0.037112284, 0.002668238, -0.0038042204, -0.0220363, -0.021148648, 0.00956691, 0.0014565233, -0.0133570405, -0.009898018, -0.008954008, -0.008489047, -0.010468652, 0.01721762, -0.0030081521, -0.0036562786, -0.012560972, 0.01775303, -0.0009219951, 0.0073759607, 0.0045897216, 0.0055407765, -0.0056394045, -0.002023634, 0.026995875, -0.014949177, 0.011299944, 0.011335168, 0.015484586, 0.0072280187, -0.018274348, 0.035562415, -0.026728172, 0.030828275, -0.0030557048, -0.0048045893, -0.009686672, 0.014019256, 0.024220204, -0.0033392601, -0.014371499, -0.00042181055, 0.020260997, -0.011292899, -0.012243954, -0.013321817, -0.010031871, -0.0062135602, 0.0034519779, 0.009094905, -0.003503053, 0.034097087, 0.00007386088, 0.023487538, 0.015216881, 0.0041494183, 0.013335906, -0.0011606395, -0.005470328, -0.022304004, 0.022332182, -0.0012671929, -0.020387804, 0.014639204, -0.013885405, 0.004322017, -0.0021046498, -0.015639573, 0.0039028483, 0.013413399, -0.0037830858, -0.0052589825, 0.0031930795, 0.010954746, 0.030771917, -0.0026629544, -0.0007071271, 0.0201201, 0.009256937, 0.028912075, 0.010827939, 0.0016520179, -0.03981751, -0.015061895, -0.018908385, 0.0036316216, -0.03012379, 0.021796774, 0.02059915, -0.007319602, 0.0024674598, 0.010067094, 0.00059396913, 0.007305512, 0.0044558696, 0.015230971, 0.025037406, 0.009890974, 0.033815295, -0.015512765, 0.009778256, -0.027066324, -0.014512396, -0.014836459, 0.01913382, 0.0006120216, -0.016837198, -0.022881681, 0.0272354, 0.014308096, -0.022881681, 0.0013807911, 0.015146433, 0.004026133, -0.015850918, 0.021824954, -0.024037037, 0.009778256, -0.017400786, 0.0026294913, -0.013286592, -0.0027245968, 0.006502399, 0.0028637326, 0.00009752718, 0.004329062, 0.010158678, -0.008277702, -0.007312557, 0.006294576, -0.0071188235, 0.021219097, 0.0044875713, 0.007552082, 0.021909492, -0.0035241875, 0.006287531, 0.0044382573, 0.015146433, -0.0018739308, -0.0015093597, 0.01530142, -0.002733403, -0.017978463, -0.008756752, 0.028094873, 0.016400417, 0.0038781913, 0.0042092996, -0.010884297, 0.011814218, 0.00067894766, 0.021881312, -0.0477641, 0.0021257843, 0.0011870577, -0.021205006, -0.013709283, 0.00933443, -0.01816163, 0.01579456, 0.0025907445, -0.0057943915, -0.045791544, -0.015583214, -0.015484586, 0.030292867, -0.005716898, 0.01768258, 0.0062699188, 0.016372237, 0.0058366605, 0.020796405, 0.0205287, -0.0021927103, -0.019415613, -0.01673857, -0.020415982, -0.00884129, 0.015681842, 0.020655507, 0.0045404076, 0.017879836, 0.011208361, -0.0017163022, 0.018358886, -0.037534975, -0.005561911, 0.0123144025, -0.01909155, 0.017499413, 0.0115958275, -0.011870577, 0.0034713512, 0.018302528, -0.027052235, -0.019655138, 0.029475663, 0.0024850718, 0.00019384353, -0.023656616, 0.017344428, 0.016569493, 0.01411084, 0.0007991505, -0.011926936, -0.008813111, -0.03249086, -0.0019725587, -0.002321279, 0.01125063, -0.018048912, 0.025600994, -0.0025555203, -0.017837567, -0.019232448, -0.024163844, 0.020993661, -0.025685534, 0.0031684225, 0.03296991, 0.0056217923, 0.0057133758, -0.0009845182, -0.009073771, -0.011856487, 0.017048543, 0.016654031, -0.020246906, -0.013441579, -0.020317355, -0.008848335, 0.016386328, -0.030631019, -0.046129696, 0.010017781, -0.0033603949, 0.0066890875, -0.000057679732, -0.0065728477, -0.008651079, -0.00012438568, 0.0066151167, -0.023487538, 0.0062663965, -0.025037406, 0.025276931, 0.004980711, -0.0050617266, -0.008108625, -0.0052413703, 0.019345166, -0.027587643, -0.020880943, 0.024107486, 0.0075309477, -0.0045967666, 0.0005732749, 0.026601363, -0.0060585733, -0.020810494, -0.021444531, -0.019486062, 0.010412293, -0.004114194, 0.021148648, 0.026220942, -0.0039063706, -0.0053082965, -0.043480832, -0.0114126615, -0.016231341, 0.0041494183, 0.0077704727, 0.011081553, 0.0035189039, -0.02441746, -0.020134188, 0.00860881, -0.020852763, -0.013103426, 0.0116944555, -0.0016995707, 0.023642525, 0.017626222, 0.027136773, 0.00053056545, -0.016048174, -0.00061158126, 0.012870946, -0.009792346, 0.004188165, -0.01721762, -0.026488647, 0.00047376635, 0.014117884, 0.022092657, -0.0077704727, 0.0123003125, -0.002974689, -0.027658092, -0.0012099535, 0.0055442993, -0.009137174, -0.010870208, 0.00065957435, -0.022050388, -0.0021856655, 0.04350901, 0.0000050910066, 0.008186119, -0.033167165, 0.0052096685, 0.015400048, 0.0068546417, 0.0052061463, -0.009905063, -0.0019866484, -0.009440103, -0.019007012, 0.0009836375, -0.0034519779, -0.007552082, 0.0036386664, -0.00815794, -0.0059282435, 0.01313865, 0.017823478, 0.017471235, 0.011292899, 0.008939918, -0.013244323, 0.024981048, -0.02251535, -0.0005244012, -0.0034343656, -0.0056534945, 0.010137543, -0.022163106, 0.038972124, -0.027996244, -0.008038177, 0.013279547, -0.01411084, -0.001164162, -0.03060284, 0.00024326757, 0.033138987, -0.0123144025, -0.006287531, -0.033336245, 0.003263528, -0.014540576, -0.012666645, -0.009602134, -0.0025872223, 0.014526486, -0.021796774, 0.0067701032, -0.0056288373, 0.023276193, -0.00070536585, -0.032744475, -0.014054481, -0.0016986901, -0.024811972, -0.04686236, -0.004610856, -0.006428428, 0.00077097106, -0.021571338, 0.038352177, 0.0022349795, 0.009588044, 0.0011412661, -0.00908786, -0.014251737, 0.019584691, -0.023248013, 0.00013143053, -0.0109899705, -0.009630314, 0.008214299, -0.0128920805, -0.022585798, -0.006195948, -0.010672952, 0.021134557, -0.017330337, 0.003867624, -0.038493074, 0.001094594, 0.0006767462, 0.018598411, -0.023600256, 0.03249086, -0.0075802617, 0.026347749, -0.022233555, 0.0114972, 0.0026048343, 0.023388911, -0.032857195, 0.01219464, -0.02729176, 0.01771076, 0.015230971, -0.014963267, 0.0027880005, -0.0047270963, 0.011321078, -0.009179443, 0.0186125, -0.017288068, -0.016654031, -0.0056358823, 0.037675872, 0.01966923, 0.007700024, -0.04593244, 0.023896141, -0.03203999, -0.01527324, -0.000105342566, 0.0068863435, -0.030771917, 0.039028484, -0.0097853, -0.001949663, -0.016076354, 0.0036386664, -0.019739678, -0.01675266, 0.018739307, 0.020669598, -0.020866854, -0.0121875955, -0.023304373, 0.015047805, -0.008277702, -0.016118623, -0.0028285084, -0.0025643264, -0.0018404678, 0.020810494, 0.020472342, -0.0007344259, -0.019908754, -0.0055407765, 0.0026805664, 0.0015058373, 0.010842028, -0.027869437, -0.011081553, 0.009461237, -0.009278071, 0.01772485, -0.011123822, -0.010165722, 0.028080784, 0.0036245766, 0.005361133, 0.01480828, -0.016555404, 0.012222819, -0.017922105, -0.020035561, -0.009919153, 0.007749338, 0.002139874, 0.025220573, -0.004255091, 0.0044981386, -0.014850549, 0.0025660875, -0.010348889, 0.0065094437, 0.00010545264, 0.0024269517, 0.007749338, 0.017330337, 0.07901507, -0.010933612, 0.0026523871, 0.0009175921, -0.016344057, 0.008002953, 0.010503875, 0.024065217, 0.028292129, 0.007742293, 0.009693718, 0.011504244, -0.004882083, 0.024121575, 0.007030763, -0.007509813, 0.0120185185, 0.006495354, 0.009947332, 0.0036421889, -0.008538362, -0.00098716, -0.001788512, 0.0027985678, 0.009165353, 0.0007370677, 0.008179074, -0.0071188235, 0.01385018, -0.0029042405, -0.0048362915, -0.0048116343, -0.03201181, -0.014117884, -0.015484586, 0.0075239027, -0.016104532, 0.0033568724, -0.012250999, 0.0076295757, 0.01528733, -0.00031151457, 0.009235802, 0.00031195488, 0.017062632, 0.00050546817, 0.012870946, -0.0076718447, -0.019993292, 0.0019267672, -0.0041458956, -0.013230233, 0.014596934, -0.008686303, -0.01527324, -0.0036245766, 0.003437888, -0.01868295, 0.0013772687, -0.002039485, 0.01383609, -0.0010514442, 0.0027281193, -0.017189441, -0.023557987, -0.008834246, -0.025516456, -0.010701131, 0.0039451174, -0.013364086, 0.0047764103, -0.013526117, 0.012913215, -0.01383609, 0.0007595232, -0.019232448, -0.024910599, 0.026375929, 0.0005847228, 0.0029359423, -0.016231341, 0.011645141, -0.016344057, 0.0025590428, -0.011631052, -0.0021222618, -0.0012548644, 0.018739307, 0.0116521865, 0.011856487, 0.000844942, 0.010567279, 0.024882419, -0.012335537, -0.028306218, -0.032237247, 0.016541313, -0.0011562364, 0.007946594, 0.0013165069, 0.024938779, 0.0063051432, 0.016527224, -0.009468282, 0.033730756, 0.010905432, -0.007587306, -0.005128653, -0.006643296, -0.019697407, -0.0004953412, -0.008404509, -0.023064848, -0.006280486, 0.00041102312, -0.0056534945, -0.0125539275, -0.004748231, 0.002560804, -0.011377437, 0.009207622, 0.004698917, 0.033420783, 0.0006943583, 0.0061818585, -0.014258781, -0.015174612, 0.0042339563, 0.026981786, -0.007826831, 0.008672214, -0.001801721, 0.016189072, -0.009961422, 0.0054808953, 0.007960684, -0.018781578, -0.00052748335, 0.015216881, -0.0033973802, 0.0045368853, -0.0030997351, 0.009130129, -0.0015639573, 0.010870208, 0.0020588583, 0.00045175117, -0.008721528, 0.008918784, -0.015160523, -0.010602503, -0.0034695899, 0.0015894949, 0.008024087, -0.00074191106, 0.02767218, 0.02151498, -0.0032089304, -0.0058331382, 0.017288068, 0.009679628, -0.021740416, 0.020669598, 0.0057486, 0.0014802996, -0.023093028, 0.012321447, 0.0045404076, -0.003478396, -0.0070518977, -0.014441948, 0.0064108158, 0.0117015, -0.0166963, -0.004846859, 0.021430442, -0.009503506, 0.0157382, -0.00094136846, -0.0011896995, -0.008679259, 0.009108994, 0.0033850516, -0.0024234294, -0.009982556, 0.015555034, -0.00036831372, -0.01267369, 0.00045175117, -0.007953639, 0.03206817, 0.019021103, -0.0025801773, 0.010616593, 0.008305881, -0.002858449, -0.0001675354, -0.0049349195, -0.015907278, 0.010010736, 0.0037971756, 0.012645511, -0.009059681, 0.0005406924, 0.010623638, 0.016907647, 0.011159047, -0.0001251562, 0.0032089304, 0.019021103, -0.032209065, -0.00029852564, -0.013349996, 0.0121875955, -0.021402262, 0.016456775, -0.014244692, 0.0047623203, -0.008242478, 0.00586484, -0.009912108, -0.00910195, -0.018767487, -0.019162, 0.006773626, 0.009172399, 0.00394864, -0.003594636, 0.015822738, -0.039789326, -0.010341844, -0.003453739, 0.018415244, -0.033843473, 0.0050088903, -0.004082492, -0.0020958437, -0.017316248, 0.013519072, 0.0011844159, -0.015611393, 0.004512228, 0.007862056, -0.01919018, 0.0016132713, 0.0052026235, -0.019246537, -0.0066996547, -0.015160523, -0.00003087627, -0.030349225, -0.0029236139, -0.0014450754, -0.0034907246, 0.010236171, -0.0021169782, -0.0022261734, 0.01864068, -0.0036738906, 0.004336107, 0.008918784, -0.0026048343, -0.007347781, 0.00884129, 0.0019214835, 0.00076524715, -0.0066468185, -0.016048174, -0.004445302, 0.018499782, 0.0027932841, -0.005033547, 0.0021962328, 0.0057345103, 0.013843136, -0.01363179, 0.011616962, -0.009397834, -0.0076788897, 0.0040049986, 0.0037055926, -0.02913751, 0.018274348, -0.022839412, 0.0036210543, -0.010750446, 0.020246906, 0.016189072, 0.0008995396, 0.007643665, 0.016639942, -0.017626222, -0.01123654, -0.008946963, -0.00044690786, 0.006551713, -0.0018580799, -0.009559865, -0.0034713512, 0.0020711867, 0.0047235736, 0.023177566, 0.0069603147, 0.016964005, -0.0065305782, -0.029334767, 0.021979941, 0.0136177, 0.007319602, -0.027827168, -0.0132584125, 0.008651079, -0.015047805, 0.004794022, -0.009665538, 0.024121575, -0.0127934525, 0.007058942, -0.027108593, -0.007826831, 0.0003273655, 0.017133081, 0.021331813, 0.004170553, 0.0013887166, -0.011884667, 0.00526955, 0.008474958, 0.004980711, 0.011616962, 0.011067464, 0.021768594, -0.0006023349, 0.011814218, -0.019316986, -0.009968466, -0.02771445, 0.008489047, -0.010679997, -0.01911973, 0.034322523, 0.00003668277, -0.020655507, -0.029813817, 0.02110638, 0.008820156, 0.021444531, -0.0054456713, -0.008996277, -0.0031789897, -0.027855348, 0.021810863, -0.017076723, 0.0058613173, 0.016470866, 0.023670705, 0.0110885985, 0.0110885985, -0.0050511593, 0.007840921, -0.004360764, 0.018527962, -0.01029253, 0.014836459, 0.01315274, -0.005963468, -0.013504983, 0.00812976, 0.0038817138, 0.017133081, -0.009376699, 0.012384851, -0.0071188235, 0.010820894, -0.010067094, 0.008087491, 0.018316617, 0.007812741, -0.0026277301, -0.015019626, -0.022656247, 0.022360362, 0.023304373, 0.017076723, -0.021303635, -0.008115671, -0.0015463452, -0.00038218327, -0.011159047, 0.014991446, 0.00038174295, 0.003825355, 0.0316173, 0.0077704727, 0.00026308122, 0.020204637, -0.009271027, 0.010334799, 0.0020007382, -0.007812741, 0.0069849715, -0.017541682, 0.021148648, 0.0118917115, 0.006188903, -0.006541146, 0.011884667, 0.003652756, 0.011109733, -0.0126102865, 0.003097974, -0.0019567078, -0.01775303, -0.009982556, 0.025305111, -0.016005905, 0.015879098, 0.020768225, -0.008031132, 0.002280771, -0.0013349996, -0.020683687, -0.0123284925, -0.008045222, 0.0030944515, 0.0113140335, 0.00634389, -0.0026330138, -0.0008145611, -0.02251535, 0.0050088903, 0.0035928749, 0.009080815, 0.0078691, -0.007189272, -0.019443793, 0.032885373, -0.016400417, 0.00740414, 0.01818981, 0.011722635, -0.03482975, -0.028094873, 0.017471235, 0.001801721, 0.007862056, 0.000031729356, 0.016949916, -0.001826378, 0.0025079676, 0.009207622, -0.013948808, -0.0069391797, 0.005121608, -0.035590596, 0.0224449, -0.004177598, 0.0037901308, -0.0056816735, -0.016597673, -0.010919522, 0.015188702, -0.0051180855, 0.0058859745, -0.02105002, -0.017936194, -0.0001830561, -0.000991563, -0.0033110809, 0.014526486, 0.008707438, 0.0020465297, -0.014470127, -0.0126525555, -0.0120889675, -0.015428227, -0.015540945, -0.017922105, 0.0002122262, -0.012624376, -0.033702575, -0.001998977, 0.034745213, -0.008587675, 0.006252307, 0.011616962, -0.0025502366, 0.009750077, -0.011870577, -0.01823208, 0.03209635, 0.015259151, -0.03102553, 0.007876146, -0.0046214233, 0.0033269317, 0.012546883, 0.023783423, -0.016851287, 0.009010366, 0.00013484288, 0.008954008, -0.0061994703, 0.020289175, -0.004984233, 0.0034960082, 0.032857195, 0.019471973, -0.016076354, 0.03350532, -0.007700024, 0.015385958, -0.0008546287, -0.013589521, 0.008334061, -0.0013508504, -0.009728941, -0.005089906, 0.008460868, -0.016470866, 0.0064002485, 0.014864639, 0.0023019055, -0.0038535343, -0.011856487, -0.0033427826, -0.010010736, 0.013342951, 0.02103593, 0.0004334786, 0.0009079054, 0.011264719, 0.015019626, -0.010884297, -0.003031048, -0.010595459, 0.014498306, 0.007104734, -0.018246168, 0.012152371, 0.023797512, 0.016639942, 0.0049278745, -0.0032335874, 0.001578047, 0.016597673, 0.007840921, -0.027108593, -0.010785669, 0.0032652891, 0.022684425, -0.0052906843, -0.0005886855, 0.0021698147, -0.031983633, -0.007594351, 0.0135402065, -0.0018827369, 0.005956423, -0.01823208, -0.010391158, 0.03502701, -0.0009933242, -0.007911369, -0.020852763, -0.0069356575, -0.014322186, 0.022712605, -0.0066468185, -0.012384851, -0.0016757944, 0.019457882, -0.008024087, 0.013984033, -0.01268778, 0.020866854, -0.0007388289, -0.0123144025, -0.0041036266, -0.013709283, 0.008862425, 0.0118494425, -0.009221712, -0.021754505, -0.0028690163, -0.0063896812, 0.010384113, -0.009735987, 0.0031596164, 0.0041599856, 0.002858449, -0.010496831, -0.0048609483, -0.01914791, 0.008658124, 0.01676675, 0.0056957635, -0.023177566, -0.0008061953, 0.00084802415, -0.007210407, 0.010053005, -0.0029694054, 0.008975143, 0.014695562, -0.0055724783, 0.019176088, -0.009235802, -0.013124561, 0.0117367245, -0.0035963973, 0.0028478818, 0.019936932, -0.0015886143, 0.007862056, -0.01004596, 0.0057133758, 0.029052973, 0.0034995305, 0.016583582, -0.0005059085, 0.0007762547, -0.0007238586, -0.030490123, 0.024516087, -0.003453739, 0.0043854206, 0.003931028, 0.006766581, 0.00094136846, 0.0027897616, 0.026235031, 0.018006643, -0.005294207, 0.025305111, -0.003245916, 0.0052096685, 0.020923212, 0.012849811, 0.024783792, 0.002132829, -0.0056147478, 0.002180382, 0.0030609886, -0.004702439, -0.007862056, -0.00028883896, 0.008651079, 0.016780838, -0.01816163, 0.019204268, -0.009299206, -0.0006556116, 0.004322017, -0.030940993, 0.004751753, -0.025600994, -0.017288068, 0.000733105, -0.003980342, 0.022430811, -0.018852025, -0.00034585825, -0.005213191, -0.013955853, -0.011180181, -0.008714483, 0.0011016389, -0.022571707, -0.0057873465, 0.018570231, 0.007946594, 0.015935456, -0.006484787, 0.006858164, -0.013730418, 0.014766011, -0.0124693895, 0.008665169, -0.023064848, -0.0018369453, -0.0041494183, 0.003510098, -0.009700762, -0.000005293959, -0.018020732, 0.0058930195, -0.0071857497, -0.0050758165, 0.0024885943, -0.0015208076, 0.017908016, -0.0074323197, -0.0019021102, 0.022289913, 0.008559496, 0.004329062, -0.003659801, -0.013906539, 0.011278809, 0.004047268, 0.0072914227, 0.008073402, 0.00407897, -0.023064848, 0.015019626, -0.0054491935, -0.011863532, 0.013378175, 0.006238217, 0.014117884, 0.011440841, -0.010799759, -0.011363347, -0.0126948245, -0.0060832305, 0.0016141519, 0.0029200914, 0.00836224, 0.013490893, 0.0039451174, 0.0020782317, -0.0008515466, -0.00834815, 0.0054985075, -0.00956691, 0.005931766, 0.02154316, -0.003272334, 0.00065693253, 0.0048257243, 0.004417123, -0.009757121, -0.0022754874, 0.01865477, -0.0061677685, 0.0027985678, 0.007911369, -0.030292867, -0.017527593, -0.001011817, 0.016442686, -0.0024428028, 0.020303266, 0.013800867, 0.009172399, 0.025488278, 0.0015111209, 0.0009933242, 0.007700024, 0.0073830057, -0.009433058, -0.001636167, 0.010778625, -0.00027342833, 0.022261735, 0.0031014965, -0.014892818, 0.019471973, 0.039310277, -0.023600256, -0.0047764103, 0.003238871, 0.009869839, 0.0054386263, 0.010348889, -0.0128779905, -0.010207991, 0.020345535, -0.008108625, 0.007728203, -0.0024568923, 0.0043995106, 0.014611024, -0.0065658027, 0.009242847, 0.017316248, 0.00089997996, 0.013561342, -0.017626222, -0.002271965, 0.016949916, 0.0000585053, -0.0051991013, -0.00268585, 0.0035136202, -0.016076354, 0.0020024993, 0.007048375, 0.010236171, 0.021500891, -0.02777081, -0.0011254152, 0.004832769, 0.0006833507, -0.00050326664, 0.0007907847, -0.0011412661, -0.018006643, -0.0056816735, 0.01909155, 0.0032001243, 0.027052235, -0.014371499, 0.002766866, 0.015090074, -0.03299809, 0.027629912, 0.001197625, 0.012222819, -0.0071258685, -0.008651079, -0.028024424, 0.0018087659, 0.00058428245, -0.0022332184, 0.0035470834, 0.0130329775, -0.007946594, 0.0316173, -0.014709652, 0.009461237, 0.0077704727, -0.0115112895, 0.0032441546, 0.0012742378, 0.0033286929, 0.01673857, -0.012391896, -0.00066353707, -0.008256568, -0.005195579, 0.023290282, 0.0014336276, -0.0067384015, -0.014301051, 0.013920629, -0.0072280187, -0.0010012496, -0.017626222, 0.046157874, -0.026643634, 0.011116778, 0.011321078, 0.0069955387, -0.009778256, -0.020035561, 0.01579456, -0.0029676443, -0.026122313, 0.0040578353, 0.0038288774, 0.0051744445, -0.012377806, 0.00045307208, 0.013244323, 0.023262104, -0.016949916, 0.00014463963, 0.0048715156, -0.000004409913, 0.006667953, 0.018894294, 0.0020940825, 0.027911706, -0.01675266, 0.020951392, -0.0044805263, -0.009728941, 0.025896879, 0.00047552754, -0.020852763, -0.004121239, 0.01818981, 0.009454193, -0.00765071, -0.008552452, 0.001656421, -0.016710391, 0.016470866, -0.0048856055, 0.0010778625, -0.003460784, -0.020796405, 0.0070871217, -0.01966923, 0.0020306788, -0.0070906444, 0.010222081, 0.0045897216, 0.012250999, -0.003561173, 0.010207991, -0.02296622, -0.010736356, -0.010412293, 0.0070448527, -0.010778625, -0.0037337719, -0.008700393, 0.014392634, -0.0058260933, 0.016654031, -0.019810125, 0.0024269517, 0.016414506, -0.011786039, -0.029926535, 0.019401524, 0.00017039737, -0.0037091149, 0.013751552, 0.0117789935, 0.009108994, 0.004124761, 0.013068202, -0.022797143, 0.0017092574, -0.00005247865, 0.007784562, -0.0119339805, 0.010842028, 0.017034454, -0.011342213, -0.0042163446, -0.010842028, -0.0157382, -0.008975143, 0.016358148, -0.021345904, 0.018880205, 0.010834984, -0.004846859, 0.022881681, -0.012525748, -0.0060761855, 0.009940287, 0.009362609, 0.0058260933, 0.002328324, -0.014723742, 0.005815526, 0.0126384655, 0.021162737, 0.021909492, 0.01218055, 0.002950032, -0.007319602, 0.01583683, -0.018443424, 0.010003691, -0.020796405, 0.015977725, -0.009010366, -0.019035192, -0.0065798922, -0.012525748, 0.01673857, 0.0044805263, 0.011602872, 0.0061078873, 0.019246537, -0.0047905, -0.00037733992, -0.009524641, -0.002131068, 0.014512396, 0.007319602, -0.015865007, 0.018358886, 0.005227281, 0.0034995305, -0.006231172, -0.004515751, 0.00066661916, 0.0032423935, 0.0022244123, 0.0066468185, -0.020162368, 0.0055442993, -0.015611393, -0.0034466942, -0.018401155, 0.009679628, 0.0052096685, 0.01818981, 0.0112294955, -0.00933443, 0.008066356, 0.0022684427, 0.00561827, -0.011546514, 0.0049630986, -0.020035561, 0.027179042, 0.0011835352, 0.015005536, -0.00061290216, 0.021853132, -0.002809135, -0.017428966, 0.017837567, -0.01772485, 0.004015566, -0.020993661, -0.007946594, -0.0030697945, -0.013998122, 0.00026704394, -0.006759536, -0.011398572, 0.002851404, 0.010975881, 0.0058965418, 0.01813345, 0.0065235337, 0.030800097, -0.0017964374, -0.0013755074, -0.004230434, -0.022177197, 0.019443793, 0.013455668, 0.009123084, 0.0013305965, 0.0052977293, 0.0011844159, -0.011349258, 0.002180382, -0.013723373, 0.009665538, -0.015583214, 0.029532023, -0.022360362, 0.013702239, -0.008002953, 0.016921736, -0.021923581, 0.005368178, -0.0028390756, -0.047707744, -0.01676675, 0.00981348, -0.004698917, -0.007643665, 0.0002950032, 0.01364588, 0.0067947605, -0.015160523, 0.015202792, -0.024206113, -0.008460868, -0.008601765, -0.0014820609, -0.015104164, -0.010405247, 0.0031120637, -0.00029764502, -0.0031420044, 0.014216512, 0.022374453, -0.00022290355, 0.005611225, 0.0074323197, -0.0008334941, 0.013504983, 0.015752291, -0.003874669, -0.0031543327, 0.019951023, -0.0068616867, -0.008235433, -0.0028531654, 0.015442317, -0.003892281, 0.014878729, 0.010834984, -0.01172968, 0.01101815, -0.0017207053, -0.009299206, -0.011490155, -0.010884297, -0.0059106313, -0.014611024, -0.014582845, 0.020951392, -0.016879467, 0.014033346, -0.024558356, 0.01673857, -0.029362947, 0.010144588, 0.019655138, 0.004603811, -0.007108256, -0.023614347, -0.0065552355, 0.01578047, 0.0023811602, 0.010672952, -0.004808112, -0.010489786, 0.014780101, -0.0113281235, -0.0029130466, 0.0014459561, 0.006636251, 0.0019796037, 0.0029641218, -0.001260148, -0.020768225, 0.018978832, 0.0065305782, -0.033223525, 0.0076577547, 0.00152433, 0.0003907692, -0.0119903395, 0.00010259067, -0.0012812826, -0.003677413, -0.011560603, -0.0132161435, -0.019655138, 0.009461237, 0.0041071493, -0.00910195, -0.008496093, -0.004508706, 0.0060198265, -0.007319602, -0.024375191, 0.0017004514, 0.0076577547, 0.007249153, -0.0031754673, -0.0008264493, -0.0008669572, 0.0056781513, 0.016372237, -0.0006661789, -0.01818981, 0.00028025304, 0.031730015, -0.0116662765, -0.013244323, 0.014209468, 0.033561677, -0.014406724, 0.007988863, 0.013991077, -0.0051533096, 0.00836224, -0.010398203, -0.0072843777, 0.003980342, 0.00431145, 0.0072350637, 0.013892449, 0.02004965, -0.01919018, -0.014582845, -0.009898018, 0.009123084, -0.009616224, -0.013955853, 0.0032617669, -0.005403402, -0.022754874, 0.023853872, -0.019584691, -0.025305111, 0.015329599, 0.018105272, -0.015033715, 0.005900064, -0.0043924656, -0.010546144, 0.008876515, 0.0041599856, 0.00072033616, 0.0002839956, 0.0072280187, -0.011983294, 0.012913215, 0.019486062, -0.0004539527, -0.017640311, -0.011264719, -0.01966923, -0.0065376232, 0.016569493, -0.0262773, -0.0125539275, 0.0047235736, -0.0029465097, 0.0009396072, 0.024037037, 0.00073794834, 0.014441948, -0.019556511, -0.02344527, 0.008059312, -0.011278809, -0.002328324, 0.028883897, 0.014061526, 0.0012504613, -0.020486431, -0.005907109, 0.010532055, -0.0201201, -0.0037830858, 0.004617901, -0.004462914, -0.02771445, -0.024981048, 0.008327016, 0.007509813, 0.008545406, 0.0008180835, 0.010510921, 0.009193533, -0.003842967, 0.0012134758, -0.0064566075, 0.0012011473, 0.0017330338, -0.013878359, 0.014554665, 0.019246537, 0.023050757, 0.0024251905, 0.007890235, 0.022571707, 0.0053576105, -0.008954008, -0.018429335, 0.007643665, -0.009489416, 0.02004965, 0.018330706, -0.012405986, -0.00538579, -0.005533732, -0.010616593, -0.002636536, -0.0124975685, 0.00036699278, 0.018795667, -0.009862794, 0.013758597, 0.009130129, -0.003931028, 0.006139589, 0.002999346, 0.013110471, -0.033195347, 0.01316683, -0.014892818, -0.0022895772, -0.013483848, -0.0036950253, 0.012849811, 0.036182363, 0.037168644, -0.013512027, -0.015202792, -0.010997015, -0.024079306, -0.008052266, 0.005410447, 0.013948808, -0.001280402, 0.011201316, -0.007735248, 0.006717267, -0.00033264913, -0.0030786006, -0.029503843, 0.012067833, -0.012152371, -0.022895772, -0.009573955, -0.021345904, 0.043480832, -0.007495723, -0.014991446, 0.025276931, -0.0009757121, 0.007918415, 0.0012971335, -0.01673857, 0.014540576, -0.015681842, -0.025572816, -0.005089906, 0.005551344, -0.022543529, -0.0042973603, -0.020162368, 0.0074675437, -0.00407897, -0.0016440925, -0.00036765327, -0.0130752465, 0.008503137, -0.01528733, -0.017612131, 0.0020042607, -0.015118254, 0.008334061, -0.0004676021, 0.004501661, -0.037619513, 0.017541682, -0.0073900507, 0.007545037, -0.025305111, -0.0038464896, -0.0110322395, -0.003413231, -0.0039098933, -0.0201201, 0.0069849715, -0.014005167, -0.004286793, 0.0038887586, -0.020317355, -0.026530916, -0.007960684, 0.00149527, 0.0032829014, 0.008707438, 0.0127934525, 0.003006391, -0.019711498, 0.0125821065, 0.002372354, -0.0035963973, -0.02391023, -0.025727803, 0.0053646555, -0.0024850718, -0.008066356, 0.009433058, -0.0013869554, -0.019457882, -0.024051128, 0.011053374, -0.045256134, 0.008045222, -0.003272334, 0.008094536, 0.0043396293, 0.0035893524, 0.0014045675, 0.0021979942, 0.013476803, 0.001777064, 0.019810125, 0.0032054079, -0.0028672551, -0.0124271205, -0.01768258, -0.0030803618, 0.01961287, 0.00060057366, -0.014977356, 0.009292161, -0.004949009, -0.004656648, -0.017640311, -0.014230602, 0.0034766349, -0.0034220372, 0.005533732, 0.004071925, 0.0061254995, -0.01720353, -0.0058613173, -0.0112294955, -0.025403738, 0.015315509, 0.016964005, -0.015850918, 0.025530547, 0.0007881429, -0.00063095463, 0.006195948, -0.010863163, -0.013462714, 0.003312842, 0.020430073, -0.001358776, -0.030321047, 0.0030046296, -0.01052501, -0.021500891, 0.00051427423, -0.016358148, 0.0008638751, -0.017133081, 0.023417091, 0.028475294, -0.009764166, 0.005699286, 0.0109899705, -0.0064002485, -0.005287162, 0.0036915028, 0.0032441546, -0.002345936, -0.025291022, 0.020458253, -0.0048292466, -0.00044668769, 0.025741892, -0.009792346, -0.0009316818, -0.004029656, -0.0012944917, -0.00836224, -0.009968466, 0.0040930593, 0.000015328058, 0.009848704, -0.018415244, 0.01675266, -0.018260257, 0.024135666, -0.00031547731, -0.031899095, -0.008763797, 0.013927674, -0.012856856, -0.0060163043, 0.017978463, 0.0073407367, 0.0064671747, -0.035280623, -0.015188702, 0.018246168, 0.018372975, 0.020782316, -0.011321078, 0.021881312, -0.009623269, 0.022318093, 0.028616192, -0.0043325843, -0.028376667, -0.0077211587, 0.0020747092, -0.0062699188, 0.013589521, -0.0019866484, -0.0006437234, 0.0029060016, -0.007164615, 0.007876146, 0.008256568, 0.008439734, 0.006386159, -0.009778256, -0.020458253, 0.019331075, 0.007946594, -0.007988863, 0.0018933042, -0.019021103, 0.0007507171, -0.0023089505, 0.005185012, -0.000053937154, 0.025474187, 0.007995908, -0.009031502, 0.004096582, 0.015710022, 0.0053963573, -0.014131974, 0.018894294, -0.004941964, -0.006121977, 0.0017127799, 0.019514242, 0.008115671, -0.00956691
|
|
2075
|
+
]
|
|
2076
|
+
}
|
|
2077
|
+
],
|
|
2078
|
+
"sources": [
|
|
2079
|
+
{
|
|
2080
|
+
"name": "source-uranium-glass-garden-77d2bea40f9d5065b9ff"
|
|
2081
|
+
}
|
|
2082
|
+
],
|
|
2083
|
+
"preparationIds": [
|
|
2084
|
+
1
|
|
2085
|
+
]
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"name": "glowing-gnomes-uv-led-magic",
|
|
2089
|
+
"title": "Glowing Gnomes: UV LED Magic",
|
|
2090
|
+
"content": "The gnomes are equipped with a UV LED light, which causes them to glow in the dark when activated. This feature enhances their visual appeal and functionality in low-light conditions.",
|
|
2091
|
+
"keywords": [
|
|
2092
|
+
"Glowing Gnomes: UV LED Magic"
|
|
2093
|
+
],
|
|
2094
|
+
"index": [
|
|
2095
|
+
{
|
|
2096
|
+
"modelName": "text-embedding-3-large",
|
|
2097
|
+
"position": [
|
|
2098
|
+
0.0072421087, -0.016470866, -0.008946963, -0.027376298, 0.01771076, 0.019162, 0.003997954, -0.011342213, -0.0229944, -0.017358517, -0.008453824, 0.06932135, -0.020232817, -0.024727434, 0.029278409, 0.03102553, -0.020303266, -0.0205287, -0.01004596, 0.017513504, 0.014301051, -0.021641787, -0.022458991, -0.0026242076, 0.02863028, 0.030490123, 0.013892449, -0.003635144, -0.012765273, 0.03387165, -0.0036052035, -0.023543898, 0.010186857, 0.0063755917, -0.04782046, -0.06441813, -0.004265658, 0.0035752628, -0.022416722, -0.011461975, -0.042353656, -0.01172968, 0.025446009, -0.0064742197, -0.03646416, 0.038521256, -0.006146634, -0.041508272, 0.02248717, -0.02724949, 0.021219097, 0.02771445, -0.05494985, 0.044382572, 0.028108962, 0.013716328, 0.033730756, 0.06571439, 0.061262038, 0.028968435, 0.020514611, -0.0035488445, -0.037394077, -0.0035629342, 0.009256937, 0.009179443, -0.0063967262, -0.018048912, 0.020979572, -0.0046460805, -0.005801436, 0.0763662, -0.028320309, 0.013568386, 0.019894663, -0.007826831, 0.0402402, -0.0004389824, 0.008820156, -0.0053012515, 0.04029656, 0.010299575, 0.0061501563, 0.023036668, 0.04398806, 0.021261366, -0.022374453, -0.030940993, 0.011560603, 0.0038570568, -0.011060419, 0.046045158, 0.010496831, 0.027883528, -0.024642894, 0.034237985, -0.027996244, -0.0032353485, 0.0014943894, 0.05827502, -0.021134557, -0.03350532, -0.051032912, -0.050131172, 0.018048912, 0.024093397, 0.045087058, 0.006541146, -0.018880205, -0.05582341, -0.0343507, -0.07777517, -0.011208361, 0.0063262777, -0.0016335252, 0.04207186, 0.017795298, 0.028024424, 0.0046460805, 0.033251707, 0.00682294, 0.0050159353, -0.021627698, -0.0040014763, -0.0022842935, -0.009271027, -0.008383375, -0.034266163, 0.03440706, 0.033251707, -0.017372606, 0.025248753, 0.062276497, 0.031842735, 0.011321078, 0.03350532, -0.0117508145, 0.045199774, -0.017626222, -0.021233186, -0.06329095, -0.034040727, -0.0014265827, 0.0013191487, -0.055626158, -0.031870913, -0.03006743, 0.01775303, -0.016879467, -0.010306619, -0.010799759, -0.049060356, 0.008982187, -0.014596934, -0.010355934, 0.009066725, -0.046693284, -0.006569325, -0.044720724, 0.0024974004, -0.020725956, -0.025896879, -0.0023089505, 0.013096381, -0.0031243921, 0.0063896812, -0.008735618, 0.028757088, -0.026178673, 0.023036668, 0.052244626, 0.016400417, 0.018739307, 0.0024005335, -0.0023089505, 0.03440706, 0.00885538, -0.008045222, -0.009348519, 0.013948808, -0.051004734, 0.028855717, -0.016682211, -0.019584691, 0.028080784, 0.013906539, -0.0064143385, 0.0018580799, -0.0034766349, 0.024220204, -0.03311081, -0.014526486, 0.015907278, -0.032603577, -0.041790064, 0.021754505, -0.009390789, -0.00763662, -0.013237278, -0.022529438, -0.01772485, 0.005287162, 0.029870175, -0.018063003, 0.032885373, 0.008700393, -0.029278409, -0.009665538, 0.0022842935, 0.026361838, 0.015414137, -0.031927273, -0.038352177, 0.006153679, -0.01385018, 0.0064249057, 0.0011491916, -0.014470127, 0.021839043, 0.042945422, -0.010116409, 0.012293268, 0.0125539275, -0.004114194, -0.03344896, 0.039028484, 0.008242478, 0.015061895, -0.0036457113, 0.014308096, -0.04782046, 0.0030680334, 0.0044805263, -0.014195378, -0.0118071735, 0.03674595, 0.0053435205, -0.009644403, 0.007080077, 0.008848335, -0.051878296, 0.017668491, -0.023712974, 0.01913382, 0.038324, 0.0020447685, 0.031250965, -0.031701837, 0.009130129, 0.029757459, 0.0042515686, 0.012546883, -0.029081153, 0.015259151, 0.007488678, 0.023163475, 0.004758798, 0.018992923, -0.010271396, -0.001900349, -0.023290282, 0.025981417, -0.009137174, 0.035224263, -0.056725156, -0.0036915028, 0.01673857, -0.010602503, 0.03680231, 0.03443524, 0.011983294, 0.002634775, -0.04117012, 0.041790064, -0.043706264, 0.024234293, -0.023093028, 0.025305111, 0.04877856, -0.024797881, 0.03105371, -0.058669534, 0.026178673, -0.00085066597, 0.031138249, 0.0031384819, 0.0050159353, 0.015991816, -0.029954713, -0.003652756, -0.005551344, 0.05066658, 0.023952499, -0.010792715, 0.022219466, 0.00037866083, 0.008904694, 0.011060419, 0.020063741, -0.01412493, -0.0015208076, -0.028644372, -0.03443524, 0.022853503, 0.015146433, 0.030461943, -0.021712236, 0.03156094, -0.049990274, 0.007552082, 0.039592072, 0.0005296849, -0.030433763, -0.032265425, -0.004603811, -0.015710022, 0.0012196401, -0.024713343, -0.014195378, 0.014371499, 0.0020253952, -0.0135402065, 0.005403402, 0.03970479, 0.030771917, 0.030659199, -0.009137174, -0.0023600257, 0.0076154857, -0.026432287, 0.006090275, -0.046693284, -0.0029535545, 0.025615085, 0.011264719, -0.05644336, -0.024811972, 0.0033198867, 0.030940993, 0.024431549, 0.017922105, -0.022938041, 0.0008154417, 0.0118494425, -0.022557618, -0.05015935, -0.026685903, 0.016301788, 0.017612131, -0.01675266, 0.0007921056, -0.019725587, -0.01528733, -0.0125680175, -0.0021979942, 0.011116778, -0.0027157906, 0.0018580799, 0.0049173073, 0.058951326, -0.0026946561, -0.023727063, 0.053230908, 0.030969173, -0.046270594, 0.033899833, -0.01527324, 0.015005536, -0.00024833105, -0.022656247, -0.0056957635, -0.023093028, -0.048440408, 0.025079675, 0.014012212, 0.0062241275, 0.048186794, 0.012307358, -0.0063227555, 0.03350532, 0.035167906, 0.036154184, 0.01052501, -0.00042004936, 0.029560203, 0.038887586, -0.0061712908, -0.02062733, 0.019852394, 0.022656247, 0.0073407367, -0.03683049, -0.005428059, 0.03296991, 0.023248013, -0.0014873445, 0.016809018, 0.014082661, 0.028447116, -0.009996646, -0.0062100375, 0.03108189, -0.013596565, 0.005237848, -0.019316986, 0.02822168, -0.01775303, -0.00023864438, 0.0026699991, -0.06881412, -0.011067464, -0.047256872, 0.005723943, -0.029560203, 0.023712974, 0.038408536, -0.013991077, 0.056668796, 0.026573185, -0.007263243, 0.035196085, 0.041367374, -0.033223525, 0.0059775575, -0.04221276, -0.01431514, 0.024516087, -0.008594721, 0.0496803, -0.03105371, 0.06081117, -0.03358986, 0.0013948808, -0.010954746, -0.019528331, 0.025629174, 0.00910195, 0.014026302, -0.020415982, -0.0008075162, -0.03838036, 0.014371499, -0.01919018, -0.054189008, -0.036633234, -0.024375191, 0.019246537, 0.016076354, 0.0077634277, 0.023586167, -0.02722131, -0.040352914, 0.0069110007, 0.010031871, 0.0026382974, -0.019274717, 0.003923983, -0.0055548665, 0.017118992, 0.014484217, -0.019542422, 0.050300248, -0.01868295, -0.034519777, -0.020275086, -0.028010335, 0.024727434, 0.046749644, 0.0030363316, 0.020007381, 0.0033480662, 0.0043325843, -0.026192762, 0.008186119, 0.0014265827, -0.029870175, -0.044748906, -0.03674595, 0.021909492, -0.016921736, -0.008355196, -0.0010144588, -0.03970479, 0.016978094, 0.015484586, -0.03776041, 0.014047436, -0.0051427423, -0.023205744, -0.0012698347, -0.02533329, 0.018936563, -0.032941733, -0.03598511, -0.0067137447, 0.02772854, -0.021289544, 0.032293607, -0.02774263, 0.011391527, -0.031166429, -0.016513135, -0.009552821, 0.020993661, 0.024811972, -0.0018369453, 0.007537992, 0.04167735, 0.006146634, 0.0037478616, -0.01385018, -0.03683049, -0.02196585, 0.0127089145, 0.016456775, 0.023107117, -0.016301788, -0.010503875, 0.02010601, -0.0011967444, 0.002883106, -0.009151264, -0.016823107, -0.0044981386, -0.0037725186, 0.028545743, 0.00933443, 0.02295213, 0.012405986, -0.0055478215, -0.03392801, 0.037647694, -0.004128284, 0.020021472, -0.018556142, 0.012391896, -0.009052636, 0.0010761012, 0.002205039, -0.022599887, -0.02777081, -0.04359355, -0.013878359, -0.0024392803, -0.0024357578, 0.012624376, 0.041451912, 0.021881312, 0.0036985476, -0.00014805199, -0.0022825322, 0.0074816337, 0.013526117, 0.020275086, -0.0075732167, -0.009862794, -0.025023317, 0.019218357, -0.006636251, -0.00036170916, -0.0031173474, 0.008658124, 0.012321447, -0.0038112653, 0.028883897, -0.007932504, 0.02772854, 0.00014827213, 0.0037408168, -0.032406323, 0.005931766, 0.0033251704, -0.017062632, -0.0005336476, -0.008319971, -0.018006643, -0.0023195178, 0.003793653, -0.028813448, -0.018288437, -0.016668122, -0.019359255, -0.015540945, 0.017414875, -0.019007012, -0.05075112, -0.0076718447, 0.014174243, -0.021416353, -0.00023886454, 0.03395619, 0.017457144, 0.011673321, -0.008784931, 0.031448223, 0.002876061, -0.0028637326, 0.027925797, 0.0114690205, 0.0195706, -0.007742293, 0.029278409, 0.02537556, 0.034209806, 0.041311014, 0.0118917115, -0.004071925, -0.0030046296, 0.034604315, -0.008002953, 0.025967328, -0.00019109163, 0.0062346947, 0.0121594155, 0.014131974, 0.022120837, -0.0078691, -0.0016881229, -0.0116521865, -0.026699992, -0.008094536, -0.0059846025, 0.01482237, -0.008164984, 0.028334398, -0.0024163844, -0.0058437055, -0.029982893, -0.018809756, 0.025474187, 0.008446778, -0.015991816, -0.0030451375, 0.001450359, 0.018556142, 0.010785669, -0.0034449329, 0.022839412, 0.007819787, 0.023346642, -0.0041494183, 0.046016976, -0.0075732167, -0.019936932, 0.0003815228, 0.009475327, 0.030039253, -0.0060867527, -0.01431514, 0.0025801773, -0.030321047, 0.011011105, -0.010327754, 0.013434534, 0.031758197, -0.019218357, 0.0060867527, -0.0068018055, 0.0061642462, 0.020260997, 0.014526486, 0.0014987924, 0.008665169, -0.0071399584, -0.020880943, -0.0016951677, -0.00022301362, -0.016470866, 0.0061818585, -0.0045721093, 0.011574693, 0.0006313949, 0.015414137, -0.00021795013, 0.044805262, -0.0030468989, -0.032857195, -0.002527341, -0.014667383, 0.007890235, -0.02674226, -0.017048543, 0.02675635, 0.0054738508, -0.0049666213, 0.0048186793, -0.019711498, -0.004219867, -0.019584691, 0.015132343, -0.017499413, -0.023980679, 0.0130329775, 0.035055187, -0.014026302, -0.001318268, -0.011602872, 0.0001429885, 0.015230971, -0.014526486, -0.008150894, 0.0335335, -0.051850118, 0.0018369453, -0.025727803, 0.0061853807, -0.017316248, 0.033223525, -0.00911604, 0.031758197, -0.024910599, 0.022543529, -0.018908385, 0.003561173, 0.049454868, -0.012758228, 0.020458253, -0.016174981, -0.0162877, 0.045058876, 0.051004734, 0.004755276, -0.035562415, -0.030884635, 0.021500891, -0.004071925, 0.033167165, 0.00016852608, 0.013624745, -0.0036562786, 0.00033595142, -0.015146433, -0.002809135, 0.005089906, -0.0020993662, 0.019936932, -0.026051866, 0.014160154, 0.0069955387, -0.03105371, -0.018739307, -0.00740414, 0.009158309, -0.017104903, -0.0010373546, -0.035534237, -0.0058472278, 0.037084106, 0.00038394448, -0.0066503407, 0.024487909, -0.005033547, -0.001284805, -0.038098563, -0.023388911, 0.014596934, -0.015188702, 0.002081754, 0.014780101, -0.015977725, -0.005417492, 0.014864639, -0.022106748, 0.014216512, 0.01338522, 0.034209806, -0.018922474, -0.03454796, 0.022191286, 0.026319569, 0.04029656, 0.0004011163, -0.008538362, -0.011828308, -0.0073900507, -0.0027052234, 0.023276193, 0.0015384197, -0.020162368, -0.028024424, -0.034745213, -0.009686672, -0.034519777, 0.009764166, -0.010179812, -0.0029782115, 0.0032564832, 0.0031701836, 0.023966588, 0.00037513842, 0.0018246168, 0.015061895, 0.016949916, 0.038070384, -0.006949747, 0.0039768196, 0.040437456, 0.028912075, 0.032772657, -0.02295213, 0.03302627, 0.009137174, 0.024135666, -0.02865846, 0.008503137, -0.02674226, -0.040521994, -0.013131605, 0.008538362, -0.014301051, 0.019655138, 0.025896879, -0.003561173, -0.0031103024, 0.017851656, -0.018809756, -0.011440841, -0.044241674, 0.01816163, 0.010581369, -0.0013755074, 0.0026541483, -0.014026302, 0.013843136, -0.010764535, 0.024727434, -0.005033547, 0.0051110405, -0.01583683, -0.0133993095, 0.018739307, 0.032321785, 0.026685903, -0.0075661717, 0.0071998397, 0.03443524, 0.014540576, -0.014146064, -0.00052792364, 0.006541146, -0.0117930835, 0.010877253, 0.008108625, -0.03395619, 0.013195009, 0.00028245457, -0.032885373, -0.016710391, -0.0023336075, 0.059007686, 0.027094504, 0.0012698347, 0.04364991, 0.0124693895, -0.0068969107, 0.009989602, -0.00885538, 0.002478027, -0.01816163, -0.015033715, 0.002330085, -0.023121206, 0.0119903395, -0.009905063, 0.0130752465, 0.018697038, -0.008834246, -0.022064479, 0.020796405, 0.0051110405, -0.043424472, -0.014167199, -0.009200578, 0.029362947, 0.002354742, 0.025389649, 0.030687379, 0.008496093, 0.0071258685, 0.04111376, -0.009292161, -0.022881681, -0.0135402065, -0.0020852764, -0.04021202, 0.015639573, 0.001983126, 0.00078638166, 0.05540072, -0.023360731, -0.019415613, -0.0066538635, -0.015907278, -0.017541682, 0.021374082, 0.0018105272, 0.005699286, 0.0022120837, 0.013364086, 0.0162877, -0.0017946762, -0.013624745, 0.015893187, 0.018598411, 0.014906908, 0.01052501, 0.010672952, -0.026206853, 0.015977725, 0.016104532, 0.009771211, 0.001965514, 0.043706264, -0.001119251, 0.009496462, -0.03350532, 0.025967328, 0.04114194, 0.0034555004, 0.021021841, 0.03587239, 0.037506796, -0.010997015, -0.013751552, -0.024248384, -0.03302627, 0.02767218, -0.0122298645, -0.030321047, 0.0224449, 0.01624543, -0.008728572, 0.026319569, -0.004843336, 0.032349963, -0.029278409, -0.021205006, 0.009228757, -0.019162, -0.01290617, 0.04021202, -0.018048912, -0.0056887185, 0.008291791, 0.004550975, -0.016034085, -0.0515965, -0.017189441, -0.019007012, 0.019584691, 0.037957665, 0.0036562786, -0.023670705, 0.0071857497, -0.016710391, 0.023656616, 0.0015102403, -0.0050124126, 0.03488611, -0.00045307208, 0.020613238, 0.026995875, -0.0067947605, -0.0003564255, 0.011419706, 0.008418599, -0.050835658, 0.0008154417, 0.005047637, 0.0018334229, 0.01338522, 0.008806066, 0.045227956, 0.014568755, 0.013265458, -0.012730049, 0.014709652, -0.0012442971, -0.0013385221, 0.00717166, 0.04686236, 0.0031596164, 0.03206817, 0.020782316, -0.013772687, 0.012265089, -0.023642525, -0.015160523, -0.0008282105, -0.0043501966, -0.002618924, -0.017922105, 0.02817941, -0.02534738, -0.0056534945, 0.052470062, 0.011116778, 0.0088272, 0.017569862, -0.01966923, 0.016597673, -0.024149755, -0.029362947, 0.010158678, -0.014906908, -0.050497506, -0.024741523, 0.018330706, -0.0009836375, 0.041564632, -0.017865747, 0.018401155, 0.019288806, 0.025615085, 0.0124412095, 0.0123989405, 0.00050326664, 0.020782316, -0.021472711, 0.039902046, 0.008552452, 0.0073759607, -0.034604315, -0.022318093, -0.004991278, -0.0028232248, -0.0011351019, 0.0013323578, 0.001990171, -0.009538731, 0.0117930835, 0.017809387, -0.021021841, 0.018866116, -0.020289175, 0.0052061463, -0.037506796, -0.039169382, -0.006858164, -0.020500522, -0.0025784161, 0.016639942, -0.024445638, -0.0038077428, -0.0116099175, 0.004501661, -0.019049281, 0.024882419, 0.011123822, -0.018119361, -0.0017312726, 0.011342213, -0.0060832305, -0.027503105, -0.0029852563, -0.0020993662, 0.014237647, 0.00012427561, 0.010179812, 0.016809018, 0.008425644, -0.0015093597, -0.011525379, 0.011624007, -0.0015225688, 0.013349996, 0.009538731, 0.015611393, 0.012265089, -0.015442317, -0.009940287, -0.0025326246, -0.016358148, 0.003850012, 0.023233924, 0.0036985476, 0.016386328, -0.016964005, 0.009771211, -0.022754874, -0.019824216, 0.009355565, -0.010489786, 0.013716328, -0.021317724, 0.0117015, 0.018358886, -0.0035382772, -0.019810125, -0.035562415, -0.009369654, 0.021951761, 0.011046329, -0.01721762, 0.016301788, -0.0033057972, 0.009954377, 0.052329168, -0.0036879804, 0.015921367, 0.010574324, -0.004219867, -0.037112284, 0.002668238, -0.0038042204, -0.0220363, -0.021148648, 0.00956691, 0.0014565233, -0.0133570405, -0.009898018, -0.008954008, -0.008489047, -0.010468652, 0.01721762, -0.0030081521, -0.0036562786, -0.012560972, 0.01775303, -0.0009219951, 0.0073759607, 0.0045897216, 0.0055407765, -0.0056394045, -0.002023634, 0.026995875, -0.014949177, 0.011299944, 0.011335168, 0.015484586, 0.0072280187, -0.018274348, 0.035562415, -0.026728172, 0.030828275, -0.0030557048, -0.0048045893, -0.009686672, 0.014019256, 0.024220204, -0.0033392601, -0.014371499, -0.00042181055, 0.020260997, -0.011292899, -0.012243954, -0.013321817, -0.010031871, -0.0062135602, 0.0034519779, 0.009094905, -0.003503053, 0.034097087, 0.00007386088, 0.023487538, 0.015216881, 0.0041494183, 0.013335906, -0.0011606395, -0.005470328, -0.022304004, 0.022332182, -0.0012671929, -0.020387804, 0.014639204, -0.013885405, 0.004322017, -0.0021046498, -0.015639573, 0.0039028483, 0.013413399, -0.0037830858, -0.0052589825, 0.0031930795, 0.010954746, 0.030771917, -0.0026629544, -0.0007071271, 0.0201201, 0.009256937, 0.028912075, 0.010827939, 0.0016520179, -0.03981751, -0.015061895, -0.018908385, 0.0036316216, -0.03012379, 0.021796774, 0.02059915, -0.007319602, 0.0024674598, 0.010067094, 0.00059396913, 0.007305512, 0.0044558696, 0.015230971, 0.025037406, 0.009890974, 0.033815295, -0.015512765, 0.009778256, -0.027066324, -0.014512396, -0.014836459, 0.01913382, 0.0006120216, -0.016837198, -0.022881681, 0.0272354, 0.014308096, -0.022881681, 0.0013807911, 0.015146433, 0.004026133, -0.015850918, 0.021824954, -0.024037037, 0.009778256, -0.017400786, 0.0026294913, -0.013286592, -0.0027245968, 0.006502399, 0.0028637326, 0.00009752718, 0.004329062, 0.010158678, -0.008277702, -0.007312557, 0.006294576, -0.0071188235, 0.021219097, 0.0044875713, 0.007552082, 0.021909492, -0.0035241875, 0.006287531, 0.0044382573, 0.015146433, -0.0018739308, -0.0015093597, 0.01530142, -0.002733403, -0.017978463, -0.008756752, 0.028094873, 0.016400417, 0.0038781913, 0.0042092996, -0.010884297, 0.011814218, 0.00067894766, 0.021881312, -0.0477641, 0.0021257843, 0.0011870577, -0.021205006, -0.013709283, 0.00933443, -0.01816163, 0.01579456, 0.0025907445, -0.0057943915, -0.045791544, -0.015583214, -0.015484586, 0.030292867, -0.005716898, 0.01768258, 0.0062699188, 0.016372237, 0.0058366605, 0.020796405, 0.0205287, -0.0021927103, -0.019415613, -0.01673857, -0.020415982, -0.00884129, 0.015681842, 0.020655507, 0.0045404076, 0.017879836, 0.011208361, -0.0017163022, 0.018358886, -0.037534975, -0.005561911, 0.0123144025, -0.01909155, 0.017499413, 0.0115958275, -0.011870577, 0.0034713512, 0.018302528, -0.027052235, -0.019655138, 0.029475663, 0.0024850718, 0.00019384353, -0.023656616, 0.017344428, 0.016569493, 0.01411084, 0.0007991505, -0.011926936, -0.008813111, -0.03249086, -0.0019725587, -0.002321279, 0.01125063, -0.018048912, 0.025600994, -0.0025555203, -0.017837567, -0.019232448, -0.024163844, 0.020993661, -0.025685534, 0.0031684225, 0.03296991, 0.0056217923, 0.0057133758, -0.0009845182, -0.009073771, -0.011856487, 0.017048543, 0.016654031, -0.020246906, -0.013441579, -0.020317355, -0.008848335, 0.016386328, -0.030631019, -0.046129696, 0.010017781, -0.0033603949, 0.0066890875, -0.000057679732, -0.0065728477, -0.008651079, -0.00012438568, 0.0066151167, -0.023487538, 0.0062663965, -0.025037406, 0.025276931, 0.004980711, -0.0050617266, -0.008108625, -0.0052413703, 0.019345166, -0.027587643, -0.020880943, 0.024107486, 0.0075309477, -0.0045967666, 0.0005732749, 0.026601363, -0.0060585733, -0.020810494, -0.021444531, -0.019486062, 0.010412293, -0.004114194, 0.021148648, 0.026220942, -0.0039063706, -0.0053082965, -0.043480832, -0.0114126615, -0.016231341, 0.0041494183, 0.0077704727, 0.011081553, 0.0035189039, -0.02441746, -0.020134188, 0.00860881, -0.020852763, -0.013103426, 0.0116944555, -0.0016995707, 0.023642525, 0.017626222, 0.027136773, 0.00053056545, -0.016048174, -0.00061158126, 0.012870946, -0.009792346, 0.004188165, -0.01721762, -0.026488647, 0.00047376635, 0.014117884, 0.022092657, -0.0077704727, 0.0123003125, -0.002974689, -0.027658092, -0.0012099535, 0.0055442993, -0.009137174, -0.010870208, 0.00065957435, -0.022050388, -0.0021856655, 0.04350901, 0.0000050910066, 0.008186119, -0.033167165, 0.0052096685, 0.015400048, 0.0068546417, 0.0052061463, -0.009905063, -0.0019866484, -0.009440103, -0.019007012, 0.0009836375, -0.0034519779, -0.007552082, 0.0036386664, -0.00815794, -0.0059282435, 0.01313865, 0.017823478, 0.017471235, 0.011292899, 0.008939918, -0.013244323, 0.024981048, -0.02251535, -0.0005244012, -0.0034343656, -0.0056534945, 0.010137543, -0.022163106, 0.038972124, -0.027996244, -0.008038177, 0.013279547, -0.01411084, -0.001164162, -0.03060284, 0.00024326757, 0.033138987, -0.0123144025, -0.006287531, -0.033336245, 0.003263528, -0.014540576, -0.012666645, -0.009602134, -0.0025872223, 0.014526486, -0.021796774, 0.0067701032, -0.0056288373, 0.023276193, -0.00070536585, -0.032744475, -0.014054481, -0.0016986901, -0.024811972, -0.04686236, -0.004610856, -0.006428428, 0.00077097106, -0.021571338, 0.038352177, 0.0022349795, 0.009588044, 0.0011412661, -0.00908786, -0.014251737, 0.019584691, -0.023248013, 0.00013143053, -0.0109899705, -0.009630314, 0.008214299, -0.0128920805, -0.022585798, -0.006195948, -0.010672952, 0.021134557, -0.017330337, 0.003867624, -0.038493074, 0.001094594, 0.0006767462, 0.018598411, -0.023600256, 0.03249086, -0.0075802617, 0.026347749, -0.022233555, 0.0114972, 0.0026048343, 0.023388911, -0.032857195, 0.01219464, -0.02729176, 0.01771076, 0.015230971, -0.014963267, 0.0027880005, -0.0047270963, 0.011321078, -0.009179443, 0.0186125, -0.017288068, -0.016654031, -0.0056358823, 0.037675872, 0.01966923, 0.007700024, -0.04593244, 0.023896141, -0.03203999, -0.01527324, -0.000105342566, 0.0068863435, -0.030771917, 0.039028484, -0.0097853, -0.001949663, -0.016076354, 0.0036386664, -0.019739678, -0.01675266, 0.018739307, 0.020669598, -0.020866854, -0.0121875955, -0.023304373, 0.015047805, -0.008277702, -0.016118623, -0.0028285084, -0.0025643264, -0.0018404678, 0.020810494, 0.020472342, -0.0007344259, -0.019908754, -0.0055407765, 0.0026805664, 0.0015058373, 0.010842028, -0.027869437, -0.011081553, 0.009461237, -0.009278071, 0.01772485, -0.011123822, -0.010165722, 0.028080784, 0.0036245766, 0.005361133, 0.01480828, -0.016555404, 0.012222819, -0.017922105, -0.020035561, -0.009919153, 0.007749338, 0.002139874, 0.025220573, -0.004255091, 0.0044981386, -0.014850549, 0.0025660875, -0.010348889, 0.0065094437, 0.00010545264, 0.0024269517, 0.007749338, 0.017330337, 0.07901507, -0.010933612, 0.0026523871, 0.0009175921, -0.016344057, 0.008002953, 0.010503875, 0.024065217, 0.028292129, 0.007742293, 0.009693718, 0.011504244, -0.004882083, 0.024121575, 0.007030763, -0.007509813, 0.0120185185, 0.006495354, 0.009947332, 0.0036421889, -0.008538362, -0.00098716, -0.001788512, 0.0027985678, 0.009165353, 0.0007370677, 0.008179074, -0.0071188235, 0.01385018, -0.0029042405, -0.0048362915, -0.0048116343, -0.03201181, -0.014117884, -0.015484586, 0.0075239027, -0.016104532, 0.0033568724, -0.012250999, 0.0076295757, 0.01528733, -0.00031151457, 0.009235802, 0.00031195488, 0.017062632, 0.00050546817, 0.012870946, -0.0076718447, -0.019993292, 0.0019267672, -0.0041458956, -0.013230233, 0.014596934, -0.008686303, -0.01527324, -0.0036245766, 0.003437888, -0.01868295, 0.0013772687, -0.002039485, 0.01383609, -0.0010514442, 0.0027281193, -0.017189441, -0.023557987, -0.008834246, -0.025516456, -0.010701131, 0.0039451174, -0.013364086, 0.0047764103, -0.013526117, 0.012913215, -0.01383609, 0.0007595232, -0.019232448, -0.024910599, 0.026375929, 0.0005847228, 0.0029359423, -0.016231341, 0.011645141, -0.016344057, 0.0025590428, -0.011631052, -0.0021222618, -0.0012548644, 0.018739307, 0.0116521865, 0.011856487, 0.000844942, 0.010567279, 0.024882419, -0.012335537, -0.028306218, -0.032237247, 0.016541313, -0.0011562364, 0.007946594, 0.0013165069, 0.024938779, 0.0063051432, 0.016527224, -0.009468282, 0.033730756, 0.010905432, -0.007587306, -0.005128653, -0.006643296, -0.019697407, -0.0004953412, -0.008404509, -0.023064848, -0.006280486, 0.00041102312, -0.0056534945, -0.0125539275, -0.004748231, 0.002560804, -0.011377437, 0.009207622, 0.004698917, 0.033420783, 0.0006943583, 0.0061818585, -0.014258781, -0.015174612, 0.0042339563, 0.026981786, -0.007826831, 0.008672214, -0.001801721, 0.016189072, -0.009961422, 0.0054808953, 0.007960684, -0.018781578, -0.00052748335, 0.015216881, -0.0033973802, 0.0045368853, -0.0030997351, 0.009130129, -0.0015639573, 0.010870208, 0.0020588583, 0.00045175117, -0.008721528, 0.008918784, -0.015160523, -0.010602503, -0.0034695899, 0.0015894949, 0.008024087, -0.00074191106, 0.02767218, 0.02151498, -0.0032089304, -0.0058331382, 0.017288068, 0.009679628, -0.021740416, 0.020669598, 0.0057486, 0.0014802996, -0.023093028, 0.012321447, 0.0045404076, -0.003478396, -0.0070518977, -0.014441948, 0.0064108158, 0.0117015, -0.0166963, -0.004846859, 0.021430442, -0.009503506, 0.0157382, -0.00094136846, -0.0011896995, -0.008679259, 0.009108994, 0.0033850516, -0.0024234294, -0.009982556, 0.015555034, -0.00036831372, -0.01267369, 0.00045175117, -0.007953639, 0.03206817, 0.019021103, -0.0025801773, 0.010616593, 0.008305881, -0.002858449, -0.0001675354, -0.0049349195, -0.015907278, 0.010010736, 0.0037971756, 0.012645511, -0.009059681, 0.0005406924, 0.010623638, 0.016907647, 0.011159047, -0.0001251562, 0.0032089304, 0.019021103, -0.032209065, -0.00029852564, -0.013349996, 0.0121875955, -0.021402262, 0.016456775, -0.014244692, 0.0047623203, -0.008242478, 0.00586484, -0.009912108, -0.00910195, -0.018767487, -0.019162, 0.006773626, 0.009172399, 0.00394864, -0.003594636, 0.015822738, -0.039789326, -0.010341844, -0.003453739, 0.018415244, -0.033843473, 0.0050088903, -0.004082492, -0.0020958437, -0.017316248, 0.013519072, 0.0011844159, -0.015611393, 0.004512228, 0.007862056, -0.01919018, 0.0016132713, 0.0052026235, -0.019246537, -0.0066996547, -0.015160523, -0.00003087627, -0.030349225, -0.0029236139, -0.0014450754, -0.0034907246, 0.010236171, -0.0021169782, -0.0022261734, 0.01864068, -0.0036738906, 0.004336107, 0.008918784, -0.0026048343, -0.007347781, 0.00884129, 0.0019214835, 0.00076524715, -0.0066468185, -0.016048174, -0.004445302, 0.018499782, 0.0027932841, -0.005033547, 0.0021962328, 0.0057345103, 0.013843136, -0.01363179, 0.011616962, -0.009397834, -0.0076788897, 0.0040049986, 0.0037055926, -0.02913751, 0.018274348, -0.022839412, 0.0036210543, -0.010750446, 0.020246906, 0.016189072, 0.0008995396, 0.007643665, 0.016639942, -0.017626222, -0.01123654, -0.008946963, -0.00044690786, 0.006551713, -0.0018580799, -0.009559865, -0.0034713512, 0.0020711867, 0.0047235736, 0.023177566, 0.0069603147, 0.016964005, -0.0065305782, -0.029334767, 0.021979941, 0.0136177, 0.007319602, -0.027827168, -0.0132584125, 0.008651079, -0.015047805, 0.004794022, -0.009665538, 0.024121575, -0.0127934525, 0.007058942, -0.027108593, -0.007826831, 0.0003273655, 0.017133081, 0.021331813, 0.004170553, 0.0013887166, -0.011884667, 0.00526955, 0.008474958, 0.004980711, 0.011616962, 0.011067464, 0.021768594, -0.0006023349, 0.011814218, -0.019316986, -0.009968466, -0.02771445, 0.008489047, -0.010679997, -0.01911973, 0.034322523, 0.00003668277, -0.020655507, -0.029813817, 0.02110638, 0.008820156, 0.021444531, -0.0054456713, -0.008996277, -0.0031789897, -0.027855348, 0.021810863, -0.017076723, 0.0058613173, 0.016470866, 0.023670705, 0.0110885985, 0.0110885985, -0.0050511593, 0.007840921, -0.004360764, 0.018527962, -0.01029253, 0.014836459, 0.01315274, -0.005963468, -0.013504983, 0.00812976, 0.0038817138, 0.017133081, -0.009376699, 0.012384851, -0.0071188235, 0.010820894, -0.010067094, 0.008087491, 0.018316617, 0.007812741, -0.0026277301, -0.015019626, -0.022656247, 0.022360362, 0.023304373, 0.017076723, -0.021303635, -0.008115671, -0.0015463452, -0.00038218327, -0.011159047, 0.014991446, 0.00038174295, 0.003825355, 0.0316173, 0.0077704727, 0.00026308122, 0.020204637, -0.009271027, 0.010334799, 0.0020007382, -0.007812741, 0.0069849715, -0.017541682, 0.021148648, 0.0118917115, 0.006188903, -0.006541146, 0.011884667, 0.003652756, 0.011109733, -0.0126102865, 0.003097974, -0.0019567078, -0.01775303, -0.009982556, 0.025305111, -0.016005905, 0.015879098, 0.020768225, -0.008031132, 0.002280771, -0.0013349996, -0.020683687, -0.0123284925, -0.008045222, 0.0030944515, 0.0113140335, 0.00634389, -0.0026330138, -0.0008145611, -0.02251535, 0.0050088903, 0.0035928749, 0.009080815, 0.0078691, -0.007189272, -0.019443793, 0.032885373, -0.016400417, 0.00740414, 0.01818981, 0.011722635, -0.03482975, -0.028094873, 0.017471235, 0.001801721, 0.007862056, 0.000031729356, 0.016949916, -0.001826378, 0.0025079676, 0.009207622, -0.013948808, -0.0069391797, 0.005121608, -0.035590596, 0.0224449, -0.004177598, 0.0037901308, -0.0056816735, -0.016597673, -0.010919522, 0.015188702, -0.0051180855, 0.0058859745, -0.02105002, -0.017936194, -0.0001830561, -0.000991563, -0.0033110809, 0.014526486, 0.008707438, 0.0020465297, -0.014470127, -0.0126525555, -0.0120889675, -0.015428227, -0.015540945, -0.017922105, 0.0002122262, -0.012624376, -0.033702575, -0.001998977, 0.034745213, -0.008587675, 0.006252307, 0.011616962, -0.0025502366, 0.009750077, -0.011870577, -0.01823208, 0.03209635, 0.015259151, -0.03102553, 0.007876146, -0.0046214233, 0.0033269317, 0.012546883, 0.023783423, -0.016851287, 0.009010366, 0.00013484288, 0.008954008, -0.0061994703, 0.020289175, -0.004984233, 0.0034960082, 0.032857195, 0.019471973, -0.016076354, 0.03350532, -0.007700024, 0.015385958, -0.0008546287, -0.013589521, 0.008334061, -0.0013508504, -0.009728941, -0.005089906, 0.008460868, -0.016470866, 0.0064002485, 0.014864639, 0.0023019055, -0.0038535343, -0.011856487, -0.0033427826, -0.010010736, 0.013342951, 0.02103593, 0.0004334786, 0.0009079054, 0.011264719, 0.015019626, -0.010884297, -0.003031048, -0.010595459, 0.014498306, 0.007104734, -0.018246168, 0.012152371, 0.023797512, 0.016639942, 0.0049278745, -0.0032335874, 0.001578047, 0.016597673, 0.007840921, -0.027108593, -0.010785669, 0.0032652891, 0.022684425, -0.0052906843, -0.0005886855, 0.0021698147, -0.031983633, -0.007594351, 0.0135402065, -0.0018827369, 0.005956423, -0.01823208, -0.010391158, 0.03502701, -0.0009933242, -0.007911369, -0.020852763, -0.0069356575, -0.014322186, 0.022712605, -0.0066468185, -0.012384851, -0.0016757944, 0.019457882, -0.008024087, 0.013984033, -0.01268778, 0.020866854, -0.0007388289, -0.0123144025, -0.0041036266, -0.013709283, 0.008862425, 0.0118494425, -0.009221712, -0.021754505, -0.0028690163, -0.0063896812, 0.010384113, -0.009735987, 0.0031596164, 0.0041599856, 0.002858449, -0.010496831, -0.0048609483, -0.01914791, 0.008658124, 0.01676675, 0.0056957635, -0.023177566, -0.0008061953, 0.00084802415, -0.007210407, 0.010053005, -0.0029694054, 0.008975143, 0.014695562, -0.0055724783, 0.019176088, -0.009235802, -0.013124561, 0.0117367245, -0.0035963973, 0.0028478818, 0.019936932, -0.0015886143, 0.007862056, -0.01004596, 0.0057133758, 0.029052973, 0.0034995305, 0.016583582, -0.0005059085, 0.0007762547, -0.0007238586, -0.030490123, 0.024516087, -0.003453739, 0.0043854206, 0.003931028, 0.006766581, 0.00094136846, 0.0027897616, 0.026235031, 0.018006643, -0.005294207, 0.025305111, -0.003245916, 0.0052096685, 0.020923212, 0.012849811, 0.024783792, 0.002132829, -0.0056147478, 0.002180382, 0.0030609886, -0.004702439, -0.007862056, -0.00028883896, 0.008651079, 0.016780838, -0.01816163, 0.019204268, -0.009299206, -0.0006556116, 0.004322017, -0.030940993, 0.004751753, -0.025600994, -0.017288068, 0.000733105, -0.003980342, 0.022430811, -0.018852025, -0.00034585825, -0.005213191, -0.013955853, -0.011180181, -0.008714483, 0.0011016389, -0.022571707, -0.0057873465, 0.018570231, 0.007946594, 0.015935456, -0.006484787, 0.006858164, -0.013730418, 0.014766011, -0.0124693895, 0.008665169, -0.023064848, -0.0018369453, -0.0041494183, 0.003510098, -0.009700762, -0.000005293959, -0.018020732, 0.0058930195, -0.0071857497, -0.0050758165, 0.0024885943, -0.0015208076, 0.017908016, -0.0074323197, -0.0019021102, 0.022289913, 0.008559496, 0.004329062, -0.003659801, -0.013906539, 0.011278809, 0.004047268, 0.0072914227, 0.008073402, 0.00407897, -0.023064848, 0.015019626, -0.0054491935, -0.011863532, 0.013378175, 0.006238217, 0.014117884, 0.011440841, -0.010799759, -0.011363347, -0.0126948245, -0.0060832305, 0.0016141519, 0.0029200914, 0.00836224, 0.013490893, 0.0039451174, 0.0020782317, -0.0008515466, -0.00834815, 0.0054985075, -0.00956691, 0.005931766, 0.02154316, -0.003272334, 0.00065693253, 0.0048257243, 0.004417123, -0.009757121, -0.0022754874, 0.01865477, -0.0061677685, 0.0027985678, 0.007911369, -0.030292867, -0.017527593, -0.001011817, 0.016442686, -0.0024428028, 0.020303266, 0.013800867, 0.009172399, 0.025488278, 0.0015111209, 0.0009933242, 0.007700024, 0.0073830057, -0.009433058, -0.001636167, 0.010778625, -0.00027342833, 0.022261735, 0.0031014965, -0.014892818, 0.019471973, 0.039310277, -0.023600256, -0.0047764103, 0.003238871, 0.009869839, 0.0054386263, 0.010348889, -0.0128779905, -0.010207991, 0.020345535, -0.008108625, 0.007728203, -0.0024568923, 0.0043995106, 0.014611024, -0.0065658027, 0.009242847, 0.017316248, 0.00089997996, 0.013561342, -0.017626222, -0.002271965, 0.016949916, 0.0000585053, -0.0051991013, -0.00268585, 0.0035136202, -0.016076354, 0.0020024993, 0.007048375, 0.010236171, 0.021500891, -0.02777081, -0.0011254152, 0.004832769, 0.0006833507, -0.00050326664, 0.0007907847, -0.0011412661, -0.018006643, -0.0056816735, 0.01909155, 0.0032001243, 0.027052235, -0.014371499, 0.002766866, 0.015090074, -0.03299809, 0.027629912, 0.001197625, 0.012222819, -0.0071258685, -0.008651079, -0.028024424, 0.0018087659, 0.00058428245, -0.0022332184, 0.0035470834, 0.0130329775, -0.007946594, 0.0316173, -0.014709652, 0.009461237, 0.0077704727, -0.0115112895, 0.0032441546, 0.0012742378, 0.0033286929, 0.01673857, -0.012391896, -0.00066353707, -0.008256568, -0.005195579, 0.023290282, 0.0014336276, -0.0067384015, -0.014301051, 0.013920629, -0.0072280187, -0.0010012496, -0.017626222, 0.046157874, -0.026643634, 0.011116778, 0.011321078, 0.0069955387, -0.009778256, -0.020035561, 0.01579456, -0.0029676443, -0.026122313, 0.0040578353, 0.0038288774, 0.0051744445, -0.012377806, 0.00045307208, 0.013244323, 0.023262104, -0.016949916, 0.00014463963, 0.0048715156, -0.000004409913, 0.006667953, 0.018894294, 0.0020940825, 0.027911706, -0.01675266, 0.020951392, -0.0044805263, -0.009728941, 0.025896879, 0.00047552754, -0.020852763, -0.004121239, 0.01818981, 0.009454193, -0.00765071, -0.008552452, 0.001656421, -0.016710391, 0.016470866, -0.0048856055, 0.0010778625, -0.003460784, -0.020796405, 0.0070871217, -0.01966923, 0.0020306788, -0.0070906444, 0.010222081, 0.0045897216, 0.012250999, -0.003561173, 0.010207991, -0.02296622, -0.010736356, -0.010412293, 0.0070448527, -0.010778625, -0.0037337719, -0.008700393, 0.014392634, -0.0058260933, 0.016654031, -0.019810125, 0.0024269517, 0.016414506, -0.011786039, -0.029926535, 0.019401524, 0.00017039737, -0.0037091149, 0.013751552, 0.0117789935, 0.009108994, 0.004124761, 0.013068202, -0.022797143, 0.0017092574, -0.00005247865, 0.007784562, -0.0119339805, 0.010842028, 0.017034454, -0.011342213, -0.0042163446, -0.010842028, -0.0157382, -0.008975143, 0.016358148, -0.021345904, 0.018880205, 0.010834984, -0.004846859, 0.022881681, -0.012525748, -0.0060761855, 0.009940287, 0.009362609, 0.0058260933, 0.002328324, -0.014723742, 0.005815526, 0.0126384655, 0.021162737, 0.021909492, 0.01218055, 0.002950032, -0.007319602, 0.01583683, -0.018443424, 0.010003691, -0.020796405, 0.015977725, -0.009010366, -0.019035192, -0.0065798922, -0.012525748, 0.01673857, 0.0044805263, 0.011602872, 0.0061078873, 0.019246537, -0.0047905, -0.00037733992, -0.009524641, -0.002131068, 0.014512396, 0.007319602, -0.015865007, 0.018358886, 0.005227281, 0.0034995305, -0.006231172, -0.004515751, 0.00066661916, 0.0032423935, 0.0022244123, 0.0066468185, -0.020162368, 0.0055442993, -0.015611393, -0.0034466942, -0.018401155, 0.009679628, 0.0052096685, 0.01818981, 0.0112294955, -0.00933443, 0.008066356, 0.0022684427, 0.00561827, -0.011546514, 0.0049630986, -0.020035561, 0.027179042, 0.0011835352, 0.015005536, -0.00061290216, 0.021853132, -0.002809135, -0.017428966, 0.017837567, -0.01772485, 0.004015566, -0.020993661, -0.007946594, -0.0030697945, -0.013998122, 0.00026704394, -0.006759536, -0.011398572, 0.002851404, 0.010975881, 0.0058965418, 0.01813345, 0.0065235337, 0.030800097, -0.0017964374, -0.0013755074, -0.004230434, -0.022177197, 0.019443793, 0.013455668, 0.009123084, 0.0013305965, 0.0052977293, 0.0011844159, -0.011349258, 0.002180382, -0.013723373, 0.009665538, -0.015583214, 0.029532023, -0.022360362, 0.013702239, -0.008002953, 0.016921736, -0.021923581, 0.005368178, -0.0028390756, -0.047707744, -0.01676675, 0.00981348, -0.004698917, -0.007643665, 0.0002950032, 0.01364588, 0.0067947605, -0.015160523, 0.015202792, -0.024206113, -0.008460868, -0.008601765, -0.0014820609, -0.015104164, -0.010405247, 0.0031120637, -0.00029764502, -0.0031420044, 0.014216512, 0.022374453, -0.00022290355, 0.005611225, 0.0074323197, -0.0008334941, 0.013504983, 0.015752291, -0.003874669, -0.0031543327, 0.019951023, -0.0068616867, -0.008235433, -0.0028531654, 0.015442317, -0.003892281, 0.014878729, 0.010834984, -0.01172968, 0.01101815, -0.0017207053, -0.009299206, -0.011490155, -0.010884297, -0.0059106313, -0.014611024, -0.014582845, 0.020951392, -0.016879467, 0.014033346, -0.024558356, 0.01673857, -0.029362947, 0.010144588, 0.019655138, 0.004603811, -0.007108256, -0.023614347, -0.0065552355, 0.01578047, 0.0023811602, 0.010672952, -0.004808112, -0.010489786, 0.014780101, -0.0113281235, -0.0029130466, 0.0014459561, 0.006636251, 0.0019796037, 0.0029641218, -0.001260148, -0.020768225, 0.018978832, 0.0065305782, -0.033223525, 0.0076577547, 0.00152433, 0.0003907692, -0.0119903395, 0.00010259067, -0.0012812826, -0.003677413, -0.011560603, -0.0132161435, -0.019655138, 0.009461237, 0.0041071493, -0.00910195, -0.008496093, -0.004508706, 0.0060198265, -0.007319602, -0.024375191, 0.0017004514, 0.0076577547, 0.007249153, -0.0031754673, -0.0008264493, -0.0008669572, 0.0056781513, 0.016372237, -0.0006661789, -0.01818981, 0.00028025304, 0.031730015, -0.0116662765, -0.013244323, 0.014209468, 0.033561677, -0.014406724, 0.007988863, 0.013991077, -0.0051533096, 0.00836224, -0.010398203, -0.0072843777, 0.003980342, 0.00431145, 0.0072350637, 0.013892449, 0.02004965, -0.01919018, -0.014582845, -0.009898018, 0.009123084, -0.009616224, -0.013955853, 0.0032617669, -0.005403402, -0.022754874, 0.023853872, -0.019584691, -0.025305111, 0.015329599, 0.018105272, -0.015033715, 0.005900064, -0.0043924656, -0.010546144, 0.008876515, 0.0041599856, 0.00072033616, 0.0002839956, 0.0072280187, -0.011983294, 0.012913215, 0.019486062, -0.0004539527, -0.017640311, -0.011264719, -0.01966923, -0.0065376232, 0.016569493, -0.0262773, -0.0125539275, 0.0047235736, -0.0029465097, 0.0009396072, 0.024037037, 0.00073794834, 0.014441948, -0.019556511, -0.02344527, 0.008059312, -0.011278809, -0.002328324, 0.028883897, 0.014061526, 0.0012504613, -0.020486431, -0.005907109, 0.010532055, -0.0201201, -0.0037830858, 0.004617901, -0.004462914, -0.02771445, -0.024981048, 0.008327016, 0.007509813, 0.008545406, 0.0008180835, 0.010510921, 0.009193533, -0.003842967, 0.0012134758, -0.0064566075, 0.0012011473, 0.0017330338, -0.013878359, 0.014554665, 0.019246537, 0.023050757, 0.0024251905, 0.007890235, 0.022571707, 0.0053576105, -0.008954008, -0.018429335, 0.007643665, -0.009489416, 0.02004965, 0.018330706, -0.012405986, -0.00538579, -0.005533732, -0.010616593, -0.002636536, -0.0124975685, 0.00036699278, 0.018795667, -0.009862794, 0.013758597, 0.009130129, -0.003931028, 0.006139589, 0.002999346, 0.013110471, -0.033195347, 0.01316683, -0.014892818, -0.0022895772, -0.013483848, -0.0036950253, 0.012849811, 0.036182363, 0.037168644, -0.013512027, -0.015202792, -0.010997015, -0.024079306, -0.008052266, 0.005410447, 0.013948808, -0.001280402, 0.011201316, -0.007735248, 0.006717267, -0.00033264913, -0.0030786006, -0.029503843, 0.012067833, -0.012152371, -0.022895772, -0.009573955, -0.021345904, 0.043480832, -0.007495723, -0.014991446, 0.025276931, -0.0009757121, 0.007918415, 0.0012971335, -0.01673857, 0.014540576, -0.015681842, -0.025572816, -0.005089906, 0.005551344, -0.022543529, -0.0042973603, -0.020162368, 0.0074675437, -0.00407897, -0.0016440925, -0.00036765327, -0.0130752465, 0.008503137, -0.01528733, -0.017612131, 0.0020042607, -0.015118254, 0.008334061, -0.0004676021, 0.004501661, -0.037619513, 0.017541682, -0.0073900507, 0.007545037, -0.025305111, -0.0038464896, -0.0110322395, -0.003413231, -0.0039098933, -0.0201201, 0.0069849715, -0.014005167, -0.004286793, 0.0038887586, -0.020317355, -0.026530916, -0.007960684, 0.00149527, 0.0032829014, 0.008707438, 0.0127934525, 0.003006391, -0.019711498, 0.0125821065, 0.002372354, -0.0035963973, -0.02391023, -0.025727803, 0.0053646555, -0.0024850718, -0.008066356, 0.009433058, -0.0013869554, -0.019457882, -0.024051128, 0.011053374, -0.045256134, 0.008045222, -0.003272334, 0.008094536, 0.0043396293, 0.0035893524, 0.0014045675, 0.0021979942, 0.013476803, 0.001777064, 0.019810125, 0.0032054079, -0.0028672551, -0.0124271205, -0.01768258, -0.0030803618, 0.01961287, 0.00060057366, -0.014977356, 0.009292161, -0.004949009, -0.004656648, -0.017640311, -0.014230602, 0.0034766349, -0.0034220372, 0.005533732, 0.004071925, 0.0061254995, -0.01720353, -0.0058613173, -0.0112294955, -0.025403738, 0.015315509, 0.016964005, -0.015850918, 0.025530547, 0.0007881429, -0.00063095463, 0.006195948, -0.010863163, -0.013462714, 0.003312842, 0.020430073, -0.001358776, -0.030321047, 0.0030046296, -0.01052501, -0.021500891, 0.00051427423, -0.016358148, 0.0008638751, -0.017133081, 0.023417091, 0.028475294, -0.009764166, 0.005699286, 0.0109899705, -0.0064002485, -0.005287162, 0.0036915028, 0.0032441546, -0.002345936, -0.025291022, 0.020458253, -0.0048292466, -0.00044668769, 0.025741892, -0.009792346, -0.0009316818, -0.004029656, -0.0012944917, -0.00836224, -0.009968466, 0.0040930593, 0.000015328058, 0.009848704, -0.018415244, 0.01675266, -0.018260257, 0.024135666, -0.00031547731, -0.031899095, -0.008763797, 0.013927674, -0.012856856, -0.0060163043, 0.017978463, 0.0073407367, 0.0064671747, -0.035280623, -0.015188702, 0.018246168, 0.018372975, 0.020782316, -0.011321078, 0.021881312, -0.009623269, 0.022318093, 0.028616192, -0.0043325843, -0.028376667, -0.0077211587, 0.0020747092, -0.0062699188, 0.013589521, -0.0019866484, -0.0006437234, 0.0029060016, -0.007164615, 0.007876146, 0.008256568, 0.008439734, 0.006386159, -0.009778256, -0.020458253, 0.019331075, 0.007946594, -0.007988863, 0.0018933042, -0.019021103, 0.0007507171, -0.0023089505, 0.005185012, -0.000053937154, 0.025474187, 0.007995908, -0.009031502, 0.004096582, 0.015710022, 0.0053963573, -0.014131974, 0.018894294, -0.004941964, -0.006121977, 0.0017127799, 0.019514242, 0.008115671, -0.00956691
|
|
2099
|
+
]
|
|
2100
|
+
}
|
|
2101
|
+
],
|
|
2102
|
+
"sources": [
|
|
2103
|
+
{
|
|
2104
|
+
"name": "source-uranium-glass-garden-77d2bea40f9d5065b9ff"
|
|
2105
|
+
}
|
|
2106
|
+
],
|
|
2107
|
+
"preparationIds": [
|
|
2108
|
+
1
|
|
2109
|
+
]
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"name": "dual-purpose-garden-gnomes-decor-protection",
|
|
2113
|
+
"title": "Dual-Purpose Garden Gnomes: Decor & Protection",
|
|
2114
|
+
"content": "These garden gnomes serve a dual purpose: they are decorative items and also function as a deterrent for birds and snakes in outdoor spaces.",
|
|
2115
|
+
"keywords": [
|
|
2116
|
+
"Dual-Purpose Garden Gnomes: Decor & Protection"
|
|
2117
|
+
],
|
|
2118
|
+
"index": [
|
|
2119
|
+
{
|
|
2120
|
+
"modelName": "text-embedding-3-large",
|
|
2121
|
+
"position": [
|
|
2122
|
+
-0.0014632542, -0.013844327, -0.020137204, -0.046926875, 0.008180738, -0.017170561, -0.013934226, -0.033955846, -0.038168218, -0.018339239, -0.04217511, 0.02519719, -0.010479565, -0.03028286, -0.00063089293, 0.041070648, 0.002934535, -0.0039523114, 0.00047116305, 0.008514646, 0.018133758, -0.019751925, -0.014126864, -0.037859995, -0.0022265865, 0.006540096, 0.02481191, -0.018698832, 0.009606268, 0.0055223196, -0.029204082, -0.024824753, 0.018120915, 0.015655134, -0.04363917, -0.02776571, 0.01543681, -0.009651217, -0.03297981, 0.008026628, -0.022281919, -0.031669863, -0.0035349268, 0.010550199, -0.010511671, 0.029383877, 0.0019312066, -0.046670023, 0.021999381, 0.0075578727, 0.04320252, -0.00027611598, 0.0016679332, 0.026263125, 0.0037725149, -0.0035285056, 0.012913238, 0.038425073, 0.030257175, 0.027894136, -0.015899144, 0.01562945, -0.040839482, -0.01795396, 0.0014295423, 0.006219031, -0.00072440313, -0.031490065, 0.01514143, -0.018236497, -0.021819584, 0.03156712, -0.03408427, -0.030899305, -0.022333289, -0.006174082, -0.008020206, -0.004665076, -0.010819894, -0.007506502, 0.023604706, 0.035496958, 0.019353805, 0.019456545, 0.061028056, 0.028870175, -0.007859673, -0.03238905, 0.0003246771, -0.040582627, -0.010434615, 0.02224339, 0.021344408, -0.0018140178, 0.0044210665, 0.0069028996, -0.0072175437, 0.018467665, 0.021704001, 0.028073933, -0.025466884, -0.023309326, -0.08137074, -0.01863462, -0.026661245, 0.026173227, -0.01242522, 0.029820526, 0.0101585, -0.035342846, -0.016862338, -0.026301652, 0.012816919, 0.025120134, -0.059589684, 0.00710196, -0.027996877, -0.032594528, -0.024683485, 0.0140369665, -0.016759599, -0.022012223, -0.013433364, 0.0065561496, -0.012020677, -0.035830867, -0.03161849, -0.026635561, 0.0048577148, 0.00025303944, -0.027688654, -0.0046040737, 0.039966185, 0.02505592, 0.0109162135, 0.027791396, 0.020971972, 0.019520758, -0.0013982385, -0.000106754145, -0.038861718, -0.048313875, -0.0027740025, -0.013972754, -0.023951456, -0.021344408, -0.020843547, 0.013433364, -0.018429136, 0.009253096, -0.026686931, -0.014126864, 0.0017273303, -0.021819584, -0.011526237, 0.00927236, -0.021357251, 0.0016221814, -0.026584191, -0.011115273, -0.037012383, 0.0033005492, -0.023360698, 0.023013946, -0.019995935, 0.009625532, 0.008604545, 0.018570406, -0.021639789, 0.021588417, 0.047569007, -0.006430934, -0.038630553, 0.058562275, -0.0021720054, -0.01898137, 0.027508859, -0.039247, 0.008566017, 0.0052590463, -0.020419741, 0.034495234, -0.0077954605, -0.011763825, -0.03847644, 0.024799068, 0.01637432, 0.0043857493, 0.00956774, 0.02125451, -0.0043440107, -0.030000323, 0.0067102606, -0.047954284, -0.008643072, -0.007044168, -0.040839482, 0.031181842, -0.007442289, -0.027508859, 0.011140959, -0.011352862, 0.042354908, -0.02974347, 0.005429211, 0.012438062, -0.009574161, 0.016849497, 0.00892561, -0.016284421, 0.01972624, -0.048159767, -0.04615632, -0.007975257, 0.0044563836, -0.0022619036, 0.03955522, 0.0033904475, 0.026995154, 0.010466722, 0.0048930324, 0.006100237, -0.0060841837, 0.019957406, -0.020496797, -0.0117959315, -0.017645737, 0.046747077, -0.0061772927, 0.00033531236, -0.043716226, 0.013189354, 0.0114491815, -0.0022651143, 0.009452157, 0.036729846, 0.010241977, -0.0173632, -0.014666254, 0.0008893503, -0.032337677, 0.0047806595, -0.036652792, 0.032003768, -0.007724826, 0.0023598284, 0.02450369, -0.026173227, -0.036370255, -0.0027756079, -0.008720128, 0.008206424, -0.030308546, -0.014679097, 0.027508859, -0.004665076, 0.0032379415, 0.041532982, 0.0026375498, 0.017530154, -0.0022378238, 0.051473156, 0.011063904, 0.04523165, -0.014280976, -0.028972914, -0.027149266, -0.017440256, -0.041250445, 0.03146438, 0.0016157601, 0.017427413, -0.0071918583, 0.029024284, -0.01927675, 0.015411125, 0.007012062, -0.0012128234, 0.06277465, 0.015847774, 0.00071316585, -0.037834313, 0.0052108867, 0.018364923, 0.008585281, -0.006626784, -0.0058273314, 0.011070325, -0.014910263, -0.013947068, -0.0056443247, 0.07530903, 0.028844489, -0.032774325, 0.058562275, -0.0076028216, 0.013189354, 0.024657799, -0.040916536, -0.015244171, 0.006228663, -0.0100750225, 0.00018581643, -0.012296793, -0.011673927, -0.007230386, -0.029615045, 0.01913548, -0.061182167, 0.0319524, 0.009105407, 0.00995944, -0.063339725, 0.0013187749, -0.050265953, 0.0033101812, 0.014191077, -0.03071951, -0.013080192, 0.05011184, -0.0333394, -0.004639391, -0.014897421, 0.010466722, 0.0077119838, 0.015526708, -0.011718877, -0.023168057, 0.010171343, -0.017247617, -0.009054036, -0.029229768, -0.01144276, -0.025980588, -0.044409726, -0.006247927, -0.03788568, 0.0010362376, 0.03146438, -0.018133758, 0.001968129, -0.032337677, 0.01913548, 0.021999381, -0.0042091636, -0.027740024, -0.028664691, 0.038938776, 0.007853253, 0.009490685, 0.00054300134, -0.017825535, -0.024285365, -0.009336573, 0.0026391551, 0.0017883326, -0.012161946, -0.007763354, 0.025775107, 0.041199073, 0.0021559522, -0.02643008, 0.045154598, -0.009946597, -0.026789673, 0.05424716, -0.0038238855, 0.034700718, 0.031156158, -0.014306661, -0.0037853576, -0.057688978, -0.0079881, -0.029460933, 0.019546444, 0.0063731424, 0.0534766, 0.0039491006, 0.02653282, -0.002623102, 0.016489904, -0.011192329, 0.026275968, -0.030205805, -0.007423025, 0.03488051, -0.008084419, 0.0050856713, -0.03811685, 0.01672107, -0.019019896, 0.0034386073, 0.0021077923, -0.0034610818, 0.028844489, -0.031875342, 0.0267383, -0.019366646, -0.045154598, -0.007570715, 0.010774945, 0.0347264, 0.0038752558, 0.05006047, -0.018043859, 0.009779643, -0.027662968, -0.05429853, -0.002460964, 0.0005630679, -0.012926081, -0.034238383, -0.017928274, 0.022127807, -0.0037243553, 0.0383737, 0.01455067, 0.036550052, 0.017838378, -0.048211135, -0.0032973385, 0.003412922, -0.008013785, 0.0042348485, -0.0061965566, -0.0107428385, -0.011057482, 0.01030619, 0.0147304665, -0.036318883, 0.0049893516, -0.01257291, 0.01795396, 0.011969307, -0.004067895, -0.00090781157, 0.0038110428, 0.026378708, 0.0010145657, -0.019995935, -0.0054966346, -0.023283642, -0.02085639, -0.006735946, 0.015513865, -0.015115745, 0.029229768, -0.048057023, 0.025531096, 0.014216763, 0.0017787006, -0.034931883, -0.024105567, 0.0014953607, -0.007673456, -0.0020532112, 0.012746285, -0.02377166, 0.011551922, -0.0059300726, 0.0010322243, 0.024246836, -0.025261402, -0.02578795, 0.02130588, -0.021626946, 0.005397104, 0.01420392, 0.009407207, 0.01918685, 0.009041193, 0.025954902, -0.049546767, 0.020047305, 0.002998748, -0.0085018035, -0.03308255, -0.016541274, -0.015321227, 0.023335012, -0.03752609, -0.0020483953, 0.00015451259, -0.004398592, 0.0009471421, -0.011776668, 0.0097668, -0.033647623, 0.0196235, -0.017774165, 0.016746756, -0.00932373, -0.023026789, -0.024927495, 0.00942005, 0.035188735, -0.023707448, -0.0009286808, -0.018878628, 0.034495234, -0.0014809128, -0.044178557, 0.009362258, 0.04158435, 0.037346292, -0.004074316, 0.012547224, 0.015693663, 0.026841043, 0.0057888036, -0.016952237, -0.022012223, -0.004886611, -0.007384497, 0.024786226, -0.006045656, -0.005339313, -0.026763987, 0.0051755696, 0.012239002, -0.0045687566, 0.021909483, -0.036781218, -0.025518253, -0.012335321, 0.0048512938, 0.005114567, 0.010132815, 0.0029666414, -0.0102098705, -0.018801572, 0.01948223, -0.012913238, 0.008148632, -0.011012533, -0.025608152, -0.03339077, -0.0033936582, -0.0016406426, -0.009285203, -0.06924732, -0.020471111, -0.01824934, -0.023694605, 0.01824934, 0.033365086, 0.016888024, -0.008174318, -0.02184527, 0.019071268, 0.020034462, 0.008161475, 0.03441818, 0.0010322243, -0.020843547, -0.015398283, 0.00077095756, 0.031002047, 0.014704782, 0.012829761, 0.025736578, 0.03393016, -0.0033358664, -0.007159752, 0.051652953, -0.015989043, 0.030308546, -0.039272685, 0.0068322653, -0.03349351, 0.007063432, 0.012598595, -0.01898137, 0.0003485563, 0.006890057, -0.05784309, -0.033724677, 0.027534543, 0.015706506, -0.036883958, -0.047928598, -0.0021479256, -0.0024144095, -0.017221931, -0.026969468, -0.008206424, 0.014435087, 0.0015740216, -0.03398153, 0.003753251, 0.034752086, 0.009574161, 0.00833485, -0.007647771, 0.007378076, 0.038039792, -0.014614884, 0.019495074, -0.0027836345, 0.0303856, 0.02307816, -0.006305719, 0.015950514, -0.0045398604, 0.015167115, -0.015745033, -0.0013123536, 0.0033776048, -0.004543071, -0.008880661, -0.016798126, 0.030539712, 0.035445586, -0.010344718, 0.030359916, 0.049392655, -0.043048408, 0.0031384113, -0.048288193, 0.039041515, -0.014011281, -0.0060488665, 0.033108234, -0.013844327, 0.013600318, -0.0021142138, 0.01972624, -0.03408427, 0.0017080663, -0.003003564, 0.0028221624, -0.007962414, -0.017234774, -0.019649183, 0.012585752, 0.021100398, 0.0016759598, 0.008232109, 0.012592173, -0.035342846, 0.026147543, -0.00022474557, -0.0011502157, -0.03141301, -0.012328899, 0.010954741, 0.0016173654, 0.013959911, 0.00046915637, 0.02312953, -0.04813408, -0.00026548072, -0.02002162, 0.009349416, 0.036961015, -0.006344246, -0.010710732, -0.03742335, -0.008758656, 0.049649507, -0.000752095, -0.017042136, 0.0022378238, -0.007403761, -0.008919189, -0.0028221624, -0.024837596, 0.009034772, 0.027842766, 0.013895698, 0.015539551, 0.015282699, 0.012457326, 0.014807522, -0.0029184818, -0.016759599, -0.02002162, -0.004369696, 0.0077312477, -0.031079102, 0.008270637, 0.0066588903, -0.0010715547, 0.011860145, -0.008264216, 0.005872281, -0.01918685, 0.00261347, -0.014473615, 0.011102431, -0.045591243, -0.029717786, -0.034675032, 0.014589198, 0.009362258, 0.017620053, 0.023810187, 0.004681129, 0.0030790144, 0.013780114, 0.005005405, 0.012964609, -0.042021, -0.020946287, 0.0000075814005, 0.01272702, -0.006986377, -0.00024882544, -0.018711675, -0.008726549, -0.021036185, 0.015924828, -0.058151312, -0.008540331, 0.021614103, -0.008874239, -0.006341036, -0.005342523, -0.003022828, 0.008649494, 0.06421302, 0.0054516853, 0.0011084772, -0.03729492, 0.010543778, -0.021049028, 0.018159442, 0.009779643, 0.0073395483, -0.010993269, 0.015154273, 0.007718405, -0.03660142, -0.006071341, -0.022898363, -0.014075494, 0.0063153505, -0.012964609, -0.026198912, -0.024028512, -0.004048631, -0.022166334, 0.0052847317, -0.029717786, -0.0073652333, 0.016400006, -0.033904474, -0.010640098, 0.0015892723, -0.0028927966, 0.029358193, -0.026969468, -0.0033551303, 0.00399405, -0.012405955, -0.015667977, 0.0051787803, -0.0033294451, -0.028870175, -0.002332538, 0.0059782322, 0.02411841, -0.0052686785, 0.037320606, 0.02840784, 0.01868599, 0.011038219, -0.024298206, 0.017979646, -0.02420831, 0.023784503, -0.004738921, -0.045205966, -0.022037908, -0.016387163, -0.041404556, 0.0070056403, -0.00448849, -0.0076862983, 0.003579876, -0.0071918583, 0.006289665, -0.039478164, 0.013947068, 0.005740644, -0.0021864534, -0.012881132, 0.018608933, -0.01948223, -0.016849497, 0.04191826, 0.011584029, -0.03238905, 0.0023614338, -0.010524514, 0.030180119, 0.014756152, 0.017799849, -0.0029313243, -0.042021, 0.008784342, -0.032414734, -0.0076413495, -0.0029473777, 0.013125141, -0.014935949, -0.053271122, 0.022795621, 0.029332507, -0.0060873944, 0.02450369, -0.0000022449474, -0.03339077, 0.01080063, 0.014358032, 0.0026921309, 0.005316838, -0.02012436, 0.02643008, 0.009310888, -0.008264216, 0.017799849, 0.0021575575, -0.011577607, -0.03274864, 0.038091164, 0.009021929, -0.0173632, 0.028022561, 0.000011136945, 0.011545501, 0.035933606, -0.00005789205, 0.005583322, -0.008302744, 0.026173227, 0.013972754, 0.005509477, 0.020406898, 0.0064823045, -0.011487709, 0.025556782, 0.017414572, -0.017478785, 0.02505592, -0.008784342, -0.027508859, 0.005409947, -0.011872987, 0.061182167, 0.0066010985, 0.013099456, 0.04882758, 0.016862338, -0.0188401, 0.00124493, -0.0051787803, -0.010396088, -0.034443863, 0.004449962, 0.024285365, 0.022731408, 0.008546753, -0.00503109, 0.0038335172, 0.010203449, 0.020432582, -0.074487105, 0.013407678, -0.012752706, -0.031823974, -0.014512142, -0.013176512, 0.016387163, -0.017979646, 0.030668138, 0.013728743, -0.0038784663, -0.0019392332, 0.025505412, 0.000011042884, -0.022525927, -0.0048352405, -0.0027948718, 0.0010779761, 0.004019735, 0.014486457, 0.0076991413, 0.006742367, -0.01661833, -0.02515866, 0.022025065, -0.044769317, -0.020162888, -0.0008909557, -0.008572438, 0.011924358, -0.0077954605, -0.0072817565, 0.0052590463, 0.0058112782, -0.052397825, 0.023848716, -0.021421464, -0.00090861425, 0.04561693, 0.028125303, -0.03269727, -0.013574633, -0.006825844, 0.026943784, -0.031002047, 0.027303375, 0.0053874725, 0.017196247, -0.024002828, -0.003358341, 0.03274864, 0.0032411523, 0.00660752, 0.037654515, -0.009741115, -0.040017553, -0.0005004602, 0.0023790924, -0.025903532, 0.0020403687, 0.018326396, 0.0030982783, 0.003836728, 0.005409947, -0.00031564714, 0.03865624, 0.00034815498, -0.002491465, -0.012341742, -0.021357251, 0.017979646, -0.0413275, -0.019071268, 0.02894723, 0.041199073, -0.014268133, 0.019071268, 0.0044114343, -0.012945345, -0.035419904, 0.0042123743, -0.012797655, 0.05054849, 0.012123418, 0.000046604608, -0.038861718, -0.01153908, -0.051961176, 0.032954123, -0.0040422096, -0.012688492, 0.012643544, -0.030103063, 0.0110895885, 0.011160223, -0.016207367, 0.0005706932, 0.0069992193, 0.007866095, 0.0050856713, 0.01336915, -0.003560612, 0.0055158986, -0.008655915, -0.010588727, 0.031130472, -0.021177454, -0.01188583, 0.016233051, 0.0312589, -0.012373849, 0.017966803, -0.013105878, 0.017170561, 0.0062158206, 0.007853253, 0.018416295, -0.021151768, 0.020792175, 0.0016045228, -0.029127026, -0.021459991, 0.015513865, -0.011070325, -0.0513961, 0.012733442, -0.008874239, 0.004960456, 0.034109958, 0.017594367, 0.012136261, 0.008861396, 0.019995935, -0.00074246305, -0.014319504, -0.024336735, -0.008219266, -0.03983776, -0.009381522, -0.005795225, -0.0043857493, 0.018968526, 0.04412719, -0.022346132, -0.0020644485, -0.009407207, 0.0032090456, -0.016258737, 0.0005361787, 0.0016334187, 0.013131563, -0.018904313, 0.026815357, -0.0025283876, 0.005265468, -0.03752609, 0.018878628, -0.0008989823, 0.007994521, -0.016528431, 0.0074679744, -0.01830071, 0.01927675, 0.008444012, 0.018724516, -0.019507915, 0.0046490226, -0.024041355, -0.030796565, -0.017722793, -0.024888966, -0.021909483, -0.020483954, -0.015526708, 0.025723737, -0.017440256, -0.0012979057, -0.042252168, 0.0048834, 0.0095292125, 0.004491701, 0.02288552, -0.006495147, -0.013626003, 0.010498829, -0.024336735, -0.021819584, -0.029615045, -0.00010259033, -0.007782618, 0.003605561, 0.022577299, -0.00053096144, -0.0040646843, 0.0062061884, -0.013536105, 0.03847644, 0.02386156, 0.021036185, 0.0010201844, 0.0121298395, 0.01765858, -0.020445425, -0.007872516, -0.011436339, 0.005361787, 0.010293347, 0.003541348, -0.006973534, 0.035291474, 0.006190135, 0.008527489, -0.012341742, -0.051421788, 0.02012436, -0.003191387, 0.009753957, -0.024966022, 0.017465942, -0.00025123343, 0.03495757, -0.025479726, -0.015244171, -0.014974477, 0.03169555, 0.0068643717, -0.027149266, 0.015757876, -0.007268914, 0.01656696, 0.050856713, -0.014486457, 0.021524204, 0.010672204, -0.0025829687, -0.006347457, 0.0015796403, 0.010530936, -0.026173227, -0.02455506, 0.009792485, 0.018570406, -0.026789673, -0.030642454, -0.009298045, -0.0013187749, -0.028741747, 0.0027836345, 0.015449652, 0.019405175, 0.0014576355, -0.016785283, -0.0048512938, 0.009940175, -0.0267383, 0.0049700877, 0.02036837, 0.007801882, 0.01790259, 0.0035991399, -0.015346912, 0.02149852, 0.0253513, -0.0020500007, 0.013754429, 0.012534382, -0.0021559522, 0.013227882, -0.001844519, 0.0023726712, 0.0033358664, -0.004713236, -0.0017032503, -0.014756152, -0.02386156, -0.009066879, -0.03339077, -0.03585655, -0.010081444, -0.011282228, -0.005997496, -0.0031079103, -0.0058016465, 0.021626946, -0.029024284, 0.039478164, 0.0072175437, 0.013728743, 0.010055759, 0.008411906, -0.0007838002, 0.010068602, 0.013985596, -0.025736578, -0.0027948718, 0.004038999, -0.0070184832, 0.037859995, 0.014024124, 0.00483203, -0.013433364, -0.0017337515, 0.01672107, 0.008957717, 0.010864843, -0.021395778, -0.00074727903, 0.0500091, 0.010325453, -0.025569625, 0.023784503, 0.0296921, 0.009304467, -0.008444012, 0.011673927, -0.0065079895, 0.004372907, -0.0027306587, -0.0055608475, -0.020997658, -0.04394739, -0.0058209104, 0.018313553, 0.008944874, -0.014524985, 0.012656386, -0.005512688, 0.020509638, -0.0025620996, 0.027226321, 0.019944564, 0.006947849, 0.004035788, -0.022114964, -0.017119192, -0.0049187173, 0.018917156, -0.009073299, -0.0030436972, 0.012194052, -0.031387325, -0.008951295, 0.011115273, 0.032132197, -0.038245276, -0.004038999, 0.029204082, 0.037654515, -0.023463437, 0.013176512, -0.0053874725, -0.0067487885, 0.0013484735, 0.0072624926, -0.03506031, -0.0006573808, -0.0020532112, 0.016977923, -0.015231328, -0.016053256, 0.012791234, -0.017530154, -0.0032315203, 0.0028189516, -0.0027130002, 0.022846993, 0.0062350845, -0.02323227, 0.0024529374, -0.010280505, 0.011975728, 0.008803605, -0.0144993, -0.0058048572, -0.00023718685, 0.009233832, 0.018018173, -0.01760721, 0.0069606914, 0.01060157, 0.0009222595, -0.0010964373, -0.017003607, -0.00497972, 0.009214568, -0.0039137835, 0.009098985, -0.026584191, 0.008514646, 0.013728743, 0.007140488, -0.026250282, 0.011975728, 0.016104626, 0.045642614, 0.02653282, -0.023219429, -0.008244952, -0.005002194, -0.011802353, 0.00024762147, 0.011314334, -0.0002953799, -0.004472437, 0.007846831, 0.019366646, -0.002687315, 0.017889747, -0.03023149, -0.0029875108, -0.013664531, 0.0050824606, -0.019597813, 0.051036507, -0.010839158, 0.028382154, 0.00055785064, -0.0001698635, 0.040865164, 0.004353643, -0.002727448, -0.034315437, 0.0107556805, -0.0110895885, 0.026686931, -0.0025669155, 0.004408224, 0.0091696195, 0.023193743, -0.018827258, 0.0010892133, -0.0033166024, 0.011404232, 0.020740805, -0.016489904, -0.00497972, -0.0027097894, -0.00034474366, 0.009644795, 0.0019328119, -0.016656857, -0.01790259, 0.00053577736, 0.008636652, -0.013536105, -0.019148322, 0.011950043, -0.009028351, -0.0048159766, -0.024644958, -0.02549257, 0.026866728, 0.006000707, -0.017774165, 0.018120915, -0.01859609, -0.009188883, 0.017517311, -0.014666254, 0.0022233757, 0.04343369, -0.017465942, -0.0020355526, 0.007333127, -0.026353024, -0.0025139397, 0.021562733, -0.015269856, -0.054658122, 0.039683647, -0.0015643897, 0.022975419, -0.01696508, -0.007724826, -0.04335663, -0.00009230622, 0.003058145, -0.037397664, 0.0004145753, -0.01696508, -0.012553645, 0.008848554, -0.024490846, -0.0006922966, 0.0062222416, 0.0029409563, 0.007403761, 0.013176512, -0.005586533, -0.016464218, -0.018326396, -0.0065272534, 0.03693533, -0.001299511, -0.043613482, -0.0028350048, -0.024041355, 0.019007053, 0.014871735, 0.012187631, 0.028972914, -0.0060649198, -0.003634457, -0.024079883, -0.020201417, 0.0019360225, 0.03215788, 0.02085639, 0.031284582, 0.004132108, -0.012194052, -0.01765858, 0.002346986, -0.02288552, -0.020458268, 0.016412849, 0.0312589, -0.0012866684, 0.00478387, 0.04600221, 0.0032973385, -0.022949733, -0.015860615, 0.023912929, 0.011879409, 0.0057085375, -0.0059846537, -0.0063153505, 0.0050086156, 0.028150989, 0.011872987, -0.00016936184, 0.013947068, -0.00009998168, -0.017812692, 0.016810969, 0.023566179, -0.017080663, 0.00097122195, -0.004517386, 0.016194524, -0.015282699, 0.004626548, 0.0016261947, 0.012316057, -0.012829761, 0.012174789, 0.013048085, -0.0052590463, 0.029306822, -0.0052590463, -0.00042942457, 0.004128897, -0.04512891, 0.005188412, 0.006190135, -0.011545501, -0.011121695, 0.011917937, -0.022949733, 0.03950385, 0.0024850438, -0.03881035, -0.0047967127, 0.027662968, 0.008842133, 0.03161849, 0.009831013, 0.021537047, -0.01193078, -0.018763045, -0.00025243743, -0.010723574, 0.021126084, -0.017042136, -0.004767817, 0.009253096, -0.018133758, 0.008405484, -0.008591702, 0.011975728, 0.01642569, 0.0114491815, 0.02086923, 0.004758185, -0.0012706151, -0.028972914, -0.006247927, 0.0084889615, 0.0079559935, 0.014589198, 0.0007119619, 0.010691468, -0.015064375, 0.013985596, 0.014447929, -0.016939394, -0.0072239647, -0.02623744, -0.02066375, -0.031002047, -0.0012272714, -0.006633205, 0.0027049736, 0.009118249, 0.023270799, 0.002406383, 0.00054059335, 0.013176512, 0.005364998, 0.016554117, -0.008200003, -0.007673456, 0.008116526, -0.0005229348, 0.008065156, -0.0060103387, -0.0312589, -0.001770674, 0.017581524, -0.0065272534, 0.036370255, -0.0039715753, 0.016579801, -0.0040454203, 0.015745033, -0.018031016, 0.0041449503, -0.016040413, -0.0033743943, -0.011211594, 0.007044168, -0.03950385, 0.0119564645, 0.017722793, 0.0202271, -0.03570244, 0.006845108, -0.015282699, 0.016939394, 0.014165392, -0.015513865, -0.012508696, 0.01484605, -0.0013597107, -0.020047305, 0.0045848098, -0.01578356, 0.0032764694, -0.0067873164, 0.02052248, 0.020072991, -0.00892561, -0.040145982, 0.0073395483, -0.01321504, -0.01785122, -0.016220208, -0.030462656, -0.039812073, 0.026995154, -0.017183404, 0.0017305409, -0.0034386073, 0.006283244, -0.0060873944, 0.016284421, 0.012746285, -0.020535324, -0.010646518, 0.016348636, -0.013497577, -0.0055030556, -0.009709009, -0.00621261, -0.013780114, 0.0069799554, -0.00024260482, 0.009407207, 0.029204082, 0.020997658, 0.003644089, -0.010383246, 0.0043279575, 0.02012436, 0.012483011, 0.0005397907, -0.010126393, -0.0028221624, -0.015924828, -0.016579801, -0.019302433, 0.031669863, -0.008566017, 0.0015997068, -0.013086613, 0.010787788, 0.0044371197, 0.029306822, -0.03408427, 0.018660303, 0.002006657, 0.018416295, -0.0006160437, 0.015334069, -0.001156637, -0.0025027024, -0.012174789, 0.015590921, -0.005731012, 0.012778391, 0.017889747, 0.0031978085, 0.0012858658, 0.025954902, 0.04073674, 0.0090090865, 0.029152712, 0.0004631364, -0.0019424439, -0.011192329, 0.011455603, -0.008533911, -0.0024031722, -0.022474557, 0.0016261947, 0.00631214, 0.005567269, 0.020471111, -0.01958497, 0.0048191873, 0.00093831273, -0.011102431, 0.028639007, -0.0026102592, 0.0015627844, 0.023399225, 0.012778391, -0.0045591244, -0.0109162135, -0.01272702, 0.011333598, -0.005059986, -0.0029810895, -0.01455067, 0.021177454, 0.010524514, -0.024311049, 0.0016382347, 0.006045656, 0.025569625, -0.007898201, -0.013985596, 0.015179958, 0.003881677, 0.0058851233, -0.006646048, 0.024606429, -0.011384969, -0.0051370417, 0.010152078, 0.017594367, -0.0018750202, 0.015308384, 0.012091312, -0.0049379813, 0.010081444, -0.0019199693, -0.013741586, -0.018364923, -0.012187631, 0.005191623, -0.0195336, -0.012116997, -0.011108853, 0.004395381, 0.030026007, -0.0031287794, -0.0051177777, -0.013870012, -0.0052108867, -0.028844489, -0.016181681, 0.009156777, 0.0033968687, 0.00739734, -0.01223258, 0.023630392, -0.03141301, 0.008752234, 0.018750202, 0.0060103387, 0.033570565, 0.00024942745, -0.002924903, -0.012585752, -0.014486457, -0.013240725, -0.0043632747, 0.012534382, 0.004350432, 0.014833207, 0.03788568, -0.018056702, -0.00092547014, 0.01114738, 0.012990294, 0.015822088, 0.0010298163, 0.009079721, -0.012990294, -0.020329842, 0.012784813, 0.018506192, -0.0031335955, -0.0028831647, 0.0010362376, 0.010363981, 0.00087811303, 0.031823974, 0.018069545, -0.006337825, -0.014242448, -0.014589198, -0.005849806, -0.024606429, -0.002584574, -0.0017642528, -0.016785283, 0.009298045, 0.011083167, 0.0042541125, -0.020098675, -0.0017209089, -0.016104626, 0.0073395483, 0.0037339872, 0.027611598, 0.007866095, 0.002303642, -0.017337516, -0.00023538085, 0.005878702, 0.024349578, 0.0012778391, 0.013870012, -0.0003204631, 0.027868452, -0.011018954, -0.0012890764, 0.005169148, -0.03462366, 0.0005646733, 0.029255452, -0.018737359, 0.01050525, 0.010338296, 0.023193743, -0.021447148, 0.00572138, 0.005512688, -0.006992798, 0.00330376, -0.00086446776, 0.012797655, -0.019366646, -0.030000323, -0.025479726, 0.015822088, 0.0050728284, 0.0038977303, 0.010389667, 0.005907598, -0.00710196, 0.0064694616, 0.0048737684, -0.03313392, -0.0010530936, 0.0048994534, -0.00025163477, -0.0025572835, -0.01988035, 0.0025380196, 0.003496399, -0.014473615, -0.011840881, 0.027020838, -0.003367973, -0.0022009013, -0.00043183257, -0.0028478475, -0.00497972, 0.0032363362, 0.0028462422, 0.018069545, -0.010986848, 0.028793119, 0.007166173, -0.00966406, -0.0066588903, -0.0026808935, -0.009798907, 0.0028590846, 0.0025877848, -0.008521068, 0.033365086, 0.0068515292, 0.010832736, 0.014139707, 0.013754429, -0.017054979, -0.0037789363, 0.02476054, -0.017876904, 0.01997025, -0.00165188, -0.0021238457, 0.009291624, -0.0002123043, 0.01672107, -0.0065176217, 0.0066010985, -0.02347628, 0.008033049, 0.013292096, -0.026584191, -0.018763045, -0.022204863, -0.006761631, -0.02578795, -0.021267353, -0.0058209104, 0.0073202844, 0.01795396, -0.0129967155, -0.020458268, -0.0011919542, -0.010473143, -0.038142536, 0.000674638, 0.0039330474, -0.017003607, -0.013600318, 0.018480508, -0.034649346, -0.013985596, 0.00030019588, -0.0048352405, -0.03729492, -0.0052044652, -0.004517386, 0.011821617, -0.015064375, 0.019906037, -0.0011357678, -0.04379328, 0.006080973, 0.016785283, 0.0054484745, -0.0067552095, -0.0047036037, -0.0079559935, -0.012553645, -0.0019633132, -0.00002952294, 0.00848254, 0.011211594, -0.010145657, 0.0147433095, 0.01849335, -0.010826315, 0.006800159, 0.0030244333, 0.025852162, -0.0073202844, 0.0016101415, 0.018043859, 0.009606268, 0.011750983, -0.024144096, -0.012367427, -0.0013099456, 0.00043704986, 0.00096399797, 0.016939394, 0.009220989, -0.002120635, -0.005172359, -0.0014407797, 0.0009928938, -0.025608152, -0.020150045, 0.0057438547, -0.0045880205, -0.0140369665, 0.025736578, -0.015822088, -0.010389667, -0.02420831, -0.0069414275, 0.00062206364, 0.014653411, 0.009927333, 0.021036185, 0.005663588, 0.003974786, -0.021370092, -0.00042781924, -0.005133831, -0.0013251962, 0.0008861397, -0.001785122, 0.005053565, -0.009131092, 0.014910263, -0.0000885939, 0.022256233, -0.00818716, -0.005114567, -0.027020838, -0.03649868, 0.0044467514, -0.008469697, 0.014358032, -0.013394836, 0.009561319, -0.005114567, -0.013112299, -0.020162888, 0.0035349268, -0.0007665429, -0.021575576, 0.008020206, -0.008058734, -0.0072368076, 0.021126084, 0.018056702, 0.019841824, -0.0017835166, -0.005602586, -0.032954123, -0.017042136, -0.0059011765, 0.0015555604, 0.0023213008, 0.01573219, 0.017157719, 0.0060520773, 0.031387325, -0.011044639, -0.004947613, -0.013240725, 0.031746916, 0.0061323433, -0.0074101826, -0.001968129, 0.0012762338, 0.0022297972, -0.0010843974, 0.009098985, 0.008617387, 0.020753648, -0.010299768, -0.014974477, 0.00030340653, -0.020458268, -0.00012802471, -0.012155524, -0.010922635, 0.00586907, 0.0105694635, 0.003936258, 0.0078083035, -0.0048737684, -0.020342685, -0.0033005492, 0.00231809, -0.012412377, 0.015282699, 0.037166495, -0.005336102, -0.004864136, -0.007256071, 0.021100398, -0.00789178, -0.0059108087, 0.020162888, 0.008508225, 0.008572438, -0.0088357115, -0.01203352, -0.0076220855, 0.003151254, -0.0112437, -0.019867508, -0.013651688, 0.019071268, 0.034161326, -0.0050182478, -0.0100750225, 0.0024079883, -0.0034193434, 0.0097025875, 0.01982898, 0.010884107, 0.0039330474, -0.00288477, 0.022063594, -0.014563513, 0.0063314037, 0.016091783, 0.01726046, -0.000748483, 0.011230857, 0.017183404, -0.009265939, -0.014923106, -0.008238531, -0.005647535, 0.004616916, -0.014640569, 0.020034462, -0.0014431876, 0.03249179, -0.022898363, -0.001358908, -0.017876904, -0.004000471, 0.0058080675, 0.0151928, 0.0044756476, 0.016168838, -0.003920205, -0.005663588, 0.020483954, -0.005076039, 0.003038881, -0.006475883, 0.0202271, 0.009131092, -0.010537357, 0.01420392, -0.031002047, 0.022949733, -0.02411841, 0.006633205, 0.00062366895, 0.011616135, 0.005663588, 0.003506031, -0.010986848, 0.018763045, -0.027842766, -0.0051595164, -0.003467503, 0.0034482393, 0.00833485, -0.025132976, 0.015282699, -0.00044306985, 0.010646518, -0.0107428385, 0.0034257646, 0.0012778391, 0.015899144, -0.0036376675, -0.00947142, 0.0035734547, 0.012521539, -0.023784503, 0.012855447, 0.0035252948, 0.020060148, -0.0006477488, -0.00414174, -0.014280976, 0.009015508, -0.017761322, -0.0021559522, -0.014345189, 0.0028093196, -0.019867508, 0.012007834, -0.014473615, 0.012194052, -0.0031945978, -0.021742528, -0.006405249, -0.011693191, 0.0037596724, -0.023489123, -0.011481288, -0.0070891175, 0.009940175, -0.008771499, -0.026353024, -0.024400948, 0.016939394, 0.0009503527, 0.02086923, -0.010819894, 0.010087865, -0.00833485, -0.0124894325, -0.009747537, 0.009015508, 0.006703839, -0.019366646, 0.0027980823, -0.029794842, -0.008816448, 0.03297981, 0.008810027, -0.009407207, 0.0007111592, -0.005814489, 0.010081444, -0.009086142, -0.006026392, -0.013870012, -0.011500552, 0.028664691, -0.005223729, 0.012065627, 0.010530936, 0.00803947, 0.009381522, -0.013093035, -0.0018316763, 0.013279253, -0.0044595944, 0.0011606504, -0.008270637, 0.018673146, -0.00068386865, 0.0070505897, 0.019007053, -0.0006959086, 0.015847774, 0.00995944, -0.015899144, -0.0040036817, 0.007268914, 0.01568082, 0.008906346, 0.0021639788, 0.012168367, -0.0038110428, -0.016823811, 0.010729996, 0.009651217, 0.024722014, 0.017709952, -0.0110895885, -0.0049379813, 0.012983873, -0.009458578, 0.0011710849, -0.014062651, 0.02323227, -0.016926551, 0.020509638, -0.01144276, -0.022346132, -0.0013966332, 0.009265939, 0.0037468297, 0.024991708, -0.0038945198, -0.020997658, -0.006552939, 0.013934226, -0.0023726712, 0.007647771, -0.016682543, -0.016502745, -0.0014431876, -0.00813579, -0.004803134, -0.0025958114, 0.0077954605, -0.012688492, -0.0005755092, 0.028305098, -0.0369867, -0.0016759598, -0.0012746284, 0.00040213403, 0.021793898, 0.0076028216, 0.0068065803, 0.013035243, -0.00384636, -0.01863462, 0.004693972, 0.0086623365, 0.0064726723, 0.013921383, -0.02574942, 0.006716682, -0.017183404, 0.01272702, 0.011340019, 0.008932031, 0.026121857, -0.002963431, -0.03367331, 0.00015411124, -0.017337516, -0.012354585, -0.0045751776, 0.014216763, -0.0062029776, -0.011731719, -0.011429918, -0.007904623, 0.024336735, -0.010094287, -0.0008885477, -0.0012072048, 0.0011060693, 0.026070487, 0.008142211, -0.009176041, 0.018133758, 0.027585914, 0.0036184038, 0.023694605, 0.024657799, 0.018480508, -0.036781218, -0.019340962, -0.006800159, -0.0086816, 0.015295542, 0.018236497, 0.017787006, -0.0009880778, -0.0011694797, 0.017787006, 0.0044820686, 0.00507925, -0.006036024, 0.016733913, 0.011892252, 0.00014136898, 0.0034193434, 0.008932031, -0.0058080675, 0.008546753, 0.017170561, 0.00031685113, 0.008200003, 0.017106349, 0.022757094, -0.037859995, 0.018326396, 0.010929056, -0.002253877, 0.0012023888, -0.0026150753, 0.00027230332, 0.0036633527, 0.026507135, -0.030514028, 0.01637432, -0.009728272, 0.005400315, -0.002432068, -0.0023903297, -0.00942005, -0.006800159, 0.0159762, 0.0020403687, -0.016361477, -0.008129369, 0.004565546, 0.027354747, -0.011198751, -0.023386382, -0.00483203, 0.006992798, 0.0031448326, -0.015411125, -0.018043859, 0.02524856, 0.015449652, -0.015000162, -0.0008195187, -0.00010108534, -0.0081550535, 0.0166697, 0.012072048, 0.0102098705, 0.010216291, 0.006947849, 0.005059986, 0.017632896, -0.020805018, -0.0000018843763, -0.0150772175, 0.017594367, 0.006071341, 0.00626398, 0.0075129233, -0.006247927, 0.012418798, -0.0028253729, -0.012296793, 0.018326396, 0.015745033, 0.006652469, -0.007570715, -0.0029457724, 0.017838378, 0.0021559522, -0.014935949, -0.0065208324, -0.01218121, -0.011506973, 0.0119372, -0.005320049, 0.0095292125, 0.007140488, 0.00043183257, 0.021511361, 0.0011574397, 0.0025123344, 0.0040036817, 0.0064277234, -0.008848554, 0.004433909, -0.010485986, -0.0013155643, 0.005088882, 0.0013139589, -0.022281919, -0.02840784, 0.016233051, 0.002480228, -0.014332346, -0.013741586, -0.0013861986, -0.01326641, -0.013150826, -0.006533675, -0.018416295, -0.030514028, -0.0036761954, -0.015693663, 0.00031384113, 0.02446516, 0.009426472, -0.022448871, -0.0057823826, -0.0029361404, -0.00008774107, 0.000818716, 0.005888334, -0.0019408385, 0.0005205268, 0.010685046, 0.0037018806, 0.008322007, -0.008373378, 0.00409358, 0.006967113, -0.009747537, 0.016001884, -0.01765858, -0.0017417782, -0.027149266, 0.004748553, 0.01982898, 0.033904474, -0.008810027, 0.004995773, -0.0079816785, 0.007519345, 0.011821617, 0.0057920143, -0.023912929, -0.017376043, 0.026584191, -0.013574633, 0.0009776432, 0.0119372, -0.021151768, 0.021704001, -0.016862338, 0.031079102, 0.012097733, -0.0000071424442, 0.0010868054, 0.0013340255, -0.0038848878, -0.009233832, -0.011115273, -0.013690216, 0.025762264, -0.0052044652, -0.013497577, -0.016695386, 0.0055447943, 0.013998439, 0.005005405, -0.0010009204, 0.0011453998, 0.0003864821, 0.0068772146, -0.0019665237, -0.008219266, -0.01242522, 0.0019504705, 0.018570406, 0.000007023299, 0.01257933, 0.0202271, -0.0073395483, -0.010543778, 0.022474557, -0.013304938, 0.04078811, 0.00037323817, 0.0024128042, -0.009047614, -0.0060296026, -0.014666254, 0.011628978, -0.006109869, -0.0035927184, 0.014062651, 0.010935477, 0.014024124, 0.004905875, 0.0077697756, 0.003151254, 0.01627158, -0.0071469094, 0.012309636, -0.0032764694, -0.021395778, -0.008559596, -0.011584029, -0.007012062, 0.011564765, 0.011340019, 0.006626784, 0.010421773, 0.016117468, -0.021023342, 0.008122947, -0.0020644485, -0.009426472, 0.0114234965, 0.035676755, -0.034983255, 0.011616135, 0.012495854, -0.0100750225, -0.00315607, -0.019199694, 0.005663588, -0.005682852, -0.022718567, 0.008726549, 0.014987319, -0.0021238457, -0.019225378, -0.004941192, 0.008732971, 0.012386692, -0.0043440107, -0.0036087718, -0.006697418, 0.0136773735, 0.018364923, -0.0008355719, 0.001637432, 0.022050751, -0.01824934, 0.024028512, 0.00028133328, -0.017119192, 0.013080192, 0.011776668, -0.021768214, 0.005641114, 0.019263906, 0.016014727, 0.0007561083, 0.0019617078, -0.000038251896, 0.0017032503, -0.0035927184, 0.00966406, -0.011275806, -0.0045302287, 0.017453099, 0.006437355, -0.017337516, 0.002746712, -0.00991449, 0.008707286, -0.0034289754, 0.010678626, 0.005364998, -0.014114022, -0.0054805814, -0.019764768, -0.017440256, 0.0036954593, 0.0043632747, 0.0014600436, -0.0062768226, -0.0048834, -0.016220208, 0.0062800334, 0.0008355719, -0.014833207, -0.028587637, -0.008700864, -0.025556782, 0.01573219, -0.00035778692, 0.006780895, -0.0035252948, 0.00041898995, 0.029923268, 0.0007854055, 0.013163669, -0.02002162, -0.0053874725, 0.0076798773, 0.016733913, 0.010441037, 0.01050525, 0.013728743, -0.015051532, 0.00045551112, 0.020766491, -0.017774165, -0.021806741, 0.007833988, -0.007442289, 0.011860145, 0.028844489, -0.022936892, -0.006915742, 0.006382774, -0.0066396263, 0.029255452, -0.01321504, 0.0005478173, 0.013548947, -0.00086286245, -0.0035381373, 0.00877792, 0.024734855, 0.0010555015, 0.015167115, 0.012444483, -0.009041193, 0.013176512, -0.013227882, 0.0061516073, -0.0079688355, 0.004090369, -0.014910263, 0.0063185613, -0.0018910734, -0.024632115, 0.0060745515, 0.014447929, 0.012714178, 0.018775888, -0.011372126, -0.0012545619, -0.01997025, -0.0044820686, 0.0036280355, 0.016502745, -0.0095420545, -0.013805799, 0.0016952237, 0.01321504, 0.011706034, -0.0037757256, 0.002668051, -0.0055993753, 0.0044403304, 0.02455506, 0.014242448, 0.004790291, 0.0034546605, 0.004607284, 0.011905094, -0.010550199, 0.019700555, 0.012855447, 0.0126628075, 0.0060296026, 0.0022394292, 0.0029762734, 0.006594677, -0.010055759, 0.01420392, -0.0025637047, 0.0008684811, 0.0072624926, 0.027046524, 0.020766491, -0.0038752558, 0.0017674634, -0.024272522, -0.012804076, 0.019559287, -0.000056888723, -0.004607284, -0.0043440107, 0.015513865, 0.009522791, 0.0027611598, 0.009298045, -0.016066099, 0.01262428, -0.0029104552, -0.016875181, 0.022371816, 0.017324673, 0.017491627, 0.028561952, 0.0007079485, -0.017286144, -0.014332346, 0.006928585, 0.027252005, 0.013202197, 0.023835873, -0.011365704, -0.0051819906, -0.009381522, -0.014627726, 0.0017498048, 0.018608933, -0.008000942, -0.018955683, 0.01864746, -0.018519035, 0.034803458, -0.00596539, 0.0040967907, -0.021935169, -0.007814725, -0.013471892, -0.041353185, -0.014871735, -0.012752706, -0.018673146, 0.010119972, 0.00029116592, 0.015013004, 0.006003917, -0.021459991, 0.0020724752, -0.0042476915, 0.009535634, 0.012174789, 0.0024834385, 0.010402509, -0.009156777, -0.01854472, -0.009156777, 0.007307442, -0.010389667, 0.018557563, 0.0005875491, 0.01632295, 0.022025065, 0.006071341, -0.006626784, -0.021177454, 0.0012336926, -0.0029024286, 0.019867508, -0.008867818, 0.0011606504, 0.0042284275, 0.0016438533, -0.005679642, 0.02066375, 0.021241667, -0.011706034, 0.014319504, -0.008964137, -0.026918098, -0.006055288, -0.0011759009, 0.00049444026, -0.0051274095, -0.00025444408, 0.00995944, -0.0048705577, 0.0049925623, 0.0053714192, 0.0085018035, -0.011988571, 0.006626784, 0.010717154, 0.005602586, -0.007378076, 0.001311551, -0.0033743943, -0.009432892, -0.002963431, 0.021562733, 0.0040422096, -0.003560612, -0.007275335, -0.0059204404, 0.00848254, -0.009683323, 0.0034353966, 0.0012682071, 0.014563513, -0.020715121, 0.0027932664, 0.021126084, 0.016220208, -0.01159045, -0.008880661, 0.00818716, -0.0016005095, -0.009843856, -0.010274083, -0.006036024, -0.011102431, -0.004013314, -0.0051755696, -0.03220925, 0.0054131574, -0.0024256469, -0.00029317258, 0.012316057, 0.0128233405, 0.010094287, -0.0055704797, -0.017915433, -0.0075964, 0.009773222, -0.030051693, -0.0005574493, -0.008514646, 0.023091001, 0.018955683, 0.021344408, 0.00448849, 0.0036376675, -0.025466884, 0.013715901, -0.012540803, -0.007911044, 0.0048577148, 0.015064375, -0.0025893901, 0.01538544, 0.015475338, -0.00035417493, 0.010126393, -0.008752234, -0.008399063, -0.0028173462, 0.0173632, 0.010293347, 0.01188583, 0.019944564, -0.020304156, -0.03146438, -0.0009407207, -0.0028285836, 0.014679097, -0.016014727, 0.011840881, -0.009908069, -0.025261402, 0.0036826166, -0.022204863, -0.010055759, 0.013093035, -0.0010386456, -0.010370403, 0.007211122, 0.0067680525, -0.009888805, 0.0035574012, 0.019212537, 0.014627726, 0.005393894, 0.0038848878, -0.029717786, 0.0076991413, 0.0043408, 0.008745814, -0.027996877, -0.007500081, -0.023733132, -0.004257323, 0.00071677787, -0.020394055, -0.020072991, 0.0010892133, -0.012219738, -0.003541348, 0.014768994, -0.009548476, 0.022654353, -0.008636652, 0.0017305409, 0.03161849, 0.0010827921, -0.0041995314, 0.017645737, 0.0045109647, 0.006697418, -0.012361007, -0.021138927, 0.01755584, -0.037115127, -0.013292096, 0.006928585, 0.00057350256, 0.0039619436, -0.006646048, -0.0048384513, 0.0084889615, 0.016245894, 0.011853724, 0.003920205, 0.018069545, -0.009997968, -0.00031323914, -0.011372126, 0.008444012, 0.0009904859, -0.019841824, -0.0031994137, 0.017388886, 0.018750202, 0.01026124, 0.012097733, 0.010280505, 0.010678626, -0.0024497267, -0.012072048, 0.011211594, 0.0010033285, -0.014948791, 0.018557563, -0.0003104298, 0.003294128, -0.019841824, -0.028279414, -0.022179177, 0.0034321859, -0.013227882, 0.031669863, 0.00315607, 0.004998984, -0.0033326556, 0.014460772, -0.011378547, 0.017221931, -0.013574633, -0.048005655, 0.0015170326, -0.006071341, -0.009856699, 0.012893975, -0.0048962426, 0.03729492, 0.0033743943, 0.0027226321, 0.01208489, -0.01030619, -0.019983092, -0.03742335, -0.012399534, -0.02312953, -0.011526237, 0.0032588108, 0.005281521, -0.01903274, -0.0056892736, -0.01050525, -0.0042541125, -0.01321504, 0.0010298163, -0.02580079, -0.017183404, -0.024311049, -0.032466102, 0.038861718, -0.0010747655, -0.0070056403, 0.014653411, -0.012296793, 0.023373539, -0.008508225, -0.027252005, 0.02017573, -0.0013420521, 0.0072368076, -0.015257014, 0.031130472, -0.0018926788, 0.006845108, -0.0062382948, -0.008854976, 0.01760721, -0.016220208, -0.010267662, 0.01006218, -0.022846993, 0.0023758817, 0.010479565, -0.03590792, -0.00572138, 0.008822869, 0.008411906, 0.021061871, -0.01203352, -0.0006409262, -0.008989823, -0.017594367, 0.0012377059, 0.006036024, 0.005686063, 0.00073925237, -0.008559596, -0.015886301, 0.0136773735, -0.001632616, 0.008566017, -0.0063506677, -0.012733442, -0.015937671, -0.017067822, -0.001780306, 0.015462495, -0.016477061, 0.0326459, -0.012746285, -0.015346912, -0.005021458, 0.0051563056, 0.012938923, 0.0071083815, 0.008970559, 0.022384658, 0.012386692, -0.007185437, -0.0047036037, -0.013035243, -0.0049347705, -0.0016711438, 0.0091696195, -0.022795621, 0.01277197, -0.009721851, 0.0018910734, -0.00394589, -0.010030074, 0.0011510184, 0.0009094169, -0.007230386, 0.0012096128, -0.003294128, -0.021395778, -0.015796402, -0.007763354, -0.01326641, -0.00023116688, -0.004581599, 0.0074936594, 0.0017080663, 0.026584191, 0.0040775267, 0.005647535, -0.0038110428, -0.025672365, 0.018968526, 0.014460772, 0.0050086156, 0.006780895, -0.009021929, -0.017376043, -0.029717786, -0.016708229, -0.017620053, 0.0005602586, 0.0053682085, 0.015179958, 0.006986377, -0.012849025, -0.006723103, -0.036961015, -0.038990147, -0.021280196, -0.0079816785, 0.014602041, 0.016066099, 0.008598124, 0.029486619, -0.012059205, -0.0076028216, -0.004925139, 0.004449962, 0.01311872, 0.010646518, 0.003615193, 0.012759127, -0.006456619, 0.013381993, 0.0116097145, 0.013959911, 0.00813579, -0.005005405, 0.009631953, 0.008373378, 0.013240725, -0.0006706247, 0.011070325, -0.012001414, 0.034700718, 0.00877792, 0.012990294, -0.011436339, -0.012027099, 0.009612689, -0.0011895462, -0.011474866, -0.014884578, -0.027200636, 0.00091182487, -0.014139707, 0.00034534564, 0.008045891, -0.024940338, -0.012630701, 0.025608152, -0.009509948, 0.018441979, -0.0151928, 0.0038848878, -0.016849497, 0.0037339872, -0.028253729, -0.015873458, -0.012335321, 0.029820526, 0.029152712, -0.017234774, 0.0150900595, -0.011718877, -0.010704311, 0.0144993, 0.008424749, -0.047569007, -0.01578356, 0.012617858, 0.024593586, 0.0022651143, -0.019983092, 0.0015523498, -0.006382774, 0.00028113264, 0.017003607, 0.0037693044, 0.0036472995, -0.012200474, 0.022166334, -0.018750202, 0.015346912, -0.006697418, -0.019045582, 0.013882855, -0.010197028, 0.019893194, -0.0036601422, 0.0059397044, -0.004591231, 0.009452157, 0.0061323433, 0.0052943635, 0.010357561, -0.0029907215, 0.011853724, 0.011018954, -0.00049925625, -0.02066375, 0.0072175437, 0.0028671115, 0.010190606, -0.0029056391, -0.010415352
|
|
2123
|
+
]
|
|
2124
|
+
}
|
|
2125
|
+
],
|
|
2126
|
+
"sources": [
|
|
2127
|
+
{
|
|
2128
|
+
"name": "source-uranium-glass-garden-77d2bea40f9d5065b9ff"
|
|
2129
|
+
}
|
|
2130
|
+
],
|
|
2131
|
+
"preparationIds": [
|
|
2132
|
+
1
|
|
2133
|
+
]
|
|
2134
|
+
}
|
|
2135
|
+
],
|
|
2136
|
+
"sources": [
|
|
2137
|
+
{
|
|
2138
|
+
"type": "BOOK",
|
|
2139
|
+
"path": null,
|
|
2140
|
+
"content": "# 🧮 Sheets\n\n<!--\n<- TODO: This is a hack to show filename in left panel instead of \"Write email for each customer\"\n Put back \"Write email for each customer\"\n-->\n\nShow how to use a simple prompt\n\n- URL https://github.com/webgptorg/book/blob/main/books/templates/sheets.book.md\n- FORMFACTOR Sheets\n- INPUT PARAMETER `{inputSheet}` Customer names each customer on each row\n- OUTPUT PARAMETER `{outputSheet}` Greeting to each customer on each row\n\n## About eshop\n\n- KNOWLEDGE\n\n```text\nCoolstore is an eshop that sells various hobby, home and garden products. It has a wide range of products from garden gnomes to kitchen gadgets.\nIt has 3 physical stores in the UK and a large online store that operates in the UK + EU + Switzerland. Key benefits are fast delivery and excellent customer service with a personal touch.\n```\n\n## About UV LED Garden Gnomes\n\n- KNOWLEDGE\n\n<!-- TODO: ALlow two ```blocks in KNOWLEDGE template -->\n\n```text\nUranium Glass Garden Gnomes are the newest product in the eshop. They are made of glass with a fluorescent uranium oxide added to the glass mixture. The gnomes are equipped with a UV LED light that makes them glow in the dark. They are great for scaring away birds and snakes.\n```\n\n## Write a email\n\n<!--\nTODO: [🔼] Promptbook lib: Change syntax\n- FOREACH Csv row `{inputSheet}` -> `{firstName},{lastName},{note}`,`+{email}`\n-->\n\n- FOREACH Csv row `{inputSheet}` -> `{firstName}` `{lastName}` `{note}` `+{email}`\n- PERSONA Jane, customer service representative and skilled copywriter for eshop\n<!--- TODO: Add EXPECT -->\n\n```markdown\nWrite an email from Coolstore shop to customer \"{firstName} {lastName}\". Inform him about new product fluorescent Uranium Glass Garden Gnome with build-in UV LED light.\n\n## Rules\n\n- Write just an text of email, nothing else\n- {note}\n```\n\n`-> {outputSheet}`\n\n### Samples of customers\n\n- SAMPLE\n\n```csv\nFirst name,Last name,Note\nAlice,Springfield,Extremely important customer\nJohn,Snow,More informally in Scottish English\nPavol,Hejný,\"Writes in Czech language\nLives in and loves the Prague, please mention it every communication\"\n```\n\n<!-- TODO: [🧩] Allow to import from sheets-sample-email.csv -->\n\n`-> {inputSheet}`\n\n<!--\n\n### Samples of emails\n\nTODO: Write\n\n-->\n"
|
|
2141
|
+
}
|
|
2142
|
+
],
|
|
2143
|
+
"sourceFile": "./book/books/templates/sheets.book.md"
|
|
2144
|
+
}, {
|
|
2145
|
+
"title": "🎌 Translator",
|
|
2146
|
+
"pipelineUrl": "https://github.com/webgptorg/book/blob/main/books/templates/translator.book.md",
|
|
2147
|
+
"formfactorName": "TRANSLATOR",
|
|
2148
|
+
"parameters": [
|
|
2149
|
+
{
|
|
2150
|
+
"name": "inputMessage",
|
|
2151
|
+
"description": "English",
|
|
2152
|
+
"isInput": true,
|
|
2153
|
+
"isOutput": false
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"name": "outputMessage",
|
|
2157
|
+
"description": "Esperanto",
|
|
2158
|
+
"isInput": false,
|
|
2159
|
+
"isOutput": true
|
|
2160
|
+
}
|
|
2161
|
+
],
|
|
2162
|
+
"tasks": [
|
|
2163
|
+
{
|
|
2164
|
+
"taskType": "PROMPT_TASK",
|
|
2165
|
+
"name": "translate",
|
|
2166
|
+
"title": "Translate",
|
|
2167
|
+
"content": "Translate text to Esperanto\n\n> {inputMessage}\n\n# Rules\n\n- Write only the translated text",
|
|
2168
|
+
"resultingParameterName": "outputMessage",
|
|
2169
|
+
"personaName": "Jane",
|
|
2170
|
+
"dependentParameterNames": [
|
|
2171
|
+
"inputMessage"
|
|
2172
|
+
]
|
|
2173
|
+
}
|
|
2174
|
+
],
|
|
2175
|
+
"personas": [
|
|
2176
|
+
{
|
|
2177
|
+
"name": "Jane",
|
|
2178
|
+
"description": "linguist and Esperantist",
|
|
2179
|
+
"modelRequirements": {
|
|
2180
|
+
"modelVariant": "CHAT",
|
|
2181
|
+
"modelName": "gpt-4-turbo-2024-04-09",
|
|
2182
|
+
"systemMessage": "You are a knowledgeable linguist and passionate Esperantist. Your expertise covers various aspects of language study, including phonetics, syntax, semantics, and historical linguistics. You have a deep understanding of Esperanto, its history, structure, and cultural significance. Provide clear, accurate information about linguistics and Esperanto, and be ready to discuss language-related topics or help with Esperanto learning and usage. When appropriate, you can provide examples in Esperanto or other languages to illustrate linguistic concepts.",
|
|
2183
|
+
"temperature": 0.7
|
|
2184
|
+
},
|
|
2185
|
+
"preparationIds": [
|
|
2186
|
+
1
|
|
2187
|
+
]
|
|
2188
|
+
}
|
|
2189
|
+
],
|
|
2190
|
+
"preparations": [
|
|
2191
|
+
{
|
|
2192
|
+
"id": 1,
|
|
2193
|
+
"promptbookVersion": "0.81.0-10",
|
|
2194
|
+
"usage": {
|
|
2195
|
+
"price": {
|
|
2196
|
+
"value": 0.006237
|
|
2197
|
+
},
|
|
2198
|
+
"input": {
|
|
2199
|
+
"tokensCount": {
|
|
2200
|
+
"value": 1169
|
|
2201
|
+
},
|
|
2202
|
+
"charactersCount": {
|
|
2203
|
+
"value": 3228
|
|
2204
|
+
},
|
|
2205
|
+
"wordsCount": {
|
|
2206
|
+
"value": 576
|
|
2207
|
+
},
|
|
2208
|
+
"sentencesCount": {
|
|
2209
|
+
"value": 53
|
|
2210
|
+
},
|
|
2211
|
+
"linesCount": {
|
|
2212
|
+
"value": 71
|
|
2213
|
+
},
|
|
2214
|
+
"paragraphsCount": {
|
|
2215
|
+
"value": 20
|
|
2216
|
+
},
|
|
2217
|
+
"pagesCount": {
|
|
2218
|
+
"value": 2
|
|
2219
|
+
}
|
|
2220
|
+
},
|
|
2221
|
+
"output": {
|
|
2222
|
+
"tokensCount": {
|
|
2223
|
+
"value": 182
|
|
2224
|
+
},
|
|
2225
|
+
"charactersCount": {
|
|
2226
|
+
"value": 750
|
|
2227
|
+
},
|
|
2228
|
+
"wordsCount": {
|
|
2229
|
+
"value": 104
|
|
2230
|
+
},
|
|
2231
|
+
"sentencesCount": {
|
|
2232
|
+
"value": 7
|
|
2233
|
+
},
|
|
2234
|
+
"linesCount": {
|
|
2235
|
+
"value": 18
|
|
2236
|
+
},
|
|
2237
|
+
"paragraphsCount": {
|
|
2238
|
+
"value": 2
|
|
2239
|
+
},
|
|
2240
|
+
"pagesCount": {
|
|
2241
|
+
"value": 1
|
|
2242
|
+
}
|
|
2243
|
+
}
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
],
|
|
2247
|
+
"knowledgeSources": [],
|
|
2248
|
+
"knowledgePieces": [],
|
|
2249
|
+
"sources": [
|
|
2250
|
+
{
|
|
2251
|
+
"type": "BOOK",
|
|
2252
|
+
"path": null,
|
|
2253
|
+
"content": "# 🎌 Translator\n\n<!-- TODO: !!!!!! Implement -->\n\n- URL https://github.com/webgptorg/book/blob/main/books/templates/translator.book.md\n- INPUT PARAMETER {inputMessage} English\n- OUTPUT PARAMETER {outputMessage} Esperanto\n\n## Translate\n\n- PERSONA Jane, linguist and Esperantist\n\n```markdown\nTranslate text to Esperanto\n\n> {inputMessage}\n\n# Rules\n\n- Write only the translated text\n```\n\n-> {outputMessage}\n"
|
|
2254
|
+
}
|
|
2255
|
+
],
|
|
2256
|
+
"sourceFile": "./book/books/templates/translator.book.md"
|
|
2257
|
+
});
|
|
2258
|
+
}
|
|
2259
|
+
return pipelineCollection;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
/**
|
|
2263
|
+
* @@@
|
|
2264
|
+
*
|
|
2265
|
+
* @singleton
|
|
2266
|
+
* @private internal cache of `getBookTemplate`
|
|
2267
|
+
*/
|
|
2268
|
+
var templatesPipelineCollection = null;
|
|
2269
|
+
/**
|
|
2270
|
+
* Get template for new book
|
|
2271
|
+
*
|
|
2272
|
+
* @public exported from `@promptbook/templates`
|
|
2273
|
+
*/
|
|
2274
|
+
function getBookTemplate(formfactorName) {
|
|
2275
|
+
if (templatesPipelineCollection === null) {
|
|
2276
|
+
templatesPipelineCollection = getTemplatesPipelineCollection();
|
|
2277
|
+
}
|
|
2278
|
+
try {
|
|
2279
|
+
return templatesPipelineCollection.getPipelineByUrl("https://github.com/webgptorg/book/blob/main/books/templates/".concat(formfactorName.toLowerCase(), ".book.md")); // <- Note: !!!!!! `SimplePipelineCollection`
|
|
2280
|
+
}
|
|
2281
|
+
catch (error) {
|
|
2282
|
+
if (!(error instanceof NotFoundError)) {
|
|
2283
|
+
throw error;
|
|
2284
|
+
}
|
|
2285
|
+
throw new UnexpectedError(spaceTrim(function (block) { return "\n Template for formfactor \"".concat(formfactorName, "\" not found\n\n Original `NotFoundError`:\n ").concat(block(error.stack || error.message), "\n\n\n "); }));
|
|
2286
|
+
}
|
|
2287
|
+
}
|
|
2288
|
+
/**
|
|
2289
|
+
* TODO: !!!!!! Test
|
|
2290
|
+
* TODO: [🧠] Which is the best place for this function
|
|
2291
|
+
* TODO: !!!!!! `book string template notation
|
|
2292
|
+
*/
|
|
2293
|
+
|
|
2294
|
+
export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION, getBookTemplate };
|
|
2295
|
+
//# sourceMappingURL=index.es.js.map
|